/* BrassKeep public site. Mirrors the iOS app's dark-mode tokens:
   bg #0A0A0A, text #EDEDED, copper accent #D97757, hairline 1px white@6%. */

:root {
  --bg:            #0A0A0A;
  --surface:       rgba(255,255,255,0.04);
  --surface-strong:rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.10);
  --text:          #EDEDED;
  --text-2:        #A1A1AA;
  --text-3:        #71717A;
  --accent:        #D97757;
  --accent-soft:   rgba(217,119,87,0.18);
  --radius:        14px;
  --radius-pill:   99px;
  --maxw:          720px;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text",
        system-ui, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: tabular-nums;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--accent-soft); color: var(--text); }

/* ---- Top bar -------------------------------------------------- */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: calc(var(--maxw) + 32px);
  margin: 0 auto;
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.brand:hover { text-decoration: none; }

/* Legal pages' topbar logo. The brass-shield medallion (rendered from
   BrassLogo.imageset/brass-logo.png) shown at a small rounded tile,
   matching the landing nav's .nav-brand img treatment. */
.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10) inset;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.topnav {
  display: flex;
  gap: 14px;
  font-size: 14px;
}
.topnav a {
  color: var(--text-2);
  padding: 6px 2px;
}
.topnav a[aria-current="page"] {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
}

/* ---- Document layout ----------------------------------------- */

main.doc {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 16px 80px;
}

main.doc h1 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
main.doc h2 {
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
main.doc h3 {
  font-size: 16px;
  margin: 24px 0 8px;
  color: var(--text);
}
main.doc p,
main.doc li {
  color: var(--text);
}
main.doc p { margin: 0 0 14px; }
main.doc ul, main.doc ol { padding-left: 22px; margin: 0 0 14px; }
main.doc li { margin-bottom: 6px; }
main.doc li::marker { color: var(--text-3); }

main.doc em:first-child,
main.doc p:first-of-type em {
  color: var(--text-3);
  font-style: normal;
}

main.doc strong { color: var(--text); }

main.doc code {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 6px;
  font: 0.92em/1.4 "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  color: var(--text);
}

main.doc blockquote {
  margin: 18px 0;
  padding: 14px 16px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-2);
}
main.doc blockquote p:last-child { margin: 0; }

main.doc hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* ====================================================== */
/* LANDING PAGE — Apple/Linear product reveal              */
/* ====================================================== */

:root {
  --accent-deep: #B65C3A;
  --accent-bright: #E89066;
  --maxw: 1200px;
  --bg-2: #050505;
}

/* Hide the old default topbar; we use our own sticky nav */
body > header.topbar { display: none !important; }

main.page {
  padding: 0;
  overflow-x: clip;
}

/* ─── Sticky nav ────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(10,10,10,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand img {
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10) inset;
}
.nav-links {
  margin-left: 24px;
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  padding: 8px 16px;
  border-radius: 99px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover {
  background: var(--accent-bright);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ─── Universal type tokens ─────────────────────────── */

.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 24px;
}
.kicker-accent { color: var(--accent); }

.display {
  font-size: clamp(48px, 8.5vw, 112px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--text);
}
.display em {
  font-style: normal;
  color: var(--accent);
}

.display-2 {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--text);
}
.display-2 em {
  font-style: normal;
  color: var(--accent);
}
.display-center { text-align: center; margin-left: auto; margin-right: auto; }

.display-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 0 40px;
  font-weight: 400;
}

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 32px;
  max-width: 520px;
}
.lede-center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ─── Buttons ───────────────────────────────────────── */

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-row-center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.18s ease;
}
.btn:hover { text-decoration: none; }
.btn-large { padding: 16px 28px; font-size: 16px; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow:
    0 10px 30px rgba(217,119,87,0.30),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(217,119,87,0.40),
    inset 0 1px 0 rgba(255,255,255,0.20);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}
.btn-arrow {
  font-size: 18px;
  transition: transform 0.18s ease;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.cta-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
  letter-spacing: -0.005em;
}
.cta-sub a { color: var(--accent); }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 12px #22C55E;
  animation: dot-pulse 2.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 12px #22C55E; }
  50%      { box-shadow: 0 0 4px #22C55E; }
}

/* ═══════════════════════════════════════════════════ */
/* HERO                                                 */
/* ═══════════════════════════════════════════════════ */

.s-hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px 100px;
  overflow: hidden;
  isolation: isolate;
}
.s-hero-bg {
  position: absolute;
  inset: -200px;
  z-index: -1;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.orb-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -200px;
  background: radial-gradient(circle, rgba(217,119,87,0.6), transparent 60%);
}
.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(217,119,87,0.30), transparent 60%);
}

.s-hero-inner {
  max-width: 720px;
  padding-top: 40px;
}

.hero-phone-wrap {
  position: relative;
  margin-top: 64px;
  display: flex;
  justify-content: center;
  perspective: 1400px;
}
.hero-phone-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 50%,
      rgba(217,119,87,0.30), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/* ═══════════════════════════════════════════════════ */
/* PHONE COMPONENT                                      */
/* ═══════════════════════════════════════════════════ */

.phone {
  width: 340px;
  position: relative;
  transition: transform 0.6s ease;
}
.hero-phone {
  width: 360px;
  transform: rotateX(8deg) rotateY(-4deg);
}
.phone-tilt-left  { transform: rotate(-3deg); }
.phone-tilt-right { transform: rotate(3deg); }
.phone-tilt-timer { transform: rotate(-3deg); }
.phone-spotlight  { width: 380px; }

.phone-bezel {
  position: relative;
  border-radius: 52px;
  padding: 12px;
  background:
    linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 50%, #1f1f1f 100%);
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.10) inset,
    0 0 0 0.5px rgba(0,0,0,0.5),
    0 30px 80px rgba(0,0,0,0.6),
    0 60px 120px -20px rgba(217,119,87,0.25);
}
/* Real screenshots include their own device frame and have a
   transparent background, so .phone-real drops the CSS bezel and
   just shows the image — but with the copper bloom + drop shadow
   reinstated as filters on the image itself (they follow the
   transparent phone silhouette exactly). Tilt classes still rotate
   the wrapper, restoring the Apple-style angle. */
.phone-real {
  position: relative;
}
.phone-real .phone-photo {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,0.55))
    drop-shadow(0 0 80px rgba(217,119,87,0.35));
}
.phone-real .phone-shadow {
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 60px;
  background: radial-gradient(ellipse,
    rgba(217,119,87,0.28), transparent 70%);
  filter: blur(36px);
}
.phone-island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.phone-screen {
  position: relative;
  border-radius: 42px;
  background: #0A0A0A;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset;
}
/* Real screenshot drives the frame height at its own aspect ratio, so
   it's never cropped and there's no gap regardless of capture size.
   The bezel wraps it exactly; rounded corners clip via overflow:hidden.
   The screenshot already includes the status bar + island, so no
   overlay is drawn. */
.phone-real .phone-screen {
  aspect-ratio: auto;
}
.phone-photo {
  display: block;
  width: 100%;
  height: auto;
}
.phone-shadow {
  position: absolute;
  bottom: -40px;
  left: 8%;
  right: 8%;
  height: 50px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.7), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

/* ─── Phone status bar ──────────────────────────────── */
.ui-statusbar {
  position: relative;
  z-index: 4;
  padding: 18px 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.ui-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ui-signal {
  width: 16px; height: 10px;
  background: linear-gradient(90deg, var(--text) 60%, rgba(255,255,255,0.35) 60%);
  mask: linear-gradient(90deg, #000 0 3px, transparent 3 4px, #000 4 7px, transparent 7 8px, #000 8 11px, transparent 11 12px, #000 12 15px);
  -webkit-mask: linear-gradient(90deg, #000 0 3px, transparent 3 4px, #000 4 7px, transparent 7 8px, #000 8 11px, transparent 11 12px, #000 12 15px);
}
.ui-wifi {
  width: 14px; height: 10px;
  background: var(--text);
  mask: radial-gradient(circle at 50% 100%, transparent 30%, #000 30% 60%, transparent 60%);
  -webkit-mask: radial-gradient(circle at 50% 100%, transparent 30%, #000 30% 60%, transparent 60%);
}
.ui-battery {
  width: 24px; height: 11px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 3px;
  padding: 1px;
  position: relative;
}
.ui-battery::before {
  content: "";
  display: block;
  width: 75%;
  height: 100%;
  background: var(--text);
  border-radius: 1px;
}
.ui-battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 30%;
  width: 2px;
  height: 40%;
  background: rgba(255,255,255,0.4);
  border-radius: 0 1px 1px 0;
}

/* ─── Phone content base ────────────────────────────── */
.ui-content {
  padding: 24px 22px 18px;
}

.ui-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin: 0 0 8px;
}
.ui-h {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 24px;
}
.ui-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.ui-page-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.ui-add {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ui-meta {
  font-size: 11.5px;
  color: var(--text-3);
  margin: 0 0 18px;
}
.ui-section {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 4px 0 10px;
}

/* Stats row in hero */
.ui-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ui-stat-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin: 0 0 2px;
}
.ui-stat-num span {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-left: 3px;
  font-weight: 600;
}
.ui-stat-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--text-3);
  margin: 0;
}

/* Activity cards */
.ui-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 12px;
  margin-bottom: 7px;
}
.ui-activity {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ui-act-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(217,119,87,0.13);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.ui-act-body { flex: 1; min-width: 0; }
.ui-act-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 2px;
}
.ui-act-sub {
  font-size: 10.5px;
  color: var(--text-3);
  margin: 0;
}
.ui-act-stat {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  margin: 0;
}
.ui-act-stat span {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-left: 2px;
  font-weight: 600;
}

/* Firearm cards (Safe screen) */
.ui-firearm {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 11px;
}
.ui-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.ui-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(0,0,0,0.40));
}
.ui-thumb-1 { background: linear-gradient(135deg, #2a2520, #0a0a0a); }
.ui-thumb-2 { background: linear-gradient(135deg, #1f1f1f, #050505); }
.ui-thumb-3 { background: linear-gradient(135deg, #2a2018, #08060a); }
.ui-thumb-4 { background: linear-gradient(135deg, #1a1a1a, #0a0a0a); }
.ui-firearm-body { flex: 1; min-width: 0; }
.ui-firearm-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}
.ui-firearm-meta {
  font-size: 10.5px;
  color: var(--text-3);
  margin: 0 0 6px;
  font-variant-numeric: tabular-nums;
}
.ui-pill-row {
  display: flex;
  gap: 5px;
}
.ui-pill {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(217,119,87,0.13);
  color: var(--accent);
}
.ui-pill-warn {
  background: rgba(245,158,11,0.13);
  color: #F59E0B;
}
.ui-lock {
  color: var(--text-3);
  font-size: 14px;
  opacity: 0.6;
}

/* Tab bar (hero phone) */
.ui-tabbar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 10px 8px;
  display: flex;
  justify-content: space-around;
}
.ui-tab {
  flex: 1;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  position: relative;
  padding-top: 4px;
}
.ui-tab span:not(.ui-tab-dot) { display: block; }
.ui-tab-active { color: var(--accent); }
.ui-tab-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  margin-bottom: 3px;
}

/* Drill timer screen */
.ui-timer {
  text-align: center;
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.ui-timer-num {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin: 0 0 6px;
}
.ui-timer-num span {
  font-size: 0.35em;
  color: var(--accent);
  letter-spacing: 0;
  margin-left: 4px;
  font-weight: 600;
}
.ui-timer-cap {
  font-size: 11px;
  color: var(--text-3);
  margin: 0;
}
.ui-split-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.ui-split {
  display: grid;
  grid-template-columns: 30px 1fr 36px;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.ui-split-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
.ui-bar {
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
}
.ui-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: 3px;
}
.ui-split-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.ui-actionbar {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
}
.ui-action {
  padding: 11px 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.ui-action-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Apple Watch (floating beside drill phone) */
.watch {
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: 130px;
  height: 160px;
  background:
    linear-gradient(135deg, #2a2a2a, #0a0a0a);
  border-radius: 30px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 20px 50px rgba(0,0,0,0.6),
    0 30px 60px -10px rgba(217,119,87,0.30);
  transform: rotate(8deg);
}
.watch-screen {
  background: #000;
  border-radius: 24px;
  padding: 16px 12px;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
}
.watch-eyebrow {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 4px;
}
.watch-num {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin: 0 0 6px;
  line-height: 1;
}
.watch-num span {
  font-size: 0.4em;
  color: var(--accent);
  margin-left: 2px;
}
.watch-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 6px 0 8px;
}
.watch-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}
.watch-foot {
  font-size: 8.5px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.05em;
  margin: 0;
}

/* Target on Analysis screen */
.ui-target {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 240px;
  margin: 6px auto 14px;
}
.ui-target-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
}
.ui-target-r2 { inset: 12%; border-color: rgba(255,255,255,0.15); }
.ui-target-r3 { inset: 26%; border-color: rgba(255,255,255,0.22); }
.ui-target-r4 { inset: 40%; border-color: rgba(217,119,87,0.45); }
.ui-target-x {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background:
    linear-gradient(0deg, transparent 47%, rgba(217,119,87,0.5) 47% 53%, transparent 53%),
    linear-gradient(90deg, transparent 47%, rgba(217,119,87,0.5) 47% 53%, transparent 53%);
}
.ui-hit {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1.5px rgba(217,119,87,0.7),
    0 0 8px rgba(217,119,87,0.5);
}
.ui-flier {
  background: #F59E0B;
  box-shadow:
    0 0 0 1.5px rgba(245,158,11,0.6),
    0 0 10px rgba(245,158,11,0.7);
}
.ui-target-group {
  position: absolute;
  width: 30%;
  aspect-ratio: 1;
  border: 1px dashed rgba(217,119,87,0.6);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ui-readout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 14px;
}
.ui-readout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.ui-readout-row:last-child { border-bottom: 0; }
.ui-readout-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
}
.ui-readout-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.ui-readout-val small {
  font-size: 9px;
  color: var(--text-3);
  margin-left: 3px;
  font-weight: 600;
}
.ui-warn   { color: #F59E0B !important; }
.ui-accent { color: var(--accent) !important; }

/* ═══════════════════════════════════════════════════ */
/* PILLAR STRIP                                          */
/* ═══════════════════════════════════════════════════ */

.s-pillars {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar {
  padding: 36px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid var(--border);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(217,119,87,0.4), transparent);
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(217,119,87,0.13);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.pillar h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text);
}
.pillar p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* ═══════════════════════════════════════════════════ */
/* FEATURE SECTIONS                                      */
/* ═══════════════════════════════════════════════════ */

.s-feature {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 24px;
  isolation: isolate;
  overflow: hidden;
}
.s-feature-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%,
      rgba(217,119,87,0.18), transparent 60%);
}
.s-feature-bg-2 {
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%,
      rgba(217,119,87,0.18), transparent 60%);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.s-feature-rev .feature-grid {
  grid-template-columns: 1fr 1fr;
}
.s-feature-rev .feature-text  { order: 2; }
.s-feature-rev .feature-visual { order: 1; }

.feature-text { max-width: 480px; }
.feature-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-top: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.45;
}
.check-list li:last-child { border-bottom: 1px solid var(--border); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(217,119,87,0.18);
  border: 1px solid rgba(217,119,87,0.5);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 23px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ═══════════════════════════════════════════════════ */
/* AI ANALYSIS SPOTLIGHT                                 */
/* ═══════════════════════════════════════════════════ */

.s-spotlight {
  position: relative;
  padding: 100px 24px 120px;
  background: var(--bg-2);
  isolation: isolate;
  overflow: hidden;
}
.s-spotlight-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%,
      rgba(217,119,87,0.16), transparent 70%);
}
.spotlight-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.spotlight-stage {
  position: relative;
  margin-top: 40px;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}
.spotlight-stage .phone {
  transform: rotateX(2deg);
}
.float-chip {
  position: absolute;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.float-chip-1 {
  top: 100px;
  left: calc(50% - 280px);
  animation-delay: 0s;
}
.float-chip-2 {
  top: 180px;
  right: calc(50% - 320px);
  animation-delay: 1.3s;
}
.float-chip-3 {
  bottom: 120px;
  left: calc(50% - 300px);
  animation-delay: 2.6s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.chip-dot-warn {
  background: #F59E0B;
  box-shadow: 0 0 8px #F59E0B;
}
.chip-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-3);
  margin: 0;
  text-transform: uppercase;
}
.chip-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  text-align: left;
}

/* ═══════════════════════════════════════════════════ */
/* PRIVACY MANIFESTO                                     */
/* ═══════════════════════════════════════════════════ */

.s-privacy {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
}
.privacy-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  margin-top: 60px;
}
.p-pillar {
  background: var(--bg);
  padding: 36px 28px;
  text-align: left;
}
.p-pillar:hover { background: rgba(255,255,255,0.02); }
.p-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin: 0 0 16px;
  font-variant-numeric: tabular-nums;
}
.p-pillar h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.3;
}
.p-pillar p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.p-pillar p em { color: var(--accent); font-style: normal; }
.privacy-foot {
  margin-top: 40px;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════ */
/* PRICING                                               */
/* ═══════════════════════════════════════════════════ */

.s-pricing {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 24px 80px;
  text-align: center;
}
.pricing-stage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 60px;
  text-align: left;
}
.pcard {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.pcard-flag {
  border-color: rgba(217,119,87,0.45);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217,119,87,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  box-shadow:
    0 20px 40px rgba(217,119,87,0.15),
    0 0 0 1px rgba(217,119,87,0.20) inset;
}
.pcard-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--accent);
  color: #fff;
}
.pcard-head { margin-bottom: 20px; }
.pcard h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  color: var(--text);
}
.pcard-tag {
  font-size: 12px;
  color: var(--text-3);
  margin: 0;
}
.pcard-price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin: 0 0 20px;
  line-height: 1;
}
.pcard-price span {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-left: 4px;
}
.pcard-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pcard-list li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.4;
}
.pcard-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.pcard-cta {
  padding: 12px 16px;
  border-radius: 99px;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.005em;
  cursor: pointer;
}
.pcard-cta-primary {
  background: var(--accent);
  color: #fff;
}

/* Founders hero card */
.founders {
  position: relative;
  margin-top: 32px;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(217,119,87,0.40);
  background:
    radial-gradient(ellipse 60% 100% at 30% 0%,
      rgba(217,119,87,0.18), transparent 60%),
    linear-gradient(180deg, rgba(20,12,8,0.6), rgba(10,10,10,0.9));
}
.founders-glow {
  position: absolute;
  inset: -50px;
  z-index: -1;
  background: radial-gradient(ellipse 50% 100% at 50% 100%,
    rgba(217,119,87,0.35), transparent 60%);
  filter: blur(40px);
}
.founders-inner {
  padding: 40px 40px 44px;
  text-align: left;
}
.founders-meta { margin-bottom: 28px; }
.founders-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 99px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(217,119,87,0.5);
  color: var(--accent);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.founders-stamp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.founders-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
}
.founders-left h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--text);
}
.founders-left p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.founders-right { text-align: right; }
.founders-was {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.founders-strike {
  font-size: 22px;
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: var(--text-3);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.founders-was-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-3);
}
.founders-price {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin: 0 0 20px;
}
.founders-price span {
  font-size: 0.28em;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-left: 6px;
}
.founders-cta {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 99px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
  box-shadow:
    0 10px 30px rgba(217,119,87,0.4),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.founders-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  text-decoration: none;
}
.founders-foot {
  margin: 12px 0 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════════════ */
/* FAQ                                                   */
/* ═══════════════════════════════════════════════════ */

.s-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.faq-list {
  margin-top: 48px;
  text-align: left;
}
.faq {
  border-top: 1px solid var(--border);
}
.faq:last-of-type { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 40px 24px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(0deg, transparent 47%, var(--accent) 47% 53%, transparent 53%),
    linear-gradient(90deg, transparent 47%, var(--accent) 47% 53%, transparent 53%);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.faq[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background:
    linear-gradient(90deg, transparent 47%, var(--accent) 47% 53%, transparent 53%);
}
.faq p {
  padding: 0 24px 24px 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
}
.faq p em { color: var(--accent); font-style: normal; font-weight: 500; }

/* ═══════════════════════════════════════════════════ */
/* CLOSING                                               */
/* ═══════════════════════════════════════════════════ */

.s-closing {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px 24px 140px;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%,
      rgba(217,119,87,0.22), transparent 70%);
}
.closing-h {
  font-size: clamp(44px, 7.5vw, 100px);
  margin-bottom: 32px;
}
.closing-sub {
  margin: 0 auto 40px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════ */
/* FOOTER                                                */
/* ═══════════════════════════════════════════════════ */

body > footer.foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.foot-brand img {
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10) inset;
}
.foot-name {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.foot-tag {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
}
.foot-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.foot-links a {
  color: var(--text-2);
  font-size: 13.5px;
}
.foot-copy {
  font-size: 12px;
  color: var(--text-3);
  margin: 0;
  letter-spacing: 0.02em;
}
/* Hide the old default footer */
body > footer.footer { display: none !important; }

/* ═══════════════════════════════════════════════════ */
/* RESPONSIVE                                            */
/* ═══════════════════════════════════════════════════ */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .s-feature-rev .feature-text  { order: 1; }
  .s-feature-rev .feature-visual { order: 2; }
  .pillar-grid { grid-template-columns: 1fr; }
  .privacy-pillars { grid-template-columns: repeat(2, 1fr); }
  .pricing-stage { grid-template-columns: repeat(2, 1fr); }
  .founders-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founders-right { text-align: left; }
  .founders-was { justify-content: flex-start; }
  .float-chip-1 { left: 8px; top: 40px; }
  .float-chip-2 { right: 8px; top: 80px; }
  .float-chip-3 { left: 8px; bottom: 60px; }
}

@media (max-width: 560px) {
  .nav-inner { padding: 12px 16px; }
  .nav-cta { padding: 7px 12px; font-size: 12px; }
  .s-hero { padding: 48px 16px 64px; }
  .s-hero-inner { padding-top: 16px; }
  .s-pillars,
  .s-feature,
  .s-privacy,
  .s-pricing,
  .s-spotlight,
  .s-faq,
  .s-closing {
    padding-left: 16px;
    padding-right: 16px;
  }
  .pricing-stage { grid-template-columns: 1fr; }
  .privacy-pillars { grid-template-columns: 1fr; }
  .hero-phone { width: 290px; transform: none; }
  .phone-tilt-left, .phone-tilt-right { transform: none; }
  .phone-spotlight { width: 290px; }
  .watch { display: none; }
  .float-chip { display: none; }
  .founders-inner { padding: 28px 24px; }
  .foot-inner { flex-direction: column; gap: 24px; }
}

/* ─── HERO ─────────────────────────────────────────── */

.hero {
  position: relative;
  text-align: center;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 96px 16px 48px;
  isolation: isolate;
}
.hero-glow {
  position: absolute;
  inset: -100px -100px auto -100px;
  height: 600px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%,
      rgba(217,119,87,0.18) 0%, rgba(217,119,87,0) 65%),
    radial-gradient(ellipse 30% 25% at 50% 30%,
      rgba(217,119,87,0.10) 0%, rgba(217,119,87,0) 70%);
  z-index: -1;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 28px;
}
.eyebrow-rule {
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 44px;
}

.hero-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.hero-icon {
  width: clamp(140px, 18vw, 180px);
  height: auto;
  border-radius: 38px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 30px 80px rgba(217,119,87,0.35),
    0 6px 18px rgba(0,0,0,0.5);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg,
    rgba(217,119,87,0.18) 0%, rgba(217,119,87,0.10) 100%);
  border: 1px solid rgba(217,119,87,0.45);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(217,119,87,0.20);
}
.cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(217,119,87,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(217,119,87,0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(217,119,87,0.05); }
}

.hero-sub {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 16px 0 0;
}

/* ─── STAT STRIP ───────────────────────────────────── */

.stat-strip {
  max-width: var(--maxw-wide);
  margin: 16px auto 0;
  padding: 28px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  text-align: center;
  padding: 8px 6px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin: 0 0 10px;
  color: var(--text);
}
.stat-unit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.45em;
  color: var(--text-3);
  letter-spacing: 0;
  margin-left: 4px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.45;
  margin: 0;
}

/* ─── PRINCIPLES ───────────────────────────────────── */

.principles {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 96px 16px 64px;
}
.principle-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.principle {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.principle:nth-child(3n) { border-right: 0; }
.principle-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 18px;
}
.principle h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.principle p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
}

/* ─── FEATURES (editorial spreads) ─────────────────── */

.features {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 64px 16px 64px;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.feat-row:first-of-type { border-top: 0; }
.feat-row-rev .feat-copy { order: 2; }
.feat-row-rev .feat-visual { order: 1; }

.feat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin: 0 0 18px;
}
.feat-copy h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 18px;
}
.feat-copy p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 20px;
}
.feat-copy strong { color: var(--text); }
.feat-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}
.feat-bullets li {
  padding: 12px 0 12px 22px;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.feat-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}

.feat-visual {
  display: flex;
  justify-content: center;
}

/* ─── PHONE MOCKUP ─────────────────────────────────── */

.phone-frame {
  width: 280px;
  height: 580px;
  border-radius: 44px;
  background: #050505;
  padding: 8px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06),
    0 60px 100px -30px rgba(217,119,87,0.25),
    0 30px 60px rgba(0,0,0,0.6);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 18px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background:
    radial-gradient(ellipse at 50% 0%,
      rgba(217,119,87,0.10), transparent 60%),
    #0A0A0A;
  padding: 56px 20px 28px;
  overflow: hidden;
  position: relative;
}

.ps-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-3);
  text-transform: uppercase;
  margin: 0 0 18px;
}

.ps-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
}
.ps-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217,119,87,0.40), rgba(217,119,87,0.10));
  flex-shrink: 0;
}
.ps-line {
  margin: 0;
  font-size: 11px;
  line-height: 1.3;
}
.ps-strong { font-weight: 600; color: var(--text); }
.ps-dim    { font-weight: 500; color: var(--text-3); font-variant-numeric: tabular-nums; }
.ps-rounds {
  margin-left: auto;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.ps-rounds span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-left: 4px;
  font-family: -apple-system, sans-serif;
  font-style: normal;
}

/* Drill phone variant */
.ps-bignum {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin: 12px 0 6px;
}
.ps-bigsub  { font-size: 0.6em; color: var(--text-2); }
.ps-bigunit {
  font-family: -apple-system, sans-serif;
  font-size: 0.22em;
  color: var(--text-3);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: 12px;
}
.ps-cap {
  font-size: 11px;
  color: var(--text-3);
  margin: 0 0 24px;
}
.ps-splits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.ps-splits div {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.ps-splits span:first-child {
  color: var(--text-3);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.ps-splits span:last-child {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* Target phone variant */
.ps-target {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 200px;
  margin: 12px auto 18px;
}
.ps-ring,
.ps-ring-2,
.ps-ring-3 {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
}
.ps-ring-2 { inset: 18%; border-color: rgba(255,255,255,0.16); }
.ps-ring-3 { inset: 34%; border-color: rgba(217,119,87,0.40); }
.ps-hit {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 2px rgba(217,119,87,0.20);
}
.ps-flier {
  background: #F59E0B;
  box-shadow: 0 0 0 2px rgba(245,158,11,0.30);
}
.ps-readout {
  border-top: 1px solid var(--border);
}
.ps-readout div {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.ps-readout span:first-child {
  color: var(--text-3);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.ps-readout span:last-child {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* ─── PULL QUOTE ───────────────────────────────────── */

.pull-quote {
  max-width: var(--maxw-read);
  margin: 32px auto;
  padding: 64px 16px 80px;
  text-align: center;
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  margin: 0;
  height: 60px;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

/* ─── PRICING ──────────────────────────────────────── */

.pricing {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 64px 16px 80px;
}

.founders-card {
  position: relative;
  border-radius: 20px;
  padding: 40px 36px 36px;
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%,
      rgba(217,119,87,0.16), rgba(217,119,87,0.04) 60%),
    linear-gradient(180deg, rgba(217,119,87,0.08), rgba(217,119,87,0.02));
  border: 1px solid rgba(217,119,87,0.30);
  margin-bottom: 16px;
  overflow: hidden;
}
.founders-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.20));
}

.founders-stamp {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(217,119,87,0.45);
  color: var(--accent);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.founders-stamp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.founders-body {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.founders-left h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
}
.founders-left p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
}
.founders-right { text-align: right; }
.founders-strike {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: var(--text-3);
}
.founders-price { margin: 0 0 4px; }
.founders-price-final {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin: 0 0 8px;
}
.founders-price-final span {
  font-size: 0.35em;
  font-style: italic;
  color: var(--text-3);
  font-weight: 400;
  letter-spacing: 0;
}
.founders-note {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0;
}

.plan-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}
.plan {
  padding: 24px 22px;
  border-right: 1px solid var(--border);
  position: relative;
}
.plan:last-child { border-right: 0; }
.plan-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 12px;
}
.plan-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin: 0 0 8px;
}
.plan-price span {
  font-size: 0.45em;
  font-style: italic;
  color: var(--text-3);
  font-weight: 400;
  letter-spacing: 0;
}
.plan-meta {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0;
}
.plan-flag { background: rgba(217,119,87,0.06); }
.plan-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(217,119,87,0.18);
  border: 1px solid rgba(217,119,87,0.35);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

/* ─── FAQ ──────────────────────────────────────────── */

.faq {
  max-width: var(--maxw-read);
  margin: 0 auto;
  padding: 64px 16px 80px;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 36px 22px 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 24px 24px 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
}
.faq-item p em { color: var(--accent); font-style: italic; }

/* ─── CLOSING ──────────────────────────────────────── */

.closing {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 96px 16px 96px;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%,
    rgba(217,119,87,0.12), transparent 70%);
  z-index: -1;
}
.closing-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
}
.closing-sub {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 18px 0 0;
}

/* ─── RESPONSIVE ───────────────────────────────────── */

@media (max-width: 900px) {
  .feat-row,
  .founders-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feat-row-rev .feat-copy { order: 1; }
  .feat-row-rev .feat-visual { order: 2; }
  .founders-right { text-align: left; }
  .plan-row { grid-template-columns: repeat(2, 1fr); }
  .plan:nth-child(2) { border-right: 0; }
  .plan:nth-child(1),
  .plan:nth-child(2) { border-bottom: 1px solid var(--border); }
  .principle-list { grid-template-columns: 1fr; }
  .principle { border-right: 0; }
}

@media (max-width: 560px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .plan-row { grid-template-columns: 1fr; }
  .plan { border-right: 0; border-bottom: 1px solid var(--border); }
  .plan:last-child { border-bottom: 0; }
  .principle { padding: 28px 20px; }
  .phone-frame { width: 240px; height: 500px; }
}

/* Legacy three-card row (kept for any page that still uses it) */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 48px;
}
.card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--text);
}
.card:hover {
  background: var(--surface-strong);
  border-color: var(--border-strong);
  text-decoration: none;
}
.card h2 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.card p {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
}

/* ---- Footer -------------------------------------------------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 16px 48px;
  color: var(--text-3);
  font-size: 13px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer p { margin: 4px 0; }
.footer a { color: var(--text-2); }

/* ---- Responsive --------------------------------------------- */

@media (max-width: 480px) {
  .topbar { padding: 14px 12px; }
  main.doc { padding: 28px 12px 64px; }
  .hero { padding: 64px 12px 32px; }
  .topnav { gap: 12px; font-size: 13px; }
}
