@layer reset, base, components, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, blockquote { margin: 0; }
  img { display: block; max-width: 100%; }
  a { color: inherit; }
}

@layer base {
  :root {
    --bg: #050914;
    --bg-soft: #091121;
    --panel: #0d1729;
    --panel-high: #111e34;
    --line: rgba(166, 191, 230, .14);
    --line-strong: rgba(81, 197, 255, .30);
    --text: #f5f8ff;
    --muted: #9aaac0;
    --muted-light: #c2cedd;
    --cyan: #31d7ff;
    --blue: #2877ff;
    --violet: #7d6cff;
    --green: #5ae6b0;
    --danger: #ff839d;
    --shadow: 0 32px 90px rgba(0, 0, 0, .32);
  }

  body {
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .24;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000 0, transparent 68%);
  }

  .shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
  .section { position: relative; padding: 120px 0; }
  .section[id] { scroll-margin-top: 82px; }
  h1, h2, h3, .brand { font-family: "Sora", sans-serif; }
  h2 { font-size: clamp(2.25rem, 4.6vw, 4.5rem); line-height: 1.02; letter-spacing: -.055em; }
  p { color: var(--muted); line-height: 1.75; }
  .skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; background: var(--text); color: var(--bg); padding: 12px 16px; border-radius: 10px; text-decoration: none; font-weight: 700; }
  .skip-link:focus { top: 16px; }
}

@layer components {
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(5, 9, 20, .76);
    backdrop-filter: blur(20px);
  }

  .nav-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
  .brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-size: 1.17rem; font-weight: 700; letter-spacing: -.04em; }
  .brand img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 0 14px rgba(49, 215, 255, .25)); }
  .brand-dot { color: var(--cyan); }
  .nav-links, .nav-actions { display: flex; align-items: center; gap: 4px; }
  .nav-links a, .text-link { padding: 10px 12px; color: var(--muted-light); text-decoration: none; font-size: .9rem; transition: color .2s ease; }
  .nav-links a:hover, .text-link:hover { color: var(--text); }

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 21px;
    border: 1px solid rgba(91, 213, 255, .45);
    border-radius: 13px;
    color: #02101c;
    background: linear-gradient(120deg, var(--cyan), #6aa0ff);
    box-shadow: 0 14px 40px rgba(37, 137, 255, .24), inset 0 1px rgba(255,255,255,.55);
    text-decoration: none;
    font-weight: 800;
    font-size: .92rem;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  }
  .button:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 18px 50px rgba(37, 137, 255, .34), inset 0 1px rgba(255,255,255,.55); }
  .button:focus-visible, .nav-links a:focus-visible, .text-link:focus-visible { outline: 3px solid rgba(49, 215, 255, .7); outline-offset: 3px; }
  .button-small { min-height: 42px; padding-inline: 16px; }
  .button-ghost { color: var(--text); background: rgba(255,255,255,.035); border-color: var(--line); box-shadow: none; }
  .button-ghost:hover { background: rgba(255,255,255,.07); box-shadow: none; }

  .hero { position: relative; min-height: 100vh; padding: 154px 0 34px; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--line); overflow: hidden; }
  .hero::before { content: ""; position: absolute; width: 760px; height: 760px; border-radius: 50%; left: -430px; top: -250px; background: rgba(40, 119, 255, .13); filter: blur(90px); }
  .hero-glow { position: absolute; width: 760px; height: 640px; right: -180px; top: 30px; background: radial-gradient(circle, rgba(49, 215, 255, .18), rgba(40, 119, 255, .08) 42%, transparent 70%); filter: blur(16px); }
  .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 58px; align-items: center; }
  .eyebrow { display: flex; align-items: center; gap: 10px; color: var(--cyan); text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; font-weight: 800; }
  .eyebrow span { width: 26px; height: 1px; background: currentColor; box-shadow: 0 0 10px currentColor; }
  .hero h1 { max-width: 720px; margin-top: 22px; font-size: clamp(3.35rem, 5.8vw, 5.75rem); line-height: 1.02; letter-spacing: -.064em; font-weight: 600; }
  .hero h1 > span { display: block; }
  .hero h1 strong { display: block; margin-top: 10px; padding-bottom: .09em; color: transparent; background: linear-gradient(105deg, #f7fbff 8%, #64dbff 54%, #7777ff 100%); background-clip: text; font-weight: 700; }
  .hero h1 strong span { display: block; }
  .hero-lead { max-width: 620px; margin-top: 28px; color: var(--muted-light); font-size: clamp(1rem, 1.35vw, 1.13rem); }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
  .hero-stage { position: relative; min-height: 560px; display: grid; place-items: center; }
  .hero-stage::before { content: ""; position: absolute; inset: 13% 5%; border-radius: 38% 62% 60% 40%; background: radial-gradient(circle at 48% 48%, rgba(50, 216, 255, .12), transparent 64%); border: 1px solid rgba(72, 205, 255, .09); transform: rotate(-7deg); }
  .stage-orbit { position: absolute; border: 1px solid rgba(108, 193, 255, .16); border-radius: 50%; }
  .orbit-one { width: 390px; height: 390px; animation: orbitSpin 26s linear infinite; }
  .orbit-two { width: 485px; height: 485px; border-style: dashed; opacity: .6; animation: orbitSpin 38s linear infinite reverse; }
  .orbit-one::after, .orbit-two::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; left: 14%; top: 13%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
  .orbit-two::after { left: auto; right: 8%; top: 64%; background: var(--violet); box-shadow: 0 0 18px var(--violet); }
  .logo-core { position: relative; z-index: 2; width: 330px; aspect-ratio: 1; display: grid; place-items: center; }
  .logo-core img { position: relative; width: 270px; filter: drop-shadow(0 28px 44px rgba(0,0,0,.45)) drop-shadow(0 0 30px rgba(42, 201, 255, .25)); animation: float 5s ease-in-out infinite; }
  .logo-halo { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(49,215,255,.24), rgba(40,119,255,.08) 42%, transparent 70%); filter: blur(14px); }
  .floating-card { position: absolute; z-index: 4; border: 1px solid rgba(134, 189, 236, .18); border-radius: 16px; background: linear-gradient(145deg, rgba(16, 29, 51, .92), rgba(8, 16, 31, .88)); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
  .phrase-card { width: 250px; left: -24px; top: 86px; padding: 17px 18px; transform: rotate(-2deg); }
  .floating-card strong { display: block; margin-top: 7px; color: var(--text); font-family: "Sora", sans-serif; font-size: .94rem; }
  .floating-card small { display: block; margin-top: 6px; color: var(--muted); line-height: 1.45; }
  .card-label { color: var(--cyan); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .feedback-card { right: -10px; bottom: 88px; display: flex; align-items: center; gap: 12px; width: 242px; padding: 15px 16px; transform: rotate(1.5deg); }
  .feedback-mark { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: rgba(90, 230, 176, .12); color: var(--green); border: 1px solid rgba(90, 230, 176, .28); font-weight: 800; }
  .signal { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
  .signal-one { left: 16%; bottom: 24%; } .signal-two { right: 12%; top: 26%; } .signal-three { right: 28%; top: 8%; width: 3px; height: 3px; }

  .hero-footer { position: relative; z-index: 3; display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--line); }
  .hero-footer p { max-width: 690px; font-size: .84rem; }
  .hero-footer a { flex: 0 0 auto; color: var(--muted-light); text-decoration: none; font-size: .82rem; font-weight: 700; }

  .section-heading { margin-bottom: 54px; }
  .split-heading { display: grid; grid-template-columns: 1.15fr .65fr; gap: 80px; align-items: end; }
  .split-heading h2 { max-width: 760px; margin-top: 20px; }
  .split-heading > p { max-width: 470px; font-size: 1.04rem; }
  .centered-heading { max-width: 780px; margin-inline: auto; text-align: center; }
  .centered-heading h2 { margin-top: 20px; }
  .centered-heading p { max-width: 620px; margin: 20px auto 0; }
  .eyebrow.centered { justify-content: center; }

  .problem-section { background: linear-gradient(to bottom, #07101e, var(--bg)); }
  .problem-section .split-heading > p { padding-left: 24px; border-left: 1px solid rgba(49, 215, 255, .28); }
  .contrast-flow { display: grid; grid-template-columns: minmax(0, 1fr) clamp(145px, 14vw, 210px) minmax(0, 1fr); align-items: stretch; padding: 0; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: linear-gradient(120deg, rgba(15, 31, 53, .72), rgba(8, 18, 34, .46)); box-shadow: inset 0 1px rgba(255,255,255,.025); }
  .contrast-statement { max-width: none; padding: clamp(30px, 3.6vw, 48px); }
  .contrast-statement h3 { margin-top: 16px; font-size: clamp(1.75rem, 3.2vw, 3rem); letter-spacing: -.045em; }
  .contrast-statement p { max-width: 500px; margin-top: 16px; }
  .contrast-outcome { background: linear-gradient(135deg, rgba(49, 215, 255, .035), rgba(64, 102, 255, .045)); }
  .contrast-outcome h3 { color: #b8edff; }
  .contrast-bridge { display: grid; grid-template-columns: 1fr; place-content: center; justify-items: center; gap: 10px; padding: 24px 18px; color: var(--muted); border-inline: 1px solid var(--line); background: rgba(4, 12, 24, .34); }
  .contrast-bridge span { font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .contrast-bridge i { position: relative; width: 100%; height: 1px; background: linear-gradient(90deg, rgba(49, 215, 255, .12), var(--cyan), rgba(49, 215, 255, .12)); }
  .contrast-bridge i::before, .contrast-bridge i::after { content: ""; position: absolute; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); transform: translateY(-50%); box-shadow: 0 0 12px rgba(49, 215, 255, .7); }
  .contrast-bridge i::before { left: 0; }
  .contrast-bridge i::after { right: 0; }
  .card-kicker { color: var(--cyan); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }

  .audience-section { background: linear-gradient(to bottom, var(--bg), #07101e); }
  .audience-section .split-heading > p { padding-left: 24px; border-left: 1px solid rgba(49, 215, 255, .28); }
  .pathway-map { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 44px); padding: 24px 0 12px; }
  .pathway-map::before { content: ""; position: absolute; left: 0; right: 0; top: 30px; height: 1px; background: linear-gradient(90deg, rgba(49, 215, 255, .45), var(--line) 18%, var(--line) 82%, rgba(49, 215, 255, .45)); }
  .pathway-map > div { position: relative; padding-top: 40px; }
  .pathway-map > div::before { content: ""; position: absolute; top: 0; left: 0; width: 13px; height: 13px; border: 3px solid var(--bg); border-radius: 50%; background: #35465e; box-shadow: 0 0 0 1px var(--line); }
  .pathway-map > .pathway-active::before { background: var(--cyan); box-shadow: 0 0 0 1px rgba(49, 215, 255, .32), 0 0 18px rgba(49, 215, 255, .5); }
  .pathway-map strong, .pathway-map span, .pathway-map em { display: block; }
  .pathway-map strong { color: var(--text); font-family: "Sora"; font-size: .98rem; }
  .pathway-map span { margin-top: 7px; color: var(--muted); font-size: .75rem; }
  .pathway-map em { width: fit-content; margin-top: 12px; color: #71839b; font-size: .67rem; font-style: normal; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
  .pathway-map .pathway-active em { color: var(--cyan); }
  .pilot-paths { display: grid; grid-template-columns: 1fr 1fr; margin-top: 58px; border-block: 1px solid var(--line); }
  .pilot-paths-heading { grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); }
  .pilot-paths-heading > span { color: var(--cyan); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
  .pilot-paths-heading p { font-size: .84rem; }
  .pilot-path { min-height: 320px; padding: 36px clamp(24px, 4vw, 54px) 38px 0; }
  .pilot-path + .pilot-path { padding-inline: clamp(24px, 4vw, 54px) 0; border-left: 1px solid var(--line); }
  .audience-label { display: inline-flex; width: fit-content; padding: 7px 10px; border: 1px solid rgba(49, 215, 255, .22); border-radius: 999px; color: var(--cyan); background: rgba(49, 215, 255, .06); font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
  .pilot-path-kids .audience-label { color: #b6adff; border-color: rgba(150, 132, 255, .24); background: rgba(125, 108, 255, .08); }
  .pilot-path h3 { max-width: 440px; margin-top: 22px; font-size: clamp(1.45rem, 2.4vw, 2.1rem); line-height: 1.1; letter-spacing: -.04em; }
  .pilot-path p { max-width: 470px; margin-top: 17px; font-size: .9rem; }
  .audience-link, .audience-status { margin-top: 28px; font-size: .78rem; font-weight: 800; }
  .pilot-path .audience-link, .pilot-path .audience-status { display: inline-block; }
  .audience-link { width: fit-content; color: var(--cyan); text-decoration: none; }
  .audience-link:hover { color: var(--text); }
  .audience-status { color: #9a93d6; }

  .evidence-section { background: linear-gradient(135deg, #09182a 0%, #07101e 56%, #060c17 100%); }
  .evidence-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: center; }
  .evidence-copy h2 { margin-top: 20px; }
  .evidence-copy > p { margin-top: 24px; max-width: 560px; }
  .check-list { display: grid; gap: 13px; padding: 0; margin: 30px 0 0; list-style: none; }
  .check-list li { display: flex; gap: 14px; align-items: center; color: var(--muted-light); font-size: .91rem; }
  .check-list span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 10px; color: var(--cyan); font-size: .66rem; font-weight: 800; }

  .feedback-demo { border: 1px solid rgba(110, 185, 240, .2); border-radius: 25px; background: #0b1628; box-shadow: var(--shadow); overflow: hidden; transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
  .demo-topbar { min-height: 48px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: #0e1b30; color: #71839b; font-size: .7rem; }
  .demo-topbar > div { display: flex; gap: 6px; }
  .demo-dot { width: 7px; height: 7px; border-radius: 50%; background: #33445b; }
  .demo-body { padding: clamp(24px, 4vw, 42px); }
  .demo-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted-light); font-size: .78rem; font-weight: 700; }
  .reviewed-pill { padding: 6px 9px; border-radius: 999px; color: var(--green); background: rgba(90,230,176,.08); border: 1px solid rgba(90,230,176,.18); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
  .demo-body blockquote { margin-top: 24px; padding: 20px; color: var(--text); background: rgba(255,255,255,.025); border: 1px solid var(--line); border-radius: 15px; font-size: 1rem; line-height: 1.65; }
  .correction-card { margin-top: 16px; padding: 20px; border-left: 3px solid var(--cyan); border-radius: 4px 14px 14px 4px; background: linear-gradient(90deg, rgba(49,215,255,.09), rgba(49,215,255,.025)); }
  .correction-label { color: var(--cyan); font-size: .65rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
  .correction-card strong { display: block; margin-top: 8px; font-family: "Sora"; font-size: .92rem; line-height: 1.5; }
  .correction-card em { color: var(--cyan); font-style: normal; }
  .correction-card p { margin-top: 8px; font-size: .82rem; }
  .next-practice { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 8px 24px; align-items: start; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
  .next-practice .correction-label { grid-row: 1 / 3; margin-top: 3px; }
  .next-practice strong { color: var(--text); font-family: "Sora"; font-size: .86rem; line-height: 1.5; }
  .next-practice small { color: #73859c; font-size: .68rem; }

  .pilot-section { overflow: hidden; }
  .journey { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .journey::before { content: ""; position: absolute; left: 10%; right: 10%; top: 54px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan) 16%, var(--violet) 84%, transparent); opacity: .45; }
  .journey article { position: relative; padding: 0 24px; text-align: center; }
  .journey-week { color: var(--cyan); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .journey-point { position: relative; z-index: 2; display: block; width: 15px; height: 15px; margin: 21px auto 26px; border-radius: 50%; background: var(--bg); border: 3px solid var(--cyan); box-shadow: 0 0 20px rgba(49,215,255,.45); }
  .journey article:nth-child(n+3) .journey-point { border-color: var(--violet); box-shadow: 0 0 20px rgba(125,108,255,.45); }
  .journey h3 { font-size: 1.05rem; }
  .journey p { margin-top: 10px; font-size: .84rem; line-height: 1.6; }

  .final-cta { position: relative; padding: 140px 0; text-align: center; overflow: hidden; }
  .final-cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(49,215,255,.18) 1px, transparent 1px); background-size: 24px 24px; mask-image: radial-gradient(circle at center, #000, transparent 68%); opacity: .35; }
  .cta-glow { position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 760px; height: 460px; background: radial-gradient(circle, rgba(40,119,255,.2), rgba(49,215,255,.07) 38%, transparent 70%); filter: blur(26px); }
  .cta-inner { position: relative; z-index: 2; display: grid; justify-items: center; }
  .cta-inner > img { margin-bottom: 20px; filter: drop-shadow(0 0 22px rgba(49,215,255,.32)); }
  .cta-inner h2 { max-width: 850px; margin-top: 20px; }
  .cta-inner > p { max-width: 620px; margin-top: 20px; }
  .centered-actions { justify-content: center; }

  .site-footer { border-top: 1px solid var(--line); background: #040711; }
  .footer-inner { min-height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
  .footer-inner p { font-size: .78rem; }
  .footer-inner > div { display: flex; gap: 18px; }
  .footer-inner > div a { color: var(--muted); text-decoration: none; font-size: .78rem; }
  .footer-inner > div a:hover { color: var(--text); }

  @keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
  @keyframes orbitSpin { to { transform: rotate(360deg); } }
}

@layer responsive {
  @media (max-width: 980px) {
    .nav-links { display: none; }
    .hero { padding-top: 130px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow, .hero-actions { justify-content: center; }
    .hero-lead { margin-inline: auto; }
    .hero-stage { min-height: 500px; max-width: 620px; width: 100%; margin-inline: auto; }
    .split-heading { grid-template-columns: 1fr; gap: 24px; }
    .pathway-map { grid-template-columns: repeat(2, 1fr); }
    .pilot-paths { grid-template-columns: 1fr 1fr; }
    .pilot-paths-heading { grid-column: 1 / -1; padding-bottom: 28px; }
    .evidence-grid { grid-template-columns: 1fr; }
    .evidence-copy { max-width: 760px; }
    .feedback-demo { transform: none; }
    .journey { grid-template-columns: repeat(2, 1fr); gap: 45px 0; }
    .journey::before { display: none; }
  }

  @media (max-width: 700px) {
    .shell { width: min(100% - 28px, 1180px); }
    .section { padding: 86px 0; }
    .nav-inner { min-height: 68px; }
    .text-link { display: none; }
    .button-small { min-height: 40px; padding: 0 13px; font-size: .78rem; }
    .hero { min-height: auto; padding-top: 120px; }
    .hero h1 { max-width: 590px; font-size: clamp(2.8rem, 11vw, 4rem); letter-spacing: -.058em; }
    .hero-stage { min-height: 415px; margin-top: 8px; }
    .logo-core { width: 250px; }
    .logo-core img { width: 205px; }
    .logo-halo { width: 220px; height: 220px; }
    .orbit-one { width: 285px; height: 285px; }
    .orbit-two { width: 355px; height: 355px; }
    .phrase-card { left: 0; top: 42px; width: 210px; }
    .feedback-card { right: 0; bottom: 45px; width: 218px; }
    .hero-footer { align-items: flex-start; flex-direction: column; }
    .contrast-flow { grid-template-columns: 1fr; gap: 28px; }
    .problem-section .split-heading > p { padding: 22px 0 0; border-left: 0; border-top: 1px solid rgba(49, 215, 255, .22); }
    .audience-section .split-heading > p { padding: 22px 0 0; border-left: 0; border-top: 1px solid rgba(49, 215, 255, .22); }
    .contrast-flow { gap: 0; }
    .contrast-bridge { width: 100%; grid-template-columns: auto 1fr auto; justify-items: stretch; align-items: center; border-inline: 0; border-block: 1px solid var(--line); }
    .contrast-card { min-height: 260px; }
    .pathway-map { grid-template-columns: 1fr; gap: 0; padding: 12px 0 0 24px; }
    .pathway-map::before { inset: 18px auto 8px 5px; width: 1px; height: auto; }
    .pathway-map > div { padding: 0 0 28px 22px; }
    .pathway-map > div::before { top: 3px; left: -25px; }
    .pilot-paths { grid-template-columns: 1fr; }
    .pilot-paths-heading { grid-column: auto; align-items: flex-start; flex-direction: column; gap: 10px; }
    .pilot-path, .pilot-path + .pilot-path { min-height: auto; padding: 30px 0 34px; border-left: 0; }
    .pilot-path + .pilot-path { border-top: 1px solid var(--line); }
    .journey { grid-template-columns: 1fr; gap: 30px; }
    .journey article { padding: 24px; border: 1px solid var(--line); border-radius: 18px; text-align: left; background: rgba(255,255,255,.02); }
    .journey-point { display: none; }
    .journey h3 { margin-top: 10px; }
    .footer-inner { padding: 30px 0; flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 440px) {
    .brand img { width: 34px; height: 34px; }
    .brand { font-size: 1.03rem; }
    .nav-actions .button-small { font-size: 0; width: 42px; padding: 0; }
    .nav-actions .button-small::after { content: "→"; font-size: 1rem; }
    .hero-actions .button { width: 100%; }
    .hero-stage { min-height: 380px; }
    .pilot-paths { grid-template-columns: 1fr; margin-top: 52px; }
    .orbit-two { width: 320px; height: 320px; }
    .phrase-card { left: -5px; top: 18px; }
    .feedback-card { right: -5px; bottom: 24px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  }
}
