:root {
  --ink: #13151a;
  --paper: #f6f7fb;
  --white: #ffffff;
  --cobalt: #2536e8;
  --cobalt-dark: #1825ad;
  --signal: #ff4f31;
  --mint: #c8ffad;
  --ticket: #ffe86b;
  --steel: #dfe3ec;
  --muted: #666b78;
  --line: rgba(19, 21, 26, .15);
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --radius: 4px;
  --shadow: 0 30px 80px rgba(14, 18, 45, .16);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--cobalt) var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img { display: block; width: 100%; }

button,
input,
select,
textarea { font: inherit; }

button { color: inherit; }

a { color: inherit; text-decoration: none; }

::selection { color: var(--white); background: var(--cobalt); }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 24px;
  color: var(--white);
  background: var(--cobalt);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .02em;
}

.announcement__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(200, 255, 173, .7);
  animation: pulse 2s infinite;
}

.announcement strong { color: var(--mint); font-weight: 500; }

.announcement a {
  margin-left: 8px;
  border-bottom: 1px solid rgba(255,255,255,.6);
}

.site-header {
  width: min(1480px, calc(100% - 48px));
  height: 82px;
  position: sticky;
  z-index: 100;
  top: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(246, 247, 251, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.04em;
}

.brand__mark {
  width: 37px;
  height: 37px;
  color: var(--ink);
  fill: currentColor;
}

.brand__spark { color: var(--signal); fill: var(--signal); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta { justify-self: end; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  border: 0;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button:hover { transform: translateY(-2px); }

.button--dark { color: var(--white); background: var(--ink); }

.button--dark:hover {
  background: var(--cobalt);
  box-shadow: 0 9px 25px rgba(37,54,232,.24);
}

.button--primary {
  color: var(--white);
  background: var(--cobalt);
  box-shadow: 8px 8px 0 rgba(19,21,26,.13);
}

.button--primary:hover {
  background: var(--cobalt-dark);
  box-shadow: 5px 5px 0 rgba(19,21,26,.18);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(200,255,173,.7);
}

.button--light:hover { color: var(--white); background: var(--signal); }

.button--large {
  min-height: 58px;
  padding: 0 26px;
  font-size: 13px;
}

.button__arrow { font-size: 18px; }

.menu-toggle,
.mobile-menu { display: none; }

.hero {
  width: min(1480px, calc(100% - 48px));
  min-height: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(450px, .8fr) minmax(590px, 1.2fr);
  gap: clamp(40px, 6vw, 105px);
  align-items: center;
  padding: 62px 0 90px;
}

.hero__copy { position: relative; z-index: 2; }

.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.hero h1,
.section-heading h2,
.launch h2,
.calculator h2,
.company h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .9;
}

.hero h1 {
  margin-top: 27px;
  font-size: clamp(66px, 6.15vw, 104px);
}

.headline-shift {
  display: inline-block;
  color: var(--cobalt);
  font-style: italic;
  font-weight: 500;
  transform: translateX(clamp(0px, 2vw, 35px));
}

.hero__lede {
  max-width: 610px;
  margin: 34px 0 0;
  color: #444955;
  font-size: 18px;
  line-height: 1.65;
}

.ai-beacon {
  max-width: 625px;
  min-height: 84px;
  position: relative;
  margin-top: 25px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 16px 13px 14px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--mint);
  box-shadow: 8px 8px 0 rgba(37, 54, 232, .18);
  animation: aiBeaconGlow 3.2s ease-in-out infinite;
}

.ai-beacon::before {
  content: "";
  width: 34%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  background: linear-gradient(90deg, transparent, rgba(200,255,173,.12), transparent);
  transform: skewX(-18deg);
  animation: aiBeaconScan 4.8s ease-in-out infinite;
}

.ai-beacon__pulse {
  width: 38px;
  height: 38px;
  position: relative;
  display: grid;
  place-items: center;
  background: rgba(37,54,232,.35);
  border: 1px solid rgba(200,255,173,.55);
  border-radius: 50%;
}

.ai-beacon__pulse i {
  position: absolute;
  border-radius: 50%;
}

.ai-beacon__pulse i:first-child {
  width: 9px;
  height: 9px;
  z-index: 2;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(200,255,173,.9);
  animation: aiCoreBeat 1.35s ease-in-out infinite;
}

.ai-beacon__pulse i:nth-child(2),
.ai-beacon__pulse i:nth-child(3) {
  width: 15px;
  height: 15px;
  border: 1px solid var(--mint);
  animation: aiRing 2.4s ease-out infinite;
}

.ai-beacon__pulse i:nth-child(3) { animation-delay: 1.2s; }

.ai-beacon__copy {
  position: relative;
  z-index: 2;
}

.ai-beacon__copy strong {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .075em;
}

.ai-beacon__copy strong span {
  color: var(--mint);
  white-space: nowrap;
}

.ai-beacon__copy p {
  max-width: 470px;
  margin: 5px 0 0;
  color: rgba(255,255,255,.61);
  font-size: 9px;
  line-height: 1.55;
}

.ai-beacon__status {
  width: 58px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 3px;
}

.ai-beacon__status span {
  position: absolute;
  right: 0;
  bottom: 18px;
  color: rgba(255,255,255,.38);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .06em;
}

.ai-beacon__status b {
  width: 4px;
  height: 7px;
  display: block;
  background: var(--mint);
  transform-origin: bottom;
  animation: aiSignal 1.1s ease-in-out infinite alternate;
}

.ai-beacon__status b:nth-of-type(2) { height: 12px; animation-delay: .18s; }
.ai-beacon__status b:nth-of-type(3) { height: 9px; animation-delay: .36s; }
.ai-beacon__status b:nth-of-type(4) { height: 16px; animation-delay: .54s; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.text-link span { color: var(--cobalt); font-size: 17px; }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 43px;
}

.hero__proof p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.hero__proof strong { color: var(--ink); }

.proof-stack { display: flex; }

.proof-stack img,
.proof-stack > span {
  width: 39px;
  height: 39px;
  margin-left: -8px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
}

.proof-stack img:first-child { margin-left: 0; }

.proof-stack > span {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
}

.proof-stack svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero__visual {
  min-width: 0;
  height: 690px;
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -36px;
  bottom: 86px;
  left: 78px;
  background: var(--cobalt);
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 79% 92%, 73% 100%, 67% 92%, 0 92%, 0 13%);
}

.hero-photo {
  width: 68%;
  height: 70%;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,15,35,.02), rgba(12,15,35,.5));
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(1.06);
}

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.order-console {
  width: min(560px, 76%);
  min-height: 470px;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: var(--white);
  background: #111319;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 35px 90px rgba(8,10,25,.34);
}

.console__top,
.console__metrics,
.ticket__source,
.ticket__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console__top { padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.14); }

.console__top > div:first-child { display: flex; align-items: center; gap: 12px; }

.console__label,
.console__clock,
.console__metrics span,
.ticket__source,
.ticket__footer,
.test-order small,
.floating-note span {
  font-family: var(--mono);
}

.console__label {
  color: rgba(255,255,255,.65);
  font-size: 9px;
  letter-spacing: .08em;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
}

.live-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.console__clock { font-size: 11px; }

.console__metrics {
  gap: 6px;
  padding: 14px 0;
}

.console__metrics > div {
  flex: 1;
  padding: 9px 10px;
  background: rgba(255,255,255,.06);
}

.console__metrics span {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: 7px;
}

.console__metrics strong {
  display: block;
  margin-top: 1px;
  font-family: var(--display);
  font-size: 18px;
}

.ticket-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 8px;
  overflow: hidden;
}

.order-ticket {
  min-height: 205px;
  position: relative;
  padding: 13px 12px;
  color: var(--ink);
  background: var(--white);
  transform-origin: top center;
  transition: transform .25s ease, filter .25s ease;
}

.order-ticket::after {
  content: "";
  height: 7px;
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  background: linear-gradient(135deg, transparent 5px, white 0) 0 0/10px 10px repeat-x,
              linear-gradient(225deg, transparent 5px, white 0) 0 0/10px 10px repeat-x;
}

.order-ticket:hover { z-index: 3; transform: translateY(-4px) rotate(-1deg); }

.ticket--blue { background: #9bbcff; }
.ticket--red { background: #ff8a70; }
.ticket--mint { background: var(--mint); }
.ticket--yellow { background: var(--ticket); }

.ticket--blue::after { background: linear-gradient(135deg, transparent 5px, #9bbcff 0) 0 0/10px 10px repeat-x, linear-gradient(225deg, transparent 5px, #9bbcff 0) 0 0/10px 10px repeat-x; }
.ticket--red::after { background: linear-gradient(135deg, transparent 5px, #ff8a70 0) 0 0/10px 10px repeat-x, linear-gradient(225deg, transparent 5px, #ff8a70 0) 0 0/10px 10px repeat-x; }
.ticket--mint::after { background: linear-gradient(135deg, transparent 5px, var(--mint) 0) 0 0/10px 10px repeat-x, linear-gradient(225deg, transparent 5px, var(--mint) 0) 0 0/10px 10px repeat-x; }
.ticket--yellow::after { background: linear-gradient(135deg, transparent 5px, var(--ticket) 0) 0 0/10px 10px repeat-x, linear-gradient(225deg, transparent 5px, var(--ticket) 0) 0 0/10px 10px repeat-x; }

.ticket__source,
.ticket__footer { font-size: 7px; letter-spacing: .04em; }

.order-ticket h3 {
  min-height: 40px;
  margin: 22px 0 10px;
  font-family: var(--display);
  font-size: 16px;
  line-height: .95;
  letter-spacing: -.04em;
}

.order-ticket ul {
  min-height: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 8px;
  line-height: 1.65;
}

.ticket__footer {
  margin-top: 12px;
  padding-top: 9px;
  border-top: 1px dashed rgba(19,21,26,.35);
}

.ticket__footer strong { font-size: 8px; }

.order-ticket.ticket-enter {
  animation: ticketEnter .6s cubic-bezier(.2,.75,.24,1.25);
}

.test-order {
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  padding: 7px 12px;
  color: var(--white);
  text-align: left;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  transition: border .25s ease, background .25s ease;
}

.test-order:hover { background: rgba(255,255,255,.07); border-color: var(--mint); }

.test-order__icon {
  grid-row: 1/3;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  font-size: 20px;
}

.test-order { font-size: 10px; font-weight: 700; }
.test-order small { align-self: start; color: rgba(255,255,255,.45); font-size: 7px; font-weight: 400; }

.floating-note {
  position: absolute;
  z-index: 5;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(12,15,36,.18);
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 7px;
}

.floating-note strong { font-size: 10px; }
.floating-note--one { top: 28px; left: 34px; }
.floating-note--two { right: 28px; bottom: 70px; background: var(--ticket); }

.channel-dots { display: flex; gap: 4px; margin-top: 7px; }
.channel-dots i { width: 12px; height: 12px; border-radius: 50%; background: var(--cobalt); }
.channel-dots i:nth-child(2) { background: var(--signal); }
.channel-dots i:nth-child(3) { background: #111; }
.channel-dots i:nth-child(4) { background: #44b86a; }

.operator-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.operator-strip > p {
  margin: 0;
  padding: 17px 24px;
  color: rgba(255,255,255,.45);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.marquee { overflow: hidden; }

.marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 23px 0;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.marquee__track i { color: var(--mint); font-style: normal; }

.section-pad {
  padding: clamp(90px, 10vw, 165px) max(24px, calc((100vw - 1432px) / 2));
}

.manifesto {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.manifesto__number {
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .11em;
}

.manifesto__statement {
  max-width: 1320px;
  margin: 45px 0 0;
  font-family: var(--display);
  font-size: clamp(46px, 6.2vw, 92px);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: .96;
}

.manifesto__statement span { color: #a5a9b2; }

.manifesto__grid {
  max-width: 850px;
  margin: 68px 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  color: #515561;
}

.manifesto__grid p { margin: 0; font-size: 15px; line-height: 1.8; }

.platform { background: var(--paper); }

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .55fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.launch h2,
.calculator h2,
.company h2,
.faq h2 {
  margin-top: 24px;
  font-size: clamp(48px, 5.8vw, 84px);
}

.section-heading > p {
  max-width: 510px;
  justify-self: end;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.platform-tabs {
  margin-top: 75px;
  display: grid;
  grid-template-columns: 340px 1fr;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 15px 15px 0 var(--steel);
}

.tab-list {
  display: flex;
  flex-direction: column;
  background: var(--ink);
}

.tab-list button {
  min-height: 121px;
  position: relative;
  padding: 26px 26px 24px 64px;
  color: rgba(255,255,255,.55);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}

.tab-list button:last-child { border-bottom: 0; }

.tab-list button > span {
  position: absolute;
  top: 29px;
  left: 25px;
  color: rgba(255,255,255,.35);
  font-family: var(--mono);
  font-size: 9px;
}

.tab-list button {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -.03em;
}

.tab-list button small {
  display: block;
  margin-top: 3px;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.tab-list button::after {
  content: "→";
  position: absolute;
  top: 37px;
  right: 25px;
  color: var(--mint);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease;
}

.tab-list button[aria-selected="true"] {
  color: var(--ink);
  background: var(--mint);
}

.tab-list button[aria-selected="true"] > span { color: var(--cobalt); }
.tab-list button[aria-selected="true"]::after { opacity: 1; transform: translateX(0); }

.tab-stage { min-width: 0; }

.tab-panel {
  min-height: 484px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tab-panel[hidden] { display: none; }

.panel-copy { padding: 54px 45px; }

.panel-kicker {
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .09em;
}

.panel-copy h3 {
  margin: 30px 0 22px;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .98;
}

.panel-copy > p { color: var(--muted); font-size: 13px; line-height: 1.75; }

.check-list {
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-weight: 700;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-top: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cobalt);
}

.panel-art {
  min-height: 484px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--cobalt);
}

.panel-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 26px 26px;
}

.listing-card {
  width: 70%;
  position: relative;
  padding: 30px;
  background: var(--white);
  box-shadow: 13px 13px 0 var(--signal);
  transform: rotate(-2deg);
}

.listing-card > span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.listing-card > strong {
  display: block;
  margin: 10px 0;
  font-family: var(--display);
  font-size: 74px;
  line-height: 1;
  letter-spacing: -.08em;
}

.progress { height: 8px; overflow: hidden; background: var(--steel); }
.progress i { width: 87%; height: 100%; display: block; background: var(--cobalt); }

.listing-card ul { margin: 25px 0 0; padding: 0; list-style: none; }
.listing-card li { padding: 8px 0; border-top: 1px solid var(--line); font-size: 10px; }
.listing-card li::before { content: "○"; margin-right: 9px; }
.listing-card li.done::before { content: "●"; color: var(--cobalt); }

.panel-art--brands { background: #ff6e4e; }

.brand-card {
  width: 46%;
  height: 44%;
  position: absolute;
  padding: 20px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 10px 10px 25px rgba(19,21,26,.14);
}

.brand-card > span,
.brand-card > small { font-family: var(--mono); font-size: 7px; }
.brand-card strong { display: block; margin: 28px 0 8px; font-family: var(--display); font-size: 30px; line-height: .82; letter-spacing: -.07em; }
.brand-card--a { z-index: 3; top: 24%; left: 10%; background: var(--ink); transform: rotate(-7deg); }
.brand-card--b { z-index: 2; top: 13%; right: 11%; color: var(--ink); background: var(--ticket); transform: rotate(5deg); }
.brand-card--c { right: 21%; bottom: 7%; background: var(--cobalt); transform: rotate(-1deg); }

.panel-art--ops { background: #181b23; }

.ops-chart {
  width: 82%;
  position: relative;
  padding: 20px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}

.ops-chart__header,
.ops-chart__footer { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 8px; }

.ops-chart__header b { color: var(--mint); }
.ops-chart svg { width: 100%; margin: 15px 0; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--mint); stroke-width: 4; stroke-linecap: round; }
.ops-chart circle { fill: var(--mint); }
.ops-chart__footer { color: rgba(255,255,255,.4); }

.panel-art--growth { background: var(--ticket); }

.growth-ring { width: 280px; height: 280px; position: relative; display: grid; place-items: center; }
.growth-ring svg { position: absolute; inset: 0; width: 100%; transform: rotate(-90deg); }
.growth-ring circle { fill: none; stroke: rgba(19,21,26,.14); stroke-width: 8; }
.growth-ring .ring-progress { stroke: var(--cobalt); stroke-linecap: square; stroke-dasharray: 440; stroke-dashoffset: 106; }
.growth-ring > div { position: relative; text-align: center; }
.growth-ring strong { display: block; font-family: var(--display); font-size: 70px; letter-spacing: -.08em; line-height: 1; }
.growth-ring span { font-family: var(--mono); font-size: 8px; line-height: 1.4; }
.estimate-label { position: absolute; right: 22px; bottom: 20px; font-family: var(--mono); font-size: 7px; }

.launch {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(55px, 8vw, 130px);
  align-items: start;
  color: var(--white);
  background: var(--cobalt);
}

.launch__photo {
  min-height: 820px;
  position: sticky;
  top: 110px;
}

.launch__photo img {
  height: 820px;
  object-fit: cover;
  filter: grayscale(.1) contrast(1.06);
}

.launch__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9,14,63,.7));
}

.image-stamp {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 36px;
  padding: 22px 25px;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 10px 10px 0 var(--ink);
}

.image-stamp span { font-family: var(--mono); font-size: 7px; }
.image-stamp strong { display: block; margin-top: 16px; font-family: var(--display); font-size: 27px; line-height: .9; letter-spacing: -.05em; }

.launch__content { padding-top: 70px; }
.launch__content > .eyebrow { color: var(--mint); }
.launch h2 { font-size: clamp(47px, 5vw, 76px); }
.launch__intro { max-width: 660px; margin: 32px 0 50px; color: rgba(255,255,255,.68); font-size: 15px; }

.launch-steps { margin: 0; padding: 0; list-style: none; }

.launch-steps li {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 17px;
  padding: 31px 0;
  border-top: 1px solid rgba(255,255,255,.25);
}

.launch-steps li > span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
}

.launch-steps h3 { margin: -5px 0 8px; font-family: var(--display); font-size: 28px; letter-spacing: -.04em; }
.launch-steps p { max-width: 490px; margin: 0; color: rgba(255,255,255,.61); font-size: 12px; }
.launch-steps li > strong { color: rgba(255,255,255,.5); font-family: var(--mono); font-size: 8px; font-weight: 500; }

.calculator {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(60px, 9vw, 145px);
  align-items: center;
  background: var(--ticket);
}

.calculator__intro p { max-width: 490px; margin: 30px 0 0; color: #5f5d4e; font-size: 13px; }

.calculator__card {
  padding: clamp(32px, 4vw, 60px);
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 16px 16px 0 rgba(19,21,26,.88);
}

.slider-group + .slider-group { margin-top: 40px; }

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}

.slider-label label { font-size: 12px; font-weight: 700; }
.slider-label output { font-family: var(--display); font-size: 34px; font-weight: 700; letter-spacing: -.05em; }

input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  background: linear-gradient(90deg, var(--cobalt) var(--range-progress, 25%), var(--steel) var(--range-progress, 25%));
  border-radius: 0;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  background: var(--signal);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink);
}

input[type="range"]::-moz-range-thumb {
  width: 17px;
  height: 17px;
  background: var(--signal);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink);
}

.slider-range { display: flex; justify-content: space-between; margin-top: 10px; color: #9397a0; font-family: var(--mono); font-size: 8px; }

.calculator__result {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--ink);
}

.calculator__result > span {
  display: inline-block;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.4;
}

.calculator__result > strong {
  display: block;
  margin: 12px 0;
  color: var(--cobalt);
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 98px);
  letter-spacing: -.08em;
  line-height: .9;
}

.calculator__result small { display: block; max-width: 560px; color: var(--muted); font-size: 8px; }

.results { background: var(--white); }

.case-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: 1.55fr .72fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.case-card { border: 1px solid var(--ink); }

.case-card--feature {
  grid-row: 1 / 3;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 780px;
}

.case-image { min-height: 420px; position: relative; overflow: hidden; }

.case-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.05);
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.case-card:hover .case-image img { transform: scale(1.035); }

.case-image > span {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 11px;
  color: var(--white);
  background: var(--cobalt);
  font-family: var(--mono);
  font-size: 8px;
}

.case-copy { padding: 38px; }

.case-type,
.case-number { font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }

.case-copy h3,
.case-card--compact h3 {
  margin: 25px 0 16px;
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .98;
}

.case-copy > p,
.case-card--compact > p { color: var(--muted); font-size: 12px; }

.case-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.case-stats > div { padding: 22px 0 0; }
.case-stats strong { display: block; font-family: var(--display); font-size: 38px; letter-spacing: -.06em; }
.case-stats span,
.compact-metric span { font-family: var(--mono); font-size: 7px; line-height: 1.4; }

.case-card--compact {
  position: relative;
  padding: clamp(30px, 3.5vw, 50px);
  overflow: hidden;
}

.case-card--compact::after {
  content: "";
  width: 140px;
  height: 140px;
  position: absolute;
  right: -45px;
  bottom: -45px;
  border: 26px solid rgba(19,21,26,.1);
  border-radius: 50%;
}

.case-card--compact h3 { max-width: 490px; margin-top: 36px; font-size: clamp(30px, 2.7vw, 43px); }
.case-card--compact p { max-width: 490px; }

.case-card--blue { color: var(--white); background: var(--cobalt); }
.case-card--blue p { color: rgba(255,255,255,.68); }
.case-card--mint { background: var(--mint); }

.compact-metric {
  display: flex;
  align-items: end;
  gap: 13px;
  margin-top: 34px;
}

.compact-metric strong { font-family: var(--display); font-size: 54px; letter-spacing: -.08em; line-height: .8; }

.company {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
  background: #ebeef5;
}

.company__story > p { max-width: 720px; color: var(--muted); font-size: 13px; line-height: 1.85; }
.company__lead { margin-top: 40px; color: var(--ink) !important; font-family: var(--display); font-size: 27px !important; font-weight: 600; letter-spacing: -.04em; line-height: 1.3 !important; }

.hq-card {
  max-width: 570px;
  justify-self: end;
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 16px 16px 0 var(--cobalt);
}

.hq-map {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: var(--ticket);
  border-bottom: 1px solid var(--ink);
}

.hq-map::before,
.hq-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(19,21,26,.2);
  border-radius: 50%;
}

.hq-map::before { width: 290px; height: 290px; top: -80px; right: -80px; }
.hq-map::after { width: 160px; height: 160px; bottom: -60px; left: -40px; }

.hq-map svg { width: 100%; height: 100%; }
.hq-map path { fill: none; stroke: rgba(19,21,26,.18); stroke-width: 12; }

.map-pin {
  position: absolute;
  top: 51%;
  left: 51%;
  transform: translate(-50%, -50%);
}

.map-pin i {
  width: 26px;
  height: 26px;
  display: block;
  position: relative;
  margin: 0 auto 7px;
  background: var(--signal);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink), 0 8px 18px rgba(19,21,26,.2);
}

.map-pin span {
  padding: 5px 8px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 7px;
  white-space: nowrap;
}

.hq-info { padding: 35px; }
.hq-info > span { color: var(--cobalt); font-family: var(--mono); font-size: 8px; }
.hq-info h3 { margin: 18px 0; font-family: var(--display); font-size: 50px; line-height: .9; letter-spacing: -.06em; }
.hq-info address { color: var(--muted); font-size: 12px; font-style: normal; }
.hq-info a { display: inline-block; margin-top: 25px; padding-bottom: 3px; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 700; }

.faq {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(70px, 12vw, 180px);
  align-items: start;
  background: var(--white);
}

.faq__heading { position: sticky; top: 130px; }
.faq__heading > p { max-width: 380px; margin-top: 28px; color: var(--muted); font-size: 12px; }

.accordion { border-top: 1px solid var(--ink); }

.accordion-item { border-bottom: 1px solid var(--ink); }

.accordion-item button {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.035em;
}

.accordion-item button i {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 auto;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 8px;
  background: var(--ink);
  transition: transform .25s ease;
}

.accordion-item button i::after { transform: rotate(90deg); }
.accordion-item button[aria-expanded="true"] i { background: var(--mint); }
.accordion-item button[aria-expanded="true"] i::after { transform: rotate(0); }

.accordion-content { padding: 0 55px 30px 0; }
.accordion-content p { max-width: 720px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--cobalt);
}

.final-cta::before {
  content: "RK";
  position: absolute;
  right: -4vw;
  bottom: -14vw;
  color: rgba(255,255,255,.07);
  font-family: var(--display);
  font-size: 38vw;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.15em;
}

.final-cta__rail {
  display: flex;
  justify-content: space-around;
  padding: 14px 20px;
  color: var(--ink);
  background: var(--mint);
  font-family: var(--mono);
  font-size: 8px;
}

.final-cta__rail span::before { content: "●"; margin-right: 10px; color: var(--cobalt); }

.final-cta__content {
  width: min(1000px, calc(100% - 48px));
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 135px 0 150px;
  text-align: center;
}

.final-cta__content > .eyebrow { color: var(--mint); }
.final-cta h2 { margin-top: 28px; font-size: clamp(60px, 8vw, 112px); }
.final-cta__content p { max-width: 650px; margin: 35px auto; color: rgba(255,255,255,.7); font-size: 14px; }

footer { padding: 70px max(24px, calc((100vw - 1432px) / 2)) 30px; color: var(--white); background: var(--ink); }

.footer__top {
  display: grid;
  grid-template-columns: .55fr .65fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}

.brand--footer .brand__mark { color: var(--white); }
.footer__top > p { margin: 0; color: rgba(255,255,255,.5); font-size: 12px; }

.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }

.footer__links > div { display: flex; flex-direction: column; gap: 10px; }
.footer__links strong { margin-bottom: 8px; color: rgba(255,255,255,.38); font-family: var(--mono); font-size: 8px; }
.footer__links a,
.footer-link { width: max-content; padding: 0; color: rgba(255,255,255,.75); background: none; border: 0; font-size: 11px; cursor: pointer; }
.footer__links a:hover,
.footer-link:hover { color: var(--mint); }

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 25px;
  padding-top: 25px;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.16);
  font-family: var(--mono);
  font-size: 7px;
}

.photo-credit { text-align: right; }
.photo-credit a { text-decoration: underline; }

.modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9,11,17,.76);
  backdrop-filter: blur(7px);
}

.modal__panel {
  width: min(860px, 100%);
  max-height: calc(100vh - 40px);
  position: relative;
  z-index: 2;
  overflow-y: auto;
  padding: clamp(30px, 5vw, 65px);
  background: var(--white);
  border-top: 7px solid var(--cobalt);
  box-shadow: 0 30px 100px rgba(0,0,0,.4);
  animation: modalIn .36s cubic-bezier(.2,.75,.22,1);
}

.modal__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
}

.modal__intro h2 { max-width: 620px; margin: 20px 0 12px; font-family: var(--display); font-size: clamp(42px, 6vw, 66px); letter-spacing: -.06em; line-height: .93; }
.modal__intro p { max-width: 620px; color: var(--muted); font-size: 12px; }

form { margin-top: 35px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

form label {
  display: block;
  margin-bottom: 17px;
  color: #454954;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

form input,
form select,
form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  font-family: var(--body);
  font-size: 12px;
  text-transform: none;
}

form input:focus,
form select:focus,
form textarea:focus { border-color: var(--cobalt); box-shadow: 0 0 0 2px rgba(37,54,232,.12); }

form textarea { resize: vertical; }

form > small { display: block; margin-top: 14px; color: var(--muted); font-size: 8px; }

.form-success { padding: 60px 0 20px; text-align: center; }
.form-success > span { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 24px; color: var(--white); background: var(--cobalt); border-radius: 50%; font-size: 30px; }
.form-success h3 { margin: 0; font-family: var(--display); font-size: 46px; letter-spacing: -.05em; }
.form-success p { margin: 10px auto 25px; max-width: 520px; color: var(--muted); font-size: 12px; }

.toast {
  position: fixed;
  z-index: 600;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--mint);
  border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  animation: toastIn .35s ease;
}

.toast[hidden] { display: none; }
.toast > span { width: 26px; height: 26px; display: grid; place-items: center; color: var(--white); background: var(--cobalt); border-radius: 50%; font-size: 12px; }
.toast strong,
.toast small { display: block; }
.toast strong { font-size: 10px; }
.toast small { font-family: var(--mono); font-size: 7px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.65,.2,1), transform .7s cubic-bezier(.2,.65,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aiBeaconGlow {
  0%, 100% { box-shadow: 8px 8px 0 rgba(37, 54, 232, .18); }
  50% { box-shadow: 8px 8px 0 rgba(37, 54, 232, .42), 0 0 26px rgba(37,54,232,.09); }
}

@keyframes aiBeaconScan {
  0%, 22% { left: -45%; opacity: 0; }
  36% { opacity: 1; }
  62%, 100% { left: 120%; opacity: 0; }
}

@keyframes aiCoreBeat {
  0%, 100% { transform: scale(.8); opacity: .75; }
  45% { transform: scale(1.25); opacity: 1; }
}

@keyframes aiRing {
  0% { transform: scale(.45); opacity: .9; }
  75%, 100% { transform: scale(2.15); opacity: 0; }
}

@keyframes aiSignal {
  from { transform: scaleY(.45); opacity: .45; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 7px rgba(200, 255, 173, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 255, 173, 0); }
}

@keyframes marquee { to { transform: translateX(-50%); } }

@keyframes ticketEnter {
  0% { opacity: 0; transform: translateY(-80px) rotate(5deg); }
  70% { opacity: 1; transform: translateY(7px) rotate(-2deg); }
  100% { transform: translateY(0) rotate(0); }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.985); }
  to { opacity: 1; transform: none; }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: .8fr 1.2fr;
    gap: 35px;
  }

  .hero h1 { font-size: clamp(62px, 7vw, 88px); }

  .hero__visual { height: 640px; }

  .order-console { width: 82%; }

  .platform-tabs { grid-template-columns: 290px 1fr; }
  .tab-list button { padding-left: 55px; }
  .panel-copy { padding: 42px 32px; }

  .launch { grid-template-columns: .8fr 1.2fr; gap: 75px; }
  .launch__photo,
  .launch__photo img { min-height: 700px; height: 700px; }

  .company { gap: 75px; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav,
  .header-cta { display: none; }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--ink);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) { width: 18px; height: 2px; display: block; background: var(--ink); }

  .mobile-menu {
    position: absolute;
    top: 81px;
    right: 0;
    left: 0;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--ink);
    box-shadow: 10px 10px 0 var(--cobalt);
  }

  .mobile-menu:not([hidden]) { display: flex; flex-direction: column; gap: 20px; }
  .mobile-menu a { font-family: var(--display); font-size: 25px; font-weight: 650; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .hero__copy { max-width: 760px; }
  .hero__lede { max-width: 620px; }
  .hero__visual { width: 100%; height: 700px; margin-top: 45px; }
  .hero-photo { width: 66%; }

  .section-heading,
  .calculator,
  .company,
  .faq { grid-template-columns: 1fr; }

  .section-heading > p { max-width: 650px; justify-self: start; }

  .platform-tabs { grid-template-columns: 1fr; }
  .tab-list { display: grid; grid-template-columns: repeat(4, 1fr); }
  .tab-list button { min-height: 115px; padding: 45px 15px 15px; font-size: 15px; }
  .tab-list button > span { top: 16px; left: 15px; }
  .tab-list button small { display: none; }
  .tab-list button::after { top: 15px; right: 15px; }

  .launch { grid-template-columns: 1fr; }
  .launch__photo { position: relative; top: auto; min-height: 560px; }
  .launch__photo img { height: 560px; min-height: 560px; }
  .launch__content { padding-top: 0; }

  .calculator { gap: 55px; }

  .case-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .case-card--feature { grid-column: 1/3; grid-row: auto; min-height: 0; }

  .hq-card { max-width: 100%; justify-self: stretch; }

  .faq__heading { position: static; }
  .faq { gap: 60px; }

  .footer__top { grid-template-columns: .6fr 1fr; }
  .footer__top > p { display: none; }
  .footer__bottom { grid-template-columns: 1fr 1fr; }
  .photo-credit { grid-column: 1/3; text-align: left; }
}

@media (max-width: 680px) {
  .announcement {
    min-height: 44px;
    flex-wrap: wrap;
    gap: 3px 6px;
    padding: 7px 14px;
    font-size: 8px;
  }
  .announcement__pulse { width: 6px; height: 6px; }
  .announcement a { display: none; }

  .site-header,
  .hero { width: min(100% - 28px, 1480px); }

  .site-header { height: 70px; }
  .mobile-menu { top: 69px; }

  .brand { font-size: 11px; }
  .brand__mark { width: 32px; height: 32px; }

  .hero {
    min-height: 0;
    padding: 55px 0 65px;
  }

  .hero h1 { font-size: clamp(54px, 17vw, 76px); }
  .headline-shift { transform: none; }
  .hero__lede { font-size: 15px; }
  .ai-beacon {
    grid-template-columns: 34px 1fr;
    gap: 11px;
    padding: 12px 13px 12px 11px;
    box-shadow: 6px 6px 0 rgba(37,54,232,.18);
  }

  .ai-beacon__pulse { width: 32px; height: 32px; }
  .ai-beacon__copy strong { font-size: 7px; line-height: 1.5; }
  .ai-beacon__copy p { font-size: 8px; }
  .ai-beacon__status { display: none; }

  .hero__actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .hero__actions .button { width: 100%; }
  .text-link { width: max-content; }

  .hero__proof { align-items: flex-start; }

  .hero__visual { height: 625px; margin-top: 20px; }
  .hero__visual::before { top: 0; right: -14px; bottom: 70px; left: 28px; }
  .hero-photo { width: 83%; height: 48%; }
  .order-console { width: calc(100% - 14px); min-height: 388px; padding: 14px; }
  .console__metrics { padding: 10px 0; }
  .console__metrics > div { padding: 6px; }
  .console__metrics strong { font-size: 14px; }
  .ticket-rail { gap: 5px; }
  .order-ticket { min-height: 170px; padding: 9px 7px; }
  .order-ticket h3 { min-height: 34px; margin: 15px 0 7px; font-size: 12px; }
  .order-ticket ul { min-height: 49px; font-size: 6px; }
  .ticket__source,
  .ticket__footer { font-size: 5px; }
  .test-order { min-height: 49px; margin-top: 16px; }
  .floating-note--one { top: 15px; left: 7px; }
  .floating-note--two { right: 2px; bottom: 35px; }

  .section-pad { padding: 85px 18px; }

  .manifesto__statement { margin-top: 32px; font-size: clamp(43px, 13vw, 65px); }
  .manifesto__grid { grid-template-columns: 1fr; gap: 22px; margin-top: 42px; }

  .section-heading { gap: 34px; }
  .section-heading h2,
  .launch h2,
  .calculator h2,
  .company h2,
  .faq h2 { font-size: clamp(43px, 13vw, 65px); }

  .platform-tabs { margin-top: 48px; box-shadow: 8px 8px 0 var(--steel); }
  .tab-list { grid-template-columns: 1fr 1fr; }
  .tab-list button { min-height: 90px; }
  .tab-panel { min-height: 0; grid-template-columns: 1fr; }
  .panel-copy { padding: 38px 24px; }
  .panel-art { min-height: 390px; }
  .listing-card { width: 76%; }
  .brand-card { width: 48%; }
  .growth-ring { width: 240px; height: 240px; }

  .launch { gap: 60px; }
  .launch__photo,
  .launch__photo img { min-height: 460px; height: 460px; }
  .image-stamp { right: -4px; bottom: 22px; }
  .launch__content { padding-top: 0; }
  .launch-steps li { grid-template-columns: 38px 1fr; }
  .launch-steps li > strong { display: none; }

  .calculator { gap: 45px; }
  .calculator__card { padding: 28px 20px; box-shadow: 9px 9px 0 var(--ink); }
  .calculator__result > strong { font-size: 55px; }

  .case-grid { grid-template-columns: 1fr; }
  .case-card--feature { grid-column: auto; }
  .case-image { min-height: 340px; }
  .case-copy { padding: 28px 22px; }
  .case-stats { gap: 10px; }
  .case-stats strong { font-size: 30px; }

  .company { gap: 55px; }
  .hq-card { box-shadow: 9px 9px 0 var(--cobalt); }
  .hq-map { height: 250px; }
  .hq-info h3 { font-size: 44px; }

  .faq { gap: 45px; }
  .accordion-item button { min-height: 86px; font-size: 19px; }
  .accordion-content { padding-right: 20px; }

  .final-cta__rail { gap: 20px; overflow: hidden; white-space: nowrap; justify-content: flex-start; }
  .final-cta__content { width: calc(100% - 36px); padding: 100px 0 115px; }
  .final-cta h2 { font-size: clamp(52px, 16vw, 75px); }

  footer { padding: 55px 20px 24px; }
  .footer__top { grid-template-columns: 1fr; padding-bottom: 55px; }
  .footer__links { margin-top: 15px; }
  .footer__bottom { grid-template-columns: 1fr; }
  .photo-credit { grid-column: auto; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .modal { padding: 10px; }
  .modal__panel { max-height: calc(100vh - 20px); padding: 40px 22px 30px; }
  .modal__close { top: 10px; right: 10px; }

  .toast { right: 15px; bottom: 15px; left: 15px; }
}

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

  .reveal { opacity: 1; transform: none; }
}

/* Prominent hero AI overlay v2 */
.hero__visual > .ai-beacon {
  width: min(590px, calc(100% - 28px));
  max-width: none;
  min-height: 112px;
  position: absolute;
  z-index: 12;
  top: -22px;
  right: 12px;
  margin: 0;
  grid-template-columns: 64px minmax(0, 1fr) 70px;
  gap: 18px;
  padding: 18px 20px 18px 17px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(200, 255, 173, 0.22), transparent 28%),
    linear-gradient(112deg, #101218 0%, #171d47 56%, #2536e8 100%);
  border: 1px solid rgba(200, 255, 173, 0.88);
  border-left: 7px solid var(--mint);
  box-shadow:
    12px 12px 0 rgba(200, 255, 173, 0.72),
    0 22px 55px rgba(12, 15, 35, 0.28);
  animation:
    aiBeaconHover 3s ease-in-out infinite,
    aiBeaconGlowV2 3.2s ease-in-out infinite;
}

.hero__visual > .ai-beacon::before {
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation-duration: 2.8s;
}

.hero__visual > .ai-beacon::after {
  content: "COMING TO REMOTE KITCHEN";
  position: absolute;
  right: 20px;
  top: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero__visual > .ai-beacon .ai-beacon__pulse {
  width: 58px;
  height: 58px;
  border-width: 2px;
  background: rgba(200, 255, 173, 0.12);
  box-shadow: inset 0 0 22px rgba(200, 255, 173, 0.18);
}

.hero__visual > .ai-beacon .ai-beacon__pulse::before {
  width: 12px;
  height: 12px;
  box-shadow:
    0 0 0 7px rgba(200, 255, 173, 0.12),
    0 0 22px rgba(200, 255, 173, 0.78);
}

.hero__visual > .ai-beacon .ai-beacon__pulse::after {
  content: "AI";
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  color: var(--mint);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero__visual > .ai-beacon .ai-beacon__copy strong {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.12em;
}

.hero__visual > .ai-beacon .ai-beacon__copy strong span {
  display: inline;
  color: var(--mint);
  text-shadow: 0 0 14px rgba(200, 255, 173, 0.55);
}

.hero__visual > .ai-beacon .ai-beacon__copy p {
  max-width: 390px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.55;
}

.hero__visual > .ai-beacon .ai-beacon__status {
  width: 70px;
}

.hero__visual > .ai-beacon .ai-beacon__status span {
  color: var(--mint);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.hero__visual > .ai-beacon .ai-beacon__status b {
  height: 5px;
  border-radius: 999px;
}

.floating-note--one {
  top: 118px;
}

@keyframes aiBeaconHover {
  0%, 100% { transform: translateY(0) rotate(-0.15deg); }
  50% { transform: translateY(-6px) rotate(0.15deg); }
}

@keyframes aiBeaconGlowV2 {
  0%, 100% {
    box-shadow:
      12px 12px 0 rgba(200, 255, 173, 0.56),
      0 22px 55px rgba(12, 15, 35, 0.28);
  }
  50% {
    box-shadow:
      12px 12px 0 rgba(200, 255, 173, 0.96),
      0 0 38px rgba(37, 54, 232, 0.38),
      0 26px 60px rgba(12, 15, 35, 0.34);
  }
}

@media (max-width: 680px) {
  .hero__visual > .ai-beacon {
    width: calc(100% - 12px);
    min-height: 98px;
    top: -12px;
    right: auto;
    left: 6px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 14px 14px 12px;
    border-left-width: 5px;
    box-shadow:
      7px 7px 0 rgba(200, 255, 173, 0.72),
      0 18px 40px rgba(12, 15, 35, 0.24);
  }

  .hero__visual > .ai-beacon::after {
    display: none;
  }

  .hero__visual > .ai-beacon .ai-beacon__pulse {
    width: 44px;
    height: 44px;
  }

  .hero__visual > .ai-beacon .ai-beacon__copy strong {
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .hero__visual > .ai-beacon .ai-beacon__copy p {
    margin-top: 6px;
    font-size: 8px;
    line-height: 1.5;
  }

  .hero__visual > .ai-beacon .ai-beacon__status {
    display: none;
  }

  .floating-note--one {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__visual > .ai-beacon,
  .hero__visual > .ai-beacon::before,
  .hero__visual > .ai-beacon .ai-beacon__pulse::before,
  .hero__visual > .ai-beacon .ai-beacon__pulse i,
  .hero__visual > .ai-beacon .ai-beacon__status b {
    animation: none !important;
  }
}


/* AI application modes v3 */
.hero__visual > .ai-beacon {
  min-height: 136px;
}

.hero__visual > .ai-beacon .ai-beacon__modes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.hero__visual > .ai-beacon .ai-beacon__modes span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 4px 7px 3px;
  color: #101218;
  background: var(--mint);
  border: 1px solid rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.18);
}

.floating-note--one {
  top: 150px;
}

@media (max-width: 680px) {
  .hero__visual > .ai-beacon {
    min-height: 124px;
  }

  .hero__visual > .ai-beacon .ai-beacon__modes {
    gap: 4px;
    margin-top: 7px;
  }

  .hero__visual > .ai-beacon .ai-beacon__modes span {
    min-height: 18px;
    padding: 3px 5px 2px;
    font-size: 5px;
  }
}
