/* ─────────────────────────────────────────────
   HALO SAFETY — shared styles
   Extracted from halo_homepage_3.html; every page
   loads this file. Legal/support/404 pages layer
   a compact `.legal` section on top.
   ───────────────────────────────────────────── */

:root {
  --paper: #FDFDFC;
  --paper-2: #F4F2EC;
  --ink: #163300;
  --ink-2: #2A4A12;
  --ink-3: #4A6B30;
  --halo: #9FE870;
  --halo-deep: #7BC74F;
  --halo-pale: #E8F8DC;
  --amber: #FFC091;
  --line: rgba(22, 51, 0, 0.10);
  --line-2: rgba(22, 51, 0, 0.18);
  --max: 1240px;
  --gutter: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-on, body.cursor-on * { cursor: none !important; }
}

::selection { background: var(--halo); color: var(--ink); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ─────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
   ───────────────────────────────────────────── */
.display {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
}
.serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}

/* ─────────────────────────────────────────────
   CURSOR (fine-pointer only)
   ───────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s var(--ease), border 0.3s var(--ease),
              opacity 0.3s var(--ease);
  mix-blend-mode: difference;
  display: none;
}
.cursor.ready { display: block; }
.cursor.hover {
  width: 56px; height: 56px;
  background: transparent;
  border: 1.5px solid var(--halo);
  mix-blend-mode: normal;
}

/* ─────────────────────────────────────────────
   PAGE-LOAD CURTAIN
   ───────────────────────────────────────────── */
.curtain {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), transform 1s var(--ease);
}
.curtain.gone {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.curtain-mark img {
  height: 44px;
  width: auto;
  opacity: 0;
  animation: curtainMark 0.9s 0.1s var(--ease-out) forwards;
}
@keyframes curtainMark {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────── */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
nav.top.scrolled {
  background: rgba(253, 253, 252, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s var(--ease);
}
.brand:hover { opacity: 0.75; }
.brand img { height: 32px; width: auto; display: block; }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 780px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  color: var(--ink-2);
}
.nav-link:hover { background: var(--paper-2); color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

/* App Store badge */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.app-badge:hover { background: var(--halo); color: var(--ink); transform: translateY(-1px); }
.app-badge .apple { width: 20px; height: 22px; display: inline-block; }
.app-badge .top { font-size: 9.5px; font-weight: 500; opacity: 0.7; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; display: block; }
.app-badge .bot { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; }
.app-badge .label { display: flex; flex-direction: column; }

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 96px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-ring {
  position: absolute;
  right: -240px;
  top: 50%;
  width: 720px; height: 720px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  transform: translateY(-50%) rotate(0deg);
  animation: ringRotate 90s linear infinite;
  pointer-events: none;
}
.hero-ring::before {
  content: "";
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.hero-ring::after {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--halo);
  transform: translateX(-50%);
  box-shadow: 0 0 0 6px var(--paper);
}
@keyframes ringRotate {
  to { transform: translateY(-50%) rotate(360deg); }
}
.hero-disk {
  position: absolute;
  right: -120px;
  top: 50%;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--halo);
  transform: translateY(-50%);
  opacity: 0.18;
  filter: blur(40px);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero .eyebrow {
  opacity: 0;
  animation: heroFade 0.8s 0.7s var(--ease-out) forwards;
}
.hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8.4vw, 118px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-top: 28px;
  position: relative;
  max-width: 18ch;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLine 1.1s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.85s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.95s; }
.hero h1 .line:nth-child(3) span { animation-delay: 1.05s; }
.hero h1 .ser {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
}
@keyframes heroLine {
  to { transform: translateY(0%); }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  margin-top: 40px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
  max-width: 58ch;
  color: var(--ink-2);
  opacity: 0;
  animation: heroFade 0.9s 1.4s var(--ease-out) forwards;
}
.hero-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFade 0.9s 1.6s var(--ease-out) forwards;
}
.hero-cta .secondary {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s var(--ease);
}
.hero-cta .secondary:hover { color: var(--ink); }
.hero-cta .secondary::after {
  content: "";
  width: 18px; height: 1px;
  background: var(--ink-2);
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.hero-cta .secondary:hover::after { width: 28px; background: var(--ink); }

/* ─────────────────────────────────────────────
   PHONE MOCKUP (hero right side, CSS-only)
   ───────────────────────────────────────────── */
.phones {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 24px;
  z-index: 1;
  opacity: 0;
  animation: heroFade 1.2s 1.8s var(--ease-out) forwards;
  pointer-events: none;
}
@media (max-width: 1080px) { .phones { display: none; } }

.phone {
  width: 260px; height: 540px;
  border-radius: 42px;
  background: var(--ink);
  padding: 10px;
  box-shadow: 0 60px 120px -40px rgba(22, 51, 0, 0.4),
              0 20px 40px -20px rgba(22, 51, 0, 0.3);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 20px; left: 50%;
  width: 100px; height: 26px;
  background: #000;
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 3;
}
.phone.tilt-l { transform: rotate(-8deg) translateY(20px); }
.phone.tilt-r { transform: rotate(6deg) translateY(-10px); }
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  background: var(--paper);
  overflow: hidden;
  position: relative;
  padding: 44px 18px 18px;
}
.phone.dark .phone-screen { background: #0E1A05; color: var(--paper); }

.mock-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.phone.dark .mock-eyebrow { color: rgba(253, 253, 252, 0.55); }
.mock-h {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 14px;
}
.phone.dark .mock-h { color: var(--paper); }
.mock-h .ser { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--halo-deep); }

.mock-card {
  background: var(--halo-pale);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(22, 51, 0, 0.08);
}
.phone.dark .mock-card { background: #1F3815; border-color: transparent; }

.mock-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.phone.dark .mock-num { color: var(--halo); }
.mock-num .small { font-size: 12px; font-weight: 500; color: var(--ink-3); margin-left: 4px; }

.mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(22, 51, 0, 0.08);
}
.phone.dark .mock-row { border-bottom-color: rgba(253, 253, 252, 0.08); }
.mock-row:last-child { border-bottom: none; }
.mock-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--halo); flex-shrink: 0; }
.mock-row-t { font-size: 11px; font-weight: 700; color: var(--ink); }
.phone.dark .mock-row-t { color: var(--paper); }
.mock-row-s { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--ink-3); margin-left: auto; }

/* Risk matrix mock — 5×5 grid */
.mock-matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 8px;
}
.mock-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--halo-pale);
}
.mock-cell.m { background: var(--amber); opacity: 0.65; }
.mock-cell.h { background: #FF7A4B; opacity: 0.8; }
.mock-cell.e { background: #C13E1E; }

/* ─────────────────────────────────────────────
   MARQUEE
   ───────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--paper);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--halo);
  border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   SECTIONS — base
   ───────────────────────────────────────────── */
section {
  padding: 140px 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  section { padding: 88px 0; }
}
.section-h {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 14ch;
}
.section-h .ser {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--reveal), transform 0.9s var(--reveal);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d-1 { transition-delay: 0.08s; }
.reveal.d-2 { transition-delay: 0.16s; }
.reveal.d-3 { transition-delay: 0.24s; }
.reveal.d-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────
   STATS BAND
   ───────────────────────────────────────────── */
.stats { background: var(--paper); }
.stats-intro {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 40px;
}
.stats-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
  margin-bottom: 80px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-2);
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: 1fr; }
}
.stat {
  padding: 36px 24px 28px 0;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.4s var(--ease);
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--paper-2); padding-left: 12px; }
.stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.stat-num .small { font-size: 0.45em; vertical-align: top; letter-spacing: 0; }
.stat-num .curr { font-size: 0.55em; vertical-align: top; }
.stat-label {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 30ch;
}
.stat-src {
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   PILLARS
   ───────────────────────────────────────────── */
.pillars { background: var(--paper-2); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
}
.pillar {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 36px 36px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.5s var(--ease);
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 24px 60px -20px rgba(22, 51, 0, 0.18);
}
.pillar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pillar-h {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 15ch;
}
.pillar-h .ser { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.pillar-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ─────────────────────────────────────────────
   DAY IN THE LIFE (narrative block on ink bg)
   ───────────────────────────────────────────── */
.day { background: var(--ink); color: var(--paper); }
.day .eyebrow { color: var(--halo); }
.day .eyebrow::before { background: var(--halo); }
.day .section-h { color: var(--paper); }
.day .section-h .ser { color: var(--halo); }

.day-story {
  margin-top: 24px;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
  color: rgba(253, 253, 252, 0.9);
  max-width: 60ch;
}
.day-story p { margin-bottom: 24px; }
.day-story .hi { background: var(--halo); color: var(--ink); padding: 0 0.25em; border-radius: 4px; font-weight: 600; }
.day-story .time {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72em;
  letter-spacing: 0.04em;
  color: var(--halo);
  margin-right: 12px;
}

/* ─────────────────────────────────────────────
   COMPARE (3 columns)
   ───────────────────────────────────────────── */
.compare { background: var(--paper); }
.compare-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
}
.compare-col {
  padding: 40px 32px;
  position: relative;
}
.compare-col + .compare-col { border-left: 1px solid var(--line-2); }
@media (max-width: 900px) {
  .compare-col + .compare-col { border-left: none; border-top: 1px solid var(--line-2); }
}
.compare-col.us { background: var(--halo); }
.compare-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.compare-col.us .compare-tag { color: var(--ink-2); }
.compare-h {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 28px;
  max-width: 14ch;
}
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.compare-list li {
  font-size: 14px;
  line-height: 1.4;
  padding: 14px 0;
  border-bottom: 1px solid rgba(22, 51, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list li strong { font-family: 'Inter Tight', sans-serif; font-weight: 700; letter-spacing: -0.01em; }
.compare-list .row-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  min-width: 90px;
  flex-shrink: 0;
  padding-top: 2px;
}
.compare-col.us .compare-list .row-label { color: var(--ink-2); }

/* ─────────────────────────────────────────────
   COMING SOON (Halo suite roadmap)
   ───────────────────────────────────────────── */
.suite { background: var(--paper-2); }
.suite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) {
  .suite-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .suite-grid { grid-template-columns: 1fr; }
}
.suite-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.suite-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.suite-badge {
  align-self: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink-2);
}
.suite-badge.live { background: var(--halo); color: var(--ink); }
.suite-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: auto;
}
.suite-line {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-2);
}

.waitlist-block {
  margin-top: 56px;
  text-align: center;
}
.waitlist-form {
  margin: 20px auto 0;
  max-width: 460px;
  display: flex;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px;
  transition: border-color 0.3s var(--ease);
}
.waitlist-form:focus-within { border-color: var(--ink); }
.waitlist-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 20px;
}
.waitlist-form input::placeholder { color: var(--ink-3); }
.waitlist-form button {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  white-space: nowrap;
}
.waitlist-form button:hover { background: var(--halo); color: var(--ink); }
.waitlist-form.done input { display: none; }
.waitlist-form.done button { cursor: default; width: 100%; background: var(--halo-pale); color: var(--ink); pointer-events: none; }

/* ─────────────────────────────────────────────
   PRICING (2 cards)
   ───────────────────────────────────────────── */
.pricing { background: var(--paper); }
.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .tiers { grid-template-columns: 1fr; }
}
.tier {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.5s var(--ease);
  position: relative;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 24px 60px -20px rgba(22, 51, 0, 0.18);
}
.tier.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tier.featured:hover { border-color: var(--halo); box-shadow: 0 30px 70px -24px rgba(22, 51, 0, 0.4); }
.tier-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tier-tagline {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 28px;
  max-width: 28ch;
}
.tier.featured .tier-tagline { color: rgba(253, 253, 252, 0.6); }
.tier-price {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.045em;
  line-height: 1;
}
.tier-foot-price {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 12px;
  margin-bottom: 28px;
  max-width: 32ch;
}
.tier.featured .tier-foot-price { color: rgba(253, 253, 252, 0.55); }

.tier ul {
  list-style: none;
  font-size: 14.5px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.tier li {
  padding-left: 26px;
  position: relative;
}
.tier li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}
.tier.featured li::before { border-color: var(--halo); }
.tier li::after {
  content: "";
  position: absolute;
  left: 4px; top: calc(0.45em + 4px);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--halo);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.tier:hover li::after { opacity: 1; }

.tier-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.tier-cta:hover { background: var(--ink); color: var(--paper); }
.tier.featured .tier-cta { background: var(--halo); color: var(--ink); }
.tier.featured .tier-cta:hover { background: var(--paper); }

.pricing-note {
  margin-top: 40px;
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────────────────────────
   CLOSER
   ───────────────────────────────────────────── */
.closer {
  background: var(--ink);
  color: var(--paper);
  padding: 180px 0 140px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 720px) { .closer { padding: 120px 0 80px; } }
.closer-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90vmin; height: 90vmin;
  border-radius: 50%;
  border: 1px solid rgba(159, 232, 112, 0.18);
  transform: translate(-50%, -50%) rotate(0);
  animation: ringRotate 60s linear infinite;
  pointer-events: none;
}
.closer-ring::after {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--halo);
  transform: translateX(-50%);
}
.closer-inner { position: relative; z-index: 2; }
.closer .eyebrow { color: var(--halo); margin-bottom: 32px; }
.closer .eyebrow::before { background: var(--halo); }
.closer-h {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 18ch;
  margin: 0 auto;
  padding-bottom: 0.05em;
}
.closer-h .ser { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--halo); }
.closer-sub {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(253, 253, 252, 0.7);
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.closer-cta { margin-top: 48px; display: inline-flex; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(253, 253, 252, 0.65);
  padding: 72px 0 40px;
  border-top: 1px solid rgba(253, 253, 252, 0.08);
  font-size: 14px;
}
.foot-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 800px) {
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .foot-cols { grid-template-columns: 1fr; }
}
.foot-brand-block { display: flex; flex-direction: column; gap: 16px; }
.foot-brand img { height: 30px; width: auto; }
.foot-brand-line { font-size: 13px; color: rgba(253, 253, 252, 0.55); max-width: 26ch; }
.foot-col-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 253, 252, 0.45);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { transition: color 0.25s var(--ease); }
.foot-col a:hover { color: var(--halo); }
.foot-details { font-size: 13px; line-height: 1.6; }
.foot-details .fine { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.06em; color: rgba(253, 253, 252, 0.4); margin-top: 8px; display: block; }
.foot-bottom {
  border-top: 1px solid rgba(253, 253, 252, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(253, 253, 252, 0.45);
}

/* ─────────────────────────────────────────────
   PROGRESS BAR
   ───────────────────────────────────────────── */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--halo);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────────
   LEGAL / SUPPORT / 404 LAYOUT
   Compact single-column documents; no animation
   noise, generous vertical rhythm, readable.
   ───────────────────────────────────────────── */
.legal-page {
  padding: 140px 0 96px;
  min-height: 100vh;
}
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 40px;
  transition: color 0.25s var(--ease);
}
.legal-back::before { content: "←"; font-family: 'Inter', sans-serif; }
.legal-back:hover { color: var(--ink); }
.legal-h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 16px;
}
.legal-h1 .ser { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.legal-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-page section.section {
  padding: 0;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  margin-top: 40px;
}
.legal-page h2 .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-right: 12px;
  vertical-align: middle;
}
.legal-page p, .legal-page li {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 24px; margin-bottom: 16px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--halo-deep); text-underline-offset: 3px; transition: color 0.2s var(--ease); }
.legal-page a:hover { color: var(--halo-deep); }
.legal-page .callout {
  border-left: 3px solid var(--halo);
  padding: 12px 18px;
  background: var(--paper-2);
  border-radius: 0 10px 10px 0;
  margin: 20px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}
.legal-page code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  background: var(--paper-2);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink);
}

/* Simplified top-bar for legal pages */
.legal-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(253, 253, 252, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.legal-nav .nav-row { justify-content: space-between; }

/* ─────────────────────────────────────────────
   FAQ (support page)
   ───────────────────────────────────────────── */
.faq {
  padding: 40px 0 80px;
}
.faq-list {
  border-top: 1px solid var(--line);
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--halo-deep); }
.faq-summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-3);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-summary::after { content: "−"; transform: rotate(0deg); color: var(--halo-deep); }
.faq-body {
  padding: 0 4px 24px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 68ch;
}
.faq-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--halo-deep); text-underline-offset: 3px; }

/* Support hero (scaled-down hero) */
.support-hero {
  padding: 140px 0 40px;
  text-align: center;
}
.support-hero .eyebrow { justify-content: center; margin-bottom: 20px; }
.support-hero .eyebrow::before { display: none; }
.support-hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.support-hero h1 .ser { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.support-hero p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 44ch;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.support-hero .mailto {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.support-hero .mailto:hover { background: var(--halo); color: var(--ink); transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   404
   ───────────────────────────────────────────── */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.notfound-ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  transform: translate(-50%, -50%);
  animation: ringRotate 90s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}
.notfound-inner { position: relative; z-index: 2; }
.notfound-h {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 108px);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 24px 0 24px;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.notfound-h .ser { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.notfound-body {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 44ch;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.notfound-ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.notfound .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.notfound .btn-primary:hover { background: var(--halo); color: var(--ink); }
.notfound .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid var(--line-2);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.notfound .btn-secondary:hover { border-color: var(--ink); background: var(--paper); }

/* ─────────────────────────────────────────────
   FOCUS STATES — a11y baseline
   ───────────────────────────────────────────── */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 2px solid var(--halo-deep);
  outline-offset: 3px;
  border-radius: 4px;
}
