/* ---------------------------------------------
   RESET & TOKENS
--------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:       #080B12;
  --bg-surface:    #0E1320;
  --bg-elevated:   #141926;
  --bg-card:       #111827;
  --border:        rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.13);

  --accent:        #6366F1;
  --accent-2:      #A5B4FC;
  --accent-3:      #4338CA;
  --accent-dim:    rgba(99,102,241,0.15);
  --accent-glow:   rgba(99,102,241,0.35);

  --text-primary:  #F1F5F9;
  --text-secondary:#94A3B8;
  --text-dim:      #475569;
  --text-accent:   #6366F1;

  --success:       #10B981;
  --success-dim:   rgba(16,185,129,0.12);
  --warn:          #F59E0B;

  --font-body:     'Inter', system-ui, sans-serif;
  --font-display:  'Space Grotesk', system-ui, sans-serif;

  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --max-width:     1160px;
  --nav-h:         72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle, rgba(255,255,255,0.88) 0 12%, rgba(251,191,36,0.72) 24%, rgba(249,115,22,0.28) 52%, transparent 72%);
  box-shadow: 0 0 26px rgba(245,158,11,0.65), 0 0 70px rgba(249,115,22,0.28);
  mix-blend-mode: screen;
  transition: opacity 0.22s ease, width 0.18s ease, height 0.18s ease;
}

.cursor-glow.is-active {
  opacity: 0.86;
}

.cursor-glow.is-pressed {
  width: 42px;
  height: 42px;
}

/* ---------------------------------------------
   UTILITIES
--------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--accent); }
.text-dim    { color: var(--text-secondary); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ---------------------------------------------
   BUTTONS
--------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #04110A;
  font-weight: 700;
}
.btn-primary:hover {
  background: #5254CC;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-nav {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(99,102,241,0.3);
  padding: clamp(8px, 1.2vw, 10px) clamp(12px, 2vw, 20px);
  font-size: clamp(12px, 1.15vw, 14px);
  flex-shrink: 0;
}
.btn-nav:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 16px 32px; font-size: 16px; font-weight: 600; }

/* ---------------------------------------------
   SECTION HEADERS
--------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(99,102,241,0.25);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------------------------------------------
   NAV
--------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(8,11,18,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-primary);
}
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ---------------------------------------------
   HERO
--------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(99,102,241,0.18), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(165,180,252,0.10), transparent 34%),
    linear-gradient(135deg, #080B12 0%, #0D1220 42%, #111827 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.kalala-inspired-bg {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(165,180,252,0.20), transparent 28%),
    radial-gradient(circle at 76% 8%, rgba(99,102,241,0.16), transparent 26%),
    radial-gradient(circle at 52% 82%, rgba(30,41,59,0.45), transparent 42%);
}

.mesh-grain {
  position: absolute;
  inset: -20%;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 90%, rgba(255,255,255,0.04) 0 1px, transparent 1px);
  background-size: 38px 38px, 52px 52px, 71px 71px;
  animation: grainDrift 34s linear infinite;
}

.mesh-field {
  position: absolute;
  border-radius: 999px;
  filter: blur(54px);
  opacity: 0.52;
  mix-blend-mode: screen;
  will-change: transform;
}

.mesh-field-1 {
  width: 72vw;
  height: 52vw;
  min-width: 680px;
  min-height: 440px;
  top: -22%;
  left: -8%;
  background:
    radial-gradient(ellipse at 28% 34%, rgba(224,231,255,0.42), transparent 31%),
    radial-gradient(ellipse at 62% 42%, rgba(99,102,241,0.34), transparent 37%),
    radial-gradient(ellipse at 44% 72%, rgba(49,46,129,0.50), transparent 40%);
  animation: meshFloatA 28s ease-in-out infinite alternate;
}

.mesh-field-2 {
  width: 64vw;
  height: 48vw;
  min-width: 600px;
  min-height: 400px;
  right: -18%;
  top: 6%;
  background:
    radial-gradient(ellipse at 30% 42%, rgba(79,70,229,0.42), transparent 35%),
    radial-gradient(ellipse at 64% 56%, rgba(165,180,252,0.20), transparent 34%),
    radial-gradient(ellipse at 48% 24%, rgba(61,113,247,0.10), transparent 35%);
  animation: meshFloatB 36s ease-in-out infinite alternate;
}

.mesh-field-3 {
  width: 58vw;
  height: 34vw;
  min-width: 540px;
  min-height: 280px;
  left: 22%;
  bottom: -16%;
  opacity: 0.36;
  background:
    radial-gradient(ellipse at 30% 44%, rgba(165,180,252,0.24), transparent 36%),
    radial-gradient(ellipse at 72% 52%, rgba(30,41,59,0.60), transparent 45%);
  animation: meshFloatC 42s ease-in-out infinite alternate;
}

.mesh-ribbon {
  position: absolute;
  height: 36vh;
  width: 110vw;
  left: -5vw;
  opacity: 0.22;
  filter: blur(34px);
  background:
    linear-gradient(100deg, transparent 0%, rgba(224,231,255,0.00) 20%, rgba(129,140,248,0.38) 46%, rgba(67,56,202,0.20) 61%, transparent 84%);
  transform-origin: center;
  will-change: transform, opacity;
}

.mesh-ribbon-1 {
  top: 8%;
  transform: rotate(-8deg);
  animation: ribbonGlide 31s ease-in-out infinite alternate;
}

.mesh-ribbon-2 {
  bottom: 4%;
  opacity: 0.14;
  transform: rotate(9deg);
  animation: ribbonGlideReverse 38s ease-in-out infinite alternate;
}

.mesh-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 34%, transparent 0%, transparent 42%, rgba(8,11,18,0.30) 74%, rgba(8,11,18,0.82) 100%),
    linear-gradient(90deg, rgba(8,11,18,0.74), transparent 24%, transparent 70%, rgba(8,11,18,0.58));
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(99,102,241,0.28);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-actions .btn-primary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; gap: 4px; }
.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}
.proof-label {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 185px;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border-bright);
  flex-shrink: 0;
}

.hero-evidence {
  margin-top: 24px;
  max-width: 620px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.hero-intelligence {
  position: relative;
}

.intel-panel {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(180deg, rgba(14,19,32,0.88), rgba(8,11,18,0.84)),
    radial-gradient(circle at 50% 26%, rgba(99,102,241,0.16), transparent 44%);
  overflow: hidden;
}
.intel-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(165,180,252,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165,180,252,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 74%);
}
.intel-panel::after {
  content: '';
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 120deg, transparent, rgba(99,102,241,0.12), rgba(88,166,255,0.08), transparent 36%);
  animation: slowSpin 34s linear infinite;
}

.intel-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: var(--text-secondary);
  font-size: 13px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(99,102,241,0.85);
}
.intel-status {
  margin-left: auto;
  color: var(--accent-2);
  font-size: 12px;
}

.process-visual {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
}

.process-column {
  position: relative;
  min-height: 392px;
  border-radius: 22px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(8,11,18,0.54);
  overflow: hidden;
}

.process-column::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

.process-column-manual {
  border-color: rgba(248,113,113,0.18);
}

.process-column-ai {
  border-color: rgba(99,102,241,0.28);
  background:
    radial-gradient(circle at 62% 12%, rgba(99,102,241,0.18), transparent 34%),
    rgba(8,11,18,0.58);
}

.process-heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.process-heading span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-heading small {
  color: var(--text-secondary);
  font-size: 12px;
}

.process-column-manual .process-heading span {
  color: #FCA5A5;
}

.process-column-ai .process-heading span {
  color: var(--accent-2);
}

.process-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
}

.process-flow::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.28), transparent);
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-areas:
    "icon title"
    "icon subtitle";
  column-gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15,23,42,0.76);
}

.flow-step strong {
  grid-area: title;
  color: var(--text-primary);
  font-size: 12.5px;
  line-height: 1.25;
}

.flow-step small {
  grid-area: subtitle;
  color: var(--text-dim);
  font-size: 11px;
  line-height: 1.2;
}

.step-icon {
  grid-area: icon;
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.person-icon::before,
.document-icon::before,
.stack-icon::before,
.clock-icon::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.72);
}

.person-icon::before {
  border-radius: 50%;
  width: 13px;
  height: 13px;
  box-shadow: 0 12px 0 -4px rgba(255,255,255,0.72);
}

.document-icon::before {
  border-radius: 3px;
  border-right-color: rgba(255,255,255,0.32);
}

.stack-icon::before {
  box-shadow: 5px 5px 0 rgba(255,255,255,0.14), -5px -5px 0 rgba(255,255,255,0.10);
}

.clock-icon::before {
  border-radius: 50%;
}

.ai-step {
  border-color: rgba(99,102,241,0.24);
  background:
    radial-gradient(circle at 90% 10%, rgba(99,102,241,0.18), transparent 28%),
    rgba(15,23,42,0.82);
}

.ai-icon,
.route-icon,
.ops-icon,
.forecast-icon {
  color: #E0E7FF;
  background: rgba(99,102,241,0.26);
  border-color: rgba(165,180,252,0.34);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(99,102,241,0.20);
}

.process-arrow {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.process-arrow-slow {
  color: #FEE2E2;
  background: linear-gradient(90deg, rgba(127,29,29,0.24), rgba(239,68,68,0.36));
}

.process-arrow-fast {
  color: #E0E7FF;
  background: linear-gradient(90deg, rgba(67,56,202,0.28), rgba(99,102,241,0.44));
}

.ai-transfer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}

.ai-transfer::before,
.ai-transfer::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.85), transparent);
}

.ai-transfer::before {
  right: calc(100% - 8px);
}

.ai-transfer::after {
  left: calc(100% - 8px);
}

.transfer-core {
  width: 104px;
  height: 104px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.26), transparent 25%),
    linear-gradient(145deg, #FBBF24, #F97316 58%, #7C2D12);
  color: #111827;
  border: 1px solid rgba(254,215,170,0.74);
  box-shadow: 0 0 0 12px rgba(245,158,11,0.08), 0 0 54px rgba(245,158,11,0.28);
  animation: warmPulse 5s ease-in-out infinite;
}

.transfer-core span {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.transfer-core small {
  margin-top: 4px;
  max-width: 72px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.ai-transfer p {
  color: #FED7AA;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.workflow-outcomes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 20px 20px;
}

.workflow-outcomes div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.workflow-outcomes span,
.workflow-outcomes strong {
  display: block;
}

.workflow-outcomes span {
  color: var(--text-dim);
  font-size: 11px;
  margin-bottom: 3px;
}

.workflow-outcomes strong {
  color: var(--accent-2);
  font-size: 12px;
  line-height: 1.25;
}

@keyframes grainDrift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-80px, 60px, 0); }
}
@keyframes meshFloatA {
  0% { transform: translate3d(-3%, -2%, 0) rotate(-4deg) scale(1); }
  50% { transform: translate3d(4%, 3%, 0) rotate(2deg) scale(1.05); }
  100% { transform: translate3d(1%, 6%, 0) rotate(5deg) scale(1.02); }
}
@keyframes meshFloatB {
  0% { transform: translate3d(4%, -3%, 0) rotate(6deg) scale(1); }
  50% { transform: translate3d(-5%, 4%, 0) rotate(-3deg) scale(1.06); }
  100% { transform: translate3d(-2%, -1%, 0) rotate(-7deg) scale(1.02); }
}
@keyframes meshFloatC {
  0% { transform: translate3d(-2%, 6%, 0) rotate(2deg) scale(1); }
  100% { transform: translate3d(4%, -4%, 0) rotate(-3deg) scale(1.07); }
}
@keyframes ribbonGlide {
  0% { transform: translate3d(-7%, -2%, 0) rotate(-9deg) scaleY(0.85); opacity: 0.12; }
  50% { transform: translate3d(4%, 5%, 0) rotate(-4deg) scaleY(1.08); opacity: 0.26; }
  100% { transform: translate3d(8%, -3%, 0) rotate(-11deg) scaleY(0.96); opacity: 0.18; }
}
@keyframes ribbonGlideReverse {
  0% { transform: translate3d(8%, 2%, 0) rotate(9deg) scaleY(0.92); opacity: 0.10; }
  50% { transform: translate3d(-3%, -5%, 0) rotate(4deg) scaleY(1.04); opacity: 0.18; }
  100% { transform: translate3d(-8%, 2%, 0) rotate(12deg) scaleY(0.94); opacity: 0.12; }
}
@keyframes slowSpin {
  to { transform: rotate(360deg); }
}
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 12px rgba(99,102,241,0.06), 0 0 42px rgba(99,102,241,0.18); }
  50% { box-shadow: 0 0 0 22px rgba(99,102,241,0.10), 0 0 70px rgba(99,102,241,0.28); }
}
@keyframes warmPulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(245,158,11,0.07), 0 0 44px rgba(245,158,11,0.22); }
  50% { box-shadow: 0 0 0 18px rgba(245,158,11,0.12), 0 0 74px rgba(249,115,22,0.36); }
}
@keyframes nodeFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

/* ---------------------------------------------
   GAP SECTION
--------------------------------------------- */
.gap-section {
  padding: 0 0 80px;
}
.gap-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}
.gap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 70%);
}
.gap-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.gap-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}
.gap-right p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.gap-right p:last-child { margin-bottom: 0; }

/* ---------------------------------------------
   PAIN POINTS
--------------------------------------------- */
.pain {
  padding: 96px 0;
  background: var(--bg-surface);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pain-card {
  background: var(--bg-card);
  padding: 32px;
  transition: background 0.2s ease;
}
.pain-card:hover { background: var(--bg-elevated); }
.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.35;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pain-stat {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(99,102,241,0.2);
}

/* ---------------------------------------------
   SERVICES
--------------------------------------------- */
.services {
  padding: 96px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}
.service-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.service-card-featured {
  grid-column: span 2;
  background: var(--bg-surface);
  border-color: rgba(99,102,241,0.25);
}
.service-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at 0% 0%, rgba(99,102,241,0.08), transparent 60%);
  pointer-events: none;
}
.service-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.service-result {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: var(--success-dim);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(16,185,129,0.2);
  display: inline-block;
}

/* Vendor bar */
.vendor-bar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.vendor-label {
  font-size: 13px;
  color: var(--text-dim);
  flex-shrink: 0;
  max-width: 200px;
  line-height: 1.4;
  font-style: italic;
}
.vendor-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vendor-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
}

/* ---------------------------------------------
   PROCESS
--------------------------------------------- */
.process {
  padding: 96px 0;
  background: var(--bg-surface);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}
.process-step {
  padding: 0 24px;
  position: relative;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { padding-right: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(99,102,241,0.12);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
}
.step-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.step-deliverables {
  list-style: none;
}
.step-deliverables li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.step-deliverables li:last-child { border-bottom: none; }
.step-deliverables li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
  top: 7px;
}
.step-connector {
  position: absolute;
  top: 30px;
  right: -1px;
  width: 1px;
  height: 60px;
  background: var(--border-bright);
}

.process-guarantee {
  background: var(--bg-card);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}
.guarantee-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(99,102,241,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.guarantee-text h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.guarantee-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------------------------------------------
   RESULTS
--------------------------------------------- */
.results {
  padding: 96px 0;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s ease;
}
.result-card:hover { border-color: var(--border-bright); }
.result-industry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.result-metric-row {
  display: flex;
  gap: 24px;
}
.result-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.metric-label {
  font-size: 12px;
  color: var(--text-secondary);
}
.result-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.result-challenge p, .result-solution p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.result-quote {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.65;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  margin-top: auto;
}
.result-author {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

/* Industries */
.industries {
  text-align: center;
}
.industries h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.industry-tag {
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  transition: all 0.15s ease;
  cursor: default;
}
.industry-tag:hover {
  color: var(--text-primary);
  border-color: var(--border-bright);
}

/* ---------------------------------------------
   PRICING
--------------------------------------------- */
.pricing {
  padding: 96px 0;
  background: var(--bg-surface);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease;
}
.pricing-card:hover { border-color: var(--border-bright); }
.pricing-card-featured {
  border-color: rgba(99,102,241,0.35);
}
.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(99,102,241,0.3);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.pricing-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-freq {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
}
.pricing-sub {
  font-size: 12px;
  color: var(--text-dim);
}
.pricing-body { padding: 24px; }
.pricing-for {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
  top: 8px;
}
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}
.pricing-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------------------------------------
   WHY US
--------------------------------------------- */
.why { padding: 96px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.2s ease;
}
.why-card:hover { background: var(--bg-elevated); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------------------------------------------
   FAQ
--------------------------------------------- */
.faq {
  padding: 96px 0;
  background: var(--bg-surface);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.faq-col { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.4;
  transition: color 0.15s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-dim);
  transition: transform 0.25s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-chevron svg { width: 100%; height: 100%; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------------------------------------------
   AUDIT / CTA SECTION
--------------------------------------------- */
.audit {
  padding: 96px 0;
}
.audit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.audit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(99,102,241,0.2) 100%);
}
.audit-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(99,102,241,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.audit-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.audit-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.audit-promises {
  list-style: none;
}
.audit-promises li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.audit-promises li:last-child { border-bottom: none; }
.audit-promises li::before {
  content: '->';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
  top: 9px;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-base);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 4px;
}
.form-note.success {
  color: var(--success);
}
.form-note.error {
  color: #FCA5A5;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------------------------------------------
   FOOTER
--------------------------------------------- */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: 16px;
}
.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--text-secondary); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-legal a:hover { color: var(--text-secondary); }

/* ---------------------------------------------
   RESPONSIVE
--------------------------------------------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-content { max-width: 820px; }
  .hero-intelligence { max-width: 760px; width: 100%; }
  .process-visual { grid-template-columns: 1fr; }
  .process-column { min-height: auto; }
  .ai-transfer { min-height: 132px; }
  .ai-transfer::before,
  .ai-transfer::after {
    left: 50%;
    right: auto;
    width: 2px;
    height: 34px;
    background: linear-gradient(180deg, transparent, rgba(245,158,11,0.85), transparent);
    transform: translateX(-50%);
  }
  .ai-transfer::before { top: -10px; }
  .ai-transfer::after { top: auto; bottom: -10px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .step-connector { display: none; }
  .process-step { padding: 0; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { gap: 12px; padding: 0 14px; }
  .btn-nav { margin-left: auto; }
  .nav-toggle { margin-left: 0; }

  .hero { padding-top: calc(var(--nav-h) + 32px); }
  .hero-heading { font-size: clamp(32px, 10vw, 52px); }
  .hero-proof { flex-direction: column; gap: 20px; }
  .proof-divider { display: none; }
  .intel-panel { min-height: 500px; border-radius: 24px; }
  .process-visual { padding: 16px; gap: 12px; }
  .workflow-outcomes { grid-template-columns: 1fr; padding: 0 16px 16px; }

  .gap-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .audit-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-group { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .logo { gap: 7px; }
  .logo-mark { width: 32px; height: 32px; border-radius: 10px; }
  .logo-text { font-size: 15px; }
  .btn-nav { padding: 8px 10px; font-size: 11px; }
  .process-column { padding: 13px; border-radius: 18px; }
  .flow-step { grid-template-columns: 36px 1fr; padding: 9px; }
  .step-icon { width: 30px; height: 30px; border-radius: 10px; }
  .transfer-core { width: 92px; height: 92px; border-radius: 24px; }
  .transfer-core span { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-links-group { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 12px; }
}

@media (max-width: 360px) {
  .logo-text { display: none; }
  .btn-nav { font-size: 10.5px; padding: 8px 9px; }
}

@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* ---------------------------------------------
   MOBILE NAV OPEN STATE
--------------------------------------------- */
.nav.mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,11,18,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  gap: 4px;
  border-bottom: 1px solid var(--border);
}
.nav.mobile-open .btn-nav {
  display: inline-flex;
  margin-left: auto;
}
