/* ═══════════════════════════════════════════════════
   RADAR9 — Landing Page Stylesheet
   Design: Military-grade dark UI, tactical HUD aesthetic
   ═══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --green: #1db87a;
  --green-dim: #0d6644;
  --green-soft: rgba(29, 184, 122, 0.08);
  --green-glow: rgba(29, 184, 122, 0.15);
  --black: #0f181f;
  --off-black: #131e26;
  --panel: #16242c;
  --border: #1e2f3a;
  --border-hi: #284050;
  --white: #ffffff;
  --muted: #4a5568;
  --muted-light: #8896a4;
  --red: #e05555;
  --amber: #f96902;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ─── SCANLINES ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
}

/* ─── GRID BACKGROUND ─── */
.grid-bg {
  background-image:
    linear-gradient(rgba(29, 184, 122, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 184, 122, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── CANVAS ─── */
#r9-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── Z-LAYERING ─── */
nav,
section,
footer,
.stats-bar,
.ticker-wrap,
.showcase-section {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(15, 24, 31, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav-logo {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--green);
  color: var(--green);
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--green);
  color: var(--black);
  border: none;
  padding: 10px 20px;
  cursor: crosshair;
  font-weight: 700;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover {
  background: #25d98e;
  transform: skew(-2deg);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--green);
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(68px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-title .acc {
  color: var(--green);
}

.hero-subtitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 6px;
  color: var(--muted-light);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-light);
  max-width: 440px;
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

/* Hero email form */
.hero-form {
  margin-bottom: 20px;
}
.form-inline {
  display: flex;
  gap: 0;
  max-width: 440px;
}
.form-inline input[type="email"] {
  flex: 1;
  background: var(--panel);
  border: 1px solid var(--border-hi);
  border-right: none;
  color: var(--white);
  padding: 16px 18px;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  cursor: crosshair;
}
.form-inline input[type="email"]:focus {
  border-color: var(--green);
}
.form-inline input[type="email"]::placeholder {
  color: var(--border-hi);
}

.form-inline button {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--green);
  color: var(--black);
  border: 1px solid var(--green);
  padding: 16px 24px;
  cursor: crosshair;
  font-weight: 700;
  transition: all 0.15s;
  white-space: nowrap;
}
.form-inline button:hover {
  background: var(--black);
  color: var(--green);
}

.hero-proof {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 10px;
}

.btn-ghost-link {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost-link:hover {
  color: var(--green);
}

/* Hero right — terminal */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 60% 40%,
      rgba(29, 184, 122, 0.04) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(29, 184, 122, 0.025) 0%,
      transparent 50%
    );
}

/* ─── HERO STAGE — Cinematic full-height ─── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes blink-cursor {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}
@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-stage {
  width: 100%;
  max-width: 560px;
  position: relative;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
  font-family: "Rajdhani", sans-serif;
  min-height: 480px;
}

/* Ambient glow behind content */
.hero-glow {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(29, 184, 122, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  animation: glow-breathe 4s ease-in-out infinite;
}

/* Phase descriptor */
.hero-phase-desc {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--muted-light);
  text-transform: lowercase;
  margin-bottom: 20px;
  opacity: 0;
  min-height: 16px;
  position: relative;
  z-index: 2;
}

/* Scenes */
.hscene {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.hscene.active {
  opacity: 1;
  pointer-events: auto;
}

/* ─── SCENE 1: PLAN ─── */
.h-plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.h-plan-badge {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  background: rgba(29, 184, 122, 0.12);
  color: var(--green);
  border: 1px solid rgba(29, 184, 122, 0.25);
}
.h-plan-cap {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  color: var(--muted-light);
  letter-spacing: 0.5px;
}
.h-plan-progress {
  height: 3px;
  background: var(--border);
  margin-bottom: 14px;
  overflow: hidden;
}
.h-plan-progress-fill {
  height: 100%;
  background: var(--green);
  transition: width 0.6s ease;
}

.h-plan-list {
  background: var(--off-black);
  border: 1px solid var(--border);
  overflow: hidden;
}

.h-plan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  color: var(--white);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.h-plan-item:last-child {
  border-bottom: none;
}
.h-plan-item.h-plan-new {
  background: rgba(29, 184, 122, 0.04);
}

.h-plan-check {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}
.h-plan-check.done {
  border-color: var(--green);
  color: var(--green);
  background: rgba(29, 184, 122, 0.1);
}
.h-plan-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.h-plan-tag {
  font-family: "Space Mono", monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  flex-shrink: 0;
}
.tag-bug {
  background: #e05555;
  color: var(--black);
}
.tag-feat {
  background: var(--green);
  color: var(--black);
}
.tag-enh {
  background: #4ea8de;
  color: var(--black);
}
.h-plan-pts {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  color: var(--muted);
  flex-shrink: 0;
}

/* Input row */
.h-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(29, 184, 122, 0.04);
  border: 1px solid var(--border-hi);
  margin-top: 10px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}
.h-input-icon {
  font-family: "Space Mono", monospace;
  font-size: 14px;
  color: var(--green);
  opacity: 0.5;
}
.h-input-text {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  color: var(--green);
  min-height: 20px;
  flex: 1;
}
.h-input-cursor {
  color: var(--green);
  font-size: 15px;
  animation: blink-cursor 0.7s step-end infinite;
}

/* ─── SCENE 2: EXECUTE ─── */
.hscene-exec {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
}

.h-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 300px;
  border: 1px solid var(--border);
  background: var(--off-black);
}
.h-kb-col {
  border-right: 1px solid var(--border);
  padding: 14px 12px;
  min-height: 300px;
  transition:
    border-color 0.4s,
    background 0.4s;
}
.h-kb-col:last-child {
  border-right: none;
}
.h-kb-col-active {
  background: rgba(29, 184, 122, 0.03);
  border-color: rgba(29, 184, 122, 0.2);
}
.h-kb-col-h {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.h-kb-cnt {
  font-size: 8px;
  color: var(--muted-light);
  background: var(--border);
  padding: 1px 5px;
  margin-left: auto;
}
.h-kb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: dot-pulse 1.5s ease-in-out infinite;
}

/* Ghost cards in kanban */
.h-kb-card {
  padding: 10px;
  margin-top: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
}
.h-kb-ghost {
  opacity: 0.4;
}
.h-kb-card-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
}
.h-kb-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  color: var(--muted);
}

/* The floating hero card */
.h-card {
  position: absolute;
  width: 170px;
  background: var(--panel);
  border: 1px solid var(--border);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: border-color 0.3s;
}
.h-card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(29, 184, 122, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.5;
}
.h-card-inner {
  position: relative;
  padding: 12px 14px;
  z-index: 1;
}
.h-card-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.h-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", monospace;
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 10px;
}
.h-card-assignee {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(29, 184, 122, 0.2);
  color: var(--green);
  font-size: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-family: "Space Mono", monospace;
}
.h-card-progress {
  height: 3px;
  background: var(--border);
  overflow: hidden;
}
.h-card-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--green);
  transition: width 0.4s ease;
}
.h-card-done {
  border-color: var(--green);
}
.h-card-done .h-card-glow {
  opacity: 1;
}

/* ─── SCENE 3: REVIEW ─── */
.h-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.h-rv-status {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--muted-light);
}

.h-review-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--off-black);
  margin-bottom: 14px;
}
.h-rv-stat {
  padding: 18px 8px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.h-rv-stat:last-child {
  border-right: none;
}
.h-rv-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}
.h-rv-warn {
  color: var(--amber);
}
.h-rv-green {
  color: var(--green);
}
.h-rv-label {
  font-family: "Space Mono", monospace;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}

.h-chart-wrap {
  border: 1px solid var(--border);
  background: var(--off-black);
  padding: 16px 20px;
}
.h-chart-label {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.h-chart-svg {
  width: 100%;
  height: 130px;
  display: block;
}
.h-chart-x {
  display: flex;
  justify-content: space-between;
  font-family: "Space Mono", monospace;
  font-size: 7px;
  color: var(--muted);
  margin-top: 6px;
  padding: 0 2px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid #1db87a;
  color: #1db87a;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1db87a;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* ═══════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════ */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  background: var(--panel);
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  gap: 0;
}
.ticker-item {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
}
.ticker-item .tdot {
  color: var(--green);
  margin: 0 20px;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: crosshair;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(29, 184, 122, 0.025);
}
.stat-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.4s ease;
}
.stat-item:hover::before {
  width: 100%;
}
.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  color: var(--green);
  line-height: 1;
  letter-spacing: 2px;
}
.stat-label {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   SECTION LABELS
   ═══════════════════════════════════════════════════ */
.sec-tag {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-tag::after {
  content: "";
  display: block;
  height: 1px;
  width: 60px;
  background: var(--green);
}

.sec-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
}
.sec-title em {
  font-style: normal;
  color: var(--green);
}

/* ═══════════════════════════════════════════════════
   FEATURES — CORE SYSTEMS  (6-card grid)
   ═══════════════════════════════════════════════════ */
.features-section {
  padding: 120px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
}
.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.features-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  padding-bottom: 4px;
  letter-spacing: 0.3px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.feat-col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-right: 1px solid var(--border);
}
.feat-col:last-child {
  border-right: none;
}
.feat-card {
  padding: 36px 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: crosshair;
}
.feat-card:last-child {
  border-bottom: none;
}
.feat-card:hover {
  background: rgba(29, 184, 122, 0.03);
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-h {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}
.feat-sub {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.feat-p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   SHOWCASE — TACTICAL ADVANTAGE  (alternating layout)
   ═══════════════════════════════════════════════════ */
.showcase-section {
  padding: 120px 60px;
  border-bottom: 1px solid var(--border);
}
.showcase-section:nth-child(even) {
  background: var(--off-black);
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.showcase-inner.reverse {
  direction: rtl;
}
.showcase-inner.reverse > * {
  direction: ltr;
}

.showcase-text {
  max-width: 480px;
}
.showcase-text .sec-tag {
  margin-bottom: 14px;
}
.showcase-h {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.showcase-h em {
  font-style: normal;
  color: var(--green);
}
.showcase-p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* Showcase visual mockups */
.showcase-visual {
  background: var(--off-black);
  border: 1px solid var(--border-hi);
  padding: 28px;
  position: relative;
}
.showcase-section:nth-child(even) .showcase-visual {
  background: var(--panel);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mock-title {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-left: auto;
  text-transform: uppercase;
}

.mock-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 4px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mock-row:hover {
  background: rgba(29, 184, 122, 0.04);
  border-color: var(--border);
}
.mock-row.active {
  border-left: 2px solid var(--green);
  background: rgba(29, 184, 122, 0.04);
}

.mock-badge {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 1px;
  padding: 2px 6px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.mock-badge.high {
  background: rgba(224, 85, 85, 0.15);
  color: var(--red);
  border: 1px solid rgba(224, 85, 85, 0.2);
}
.mock-badge.med {
  background: rgba(249, 105, 2, 0.12);
  color: var(--amber);
  border: 1px solid rgba(249, 105, 2, 0.2);
}
.mock-badge.low {
  background: rgba(29, 184, 122, 0.1);
  color: var(--green);
  border: 1px solid rgba(29, 184, 122, 0.15);
}
.mock-badge.tag {
  background: rgba(29, 184, 122, 0.06);
  color: var(--muted-light);
  border: 1px solid var(--border);
}
.mock-badge.score {
  background: rgba(29, 184, 122, 0.08);
  color: var(--green);
  border: 1px solid rgba(29, 184, 122, 0.12);
}

.mock-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: var(--muted-light);
}
.mock-label .highlight {
  color: var(--green);
}
.mock-label .dim {
  color: var(--muted);
}

/* Voice waveform mockup */
.mock-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.mock-wave .bar {
  width: 3px;
  background: var(--green);
  border-radius: 0;
  animation: wave 1.2s ease-in-out infinite;
}
.mock-wave .bar:nth-child(2) {
  animation-delay: 0.1s;
}
.mock-wave .bar:nth-child(3) {
  animation-delay: 0.2s;
}
.mock-wave .bar:nth-child(4) {
  animation-delay: 0.3s;
}
.mock-wave .bar:nth-child(5) {
  animation-delay: 0.4s;
}
.mock-wave .bar:nth-child(6) {
  animation-delay: 0.5s;
}
.mock-wave .bar:nth-child(7) {
  animation-delay: 0.6s;
}
.mock-wave .bar:nth-child(8) {
  animation-delay: 0.7s;
}
.mock-wave .bar:nth-child(9) {
  animation-delay: 0.15s;
}
.mock-wave .bar:nth-child(10) {
  animation-delay: 0.35s;
}
.mock-wave .bar:nth-child(11) {
  animation-delay: 0.55s;
}
.mock-wave .bar:nth-child(12) {
  animation-delay: 0.25s;
}
@keyframes wave {
  0%,
  100% {
    height: 8px;
  }
  50% {
    height: 28px;
  }
}

/* Sprint board mockup */
.mock-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-column {
  background: rgba(15, 24, 31, 0.6);
  border: 1px solid var(--border);
  padding: 10px;
}
.mock-col-h {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mock-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 8px 10px;
  margin-bottom: 6px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  color: var(--muted-light);
  transition: border-color 0.2s;
}
.mock-card:hover {
  border-color: var(--green);
}
.mock-card .pts {
  font-size: 8px;
  color: var(--green);
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════ */
.how-section {
  padding: 120px 60px;
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-header {
  margin-bottom: 72px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  position: relative;
}
/* Connecting line */
.steps-row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--green);
  opacity: 0.2;
  z-index: 0;
}
.step-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
  cursor: crosshair;
  position: relative;
  z-index: 1;
}
.step-card:last-child {
  border-right: none;
}
.step-card:hover {
  background: var(--panel);
}
.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  color: var(--border-hi);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.25s;
}
.step-card:hover .step-num {
  color: rgba(29, 184, 122, 0.12);
}
.step-h {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}
.step-p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.7;
}

/* Step geometric icons */
.step-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   INTEGRATIONS
   ═══════════════════════════════════════════════════ */
.integrations-section {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
}
.integrations-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.integrations-header {
  margin-bottom: 56px;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.int-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.25s;
  cursor: crosshair;
}
.int-cell:nth-child(4n) {
  border-right: none;
}
.int-cell:nth-child(n + 5) {
  border-bottom: none;
}
.int-cell:hover {
  background: rgba(29, 184, 122, 0.03);
}

.int-icon-box {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  transition: border-color 0.2s;
}
.int-cell:hover .int-icon-box {
  border-color: var(--green);
}

.int-icon-box svg {
  width: 18px;
  height: 18px;
}
.int-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.int-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */
.pricing-section {
  padding: 120px 60px;
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-header {
  margin-bottom: 64px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.plan-card {
  background: var(--off-black);
  padding: 40px 32px;
  position: relative;
  transition: background 0.25s;
  cursor: crosshair;
}
.plan-card:hover {
  background: rgba(29, 184, 122, 0.025);
}
.plan-card.star {
  background: rgba(29, 184, 122, 0.05);
  border: 1px solid rgba(29, 184, 122, 0.12);
  margin: -1px;
  z-index: 1;
}
.plan-pop {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Space Mono", monospace;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--green);
  color: var(--black);
  padding: 3px 14px;
  font-weight: 700;
  white-space: nowrap;
}
.plan-tier {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.plan-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-note {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.plan-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}
.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
}
.pck {
  color: #1db87a;
  flex-shrink: 0;
  margin-top: 1px;
}
.pno {
  color: var(--border-hi);
  flex-shrink: 0;
  margin-top: 1px;
}
.strikethrough {
  text-decoration: line-through;
  color: var(--muted);
}

.btn-plan {
  width: 100%;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px;
  cursor: crosshair;
  border: none;
  transition: all 0.2s;
  font-weight: 700;
}
.btn-plan-o {
  background: transparent;
  color: var(--muted-light);
  border: 1px solid var(--border-hi);
}
.btn-plan-o:hover {
  color: var(--white);
  border-color: var(--white);
}
.btn-plan-g {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 28px rgba(29, 184, 122, 0.14);
}
.btn-plan-g:hover {
  background: #25d98e;
  box-shadow: 0 0 40px rgba(29, 184, 122, 0.22);
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.faq-section {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: crosshair;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  gap: 16px;
  transition: color 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: "Rajdhani", sans-serif;
}
.faq-q:hover {
  color: var(--green);
}
.faq-arrow {
  font-size: 18px;
  color: var(--muted);
  transition:
    transform 0.3s,
    color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--green);
}
.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding-bottom: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */
.cta-section {
  padding: 120px 60px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-section::before {
  content: "RADAR9";
  font-family: "Bebas Neue", sans-serif;
  font-size: 280px;
  color: rgba(29, 184, 122, 0.025);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  letter-spacing: 10px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.cta-form .form-inline {
  max-width: 100%;
}
.cta-form .form-inline input[type="email"] {
  border-right: none;
}

.form-note {
  font-family: "Space Mono", monospace;
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer {
  padding: 44px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--border);
}
.ft-logo {
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--muted-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft-logo-box {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  border: 2px solid var(--green);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}
.ft-tagline {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  color: var(--border-hi);
  letter-spacing: 1px;
  margin-top: 4px;
}
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-links li a {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: crosshair;
  transition: color 0.2s;
  text-decoration: none;
}
.ft-links li a:hover {
  color: var(--green);
}
.ft-legal {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  color: var(--border-hi);
  line-height: 2;
  letter-spacing: 1px;
  text-align: right;
}

/* ═══════════════════════════════════════════════════
   FORM SUCCESS / ERROR STATES
   ═══════════════════════════════════════════════════ */
.form-msg {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 10px 14px;
  margin-top: 8px;
  display: none;
}
.form-msg.success {
  display: block;
  color: var(--green);
  border: 1px solid rgba(29, 184, 122, 0.2);
  background: rgba(29, 184, 122, 0.06);
}
.form-msg.error {
  display: block;
  color: var(--red);
  border: 1px solid rgba(224, 85, 85, 0.2);
  background: rgba(224, 85, 85, 0.06);
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .int-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .int-cell:nth-child(2n) {
    border-right: none;
  }
  .int-cell:nth-child(n + 5) {
    border-bottom: 1px solid var(--border);
  }
  .int-cell:nth-child(n + 7) {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 60px 24px;
  }
  .hero-right {
    padding: 40px 24px;
    min-height: 420px;
  }
  .hero-stage {
    max-width: 100%;
    min-height: 400px;
  }
  .h-kanban {
    grid-template-columns: repeat(3, 1fr);
    min-height: 240px;
  }
  .h-kb-col {
    min-height: 240px;
  }
  .h-card {
    width: 150px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .features-section,
  .showcase-section,
  .how-section,
  .integrations-section,
  .pricing-section,
  .faq-section,
  .cta-section {
    padding: 72px 24px;
  }

  .features-header {
    grid-template-columns: 1fr;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .feat-col {
    border-right: none;
  }

  .showcase-inner,
  .showcase-inner.reverse {
    grid-template-columns: 1fr;
    gap: 44px;
    direction: ltr;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }
  .steps-row::before {
    display: none;
  }
  .step-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .step-card:last-child {
    border-bottom: none;
  }

  .int-grid {
    grid-template-columns: 1fr;
  }
  .int-cell {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .int-cell:last-child {
    border-bottom: none;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cta-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cta-section::before {
    display: none;
  }

  .form-inline {
    flex-direction: column;
  }
  .form-inline input[type="email"] {
    border-right: 1px solid var(--border-hi);
  }
  .form-inline button {
    width: 100%;
  }

  .mock-kanban {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }
  .ft-legal {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .hero-title {
    font-size: clamp(52px, 14vw, 80px);
  }
}
