/* ==========================================================================
   Neural Labs — design tokens
   ========================================================================== */
:root {
  --bg: #08090d;
  --bg-elevated: #0e1016;
  --surface: #12141c;
  --surface-border: rgba(255, 255, 255, 0.08);
  --surface-border-strong: rgba(255, 255, 255, 0.14);

  --text-primary: #f5f6fa;
  --text-secondary: rgba(245, 246, 250, 0.68);
  --text-tertiary: rgba(245, 246, 250, 0.44);

  /* Matched to the Neural Labs mark's own ribbon gradient — sky blue into
     indigo, out to violet — rather than an unrelated placeholder palette. */
  --accent-a: #35b6f5; /* sky blue, left of the mark */
  --accent-b: #9b7bf0; /* violet, right of the mark */
  --accent-c: #4b3bd6; /* deep indigo, used sparingly for depth */

  --grad-brand: linear-gradient(120deg, var(--accent-a), var(--accent-b));
  --grad-text: linear-gradient(100deg, #ffffff 0%, var(--accent-a) 55%, var(--accent-b) 100%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 60px -20px rgba(53, 182, 245, 0.25);
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 10px 30px -20px rgba(0, 0, 0, 0.6);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1180px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

::selection { background: rgba(53, 182, 245, 0.35); color: #fff; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.hide-mobile { display: inline; }

/* ==========================================================================
   Ambient background
   ========================================================================== */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.bg-glow--one {
  width: 640px;
  height: 640px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle at center, rgba(53, 182, 245, 0.55), transparent 70%);
}
.bg-glow--two {
  width: 700px;
  height: 700px;
  top: 20%;
  right: -260px;
  background: radial-gradient(circle at center, rgba(155, 123, 240, 0.35), transparent 70%);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 10%, transparent 70%);
}

main, header, footer { position: relative; z-index: 1; }

/* ==========================================================================
   Type helpers
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-b);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 12px rgba(155, 123, 240, 0.8);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-brand);
  color: #08090d;
  box-shadow: 0 10px 30px -8px rgba(53, 182, 245, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(53, 182, 245, 0.7);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--surface-border-strong);
  color: var(--text-primary);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 34px; font-size: 16px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--surface-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}
/* The full stacked lockup (mark + wordmark + tagline) scaled down to a
   single-line nav height, rather than a horizontal-only export — Neural
   Labs' logo files are the stacked version, and it reads fine at this
   size the way most stacked lockups do in a slim header. */
.brand__logo {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(53, 182, 245, 0.25));
}
.brand__logo--footer { height: 44px; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s var(--ease);
}
.nav a:hover { color: var(--text-primary); }
.nav__cta {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--surface-border-strong);
  color: var(--text-primary) !important;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 168px 0 110px;
  display: flex;
  align-items: center;
  min-height: 92vh;
}
.hero__inner {
  max-width: 720px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--surface-border);
  max-width: 620px;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* Floating device illustration */
.hero__device {
  position: absolute;
  right: max(24px, calc(50% - 590px + 40px));
  top: 50%;
  transform: translateY(-46%);
  width: 300px;
  display: none;
}
.device-frame {
  position: relative;
  border-radius: 40px;
  padding: 14px;
  background: linear-gradient(160deg, #1a1d29, #0c0d13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-glow);
  animation: float 7s ease-in-out infinite;
}
.device-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0c0d13;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.device-screen {
  position: relative;
  background: linear-gradient(175deg, #14151f, #0a0b10);
  border-radius: 28px;
  padding: 40px 16px 20px;
  height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.device-glow {
  position: absolute;
  inset: -40px;
  z-index: -1;
  background: radial-gradient(circle at 60% 40%, rgba(53, 182, 245, 0.35), transparent 65%);
  filter: blur(20px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* mock UI bits used in hero + showcase */
.mock-row--bar { display: flex; gap: 6px; padding: 0 2px; }
.mock-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-b); }
.mock-dot--muted { background: rgba(255, 255, 255, 0.14); }

.mock-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--surface-border);
}
.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex-shrink: 0;
}
.mock-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mock-line {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}
.mock-line--w40 { width: 40%; }
.mock-line--w50 { width: 50%; }
.mock-line--w60 { width: 60%; }
.mock-line--w70 { width: 70%; }
.mock-line--w80 { width: 80%; }

.mock-bubble {
  padding: 12px 14px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 80%;
}
.mock-bubble--ai {
  align-self: flex-start;
  background: rgba(53, 182, 245, 0.12);
  border: 1px solid rgba(53, 182, 245, 0.22);
  border-bottom-left-radius: 4px;
}
.mock-bubble--user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--surface-border);
  border-bottom-right-radius: 4px;
}
.mock-bubble .mock-line { background: rgba(255, 255, 255, 0.18); }
.mock-text {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-primary);
}
.mock-bubble--ai .mock-text { color: rgba(245, 246, 250, 0.92); }
.mock-bubble--user .mock-text { color: var(--text-secondary); }
.mock-bubble.small .mock-text { font-size: 11.5px; }

.mock-chart {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  padding: 0 2px;
}
.mock-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent-a), rgba(53, 182, 245, 0.1));
}
.mock-chart span:nth-child(1) { height: 40%; }
.mock-chart span:nth-child(2) { height: 65%; }
.mock-chart span:nth-child(3) { height: 30%; }
.mock-chart span:nth-child(4) { height: 80%; }
.mock-chart span:nth-child(5) { height: 55%; }
.mock-chart span:nth-child(6) { height: 90%; }
.mock-chart span:nth-child(7) { height: 45%; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.strip {
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 36px 0;
  background: rgba(255, 255, 255, 0.015);
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.strip__label {
  font-size: 13px;
  color: var(--text-tertiary);
  white-space: nowrap;
}
.strip__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--surface-border);
  background: var(--surface);
}

/* ==========================================================================
   Section shared
   ========================================================================== */
.section { padding: 130px 0; }
.section--work { padding-top: 110px; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
  max-width: 640px;
  margin-bottom: 20px;
}
.section__lede {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 64px;
}

/* ==========================================================================
   Services grid
   ========================================================================== */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--surface-border-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}
.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--accent-b);
  background: rgba(155, 123, 240, 0.08);
  border: 1px solid rgba(155, 123, 240, 0.18);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Showcase (work section)
   ========================================================================== */
.showcase { display: flex; flex-direction: column; gap: 100px; }
.showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase__row--reverse .showcase__text { order: 2; }
.showcase__row--reverse .showcase__visual { order: 1; }

.showcase__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-b);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.showcase__text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.showcase__text p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
}

.visual-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow-card);
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.mock-bubble.small { max-width: 70%; padding: 10px 12px; }
.mock-bubble.typing { display: flex; flex-direction: row; align-items: center; gap: 4px; padding: 12px 16px; }
.mock-dot-typing {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-a);
  opacity: 0.5;
  animation: typing 1.2s ease-in-out infinite;
}
.mock-dot-typing:nth-child(2) { animation-delay: 0.15s; }
.mock-dot-typing:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.visual-card--scan { align-items: center; }
.scan-frame {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  background: rgba(53, 182, 245, 0.05);
  overflow: hidden;
}
.scan-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent-b);
}
.scan-corner--tl { top: 10px; left: 10px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.scan-corner--tr { top: 10px; right: 10px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.scan-corner--bl { bottom: 10px; left: 10px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.scan-corner--br { bottom: 10px; right: 10px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }
.scan-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-b), transparent);
  box-shadow: 0 0 12px var(--accent-b);
  animation: scan 2.4s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { top: 14px; }
  50% { top: 166px; }
}

.mock-chart--large { height: 160px; }

/* ==========================================================================
   Process
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--surface-border);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process__step {
  background: var(--bg-elevated);
  padding: 36px 28px;
  transition: background 0.4s var(--ease);
}
.process__step:hover { background: var(--surface); }
.process__index {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-b);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.process__step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   About
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about__list { display: flex; flex-direction: column; gap: 24px; }
.about__list li {
  display: flex;
  gap: 16px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.about__list strong { color: var(--text-primary); font-weight: 600; }
.about__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(155, 123, 240, 0.12);
  border: 1px solid rgba(155, 123, 240, 0.3);
  color: var(--accent-b);
  font-size: 13px;
  margin-top: 2px;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta { padding: 60px 0 160px; }
.cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border-strong);
  background:
    radial-gradient(circle at 30% 0%, rgba(53, 182, 245, 0.16), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(155, 123, 240, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow-glow);
}
.cta .eyebrow { justify-content: center; }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.cta__lede {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid var(--surface-border);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: color 0.25s var(--ease);
}
.footer__nav a:hover { color: var(--text-primary); }
.footer__meta p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 1160px) {
  .hero__device { display: block; }
}

@media (max-width: 980px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .showcase__row,
  .showcase__row--reverse { grid-template-columns: 1fr; gap: 32px; }
  .showcase__row--reverse .showcase__text,
  .showcase__row--reverse .showcase__visual { order: unset; }
}

@media (max-width: 760px) {
  .hide-mobile { display: none; }

  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    margin-top: 12px;
    padding: 20px;
    gap: 18px;
    background: rgba(14, 16, 22, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--surface-border-strong);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
  }
  .nav.is-open .nav__cta { text-align: center; }

  .hero { padding: 132px 0 70px; min-height: unset; }
  .hero__stats { gap: 28px; }

  .section { padding: 88px 0; }
  .section__lede { margin-bottom: 44px; }

  .grid--3 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }

  .cta { padding: 20px 0 100px; }
  .cta__inner { padding: 48px 24px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .device-frame, .mock-dot-typing, .scan-line { animation: none; }
}
