@font-face {
  font-family: "Syne";
  src: url("assets/fonts/Syne-subset.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --bg-deep: #030716;
  --bg-navy: #060B23;
  --bg-mid: #081C2F;
  --border: #243B53;
  --border-bright: #3A5878;
  --gold: #D4AF37;
  --gold-dim: rgba(212,175,55,.32);
  --gold-glow: rgba(212,175,55,.10);
  --cyan: #00D1FF;
  --green: #22C55E;
  --white-soft: #F8FAFF;
  --cream: #F8F5E6;
  --muted: rgba(248,245,230,.56);
  --faint: rgba(248,245,230,.34);
  --font-display: "Syne", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "Fira Code", monospace;
  --ease: cubic-bezier(.16,1,.3,1);
  --radius-pill: 999px;
  --radius-panel: 14px;
  --radius-input: 8px;
  --header-height: 84px;
  --shell-max: 1320px;
  --shell-pad: clamp(1.05rem, 3.4vw, 2.75rem);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  background: var(--bg-deep);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-dim);
  color: var(--white-soft);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 22% 30%, var(--gold-glow), transparent 70%),
    radial-gradient(55% 55% at 88% 62%, rgba(0,209,255,.07), transparent 70%);
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  width: min(100%, var(--shell-max));
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 20;
  transform: translateY(-140%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  background: var(--bg-navy);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  padding: .65rem 1rem;
  text-transform: uppercase;
  transition: transform .25s var(--ease);
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-inline: calc(50% - 50vw);
  padding-block: 1.05rem;
  padding-inline: max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)));
  transition:
    padding-block .32s var(--ease),
    border-color .32s var(--ease),
    background .32s var(--ease),
    backdrop-filter .32s var(--ease);
}

.site-header.is-scrolled,
.site-header.nav-open {
  padding-block: .72rem;
  border-bottom: 1px solid rgba(58,88,120,.28);
  background: rgba(3,7,22,.36);
  backdrop-filter: blur(10px);
}

.header-bar {
  min-height: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(.8rem, 2vw, 1.35rem);
  row-gap: .6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-width: max-content;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: none;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-word {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
}

.brand-tag {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.85rem, 2vw, 1.45rem);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: .45rem;
  transition: color .28s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .18rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  line-height: 1;
  padding: .68rem .95rem;
  text-transform: uppercase;
  transition:
    background .3s var(--ease),
    border-color .3s var(--ease),
    transform .12s var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--gold);
  background: var(--gold-glow);
}

.header-cta:active {
  transform: translateY(1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(6,11,35,.72);
  transition:
    border-color .3s var(--ease),
    background .3s var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--gold-dim);
  background: rgba(212,175,55,.08);
}

.nav-toggle-line {
  grid-area: 1 / 1;
  width: 17px;
  height: 1px;
  background: var(--gold);
  transition:
    transform .28s var(--ease),
    opacity .28s var(--ease);
}

.nav-toggle-line:first-child {
  transform: translateY(-4px);
}

.nav-toggle-line:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  transform: rotate(42deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child {
  transform: rotate(-42deg);
}

.main-shell {
  flex: 1;
  min-height: calc(100dvh - var(--header-height));
}

.main-shell:focus {
  outline: none;
}

.hero {
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  align-items: center;
  gap: clamp(2rem, 4.8vw, 4.35rem);
  padding-block: clamp(2.2rem, 4.8vw, 4.35rem) clamp(2.55rem, 5.4vw, 4.85rem);
}

.hero-copy {
  min-width: 0;
  max-width: 535px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.35rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-dim);
}

.hero-title {
  max-width: 14ch;
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.15vw, 3.55rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.08;
}

.hero-line {
  display: block;
  min-width: 0;
  white-space: nowrap;
  width: max-content;
}

.hero-line > span {
  display: block;
}

.hero-sub {
  max-width: 46ch;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: clamp(.98rem, 1.16vw, 1.04rem);
  line-height: 1.7;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem .85rem;
  margin-top: 1.45rem;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-sep {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.75rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  padding: .88rem 1.42rem;
  text-transform: uppercase;
  transition:
    background .3s var(--ease),
    border-color .3s var(--ease),
    color .3s var(--ease),
    transform .12s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: #171204;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65%;
  width: 42%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease);
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  left: 130%;
}

.btn-ghost {
  border: 1px solid var(--border-bright);
  color: var(--cream);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold-dim);
  background: rgba(248,245,230,.03);
}

.btn:active {
  transform: translateY(1px);
}

.hero-micro {
  margin-top: 1.15rem;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
}

.hero-product {
  position: relative;
  justify-self: end;
  width: min(100%, 840px);
  min-width: 0;
  margin: 0;
}

.product-glow {
  position: absolute;
  inset: -10% -7% -10% -5%;
  z-index: 0;
  border-radius: 24px;
  background:
    radial-gradient(55% 55% at 54% 46%, rgba(0,209,255,.06), transparent 72%),
    radial-gradient(64% 64% at 45% 50%, rgba(212,175,55,.08), transparent 74%);
  filter: blur(10px);
}

.product-frame {
  position: relative;
  z-index: 1;
  margin-right: clamp(-2.6rem, -4vw, -.2rem);
  overflow: hidden;
  border: 1px solid rgba(58,88,120,.7);
  border-radius: 12px;
  background: rgba(6,11,35,.64);
  box-shadow:
    0 34px 82px -36px rgba(0,209,255,.24),
    0 42px 95px -34px rgba(2,6,18,.92),
    0 0 0 1px rgba(212,175,55,.06);
  padding: 5px;
}

.product-frame img {
  width: 100%;
  border-radius: 8px;
}

.product-caption {
  margin-top: .8rem;
  padding-right: .3rem;
  color: rgba(248,245,230,.26);
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-align: right;
  text-transform: uppercase;
}

.product-showcase {
  position: relative;
  margin-inline: calc(50% - 50vw);
  border-block: 1px solid rgba(36,59,83,.42);
  background:
    radial-gradient(58% 62% at 50% 58%, rgba(0,209,255,.045), transparent 72%),
    linear-gradient(180deg, rgba(6,11,35,.72), rgba(8,28,47,.56));
  padding:
    clamp(4.2rem, 8vw, 7rem)
    max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)))
    clamp(4.4rem, 8.5vw, 7.4rem);
}

.showcase-shell {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
}

.showcase-heading {
  max-width: 720px;
  margin-bottom: clamp(1.7rem, 3.4vw, 2.8rem);
}

.showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.showcase-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-dim);
}

.showcase-title {
  margin-top: .85rem;
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.15vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.showcase-stage {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
}

.showcase-stage::before {
  content: "";
  position: absolute;
  inset: -8% -7% -10%;
  z-index: 0;
  border-radius: 26px;
  background:
    radial-gradient(54% 58% at 48% 46%, rgba(212,175,55,.075), transparent 74%),
    radial-gradient(48% 58% at 62% 58%, rgba(0,209,255,.06), transparent 76%);
  filter: blur(12px);
  pointer-events: none;
}

.showcase-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(58,88,120,.74);
  border-radius: var(--radius-panel);
  background: rgba(6,11,35,.66);
  box-shadow:
    0 42px 110px -46px rgba(0,209,255,.24),
    0 54px 120px -48px rgba(2,6,18,.94),
    0 0 0 1px rgba(212,175,55,.06);
  padding: 6px;
}

.showcase-frame img {
  width: 100%;
  border-radius: 10px;
}

.showcase-callouts {
  position: absolute;
  inset: 0;
  z-index: 2;
  list-style: none;
  pointer-events: none;
}

.showcase-callout {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  max-width: min(28ch, 31vw);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: var(--radius-pill);
  background: rgba(3,7,22,.78);
  box-shadow: 0 16px 40px -28px rgba(0,209,255,.42);
  color: rgba(248,245,230,.78);
  font-family: var(--font-mono);
  font-size: clamp(.56rem, .74vw, .68rem);
  letter-spacing: .035em;
  line-height: 1.45;
  padding: .5rem .72rem;
}

.callout-dot {
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.08);
}

.callout-rule {
  position: absolute;
  top: 50%;
  height: 1px;
  background: var(--gold-dim);
}

.callout-capture {
  top: 8%;
  left: 5%;
}

.callout-capture .callout-rule {
  left: calc(100% - .3rem);
  width: clamp(3.8rem, 12vw, 9rem);
  transform-origin: left;
}

.callout-day {
  top: 39%;
  left: 3%;
}

.callout-day .callout-rule {
  left: calc(100% - .3rem);
  width: clamp(3rem, 9vw, 6.8rem);
  transform-origin: left;
}

.callout-sprint {
  top: 18%;
  right: 4%;
}

.callout-sprint .callout-rule {
  right: calc(100% - .3rem);
  width: clamp(2.8rem, 8vw, 6.4rem);
  transform-origin: right;
}

.callout-radar {
  right: 5%;
  bottom: 18%;
}

.callout-radar .callout-rule {
  right: calc(100% - .3rem);
  width: clamp(3.2rem, 8vw, 6.8rem);
  transform-origin: right;
}

.shift-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  border-bottom: 1px solid rgba(36,59,83,.42);
  background:
    radial-gradient(50% 54% at 78% 48%, rgba(212,175,55,.055), transparent 72%),
    linear-gradient(180deg, rgba(3,7,22,.92), rgba(6,11,35,.78));
  padding:
    clamp(4.25rem, 8vw, 7rem)
    max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)))
    clamp(4.5rem, 8vw, 7.25rem);
}

.shift-shell {
  max-width: 1120px;
  margin-inline: auto;
}

.shift-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3.15rem);
}

.shift-title {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.25vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.12;
}

.shift-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.45rem, 4vw, 3.25rem);
}

.shift-panel {
  min-width: 0;
}

.shift-panel--problem {
  color: var(--muted);
}

.shift-panel--solution {
  border-left: 1px solid var(--gold-dim);
  color: var(--cream);
  padding-left: clamp(1.1rem, 2.2vw, 1.65rem);
}

.shift-label {
  margin-bottom: .85rem;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.shift-panel--problem .shift-label {
  color: var(--faint);
}

.shift-panel--solution .shift-label {
  color: var(--gold);
}

.shift-panel p:not(.shift-label) {
  max-width: 52ch;
  font-size: clamp(1rem, 1.24vw, 1.13rem);
  line-height: 1.78;
}

.shift-panel--problem p:not(.shift-label) {
  color: rgba(248,245,230,.58);
}

.shift-panel--solution p:not(.shift-label) {
  color: rgba(248,245,230,.86);
}

.shift-divider {
  width: 1px;
  min-height: 100%;
  background: linear-gradient(180deg, transparent, rgba(58,88,120,.88) 20%, rgba(212,175,55,.24) 52%, rgba(58,88,120,.52) 82%, transparent);
  transform-origin: top;
}

.shift-closing {
  max-width: 560px;
  margin-top: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-left: auto;
  border-left: 1px solid rgba(212,175,55,.24);
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.95vw, 1.5rem);
  font-weight: 650;
  letter-spacing: -.018em;
  line-height: 1.38;
  padding-left: clamp(1.1rem, 2.2vw, 1.65rem);
}

/* ════════════════════════════════════════════════════
   P4 - SEVEN AREAS
   ════════════════════════════════════════════════════ */
.areas-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding:
    clamp(4.25rem, 8vw, 7rem)
    max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)))
    clamp(3.75rem, 5.5vw, 5rem);
  background:
    radial-gradient(46% 52% at 10% 80%, rgba(212,175,55,.048), transparent 66%),
    linear-gradient(180deg, rgba(6,11,35,.9), rgba(3,7,22,.96));
  border-bottom: 1px solid rgba(36,59,83,.42);
}

.areas-shell {
  max-width: 1120px;
  margin-inline: auto;
}

.areas-intro {
  max-width: 820px;
  margin-bottom: clamp(2.5rem, 5vw, 3.8rem);
}

.areas-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.2;
  margin-bottom: 1.05rem;
  text-transform: uppercase;
}

.areas-eyebrow::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 1px;
  background: var(--gold-dim);
}

.areas-title {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.15vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.12;
  margin-bottom: .9rem;
  max-width: 22ch;
}

.areas-lead {
  color: var(--muted);
  font-size: clamp(.95rem, 1.18vw, 1.06rem);
  line-height: 1.7;
  max-width: 52ch;
}

/* Bento: hairline-gap technique — grid bg shows through 1px gaps */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "focus   focus   plan    tasks"
    "focus   focus   life    life"
    "health  library library finance";
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  overflow: hidden;
}

.bento-tile--focus   { grid-area: focus; }
.bento-tile--plan    { grid-area: plan; }
.bento-tile--tasks   { grid-area: tasks; }
.bento-tile--life    { grid-area: life; }
.bento-tile--health  { grid-area: health; }
.bento-tile--library { grid-area: library; }
.bento-tile--finance { grid-area: finance; }

.bento-tile {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  background: var(--bg-navy);
  transition: background .22s var(--ease);
}

.bento-tile:hover {
  background: rgba(10,20,48,1);
}

/* Focus lead tile: faint gold-glow wash marks it as primary */
.bento-tile--focus {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 26% 42%, rgba(212,175,55,.056), transparent 68%),
    var(--bg-navy);
}

.bento-tile--focus::after {
  content: "";
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.1);
  background: radial-gradient(circle at center, rgba(212,175,55,.038), transparent 62%);
  pointer-events: none;
}

.bento-tile--focus:hover {
  background:
    radial-gradient(ellipse 70% 60% at 26% 42%, rgba(212,175,55,.074), transparent 68%),
    rgba(10,20,48,1);
}

.bento-num {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  opacity: .88;
}

/* Name and desc pushed to bottom of each tile */
.bento-name {
  margin-top: auto;
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -.016em;
  line-height: 1.22;
}

.bento-tile--focus .bento-name {
  font-size: clamp(1.32rem, 2.1vw, 1.6rem);
}

.bento-desc {
  margin-top: .45rem;
  color: var(--muted);
  font-size: clamp(.82rem, .96vw, .9rem);
  line-height: 1.62;
  max-width: 38ch;
}

.areas-cta {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  padding-block: clamp(1.65rem, 2.8vw, 2.25rem) clamp(1.2rem, 2vw, 1.65rem);
  border-top: 1px solid rgba(36,59,83,.34);
}

.areas-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  max-width: 560px;
}

.areas-cta-line {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
  font-weight: 500;
  letter-spacing: -.008em;
}

.areas-cta-micro {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
}

/* ════════════════════════════════════════════════════
   P5 - PRIVACY MANIFESTO
   ════════════════════════════════════════════════════ */
.manifesto-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding:
    clamp(3.4rem, 6vw, 5rem)
    max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)))
    clamp(5rem, 10vw, 8.5rem);
  background:
    radial-gradient(60% 52% at 50% 44%, rgba(4,8,24,.68), transparent 72%),
    var(--bg-deep);
}

.manifesto-shell {
  max-width: 640px;
  margin-inline: auto;
}

/* Framing hairlines that draw in from left on scroll */
.manifesto-frame-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 22%, var(--border) 78%, transparent);
  transform-origin: left;
}

.manifesto-body {
  padding-block: clamp(2.15rem, 4vw, 3rem) clamp(2.75rem, 5.5vw, 4.25rem);
}

.manifesto-lead {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.manifesto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.2;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.manifesto-eyebrow::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
}

.manifesto-title {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.35vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.1;
}

/* Main privacy statement: visually central, marked by a gold top hairline */
.manifesto-statement {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.3vw, 1.78rem);
  font-weight: 600;
  color: var(--white-soft);
  line-height: 1.52;
  border-top: 1px solid rgba(212,175,55,.3);
  padding-top: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 100%;
}

.manifesto-copy {
  color: var(--muted);
  font-size: clamp(.95rem, 1.16vw, 1.04rem);
  line-height: 1.78;
  max-width: 56ch;
}

/* Privacy list: hairline-divided, no pills, no checkmarks */
.manifesto-list {
  list-style: none;
  margin-block: clamp(1.5rem, 3vw, 2.25rem);
}

.manifesto-item {
  padding-block: .875rem;
  border-top: 1px solid rgba(36,59,83,.65);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: clamp(.82rem, 1vw, .9rem);
  letter-spacing: .025em;
  line-height: 1.6;
}

.manifesto-item:last-child {
  border-bottom: 1px solid rgba(36,59,83,.65);
}

.manifesto-nuance {
  font-size: .76rem;
  color: var(--faint);
  line-height: 1.68;
  max-width: 52ch;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(36,59,83,.35);
}

/* ════════════════════════════════════════════════════
   P6 - FIRST STEPS
   ════════════════════════════════════════════════════ */
.steps-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding:
    clamp(4.25rem, 8vw, 7rem)
    max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)))
    clamp(4.5rem, 8vw, 7.25rem);
  background:
    radial-gradient(55% 48% at 72% 28%, rgba(212,175,55,.038), transparent 64%),
    linear-gradient(180deg, var(--bg-navy), rgba(6,11,35,.98));
  border-bottom: 1px solid rgba(36,59,83,.42);
}

.steps-shell {
  max-width: 1120px;
  margin-inline: auto;
}

.steps-intro {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.steps-eyebrow::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
}

.steps-title {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.35vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.1;
  margin-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
}

.steps-body {
  color: var(--muted);
  font-size: clamp(.95rem, 1.16vw, 1.04rem);
  line-height: 1.78;
  max-width: 60ch;
}

.steps-body + .steps-body {
  margin-top: .75rem;
}

.steps-rail-wrapper {
  position: relative;
}

.steps-rail-line {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-bright);
  transform-origin: left;
  z-index: 0;
}

.steps-list {
  display: flex;
  list-style: none;
  justify-content: space-between;
  gap: clamp(.5rem, 1.5vw, 1rem);
  position: relative;
  z-index: 1;
}

.steps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.steps-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.58);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-navy);
  box-shadow: 0 0 0 4px rgba(212,175,55,.07);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.steps-label {
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: clamp(.72rem, .88vw, .8rem);
  letter-spacing: .02em;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .steps-rail-line {
    display: none;
  }

  .steps-list {
    flex-direction: column;
    gap: 0;
  }

  .steps-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding-block: 1.1rem;
    border-top: 1px solid rgba(36,59,83,.55);
  }

  .steps-item:last-child {
    border-bottom: 1px solid rgba(36,59,83,.55);
  }
}

/* ════════════════════════════════════════════════════
   P7 - WHO IT IS FOR
   ════════════════════════════════════════════════════ */
.fit-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding:
    clamp(4.5rem, 9vw, 7.5rem)
    max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)))
    clamp(4.75rem, 9vw, 7.75rem);
  background:
    radial-gradient(46% 60% at 18% 50%, rgba(212,175,55,.032), transparent 60%),
    linear-gradient(180deg, var(--bg-deep), rgba(8,28,47,.95));
  border-bottom: 1px solid rgba(36,59,83,.42);
}

.fit-shell {
  max-width: 1120px;
  margin-inline: auto;
}

.fit-intro {
  max-width: 680px;
  margin-bottom: clamp(3.25rem, 6.5vw, 5rem);
}

.fit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.fit-eyebrow::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
}

.fit-title {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.35vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.fit-lead {
  color: var(--muted);
  font-size: clamp(.95rem, 1.16vw, 1.04rem);
  line-height: 1.78;
  max-width: 62ch;
}

.fit-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.fit-panel {
  padding-block: clamp(2rem, 3.5vw, 2.75rem);
}

.fit-panel--yes {
  padding-right: clamp(1.75rem, 3.5vw, 3rem);
}

.fit-panel--no {
  border-left: 1px solid var(--border);
  padding-left: clamp(1.75rem, 3.5vw, 3rem);
}

.fit-panel-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.fit-panel--yes .fit-panel-label {
  color: var(--gold);
}

.fit-panel--no .fit-panel-label {
  color: var(--faint);
}

.fit-list {
  list-style: none;
}

.fit-item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  min-height: 3.2rem;
  padding-block: .9rem;
  border-top: 1px solid rgba(36,59,83,.5);
  font-size: clamp(.9rem, 1.08vw, .98rem);
  line-height: 1.6;
}

.fit-item:last-child {
  border-bottom: 1px solid rgba(36,59,83,.5);
}

.fit-item::before {
  content: "·";
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 1.1em;
  line-height: 1.6;
}

.fit-panel--yes .fit-item {
  color: var(--cream);
}

.fit-panel--yes .fit-item::before {
  color: var(--gold);
}

.fit-panel--no .fit-item {
  color: var(--muted);
}

.fit-panel--no .fit-item::before {
  color: var(--faint);
}

@media (max-width: 768px) {
  .fit-compare {
    grid-template-columns: 1fr;
  }

  .fit-panel--yes {
    padding-right: 0;
  }

  .fit-panel--no {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: clamp(2.5rem, 6vw, 3.75rem);
  }
}

/* ════════════════════════════════════════════════════
   P8 - GET ORYDIN STATUS PANEL
   ════════════════════════════════════════════════════ */
.ea-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding:
    clamp(5rem, 10vw, 8.5rem)
    max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)))
    clamp(5.25rem, 10vw, 8.75rem);
  background:
    radial-gradient(50% 62% at 80% 52%, rgba(212,175,55,.065), transparent 66%),
    radial-gradient(36% 48% at 18% 30%, rgba(0,209,255,.02), transparent 56%),
    var(--bg-navy);
  border-bottom: 1px solid rgba(36,59,83,.42);
}

.ea-shell {
  max-width: 1060px;
  margin-inline: auto;
}

.ea-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.ea-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.ea-eyebrow::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
}

.ea-title {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.35vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.1;
  margin-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
}

.ea-body {
  color: var(--muted);
  font-size: clamp(.95rem, 1.16vw, 1.04rem);
  line-height: 1.78;
  max-width: 48ch;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.ea-included-title {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.ea-included {
  list-style: none;
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 48ch;
}

.ea-included-item {
  padding-block: .6rem;
  border-top: 1px solid rgba(36,59,83,.5);
  color: var(--cream);
  font-size: clamp(.86rem, 1vw, .94rem);
  line-height: 1.6;
}

.ea-included-item:last-child {
  border-bottom: 1px solid rgba(36,59,83,.5);
}

.ea-actions {
  margin-bottom: 1rem;
}

.ea-micro {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .03em;
  line-height: 1.6;
}

.ea-panel {
  background:
    radial-gradient(ellipse 80% 55% at 65% 28%, rgba(212,175,55,.042), transparent 65%),
    var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  box-shadow:
    0 4px 32px rgba(3,7,22,.48),
    0 1px 8px rgba(3,7,22,.32);
  overflow: hidden;
}

.ea-panel-rail {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem clamp(1.25rem, 2vw, 1.75rem);
  border-bottom: 1px solid var(--border);
  background: rgba(3,7,22,.22);
}

.ea-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.ea-status-text {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ea-rows {
  padding-inline: clamp(1.25rem, 2vw, 1.75rem);
  padding-block: 0;
}

.ea-row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: .75rem 1rem;
  align-items: baseline;
  padding-block: .9rem;
  border-bottom: 1px solid rgba(36,59,83,.5);
}

.ea-row:first-child {
  padding-top: clamp(1.1rem, 2vw, 1.4rem);
}

.ea-row:last-child {
  border-bottom: none;
  padding-bottom: clamp(1.1rem, 2vw, 1.4rem);
}

.ea-row-label {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.6;
}

.ea-row-value {
  color: var(--cream);
  font-size: clamp(.88rem, 1.04vw, .96rem);
  line-height: 1.6;
  margin: 0;
}

.ea-panel-note {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .07em;
  line-height: 1.5;
  border-top: 1px solid rgba(36,59,83,.5);
  padding: .875rem clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(3,7,22,.18);
}

@keyframes ea-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,.28); }
  50% { opacity: .72; box-shadow: 0 0 0 4px rgba(34,197,94,.0); }
}

@media (prefers-reduced-motion: no-preference) {
  .ea-status-dot {
    animation: ea-pulse 2.6s ease-in-out infinite;
  }
}

@media (max-width: 860px) {
  .ea-layout {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .ea-body {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .ea-row {
    grid-template-columns: 1fr;
    gap: .2rem;
    padding-block: .75rem;
  }
}

/* ════════════════════════════════════════════════════
   P9 - FAQ AND FOOTER
   ════════════════════════════════════════════════════ */
.faq-section {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding:
    clamp(5rem, 10vw, 8.5rem)
    max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)))
    clamp(5.25rem, 10vw, 8.75rem);
  background:
    radial-gradient(52% 44% at 50% 22%, rgba(3,7,22,.72), transparent 68%),
    var(--bg-deep);
}

.faq-shell {
  max-width: 720px;
  margin-inline: auto;
}

.faq-intro {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.faq-eyebrow::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
}

.faq-title {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.35vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.1;
  margin-bottom: clamp(.9rem, 1.8vw, 1.25rem);
}

.faq-lead {
  color: var(--muted);
  font-size: clamp(.95rem, 1.16vw, 1.04rem);
  line-height: 1.78;
}

.faq-list {
  list-style: none;
  border-top: 1px solid rgba(36,59,83,.65);
}

.faq-item {
  border-bottom: 1px solid rgba(36,59,83,.65);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  background: rgba(212,175,55,.038);
  box-shadow: inset 0 2px 0 rgba(212,175,55,.45);
}

.faq-item:has(.faq-question[aria-expanded="true"]) .faq-question {
  color: var(--white-soft);
}

.faq-heading {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.15rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.16vw, 1.04rem);
  line-height: 1.5;
  text-align: left;
  transition: color .18s var(--ease);
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--white-soft);
}

.faq-question:focus-visible {
  outline: none;
  box-shadow: inset 0 -1px 0 rgba(212,175,55,.65);
}

.faq-q-text {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% 50% auto auto;
  background: var(--faint);
  border-radius: 1px;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}

.faq-icon::before {
  width: 12px;
  height: 1px;
  translate: 50% -50%;
}

.faq-icon::after {
  width: 1px;
  height: 12px;
  translate: 50% -50%;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-question:hover .faq-icon::before,
.faq-question:hover .faq-icon::after,
.faq-question:focus-visible .faq-icon::before,
.faq-question:focus-visible .faq-icon::after {
  background: var(--muted);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .38s var(--ease);
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  color: var(--muted);
  font-size: clamp(.9rem, 1.08vw, .98rem);
  line-height: 1.76;
  padding-bottom: 1.25rem;
  max-width: 62ch;
}

.faq-close {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.75vw, 1.38rem);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.42;
  max-width: 54ch;
}

/* Footer */
.site-footer {
  margin-inline: calc(50% - 50vw);
  padding:
    clamp(2.25rem, 4.5vw, 3.5rem)
    max(var(--shell-pad), calc((100vw - var(--shell-max)) / 2 + var(--shell-pad)));
  border-top: 1px solid rgba(36,59,83,.7);
  background: var(--bg-deep);
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.footer-mark {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 7px rgba(212,175,55,.16));
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}

.footer-note {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .04em;
  color: rgba(248,245,230,.44);
  line-height: 1.55;
  margin-top: .35rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.25rem;
  align-items: flex-start;
  padding-top: .15rem;
}

.footer-nav a {
  color: rgba(248,245,230,.68);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .18s var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--cream);
}

.footer-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(.75rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(36,59,83,.35);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.footer-backtop {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(212,175,55,.7);
  text-decoration: none;
  transition: color .18s var(--ease);
  white-space: nowrap;
}

.footer-backtop:hover,
.footer-backtop:focus-visible {
  color: var(--gold);
}

.footer-backtop:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + .55rem);
    left: var(--shell-pad);
    right: var(--shell-pad);
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-panel);
    background: rgba(6,11,35,.96);
    box-shadow: 0 30px 80px -40px rgba(2,6,18,.92);
    padding: .55rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity .28s var(--ease),
      transform .28s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: var(--radius-input);
    padding: .9rem 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(212,175,55,.08);
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: clamp(2.4rem, 7vw, 4rem) 3.5rem;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-title {
    max-width: 14ch;
  }

  .product-frame {
    margin-right: 0;
  }

  .product-caption {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .product-showcase {
    padding-block: clamp(3.2rem, 10vw, 4.8rem);
  }

  .showcase-heading {
    margin-bottom: 1.6rem;
  }

  .showcase-stage {
    max-width: 100%;
  }

  .showcase-frame {
    padding: 4px;
  }

  .showcase-callouts {
    position: static;
    display: grid;
    gap: .65rem;
    margin-top: 1rem;
  }

  .showcase-callout {
    position: relative;
    inset: auto;
    max-width: none;
    border-radius: var(--radius-input);
    background: rgba(6,11,35,.52);
    font-size: .64rem;
    padding: .66rem .75rem;
    pointer-events: auto;
  }

  .callout-rule {
    display: none;
  }

  .shift-section {
    padding-block: clamp(3.4rem, 10vw, 5rem);
  }

  .shift-heading {
    margin-bottom: 1.65rem;
  }

  .shift-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .shift-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    background: linear-gradient(90deg, transparent, rgba(58,88,120,.86) 18%, rgba(212,175,55,.24) 52%, rgba(58,88,120,.52) 82%, transparent);
    transform-origin: left;
  }

  .shift-panel--solution {
    border-left: 0;
    padding-left: 0;
  }

  .shift-panel p:not(.shift-label) {
    max-width: 62ch;
  }

  .shift-closing {
    max-width: 38rem;
    margin-left: 0;
    margin-top: 1.55rem;
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .brand-tag {
    display: none;
  }

  .hero-grid {
    padding-block: 2.2rem 3rem;
  }

  .hero-title {
    max-width: 11.8ch;
    font-size: clamp(2.15rem, 10.5vw, 2.75rem);
  }

  .hero-line {
    white-space: normal;
    width: auto;
  }

  .trust-row {
    gap: .45rem .65rem;
    font-size: .68rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

/* P4 - Tablet: 2-col with Health+Finance sharing a row (no orphan cells) */
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "focus   focus"
      "plan    tasks"
      "life    life"
      "health  finance"
      "library library";
  }
}

/* P4 - Mobile: single column, Focus first */
@media (max-width: 600px) {
  .areas-section {
    padding-block: clamp(3.4rem, 10vw, 5rem) clamp(3rem, 8vw, 4rem);
  }

  .areas-cta {
    margin-top: 1.75rem;
    padding-block: 1.35rem 1.1rem;
  }

  .areas-cta-inner {
    gap: .75rem;
  }

  .bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "focus"
      "plan"
      "tasks"
      "life"
      "health"
      "library"
      "finance";
  }
}

.reveal-fade,
.reveal-rule,
.reveal-line {
  opacity: 1;
  transform: none;
}

.reveal-line > span {
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-anim,
  .hero-product {
    opacity: 0;
  }

  .hero-anim.up {
    transform: translateY(26px);
  }

  .hero-product {
    transform: translateY(34px) scale(.985);
  }

  .is-loaded .hero-anim {
    opacity: 1;
    transform: none;
    transition:
      opacity .82s var(--ease),
      transform .82s var(--ease);
  }

  .is-loaded .hero-product {
    opacity: 1;
    transform: none;
    transition:
      opacity .9s var(--ease),
      transform .9s var(--ease);
    transition-delay: .86s;
  }

  .is-loaded .hero-line.in > span {
    transition-delay: inherit;
  }

  .reveal-fade {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity .82s var(--ease),
      transform .82s var(--ease);
  }

  .reveal-rule {
    transform: scaleX(0);
    transition: transform .64s var(--ease);
  }

  .reveal-line {
    overflow: hidden;
  }

  .reveal-line > span {
    transform: translateY(110%);
    transition: transform .9s var(--ease);
  }

  .reveal-fade.in {
    opacity: 1;
    transform: none;
  }

  .reveal-rule.in {
    transform: scaleX(1);
  }

  .shift-divider.reveal-rule {
    transform: scaleY(0);
    transition: transform .65s var(--ease);
  }

  .shift-divider.reveal-rule.in {
    transform: scaleY(1);
  }

  .reveal-line.in > span {
    transform: none;
  }

  .d1 {
    transition-delay: .08s;
  }

  .d2 {
    transition-delay: .16s;
  }

  .d3 {
    transition-delay: .30s;
  }

  .d4 {
    transition-delay: .46s;
  }

  .d5 {
    transition-delay: .60s;
  }

  .d6 {
    transition-delay: .74s;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .shift-divider.reveal-rule {
    transform: scaleX(0);
  }

  .shift-divider.reveal-rule.in {
    transform: scaleX(1);
  }
}

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

/* ════════════════════════════════════════════════════
   LEGAL PAGES  (privacy.html · terms.html)
   ════════════════════════════════════════════════════ */

.legal-shell {
  max-width: 720px;
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 5rem) clamp(4rem, 8vw, 6rem);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .18s var(--ease);
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--cream);
}

.legal-page-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(36,59,83,.55);
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.legal-eyebrow::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
}

.legal-title {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.22;
  margin-bottom: .85rem;
  max-width: 52ch;
}

.legal-meta {
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-section {
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(36,59,83,.45);
}

.legal-section h2 {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(.98rem, 1.5vw, 1.14rem);
  font-weight: 700;
  letter-spacing: -.012em;
  line-height: 1.3;
  margin-bottom: .85rem;
}

.legal-section p {
  color: var(--muted);
  font-size: clamp(.9rem, 1.06vw, .96rem);
  line-height: 1.78;
  max-width: 66ch;
  margin-bottom: .8rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section p strong {
  color: var(--cream);
  font-weight: 600;
}

.legal-section ul {
  list-style: none;
  margin-bottom: .8rem;
}

.legal-section ul li {
  position: relative;
  color: var(--muted);
  font-size: clamp(.9rem, 1.06vw, .96rem);
  line-height: 1.78;
  max-width: 64ch;
  padding-block: .15rem;
  padding-left: 1.25rem;
}

.legal-section ul li::before {
  content: "\00B7";
  position: absolute;
  left: .25rem;
  color: var(--gold);
  font-family: var(--font-mono);
}

.legal-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold-dim);
  text-underline-offset: .2em;
  transition: color .18s var(--ease), text-decoration-color .18s var(--ease);
}

.legal-link:hover,
.legal-link:focus-visible {
  color: var(--cream);
  text-decoration-color: var(--border-bright);
}

/* Show header CTA on mobile for legal pages (no hamburger nav present) */
.legal-page .header-cta {
  display: inline-flex;
}
