:root {
  --void: #0f1115;
  --void-2: #131518;
  --graphite: #1a1d23;
  --graphite-2: #22262d;
  --cream: #eff2f5;
  --cream-2: #dae0e5;
  --muted: #8994a5;
  --line-solid: #2e333b;
  --line: rgba(46, 51, 59, .92);
  --line-strong: rgba(122, 133, 149, .38);
  --solar: #f97316;
  --solar-2: #fb923c;
  --moss: #4e7a47;
  --moss-2: #6fa868;
  --moss-3: #93c48c;
  --rose: #fdba74;
  --shadow: 0 28px 100px rgba(0, 0, 0, .45);
  --radius: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--cream);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  background:
    linear-gradient(90deg, rgba(122, 133, 149, .08) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(rgba(122, 133, 149, .06) 1px, transparent 1px) 0 0 / 84px 84px,
    radial-gradient(1200px 780px at 50% -20%, rgba(249, 115, 22, .12), transparent 60%),
    var(--void);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(249, 115, 22, .1) 28.2%, transparent 34%),
    linear-gradient(72deg, transparent 0 64%, rgba(78, 122, 71, .13) 64.2%, transparent 70%);
}

body::after,
.signal-noise {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::after {
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 78%);
}

.signal-noise {
  z-index: 80;
  opacity: .22;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}

img,
canvas {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

::selection {
  color: #1c1008;
  background: rgba(249, 115, 22, .35);
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--solar), var(--solar-2), var(--moss-2));
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

.mono {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(245, 239, 226, .1);
  background: rgba(8, 10, 10, .72);
  backdrop-filter: blur(20px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.035em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-links,
.nav-actions,
.hero-actions,
.trust-row,
.chips {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 24px;
  color: rgba(245, 239, 226, .62);
  font-size: 14px;
}

.nav-links a,
.ghost-link,
.footer-links a {
  transition: color .25s var(--ease);
}

.nav-links a:hover,
.ghost-link:hover,
.footer-links a:hover {
  color: var(--cream);
}

.nav-actions {
  gap: 12px;
}

.ghost-link {
  color: rgba(245, 239, 226, .68);
  font-size: 14px;
  font-weight: 700;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, .34) 46%, transparent 58%);
  transform: translateX(-130%);
  transition: transform .7s var(--ease);
  pointer-events: none;
}

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

.btn:hover::after {
  transform: translateX(130%);
}

.btn-primary {
  color: #1c1008;
  background: linear-gradient(135deg, var(--solar), var(--solar-2) 52%, var(--rose));
  box-shadow: 0 18px 52px rgba(249, 115, 22, .26);
}

.btn-secondary {
  color: var(--cream);
  border-color: rgba(245, 239, 226, .18);
  background: rgba(245, 239, 226, .07);
}

.btn-compact {
  min-height: 42px;
  padding: 0 17px;
  font-size: 14px;
}

.field-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .75;
}

.hero-tape {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  border-block: 1px solid rgba(46, 51, 59, .82);
  background: rgba(15, 17, 21, .58);
  backdrop-filter: blur(18px);
}

.hero-tape-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(218, 224, 229, .58);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-masthead {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(46, 51, 59, .82);
  color: rgba(218, 224, 229, .48);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  padding: 84px 0 26px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -10% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, .3), rgba(111, 168, 104, .22), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.hero-copy {
  max-width: 610px;
  padding-top: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 226, .68);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--solar), var(--moss-2));
}

h1,
h2,
h3 {
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.055em;
  line-height: .94;
}

h1 {
  margin-top: 18px;
  font-size: clamp(54px, 8.4vw, 116px);
  max-width: 920px;
}

.hero-copy p {
  width: min(100%, 610px);
  margin-top: 24px;
  color: rgba(245, 239, 226, .73);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.34;
}

.hero-actions {
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 34px;
}

.hero-actions .btn {
  flex: 0 1 auto;
  white-space: nowrap;
}

.trust-row {
  gap: 10px;
  flex-wrap: nowrap;
  margin-top: 26px;
}

.trust-row span,
.chips span,
.status-pill,
.price-label {
  border: 1px solid rgba(245, 239, 226, .12);
  border-radius: 999px;
  color: rgba(245, 239, 226, .7);
  background: rgba(245, 239, 226, .055);
}

.trust-row span {
  flex: 0 1 auto;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-stage {
  position: relative;
  min-height: 640px;
  perspective: 1000px;
}

.athlete-panel,
.product-console,
.dash-card,
.bento-card,
.price-card,
.credit-card,
.ai-shell {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(245, 239, 226, .09), rgba(245, 239, 226, .035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform .35s var(--ease), border-color .3s var(--ease);
}

.tilt-card:hover {
  border-color: rgba(249, 115, 22, .34);
}

.athlete-panel {
  position: absolute;
  inset: 0 8% 14% 10%;
  border-radius: 36px;
  overflow: hidden;
}

.athlete-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.04);
  animation: slowDrift 18s var(--ease) infinite alternate;
}

.athlete-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 10, .1), rgba(8, 10, 10, .72)),
    linear-gradient(115deg, rgba(8, 10, 10, .82), transparent 48%);
}

.session-chip,
.metric-ribbon {
  position: absolute;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.session-chip {
  top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid rgba(245, 239, 226, .18);
  border-radius: 999px;
  color: rgba(245, 239, 226, .8);
  background: rgba(8, 10, 10, .44);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 800;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss-2);
  box-shadow: 0 0 0 6px rgba(111, 168, 104, .16);
}

.metric-ribbon {
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-ribbon div {
  padding: 14px;
  border: 1px solid rgba(245, 239, 226, .15);
  border-radius: 16px;
  background: rgba(8, 10, 10, .48);
  backdrop-filter: blur(16px);
}

.metric-ribbon small,
.console-grid span,
.dash-head,
.dash-score span,
.credit-row span,
.security-list span {
  color: rgba(245, 239, 226, .58);
}

.metric-ribbon small {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.metric-ribbon strong {
  display: block;
  margin-top: 2px;
  font-family: "Geist", sans-serif;
  font-size: 34px;
  line-height: .9;
}

.product-console {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(440px, 78%);
  padding: 18px;
  border-radius: 26px;
}

.console-top,
.console-grid,
.dash-head,
.credit-row,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-top strong {
  display: block;
  margin-top: 6px;
  font-family: "Geist", sans-serif;
  font-size: 68px;
  letter-spacing: -.07em;
  line-height: .85;
}

.score-ring {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--graphite) 0 55%, transparent 56%),
    conic-gradient(var(--solar) 0 72%, rgba(46, 51, 59, .9) 72% 100%);
}

.score-ring span {
  font-family: "Geist Mono", monospace;
  color: var(--solar-2);
  font-size: 12px;
  font-weight: 800;
}

#scoreCanvas {
  width: 100%;
  height: 152px;
  margin: 8px 0 12px;
}

.pulse-line {
  width: 100%;
  height: 38px;
  margin: -8px 0 12px;
  color: var(--solar);
  opacity: .9;
}

.pulse-line path {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawPulse 3.8s var(--ease) forwards;
}

.console-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.console-grid div {
  min-width: 0;
  padding: 12px;
  border-radius: 15px;
  background: rgba(245, 239, 226, .055);
}

.console-grid span,
.console-grid strong {
  display: block;
  white-space: nowrap;
}

.console-grid span {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
}

.console-grid strong {
  margin-top: 4px;
  color: var(--cream);
  font-size: 14px;
}

.hero-strip {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(245, 239, 226, .1);
  border-radius: 26px;
  background: rgba(8, 10, 10, .46);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-strip div {
  padding: 22px 24px;
}

.hero-strip div + div {
  border-left: 1px solid rgba(245, 239, 226, .1);
}

.hero-strip strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.hero-strip p {
  margin-top: 5px;
  color: rgba(245, 239, 226, .6);
  font-size: 15px;
  line-height: 1.35;
}

.signal-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(46, 51, 59, .92);
  background: #1a1d23;
}

.signal-marquee::before,
.signal-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 12vw;
  pointer-events: none;
}

.signal-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #1a1d23, transparent);
}

.signal-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #1a1d23, transparent);
}

.marquee-track {
  display: flex;
  overflow: hidden;
  padding: 20px 0;
  border-bottom: 1px solid rgba(46, 51, 59, .92);
}

.marquee-track.compact {
  padding: 12px 0;
  border-bottom: 0;
  background: rgba(15, 17, 21, .34);
}

.marquee-row {
  display: flex;
  align-items: center;
  gap: 36px;
  min-width: max-content;
  padding-right: 36px;
  animation: scrollMarquee 34s linear infinite;
}

.marquee-row.reverse {
  animation-direction: reverse;
  animation-duration: 48s;
}

.marquee-row span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--cream);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -.05em;
  white-space: nowrap;
}

.marquee-row span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--solar);
  box-shadow: 0 0 0 7px rgba(249, 115, 22, .12);
}

.compact .marquee-row span {
  color: rgba(218, 224, 229, .62);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.compact .marquee-row span::after {
  width: 5px;
  height: 5px;
  background: var(--moss-2);
  box-shadow: none;
}

.section {
  padding: clamp(84px, 10vw, 140px) 0;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head h2,
.split-copy h2,
.lifestyle-copy h2,
.ai-copy h2,
.security-copy h2,
.final-inner h2 {
  margin-top: 14px;
  font-size: clamp(40px, 6vw, 78px);
}

.section-head p,
.split-copy p,
.lifestyle-copy p,
.ai-copy p,
.security-copy p,
.final-inner p {
  margin-top: 18px;
  color: rgba(245, 239, 226, .66);
  font-size: 20px;
  line-height: 1.42;
}

.product-section {
  background:
    linear-gradient(180deg, transparent, rgba(245, 239, 226, .035) 18%, transparent 80%);
}

.manifesto-section {
  background:
    linear-gradient(180deg, rgba(15, 17, 21, .94), rgba(26, 29, 35, .96)),
    var(--void);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: end;
}

.manifesto-copy h2 {
  margin-top: 16px;
  font-size: clamp(42px, 7vw, 86px);
}

.manifesto-copy p {
  margin-top: 20px;
  color: rgba(218, 224, 229, .66);
  font-size: 20px;
  line-height: 1.45;
}

.manifesto-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  border: 1px solid rgba(46, 51, 59, .92);
  background: rgba(46, 51, 59, .92);
}

.manifesto-cards div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #1a1d23;
}

.manifesto-cards strong {
  font-size: clamp(46px, 6vw, 86px);
  line-height: .85;
  letter-spacing: -.08em;
}

.manifesto-cards div:nth-child(2) strong,
.manifesto-cards div:nth-child(3) strong {
  color: var(--solar);
}

.manifesto-cards span {
  max-width: 220px;
  color: rgba(218, 224, 229, .6);
  font-size: 14px;
  line-height: 1.35;
}

.product-bento {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.bento-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
}

.bento-large {
  grid-row: span 2;
  min-height: 540px;
  padding: 34px;
}

.bento-copy {
  position: relative;
  z-index: 2;
  max-width: 530px;
}

.bento-card h3 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: .98;
}

.bento-card p {
  margin-top: 16px;
  color: rgba(245, 239, 226, .65);
  font-size: 18px;
  line-height: 1.38;
}

.lab-stack {
  position: absolute;
  right: 38px;
  bottom: 28px;
  left: 34px;
  min-height: 230px;
}

.paper-card {
  position: absolute;
  width: min(360px, 72%);
  padding: 18px;
  border: 1px solid rgba(232, 234, 237, .8);
  border-radius: 18px;
  color: #202124;
  background: linear-gradient(135deg, #ffffff, #f1f3f4);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

.paper-card span,
.paper-card strong {
  display: block;
}

.paper-card span {
  color: rgba(32, 33, 36, .62);
  font-size: 14px;
  font-weight: 800;
}

.paper-card strong {
  margin-top: 8px;
  font-family: "Geist", sans-serif;
  font-size: 36px;
  letter-spacing: -.05em;
}

.paper-a {
  right: 2%;
  bottom: 44%;
  transform: rotate(4deg);
}

.paper-b {
  left: 6%;
  bottom: 22%;
  transform: rotate(-7deg);
}

.paper-c {
  right: 10%;
  bottom: 0;
  transform: rotate(2deg);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 10, 10, .84));
}

.image-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.image-card h3 {
  font-size: 34px;
}

.dark-card {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, .13), transparent 35%),
    linear-gradient(180deg, rgba(245, 239, 226, .08), rgba(245, 239, 226, .035));
}

.system-ledger {
  margin-top: 18px;
  border: 1px solid rgba(46, 51, 59, .92);
  border-radius: 24px;
  background: rgba(26, 29, 35, .72);
  overflow: hidden;
}

.ledger-row {
  display: grid;
  grid-template-columns: 72px .7fr 1.3fr;
  gap: 22px;
  align-items: baseline;
  padding: 24px 28px;
}

.ledger-row + .ledger-row {
  border-top: 1px solid rgba(46, 51, 59, .92);
}

.ledger-row strong {
  font-size: clamp(28px, 4vw, 52px);
  line-height: .95;
  letter-spacing: -.05em;
}

.ledger-row p {
  max-width: 620px;
  color: rgba(218, 224, 229, .62);
  font-size: 18px;
  line-height: 1.4;
}

.sport-line {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 118px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.sport-line span {
  flex: 1;
  height: var(--h);
  min-height: 20px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--solar), rgba(111, 168, 104, .3));
}

.split,
.lifestyle-grid,
.security-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.signal-list div,
.security-list div {
  padding: 18px;
  border: 1px solid rgba(245, 239, 226, .1);
  border-radius: 18px;
  background: rgba(245, 239, 226, .045);
}

.signal-list strong,
.signal-list span,
.security-list strong,
.security-list span {
  display: block;
}

.signal-list strong,
.security-list strong {
  font-size: 18px;
}

.signal-list span,
.security-list span {
  margin-top: 5px;
  color: rgba(245, 239, 226, .58);
  line-height: 1.35;
}

.dashboard-stack {
  position: relative;
  min-height: 540px;
}

.dash-card {
  border-radius: 26px;
}

.main-dash {
  padding: 28px;
  min-height: 410px;
}

.status-pill {
  padding: 7px 10px;
  color: var(--moss-2);
  font-size: 12px;
  font-weight: 800;
}

.dash-score {
  margin-top: 38px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.dash-score strong {
  font-family: "Geist", sans-serif;
  font-size: 138px;
  line-height: .78;
  letter-spacing: -.09em;
}

.dash-score span {
  padding-bottom: 12px;
  font-size: 25px;
  font-weight: 800;
}

.timeline {
  position: relative;
  height: 118px;
  margin-top: 32px;
  border-bottom: 1px solid rgba(245, 239, 226, .15);
}

.timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(249, 115, 22, .18)),
    linear-gradient(90deg, transparent 0 12%, rgba(245, 239, 226, .1) 12.2%, transparent 12.4% 32%, rgba(245, 239, 226, .1) 32.2%, transparent 32.4% 54%, rgba(245, 239, 226, .1) 54.2%, transparent 54.4% 76%, rgba(245, 239, 226, .1) 76.2%, transparent 76.4%);
  clip-path: polygon(0 73%, 9% 66%, 18% 71%, 28% 58%, 36% 63%, 48% 48%, 58% 53%, 70% 38%, 82% 42%, 100% 28%, 100% 100%, 0 100%);
}

.timeline span {
  position: absolute;
  bottom: 28%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--solar);
  box-shadow: 0 0 0 7px rgba(255, 122, 26, .16);
}

.timeline span:nth-child(1) { left: 8%; bottom: 34%; }
.timeline span:nth-child(2) { left: 25%; bottom: 47%; }
.timeline span:nth-child(3) { left: 42%; bottom: 40%; }
.timeline span:nth-child(4) { left: 60%; bottom: 56%; }
.timeline span:nth-child(5) { left: 77%; bottom: 51%; }
.timeline span:nth-child(6) { left: 93%; bottom: 66%; }

.dash-bars {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.dash-bars div {
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 239, 226, .1);
  overflow: hidden;
}

.dash-bars span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--solar), var(--solar-2), var(--moss-2));
}

.mini-dash {
  position: absolute;
  width: 270px;
  padding: 20px;
}

.mini-dash strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.15;
}

.mini-dash:nth-of-type(2) {
  right: -8px;
  bottom: 52px;
}

.mini-dash.accent {
  left: -24px;
  bottom: -8px;
  background:
    linear-gradient(135deg, rgba(111, 168, 104, .16), transparent 42%),
    linear-gradient(180deg, rgba(245, 239, 226, .09), rgba(245, 239, 226, .035));
}

.lifestyle-section {
  background: #f8f9fa;
  color: #202124;
}

.lifestyle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 33, 36, .06) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(32, 33, 36, .05) 1px, transparent 1px) 0 0 / 72px 72px;
  pointer-events: none;
}

.image-tall {
  position: relative;
  min-height: 650px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(32, 33, 36, .22);
}

.image-tall img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 10, 10, .44);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.lifestyle-copy p,
.pricing-section .section-head p {
  color: rgba(32, 33, 36, .68);
}

.lifestyle-section .eyebrow {
  color: rgba(32, 33, 36, .62);
}

.chips {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chips span {
  color: rgba(32, 33, 36, .72);
  border-color: rgba(232, 234, 237, .95);
  background: rgba(241, 243, 244, .72);
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 800;
}

.ai-section {
  padding-top: 110px;
}

.ai-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: clamp(24px, 5vw, 54px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, .1), transparent 32%),
    linear-gradient(180deg, rgba(245, 239, 226, .08), rgba(245, 239, 226, .035));
}

.chat-window {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(245, 239, 226, .12);
  border-radius: 24px;
  background: rgba(8, 10, 10, .42);
}

.message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.35;
}

.message.user {
  justify-self: end;
  color: #1c1008;
  background: linear-gradient(135deg, var(--solar), var(--solar-2));
}

.message.assistant {
  justify-self: start;
  color: rgba(245, 239, 226, .84);
  background: rgba(245, 239, 226, .08);
}

.pricing-section {
  background: #f1f3f4;
  color: #202124;
}

.pricing-section .eyebrow,
.pricing-section .mono {
  color: rgba(32, 33, 36, .58);
}

.pricing-grid {
  display: grid;
  grid-template-columns: .9fr 1.05fr .75fr;
  gap: 18px;
  align-items: stretch;
}

.price-card,
.credit-card {
  position: relative;
  min-height: 470px;
  padding: 28px;
  border-color: rgba(232, 234, 237, .95);
  border-radius: 28px;
  color: #202124;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 24px 70px rgba(32, 33, 36, .1);
}

.price-card h3,
.credit-card h3 {
  margin-top: 16px;
  font-size: 54px;
}

.price-card h3 span {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.price-card p,
.credit-card p {
  margin-top: 10px;
  color: rgba(32, 33, 36, .62);
  font-size: 18px;
  line-height: 1.35;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  list-style: none;
}

.price-card li {
  color: rgba(32, 33, 36, .72);
  font-weight: 700;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--solar);
}

.featured {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, .16), transparent 36%),
    linear-gradient(180deg, #1a1d23, #0f1115);
}

.featured .mono,
.featured p,
.featured li {
  color: rgba(245, 239, 226, .7);
}

.price-label {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 11px;
  color: var(--solar-2);
  border-color: rgba(249, 115, 22, .24);
  background: rgba(249, 115, 22, .1);
  font-size: 12px;
  font-weight: 900;
}

.credit-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.credit-use-list {
  display: grid;
  gap: 0;
  margin-top: 4px;
  border-top: 1px solid rgba(232, 234, 237, .95);
}

.credit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(232, 234, 237, .95);
}

.credit-row span {
  color: rgba(32, 33, 36, .72);
  font-size: 14px;
  font-weight: 700;
}

.credit-row strong {
  font-family: "Geist Mono", monospace;
  font-size: 18px;
}

.credit-row em {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 3px 8px;
  border: 1px solid rgba(232, 234, 237, .95);
  border-radius: 999px;
  color: rgba(32, 33, 36, .58);
  background: rgba(241, 243, 244, .72);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.credit-packs-panel {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(232, 234, 237, .95);
  border-radius: 30px;
  color: #202124;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 24px 70px rgba(32, 33, 36, .1);
}

.credit-packs-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.credit-packs-head h3 {
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: .98;
}

.credit-packs-head p {
  color: rgba(32, 33, 36, .62);
  font-size: 17px;
  line-height: 1.4;
}

.credit-packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.credit-pack {
  position: relative;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(232, 234, 237, .95);
  border-radius: 22px;
  background: rgba(248, 249, 250, .78);
}

.credit-pack.popular {
  border-color: rgba(249, 115, 22, .45);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .08);
}

.credit-pack.best {
  border-color: rgba(78, 122, 71, .48);
  box-shadow: 0 0 0 4px rgba(78, 122, 71, .09);
}

.credit-pack-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 28px);
  padding: 5px 10px;
  border: 1px solid rgba(232, 234, 237, .95);
  border-radius: 999px;
  color: var(--solar);
  background: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.credit-pack.best .credit-pack-badge {
  color: var(--moss);
}

.credit-pack-name {
  color: rgba(32, 33, 36, .56);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.credit-pack-credits {
  margin-top: 8px;
  color: #202124;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.credit-pack-prices {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(232, 234, 237, .95);
}

.credit-pack-price {
  display: grid;
  gap: 2px;
}

.credit-pack-price span {
  color: rgba(32, 33, 36, .54);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.credit-pack-price.premium span {
  color: var(--solar);
}

.credit-pack-price strong {
  color: #202124;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}

.credit-pack-price small {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(32, 33, 36, .58);
  font-size: 12px;
  line-height: 1.35;
}

.credit-pack-price b {
  display: inline-flex;
  padding: 2px 7px;
  border: 1px solid rgba(78, 122, 71, .18);
  border-radius: 999px;
  color: var(--moss);
  background: rgba(242, 245, 241, .9);
  font-size: 10px;
}

.security-grid {
  grid-template-columns: .95fr .9fr;
}

.security-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 30px;
}

.security-actions .btn {
  white-space: nowrap;
}

.security-system {
  position: relative;
  isolation: isolate;
}

.security-orbit {
  position: absolute;
  inset: -34px -22px -28px -42px;
  z-index: -1;
  pointer-events: none;
}

.security-orbit::before,
.security-orbit::after,
.security-orbit span,
.security-orbit i {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.security-orbit::before {
  inset: 14% 7% 12% 16%;
  border: 1px solid rgba(249, 115, 22, .15);
  transform: rotate(-8deg);
}

.security-orbit::after {
  inset: 22% 14% 20% 6%;
  border: 1px solid rgba(111, 168, 104, .16);
  transform: rotate(12deg);
}

.security-orbit span {
  width: 160px;
  height: 160px;
  right: 6%;
  top: 4%;
  background: radial-gradient(circle, rgba(249, 115, 22, .2), transparent 68%);
  filter: blur(2px);
}

.security-orbit i {
  width: 12px;
  height: 12px;
  right: 20%;
  top: 21%;
  background: var(--moss);
  box-shadow: 0 0 26px rgba(111, 168, 104, .7);
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-item {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(245, 239, 226, .1);
  border-radius: 18px;
  color: var(--cream);
  background: linear-gradient(135deg, rgba(245, 239, 226, .065), rgba(245, 239, 226, .028));
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.security-item:hover {
  border-color: rgba(249, 115, 22, .32);
  background: linear-gradient(135deg, rgba(249, 115, 22, .11), rgba(245, 239, 226, .04));
  transform: translateY(-2px);
}

.security-item strong,
.security-item span {
  display: block;
}

.security-item strong {
  font-size: 18px;
}

.security-item span {
  margin-top: 5px;
  color: rgba(245, 239, 226, .58);
  line-height: 1.35;
}

.legal-overlay[hidden],
.legal-panel[hidden] {
  display: none;
}

.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(249, 115, 22, .2), transparent 34%),
    radial-gradient(circle at 78% 80%, rgba(111, 168, 104, .16), transparent 34%),
    rgba(5, 7, 8, .78);
  backdrop-filter: blur(18px);
}

.legal-dialog {
  position: relative;
  width: min(980px, 100%);
  height: min(86vh, 860px);
  max-height: min(86vh, 860px);
  min-height: 0;
  display: grid;
  border: 1px solid rgba(245, 239, 226, .14);
  border-radius: 32px;
  color: var(--cream);
  background: linear-gradient(145deg, rgba(17, 20, 23, .97), rgba(8, 10, 10, .98));
  box-shadow: 0 34px 120px rgba(0, 0, 0, .62);
  overflow: hidden;
}

.legal-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245, 239, 226, .05) 1px, transparent 1px),
    linear-gradient(rgba(245, 239, 226, .04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 70%);
}

.legal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 239, 226, .14);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(245, 239, 226, .08);
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease);
}

.legal-close:hover {
  background: rgba(249, 115, 22, .16);
  transform: rotate(6deg);
}

.legal-panel {
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.legal-dialog-head {
  position: relative;
  z-index: 1;
  padding: 38px 42px 24px;
  border-bottom: 1px solid rgba(245, 239, 226, .1);
}

.legal-dialog-head h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(34px, 6vw, 62px);
}

.legal-dialog-head p {
  max-width: 760px;
  margin-top: 14px;
  color: rgba(245, 239, 226, .66);
  font-size: 17px;
  line-height: 1.45;
}

.legal-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  min-height: 0;
  max-height: 100%;
  padding: 26px 42px 42px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.security-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-section {
  padding: 20px;
  border: 1px solid rgba(245, 239, 226, .1);
  border-radius: 22px;
  background: rgba(245, 239, 226, .045);
}

.legal-section.accent {
  border-color: rgba(249, 115, 22, .22);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, .13), rgba(111, 168, 104, .07)),
    rgba(245, 239, 226, .045);
}

.legal-section h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
}

.legal-section h4 {
  margin: 18px 0 6px;
  color: rgba(245, 239, 226, .92);
  font-size: 15px;
}

.legal-section p,
.legal-section li {
  color: rgba(245, 239, 226, .68);
  line-height: 1.58;
}

.legal-section p + p {
  margin-top: 10px;
}

.legal-section ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.legal-section li + li {
  margin-top: 6px;
}

.legal-section a {
  color: var(--solar);
  font-weight: 800;
}

.legal-date {
  color: rgba(245, 239, 226, .44) !important;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-link-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.footer-link-button:hover {
  color: var(--cream);
}

body.legal-open {
  overflow: hidden;
}

.final-cta {
  padding: 120px 0;
  text-align: center;
}

.final-inner {
  max-width: 780px;
}

.final-inner .hero-actions {
  justify-content: center;
}

.footer {
  border-top: 1px solid rgba(245, 239, 226, .1);
  padding: 44px 0 34px;
  background: rgba(8, 10, 10, .64);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer p {
  max-width: 360px;
  color: rgba(245, 239, 226, .58);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: end;
  color: rgba(245, 239, 226, .62);
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 239, 226, .1);
  color: rgba(245, 239, 226, .48);
  font-size: 14px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowDrift {
  from { transform: scale(1.04) translate3d(-1%, -1%, 0); }
  to { transform: scale(1.1) translate3d(1.5%, 1%, 0); }
}

@keyframes drawPulse {
  to { stroke-dashoffset: 0; }
}

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

@media (max-width: 1060px) {
  .hero-grid,
  .split,
  .lifestyle-grid,
  .security-grid,
  .manifesto-grid,
  .ai-shell {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 620px;
  }

  .product-bento,
  .pricing-grid,
  .credit-packs-grid,
  .credit-packs-head {
    grid-template-columns: 1fr;
  }

  .ledger-row {
    grid-template-columns: 54px .75fr 1.25fr;
  }

  .bento-large {
    min-height: 500px;
  }

  .mini-dash:nth-of-type(2) {
    right: 10px;
  }

  .mini-dash.accent {
    left: 10px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-inner {
    min-height: 60px;
    gap: 10px;
  }

  .ghost-link,
  .nav-links {
    display: none;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    display: inline;
    font-size: 16px;
  }

  .btn-compact {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-tape {
    margin-top: -12px;
  }

  .hero-tape-inner {
    min-height: 34px;
    justify-content: center;
    text-align: center;
    font-size: 9px;
  }

  .hero-tape-inner span:nth-child(2) {
    display: none;
  }

  .hero-masthead {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 20px;
    font-size: 10px;
  }

  .hero-grid {
    gap: 26px;
  }

  h1 {
    font-size: clamp(43px, 13.5vw, 64px);
    line-height: .96;
  }

  .hero-copy p,
  .section-head p,
  .split-copy p,
  .lifestyle-copy p,
  .ai-copy p,
  .security-copy p,
  .final-inner p {
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 0;
  }

  .athlete-panel {
    position: relative;
    inset: auto;
    height: clamp(300px, 74vw, 420px);
    border-radius: 24px;
  }

  .product-console {
    position: relative;
    z-index: 3;
    right: auto;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -68px 10px 0;
  }

  .metric-ribbon {
    left: 14px;
    right: 14px;
    gap: 7px;
  }

  .metric-ribbon div {
    padding: 10px;
  }

  .metric-ribbon strong {
    font-size: 27px;
  }

  .console-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  #scoreCanvas {
    height: 112px;
  }

  .pulse-line {
    height: 30px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
    border-radius: 20px;
  }

  .hero-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(245, 239, 226, .1);
  }

  .marquee-track {
    padding: 14px 0;
  }

  .marquee-row {
    gap: 24px;
    padding-right: 24px;
  }

  .manifesto-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto-cards div {
    min-height: 134px;
    padding: 16px;
  }

  .bento-large {
    padding: 22px;
    min-height: 440px;
  }

  .lab-stack {
    left: 22px;
    right: 22px;
    bottom: 28px;
  }

  .paper-card {
    width: 84%;
    padding: 16px;
  }

  .paper-card strong {
    font-size: 32px;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .ledger-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .dashboard-stack {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .main-dash {
    min-height: 360px;
    padding: 22px;
  }

  .dash-score strong {
    font-size: 96px;
  }

  .mini-dash {
    position: relative;
    inset: auto !important;
    width: 100%;
  }

  .mini-dash:nth-of-type(2) {
    right: auto;
    bottom: auto;
  }

  .mini-dash.accent {
    left: auto;
    bottom: auto;
  }

  .image-tall,
  .image-tall img {
    min-height: 440px;
  }

  .message {
    max-width: 100%;
  }

  .price-card,
  .credit-card,
  .credit-packs-panel,
  .ai-shell {
    border-radius: 22px;
    padding: 22px;
  }

  .price-card h3,
  .credit-card h3 {
    font-size: 44px;
  }

  .credit-packs-head h3 {
    font-size: 34px;
  }

  .credit-pack-credits {
    font-size: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
    gap: 12px 16px;
  }

  .security-actions {
    width: 100%;
  }

  .security-actions .btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .security-orbit {
    inset: -20px -10px;
  }

  .legal-overlay {
    align-items: end;
    padding: 12px;
  }

  .legal-dialog {
    height: 92vh;
    max-height: 92vh;
    border-radius: 28px 28px 18px 18px;
  }

  .legal-dialog-head {
    padding: 30px 22px 20px;
  }

  .legal-dialog-head h2 {
    padding-right: 42px;
  }

  .legal-body {
    padding: 20px 16px 24px;
  }

  .security-detail-grid {
    grid-template-columns: 1fr;
  }

  .legal-section {
    border-radius: 18px;
    padding: 17px;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }

  .btn-compact {
    width: auto;
  }

  .nav-actions {
    gap: 8px;
  }

  .hero-actions {
    width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    padding: 0 10px;
    font-size: 13px;
  }

  .security-actions {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .security-actions .btn {
    width: auto;
    min-height: 48px;
    padding: 0 10px;
    font-size: 12px;
  }

  .trust-row {
    width: 100%;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .trust-row span {
    flex: 1 1 0;
    min-width: 0;
    padding: 7px 6px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-copy {
    padding-top: 6px;
  }

  .hero-masthead {
    display: none;
  }

  .hero-stage {
    min-height: auto;
  }

  .session-chip {
    left: 14px;
    top: 14px;
    max-width: calc(100% - 28px);
    font-size: 12px;
  }

  .product-console {
    padding: 14px;
    margin: -58px 8px 0;
    border-radius: 20px;
  }

  .console-top strong {
    font-size: 50px;
  }

  .score-ring {
    width: 62px;
    height: 62px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head h2,
  .split-copy h2,
  .lifestyle-copy h2,
  .ai-copy h2,
  .security-copy h2,
  .final-inner h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .bento-card h3 {
    font-size: 31px;
  }

  .bento-card {
    min-height: 260px;
  }

  .bento-large {
    min-height: 410px;
  }

  .lab-stack {
    min-height: 205px;
  }

  .image-card h3 {
    font-size: 28px;
  }

  .price-card,
  .credit-card,
  .credit-packs-panel {
    min-height: auto;
    padding: 20px;
  }

  .credit-pack {
    padding: 18px;
  }

  .credit-row {
    grid-template-columns: 1fr;
  }

  .credit-row strong {
    font-size: 17px;
  }

  .final-cta {
    padding: 86px 0;
  }

  .footer {
    padding-bottom: 28px;
  }

  .legal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .legal-dialog-head h2 {
    font-size: 34px;
  }

  .legal-dialog-head p {
    font-size: 15px;
  }

  .legal-section h3 {
    font-size: 19px;
  }
}

@media (max-width: 360px) {
  .hero-actions .btn {
    min-height: 46px;
    padding: 0 8px;
    font-size: 12px;
  }

  .trust-row span {
    padding: 6px 4px;
    font-size: 9px;
  }

  .security-actions .btn {
    padding: 0 8px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
