:root {
  --ink: #10241d;
  --ink-soft: #405049;
  --paper: #f4f1e9;
  --paper-deep: #e9e4d9;
  --white: #fffefa;
  --acid: #d8ff63;
  --violet: #778af2;
  --violet-soft: #dfe3ff;
  --line: rgb(16 36 29 / 17%);
  --shell: min(1180px, calc(100vw - 40px));
  --radius: 28px;
  color-scheme: light;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 92px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Aptos", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  z-index: 30;
  width: 320px;
  height: 320px;
  left: calc(var(--pointer-x, 50vw) - 160px);
  top: calc(var(--pointer-y, 30vh) - 160px);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(216 255 99 / 11%), transparent 68%);
  pointer-events: none;
  mix-blend-mode: multiply;
  transition: left .16s ease-out, top .16s ease-out;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--acid); color: var(--ink); }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 750;
  border-radius: 999px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #566aff; outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgb(244 241 233 / 88%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img { width: 50px; height: 50px; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 1.22rem; letter-spacing: .1em; }
.brand small { margin-top: 6px; color: var(--ink-soft); font-size: .72rem; font-weight: 620; letter-spacing: .025em; }
.brand small span { display: inline; color: #4053bd; font-weight: 850; }
nav { display: flex; align-items: center; justify-content: center; gap: 26px; }
nav a { color: var(--ink-soft); font-size: .82rem; font-weight: 650; text-decoration: none; }
nav a:hover { color: var(--ink); }
.header-cta {
  padding: 11px 17px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}
.header-cta:hover { background: transparent; color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 136px) 0 88px;
  background:
    radial-gradient(circle at 88% 15%, rgb(216 255 99 / 42%), transparent 24%),
    radial-gradient(circle at 8% 88%, rgb(119 138 242 / 20%), transparent 27%),
    var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .23;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  width: clamp(260px, 34vw, 520px);
  aspect-ratio: 1;
  right: -12%;
  top: -18%;
  border: 1px solid rgb(16 36 29 / 12%);
  border-radius: 46% 54% 62% 38%;
  box-shadow: inset 0 0 80px rgb(216 255 99 / 16%), 0 0 90px rgb(119 138 242 / 20%);
  animation: neural-float 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
.hero-media {
  position: absolute;
  z-index: 0;
  inset-block: 0;
  right: 0;
  width: min(70%, 1060px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, rgb(0 0 0 / 20%) 22%, #000 58%);
  pointer-events: none;
}
.hero-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, transparent 42%), linear-gradient(180deg, transparent 65%, var(--paper) 100%);
}
.hero-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -30%;
  left: 48%;
  width: 2px;
  height: 160%;
  background: linear-gradient(transparent, rgb(216 255 99 / 75%), transparent);
  box-shadow: 0 0 24px rgb(216 255 99 / 45%);
  transform: rotate(28deg);
  animation: scan-path 7s ease-in-out infinite;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 84% center;
  opacity: .72;
  filter: saturate(.92) contrast(1.04);
  animation: hero-image-in 1.25s cubic-bezier(.2,.75,.2,1) both, hero-breathe 16s 1.25s ease-in-out infinite alternate;
}
.hero-node {
  position: absolute;
  z-index: 4;
  width: 9px;
  height: 9px;
  background: var(--acid);
  border: 2px solid rgb(255 254 250 / 85%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(216 255 99 / 55%);
  animation: hero-node-pulse 2.8s ease-out infinite;
}
.hero-node-one { top: 24%; right: 18%; }
.hero-node-two { top: 54%; right: 39%; animation-delay: .7s; }
.hero-node-three { top: 72%; right: 12%; animation-delay: 1.4s; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.48fr) minmax(310px, .72fr); gap: clamp(48px, 7vw, 100px); align-items: end; }
.hero-copy > * { animation: copy-in .7s cubic-bezier(.2,.75,.2,1) both; }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
.hero-copy > :nth-child(5) { animation-delay: .32s; }
.hero-copy > :nth-child(6) { animation-delay: .4s; }
.eyebrow, .section-number, .card-kicker {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 9px; height: 9px; background: #6abf71; border-radius: 50%; box-shadow: 0 0 0 6px rgb(106 191 113 / 16%); }
h1, h2, blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .98;
}
h1 { max-width: 820px; margin: 0; font-size: clamp(3.7rem, 8vw, 7.7rem); }
h1 em {
  font-weight: 400;
  color: #385a4b;
  background: linear-gradient(105deg, #385a4b 12%, #6575d8 50%, #385a4b 88%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-signal 7s linear infinite;
}
.hero-lead { max-width: 720px; margin: 34px 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.32rem); line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: #24493b; }
.button-quiet { background: rgb(255 255 255 / 35%); }
.button-quiet:hover { background: var(--white); }
.button-accent { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.microcopy { margin: 15px 0 0; color: var(--ink-soft); font-size: .72rem; }
.ai-signal {
  width: fit-content;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
  padding: 10px 13px;
  background: rgb(255 254 250 / 64%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgb(16 36 29 / 7%);
  backdrop-filter: blur(12px);
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 720;
}
.ai-signal i { width: 5px; height: 5px; background: #6575d8; border-radius: 50%; box-shadow: 0 0 0 0 rgb(101 117 216 / 36%); animation: signal-pulse 2.4s ease-out infinite; }
.ai-signal i:nth-of-type(2) { animation-delay: .4s; }
.ai-signal i:nth-of-type(3) { animation-delay: .8s; }

.territory-card { padding: 27px; background: var(--ink); color: var(--white); border-radius: var(--radius); box-shadow: 0 28px 70px rgb(16 36 29 / 18%); }
.territory-card .card-kicker { color: rgb(255 254 250 / 58%); }
.territory-row { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 20px 0; border-top: 1px solid rgb(255 255 255 / 15%); }
.territory-index { color: var(--acid); font-family: ui-monospace, monospace; font-size: .7rem; }
.territory-row strong { display: block; font-size: 1.04rem; }
.territory-row p { margin: 3px 0 0; color: rgb(255 254 250 / 67%); font-size: .85rem; }
.territory-note { display: grid; grid-template-columns: 28px 1fr; gap: 12px; margin-top: 10px; padding: 18px; background: var(--acid); color: var(--ink); border-radius: 18px; }
.territory-note p { margin: 0; font-size: .78rem; font-weight: 650; line-height: 1.5; }

.statement { padding: clamp(75px, 10vw, 130px) 0; background: var(--ink); color: var(--white); }
.statement .section-number { color: var(--acid); }
.statement blockquote { max-width: 1050px; margin: 0; font-size: clamp(2.6rem, 5.8vw, 5.6rem); color: var(--white); }

.section { padding: clamp(68px, 7.5vw, 104px) 0; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 60px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .method h2, .launch h2, .contact h2 { margin: 0; font-size: clamp(2.8rem, 5.3vw, 5rem); }
.section-heading > p { max-width: 470px; margin: 0 0 8px; color: var(--ink-soft); }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience-card { min-height: 660px; display: flex; flex-direction: column; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 50px rgb(16 36 29 / 7%); transition: transform .35s ease, box-shadow .35s ease; }
.audience-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgb(16 36 29 / 13%); }
.audience-top { display: flex; justify-content: space-between; gap: 16px; padding: 10px 10px 18px; font-size: .69rem; font-weight: 780; letter-spacing: .09em; text-transform: uppercase; }
.audience-top span:last-child { color: var(--ink-soft); }
.audience-visual { position: relative; overflow: hidden; margin: 0; border-radius: 20px; aspect-ratio: 16 / 9; background: var(--paper-deep); }
.audience-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.75,.2,1); }
.audience-card:hover .audience-visual img { transform: scale(1.035); }
.audience-visual figcaption { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; background: rgb(16 36 29 / 88%); color: var(--white); border: 1px solid rgb(255 255 255 / 15%); border-radius: 999px; backdrop-filter: blur(10px); font-size: .68rem; font-weight: 750; }
.audience-visual figcaption span { color: var(--acid); }
.audience-card h3 { margin: 28px 14px 14px; font-size: clamp(1.55rem, 2.45vw, 2.15rem); line-height: 1.08; letter-spacing: -.035em; }
.audience-card > p { margin: 0 14px; color: var(--ink-soft); }
.audience-card ul { margin: auto 14px 0; padding: 24px 0 8px; list-style: none; border-top: 1px solid var(--line); }
.audience-card li { position: relative; padding: 9px 0 9px 25px; font-size: .88rem; font-weight: 620; }
.audience-card li::before { content: "↳"; position: absolute; left: 0; color: var(--ink-soft); }

.support { background: #18352a; color: var(--white); }
.support { position: relative; overflow: hidden; }
.support::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 14%, rgb(216 255 99 / 13%), transparent 24%), linear-gradient(120deg, transparent 0 48%, rgb(255 255 255 / 3%) 48% 49%, transparent 49% 100%);
  background-size: auto, 90px 90px;
  pointer-events: none;
}
.support > .shell { position: relative; }
.section-heading-light > p, .section-heading-light .section-number { color: rgb(255 254 250 / 60%); }
.support-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.support-list li { grid-column: span 2; min-height: 255px; display: flex; flex-direction: column; padding: 24px; background: rgb(255 255 255 / 5%); border: 1px solid rgb(255 255 255 / 15%); border-radius: 20px; transition: background-color .3s ease, border-color .3s ease; }
.support-list li:nth-last-child(-n + 2) { grid-column: span 3; }
.support-list li:hover { background: rgb(255 255 255 / 8%); border-color: rgb(216 255 99 / 38%); }
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-top > span { color: var(--acid); font: .72rem ui-monospace, monospace; }
.step-top i, .principle-top i { width: 42px; height: 42px; display: grid; place-items: center; background: rgb(119 138 242 / 18%); border: 1px solid rgb(119 138 242 / 45%); border-radius: 50%; color: var(--violet-soft); font-size: 1.2rem; font-style: normal; }
.support-list h3 { margin: auto 0 13px; font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.08; }
.support-list p { margin: 0; color: rgb(255 254 250 / 67%); font-size: .9rem; }

.examples { background: var(--paper-deep); }
.examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.examples-grid article { min-height: 600px; display: flex; flex-direction: column; padding: 14px 26px 26px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 18px 45px rgb(16 36 29 / 6%); transition: transform .3s ease, border-color .3s ease; }
.examples-grid article:hover { transform: translateY(-5px); border-color: rgb(101 117 216 / 45%); }
.example-visual { overflow: hidden; margin: 0 -12px 22px; aspect-ratio: 16 / 10; background: var(--paper); border-radius: 16px; }
.example-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.75,.2,1); }
.examples-grid article:hover .example-visual img { transform: scale(1.04); }
.example-type { margin: 0; color: #53645d; font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.examples-grid h3 { margin: 24px 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.1vw, 1.85rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.examples-grid article > p:not(.example-type) { margin: 0; color: var(--ink-soft); }
.examples-grid dl { margin: auto 0 0; padding-top: 30px; }
.examples-grid dl div { display: grid; grid-template-columns: 112px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.examples-grid dt { color: var(--ink-soft); font-size: .68rem; font-weight: 750; text-transform: uppercase; }
.examples-grid dd { margin: 0; font-size: .78rem; font-weight: 650; }

.method { background: var(--white); }
.method-grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(55px, 9vw, 130px); }
.method-intro { position: sticky; top: 120px; align-self: start; }
.method-intro > p:last-child { margin-top: 27px; color: var(--ink-soft); }
.principles { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principles article { min-height: 270px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-top { display: flex; align-items: center; justify-content: space-between; }
.principle-top span { color: #49635a; font: .7rem ui-monospace, monospace; }
.principle-top i { background: var(--violet-soft); border-color: rgb(119 138 242 / 28%); color: #3149c2; }
.principles h3 { margin: 54px 0 13px; font-size: 1.25rem; }
.principles p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

.launch { background: var(--paper-deep); }
.launch-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 110px); padding: clamp(35px, 6vw, 74px); background: var(--acid); border-radius: var(--radius); }
.launch-panel p { margin-top: 0; }
.text-link { display: inline-flex; gap: 18px; margin-top: 20px; font-weight: 800; text-underline-offset: 5px; }

.transparency { background: var(--paper); }
.identity-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.identity-grid > div { min-height: 190px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.identity-grid dt { color: var(--ink-soft); font-size: .68rem; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.identity-grid dd { margin: 44px 0 0; font-size: 1.05rem; font-weight: 670; line-height: 1.4; }
.commitment { margin-top: 25px; padding: 23px 26px; border: 1px solid var(--line); border-radius: 18px; }
.commitment p { margin: 0; color: var(--ink-soft); }
.commitment strong { color: var(--ink); }

.contact { position: relative; overflow: hidden; background: var(--ink); color: var(--white); text-align: center; }
.contact::before { content: ""; position: absolute; inset: -45% 0 auto 62%; width: 520px; aspect-ratio: 1; border: 1px solid rgb(119 138 242 / 45%); border-radius: 50%; box-shadow: inset 0 0 120px rgb(119 138 242 / 16%); }
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact .section-number { color: var(--acid); }
.contact h2 { max-width: 960px; }
.contact p:not(.section-number) { max-width: 650px; margin: 28px auto; color: rgb(255 254 250 / 67%); }

footer { padding: 34px 0; background: var(--ink); color: var(--white); }
.legal-page { background: var(--white); }
.legal-content { padding-block: clamp(80px, 11vw, 150px); }
.legal-content > h1 { max-width: 950px; font-size: clamp(3.4rem, 7.5vw, 7rem); }
.legal-lead { max-width: 780px; margin: 35px 0 75px; color: var(--ink-soft); font-size: 1.25rem; }
.legal-content section { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr); gap: 50px; padding: 34px 0; border-top: 1px solid var(--line); }
.legal-content section h2 { margin: 0; font-family: inherit; font-size: 1.15rem; letter-spacing: -.02em; }
.legal-content section p { max-width: 760px; margin: 0; color: var(--ink-soft); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 35px; align-items: end; }
.footer-inner strong { letter-spacing: .08em; }
.footer-inner p { margin: 4px 0 0; color: rgb(255 254 250 / 60%); font-size: .72rem; }

.reveal-motion.is-visible { animation: reveal-in .65s cubic-bezier(.2,.75,.2,1) both; }

@keyframes reveal-in {
  from { opacity: .55; }
  to { opacity: 1; }
}
@keyframes neural-float {
  to { transform: translate(-42px, 36px) rotate(18deg); border-radius: 61% 39% 44% 56%; }
}
@keyframes hero-image-in {
  from { clip-path: inset(0 0 0 100%); transform: scale(1.07); }
  to { clip-path: inset(0 0 0 42%); transform: scale(1); }
}
@keyframes hero-breathe { to { transform: scale(1.035) translateX(-1.2%); } }
@keyframes hero-node-pulse { 65%, 100% { box-shadow: 0 0 0 18px rgb(216 255 99 / 0%); } }
@keyframes scan-path { 0%, 100% { opacity: 0; transform: translateX(-260px) rotate(28deg); } 25%, 70% { opacity: .8; } 85% { transform: translateX(420px) rotate(28deg); } }
@keyframes copy-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes text-signal { to { background-position: -200% center; } }
@keyframes signal-pulse { 60%, 100% { box-shadow: 0 0 0 8px rgb(101 117 216 / 0%); } }

@media (max-width: 960px) {
  nav { display: none; }
  .hero-grid, .section-heading, .method-grid, .launch-panel { grid-template-columns: 1fr; }
  .hero-media { width: 100%; opacity: .48; mask-image: linear-gradient(90deg, transparent 0%, #000 65%); }
  .territory-card { max-width: 580px; }
  .method-intro { position: static; }
  .identity-grid { grid-template-columns: 1fr 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .examples-grid article { min-height: 450px; }
  .support-list { grid-template-columns: 1fr 1fr; }
  .support-list li, .support-list li:nth-last-child(-n + 2) { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :nth-child(2) { display: none; }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 28px, 1180px); --radius: 22px; }
  body { font-size: 16px; }
  .header-inner { min-height: 72px; }
  .brand small { display: none; }
  .header-cta { padding: 10px 13px; font-size: .72rem; }
  .hero { padding-top: 70px; }
  .hero-media { width: 100%; height: 56%; opacity: .36; mask-image: linear-gradient(180deg, #000 0%, rgb(0 0 0 / 55%) 58%, transparent 100%); }
  .hero-media::before { background: linear-gradient(90deg, rgb(244 241 233 / 35%), transparent 70%), linear-gradient(180deg, transparent 35%, var(--paper) 100%); }
  .hero-media img { object-position: 70% center; }
  h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .ai-signal { width: 100%; justify-content: center; border-radius: 18px; }
  .button { width: 100%; }
  .audience-grid, .principles, .identity-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .audience-card ul { margin-top: 40px; }
  .support-list { grid-template-columns: 1fr; }
  .support-list li { min-height: 220px; }
  .launch-panel { padding: 28px; }
  .legal-content section { grid-template-columns: 1fr; gap: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  body::before { display: none; }
  h1 em { background: none; -webkit-text-fill-color: #385a4b; }
  .hero-media img, .hero-media::after, .hero-node, .hero-copy > * { animation: none; }
  .reveal-motion.is-visible { animation: none; }
}
