*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --orange:     #FF5C1A;
  --orange-dim: #c44010;
  --red:        #ff2a2a;
  --green:      #00e887;
  --yellow:     #ffc107;
  --dark:       #04040a;
  --dark2:      #08080f;
  --dark3:      #0e0e1a;
  --dark4:      #141424;
  --panel:      rgba(14,14,26,0.92);
  --white:      #ffffff;
  --offwhite:   #e8e8f0;
  --gray:       #6b6b88;
  --gray2:      #3a3a55;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed; z-index: 9999;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,92,26,0.4);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.25s, height 0.25s, border-color 0.25s;
}
body:hover #cursor { width: 12px; }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  background: linear-gradient(to bottom, rgba(4,4,10,0.95) 0%, rgba(4,4,10,0) 100%);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(4,4,10,0.97); border-bottom: 1px solid rgba(255,92,26,0.1); }
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  flex-shrink: 0;
  animation: logoBreath 4s ease-in-out infinite;
}
@keyframes logoBreath {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.95); }
}
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 10px 24px; border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dim) !important; transform: translateY(-1px) !important; }

/* ═══════════════════════════════════════════════
   SECTION 1 — THE COUNTER HERO
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  padding: 120px 56px 80px;
}

/* Animated hex grid background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hex-grid {
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(circle, rgba(255,92,26,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: hexDrift 30s linear infinite;
}
@keyframes hexDrift {
  0% { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(48px, 48px) rotate(0.5deg); }
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--dark) 80%);
}
.hero-scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
}

/* Floating particles */
.particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--orange);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) translateX(var(--drift)); opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 1000px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 12px;
  animation: fadeSlideUp 1s 0.2s both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--orange); opacity: 0.5;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeSlideUp 1s 0.35s both;
}
.hero-headline .line2 {
  display: block;
  color: var(--orange);
  position: relative;
}
.hero-headline .line3 {
  display: block;
  color: rgba(255,255,255,0.35);
  font-size: clamp(36px, 5vw, 66px);
}

/* THE COUNTER */
.counter-wrapper {
  margin: 44px auto;
  max-width: 800px;
  animation: fadeSlideUp 1s 0.5s both;
}
.counter-label-top {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.counter-box {
  background: rgba(8,8,15,0.9);
  border: 1px solid rgba(255,42,42,0.25);
  border-radius: 4px;
  padding: 28px 40px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,42,42,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}
.counter-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: scanLine 3s linear infinite;
}
@keyframes scanLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.counter-live {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 8px;
}
.counter-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseDot 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--red);
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--red); }
  50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 4px var(--red); }
}
.counter-live-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
}
.counter-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 0 40px rgba(255,42,42,0.3);
  font-variant-numeric: tabular-nums;
  transition: color 0.1s;
}
.counter-number .currency { color: var(--red); }
.counter-sub {
  font-size: 14px; font-weight: 300;
  color: var(--gray);
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.counter-sub strong { color: rgba(255,255,255,0.7); font-weight: 500; }

.counter-stats-row {
  display: flex; justify-content: center; gap: 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}
.counter-stat {
  flex: 1; text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.counter-stat:last-child { border-right: none; }
.counter-stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--orange);
  line-height: 1;
}
.counter-stat-l {
  font-size: 11px; color: var(--gray);
  letter-spacing: 0.06em; margin-top: 4px;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 580px; margin: 0 auto 40px;
  line-height: 1.65;
  animation: fadeSlideUp 1s 0.65s both;
}
.hero-sub em {
  font-style: italic; color: rgba(255,255,255,0.8);
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  animation: fadeSlideUp 1s 0.8s both;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn-hero:hover { background: var(--orange-dim); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(255,92,26,0.4); }
.btn-hero:hover::after { transform: translateX(100%); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--offwhite);
  padding: 16px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: rgba(255,92,26,0.5); color: var(--white); background: rgba(255,92,26,0.07); }

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeSlideUp 1s 1.2s both;
  z-index: 2;
}
.scroll-hint-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.scroll-arrow {
  width: 20px; height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  position: relative;
}
.scroll-arrow::after {
  content: '';
  position: absolute; top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollBob 1.8s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { top: 5px; opacity: 1; }
  50% { top: 12px; opacity: 0.3; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   THE JOURNEY — Scroll-Driven Animated Sections
   ═══════════════════════════════════════════════ */
.journey {
  position: relative;
}

/* Vertical timeline line */
.journey-spine {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gray2) 10%, var(--gray2) 90%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.journey-spine-fill {
  position: absolute; left: 50%; top: 0;
  width: 1px; height: 0;
  background: var(--orange);
  transform: translateX(-50%);
  transition: height 0.1s linear;
}

/* Each journey frame */
.journey-frame {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 56px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.journey-frame.visible {
  opacity: 1;
  transform: translateY(0);
}

.frame-node {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gray2);
  background: var(--dark);
  transition: all 0.5s;
  z-index: 10;
}
.journey-frame.visible .frame-node {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255,92,26,0.6);
}

/* Frame 1 — The Problem */
#frame-1 { background: var(--dark2); }
#frame-1 .frame-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.frame-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.frame-tag::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px; background: var(--orange);
}
.frame-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: var(--white);
}
.frame-body {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 440px;
}
.frame-body strong { color: rgba(255,255,255,0.85); font-weight: 500; }

/* Chaos visualization */
.viz-chaos {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
}
.chaos-node {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: chaosWander var(--dur) ease-in-out infinite alternate;
}
@keyframes chaosWander {
  0% { transform: translate(var(--x1), var(--y1)); opacity: 0.4; }
  100% { transform: translate(var(--x2), var(--y2)); opacity: 0.9; }
}
.chaos-label {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,42,42,0.7);
  white-space: nowrap;
}
.chaos-line {
  position: absolute;
  height: 1px;
  background: rgba(255,42,42,0.2);
  transform-origin: left center;
  animation: chaosLineFlicker 2s ease-in-out infinite alternate;
}
@keyframes chaosLineFlicker {
  0%,100% { opacity: 0.15; }
  50% { opacity: 0.45; }
}
.chaos-title {
  position: absolute; bottom: 0; left: 0; right: 0;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); opacity: 0.7;
}

/* Frame 2 — The Discovery */
#frame-2 { background: var(--dark3); }
#frame-2 .frame-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* Infrastructure scanner viz */
.viz-scanner {
  background: rgba(8,8,15,0.9);
  border: 1px solid rgba(255,92,26,0.15);
  border-radius: 6px;
  padding: 28px;
  font-family: 'Barlow Condensed', sans-serif;
}
.scanner-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.scanner-title { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.scanner-status { font-size: 11px; color: var(--gray); letter-spacing: 0.08em; margin-left: auto; }
.scan-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: scanReveal 0.5s both;
}
.scan-item:last-child { border-bottom: none; }
@keyframes scanReveal {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.scan-bar-bg {
  flex: 1; height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
}
.scan-bar {
  height: 100%;
  border-radius: 2px;
  animation: scanFill 1.5s ease-out both;
}
@keyframes scanFill {
  from { width: 0; }
}
.scan-label { font-size: 12px; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); min-width: 160px; }
.scan-value { font-size: 12px; font-weight: 600; min-width: 48px; text-align: right; }
.status-red { color: var(--red); }
.status-yellow { color: var(--yellow); }
.status-green { color: var(--green); }
.bar-red { background: var(--red); width: 22%; }
.bar-yellow { background: var(--yellow); width: 55%; }
.bar-green { background: var(--green); width: 88%; }
.bar-red2 { background: var(--red); width: 15%; }
.bar-yellow2 { background: var(--yellow); width: 67%; }
.scanner-footer {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: rgba(255,42,42,0.8);
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}

/* Frame 3 — The Build */
#frame-3 { background: var(--dark2); }
#frame-3 .frame-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.viz-build {
  position: relative; width: 100%; aspect-ratio: 1; max-width: 420px;
}
.build-layer {
  position: absolute;
  border: 1px solid rgba(255,92,26,0.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: scaleX(0.6);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}
.journey-frame.visible .build-layer { opacity: 1; transform: scaleX(1); }
.layer-1 { bottom: 4%; left: 0; right: 0; height: 18%; background: rgba(255,92,26,0.06); transition-delay: 0.1s; }
.layer-2 { bottom: 24%; left: 5%; right: 5%; height: 18%; background: rgba(255,92,26,0.08); transition-delay: 0.25s; }
.layer-3 { bottom: 44%; left: 10%; right: 10%; height: 18%; background: rgba(255,92,26,0.1); transition-delay: 0.4s; }
.layer-4 { bottom: 64%; left: 15%; right: 15%; height: 18%; background: rgba(255,92,26,0.13); transition-delay: 0.55s; }
.layer-5 { bottom: 84%; left: 20%; right: 20%; height: 14%; background: rgba(255,92,26,0.18); transition-delay: 0.7s; border-color: rgba(255,92,26,0.5); color: var(--white); }

/* Frame 4 — The Result */
#frame-4 { background: linear-gradient(135deg, var(--dark3) 0%, rgba(0,20,10,0.5) 100%); }
#frame-4 .frame-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.viz-results {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.result-card {
  background: rgba(0,232,135,0.05);
  border: 1px solid rgba(0,232,135,0.15);
  border-radius: 6px;
  padding: 24px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.journey-frame.visible .result-card { opacity: 1; transform: translateY(0); }
.result-card:nth-child(1) { transition-delay: 0.1s; }
.result-card:nth-child(2) { transition-delay: 0.2s; }
.result-card:nth-child(3) { transition-delay: 0.3s; }
.result-card:nth-child(4) { transition-delay: 0.4s; }
.result-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px; color: var(--green);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0,232,135,0.4);
}
.result-label {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-top: 6px; line-height: 1.5;
}

/* Frame 5 — The CTA */
#frame-5 {
  background: var(--dark);
  min-height: 80vh;
}
#frame-5 .frame-inner {
  max-width: 800px; margin: 0 auto; width: 100%;
  text-align: center;
}
#frame-5 .frame-title {
  font-size: clamp(48px, 7vw, 88px);
  color: var(--white);
}
#frame-5 .frame-title .accent { color: var(--orange); }
#frame-5 .frame-body { margin: 0 auto 48px; text-align: center; max-width: 520px; }

.cta-form-mini {
  background: rgba(14,14,26,0.9);
  border: 1px solid rgba(255,92,26,0.2);
  border-radius: 4px;
  padding: 40px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray);
}
.form-group input, .form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 11px 14px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus {
  border-color: rgba(255,92,26,0.4);
}
.form-group select option { background: var(--dark3); }
.form-full { grid-column: 1/-1; }
.btn-submit {
  width: 100%;
  background: var(--orange);
  border: none; cursor: pointer;
  color: var(--white);
  padding: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.1em;
  border-radius: 2px;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--orange-dim); transform: translateY(-1px); }
.form-privacy {
  font-size: 11px; color: rgba(255,255,255,0.2);
  text-align: center; margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
footer {
  background: #03030a;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-linkedin {
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,102,194,0.12);
  border: 1px solid rgba(10,102,194,0.25);
  border-radius: 2px; padding: 8px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #7ab8f5; text-decoration: none;
  transition: background 0.2s;
}
.footer-linkedin:hover { background: rgba(10,102,194,0.22); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 80px; }
  .counter-stats-row { flex-wrap: wrap; }
  .journey-spine, .journey-spine-fill { display: none; }
  .frame-node { display: none; }
  .journey-frame { padding: 80px 24px; }
  .journey-frame .frame-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
}

/* Progress bar */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 500;
  height: 2px;
  background: var(--orange);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--orange);
}

/* ── MOBILE NAV DRAWER ── */
.nav-mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 1px;
  transition: all 0.25s;
}
.mobile-nav-drawer {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 150;
  background: rgba(4,4,10,0.98);
  border-bottom: 1px solid rgba(255,92,26,0.15);
  padding: 24px 24px 32px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.mobile-nav-drawer.open {
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-nav-drawer a:hover { color: var(--white); }
.mobile-nav-drawer .mobile-cta {
  color: var(--orange); border-bottom: none;
  margin-top: 12px; font-size: 18px;
}

/* ── FORM SUCCESS STATE ── */
.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(0,232,135,0.1);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--green);
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 12px;
}
.form-success p { font-size: 15px; color: var(--gray); line-height: 1.65; }

/* ── FORM MESSAGES ── */
#form-message { margin: 12px 0; font-size: 13px; }
.form-error { color: var(--red); }
.form-success-msg { color: var(--green); }

/* ── FRAME INNER VARIANTS ── */
.frame-inner--reverse { direction: rtl; }
.frame-inner--reverse > * { direction: ltr; }
.frame-inner--center {
  max-width: 700px; margin: 0 auto; width: 100%;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.frame-title--center { text-align: center; }
.frame-title--center .accent { color: var(--orange); }
.frame-body--center { text-align: center; margin: 0 auto 44px; }
.journey-frame--center { min-height: 80vh; }
.viz-wrapper { display: flex; justify-content: center; align-items: center; }
.req { color: var(--orange); }

/* ── TEXTAREA ── */
textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px; padding: 11px 14px;
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 14px; outline: none; resize: vertical;
  min-height: 90px; width: 100%;
  transition: border-color 0.2s;
}
textarea:focus { border-color: rgba(255,92,26,0.4); }

/* ── MOBILE RESPONSIVE (additions to main CSS) ── */
@media (max-width: 900px) {
  .nav-mobile-toggle { display: flex; }
  .frame-inner--reverse { direction: ltr; }
}
