/* ============================================================
   trackmy.codes — Landing page
   Terminal / phosphor "build in public" aesthetic.
   Self-contained: does NOT depend on site.css (other pages keep
   the existing light theme). Built around the >_ ● logo.
   ============================================================ */

:root {
  color-scheme: dark;

  --bg:        #07080a;
  --bg-2:      #0a0c10;
  --panel:     #0d1014;
  --panel-2:   #11151b;
  --inset:     #060708;
  --line:      #1b212b;
  --line-2:    #262e3a;

  --ink:       #e9edf3;
  --muted:     #79808f;
  --dim:       #4b525f;

  --accent:        #2bd47f;
  --accent-strong: #46e58f;
  --accent-deep:   #1ea968;
  --green-ink:     #04130b;

  --claude: #d97757;
  --codex:  #10b981;
  --cursor: #c7ccd4;
  --amber:  #e0a836;

  --radius:    16px;
  --radius-sm: 10px;

  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --hand: "Caveat", "Bricolage Grotesque", cursive;

  --shadow: 0 1px 0 rgba(255,255,255,.02) inset, 0 30px 70px -36px rgba(0,0,0,.95);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Atmosphere: dot-grid + green blooms */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 600px at 14% -6%, rgba(43,212,127,.12), transparent 60%),
    radial-gradient(800px 800px at 100% 4%, rgba(43,212,127,.05), transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.028) 1px, transparent 0);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  background-color: var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  opacity: .5;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(43,212,127,.28); color: #fff; }

.shell { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

/* ============================================================
   Nav
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(7,8,10,.72);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.logo { width: 38px; height: 28px; flex: none; overflow: visible; }
.logo .mark { stroke: var(--ink); fill: none; }
.logo .dot {
  fill: var(--accent);
  transform-box: fill-box; transform-origin: center;
  animation: dotPulse 2.4s var(--ease) infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; filter: drop-shadow(0 0 0 rgba(43,212,127,0)); }
  50%     { opacity: .5; filter: drop-shadow(0 0 6px rgba(70,229,143,.9)); }
}
.brand-name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -.015em; }
.brand-name .tld { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); font-size: 13px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .15s var(--ease), background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.btn.primary {
  background: var(--accent);
  color: var(--green-ink);
  box-shadow: 0 10px 30px -12px rgba(43,212,127,.85);
}
.btn.primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(43,212,127,.9); }
.btn.ghost { border-color: var(--line-2); color: var(--ink); background: rgba(255,255,255,.02); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(43,212,127,.05); }
.btn.small { min-height: 38px; padding: 0 15px; font-size: 12.5px; }
.btn.nav-cta { min-height: 38px; padding: 0 16px; }
.btn:active { transform: translateY(0) scale(.98); }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section.tight { padding: 72px 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.kicker::before { content: ">"; color: var(--accent); font-weight: 700; }

.headline {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: .98;
  margin: 0;
}
h1.headline { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2.headline { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.headline .glow { color: var(--accent); }

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  max-width: 56ch;
}
.lead .ink { color: var(--ink); }

/* highlighter underline swipe (amber band behind the baseline) */
.hl-mark {
  color: var(--ink);
  font-weight: 500;
  background: linear-gradient(var(--amber), var(--amber)) no-repeat;
  background-size: 100% 0.34em;
  background-position: 0 92%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 96px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  border: 1px solid rgba(43,212,127,.45);
  border-radius: 999px;
  padding: 7px 15px 7px 13px;
  margin-bottom: 26px;
  background: rgba(43,212,127,.1);
  box-shadow: 0 0 28px -10px rgba(43,212,127,.55), 0 1px 0 rgba(255,255,255,.03) inset;
}
.hero-eyebrow b { color: #fff; font-weight: 800; }
.hero-eyebrow .rec {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(43,212,127,.7);
  animation: recPulse 1.8s ease-out infinite;
}
@keyframes recPulse {
  0%   { box-shadow: 0 0 0 0 rgba(43,212,127,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(43,212,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,212,127,0); }
}
.hero h1 {
  font-size: clamp(2.45rem, 5.45vw, 4.25rem);
  margin-bottom: 22px;
}
.hero-lead { margin-bottom: 16px; }
.hero-sub {
  color: var(--dim);
  font-size: .98rem;
  max-width: 52ch;
  margin: 0 0 30px;
}
.hero-sub .ink { color: var(--muted); }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-cta .sep { color: var(--dim); }
.hero-note {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--dim);
}
.hero-note::before { content: "# "; color: var(--accent); }

/* ============================================================
   Share card (the hero product shot)
   ============================================================ */
.card-stage { position: relative; display: grid; place-items: center; }
.card-stage::before {
  content: "";
  position: absolute;
  width: 80%; height: 70%;
  background: radial-gradient(circle, rgba(43,212,127,.22), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.share-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, #0e1318, #090b0e);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform .4s var(--ease);
}
img.share-card { height: auto; display: block; }
.share-card.float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50%     { transform: rotate(-2deg) translateY(-10px); }
}
.card-stage:hover .share-card { transform: rotate(0deg) scale(1.02); animation-play-state: paused; }

.card-top {
  height: 42px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #11161c;
}
.card-dots { position: absolute; left: 16px; display: flex; gap: 7px; }
.card-dots span { width: 11px; height: 11px; border-radius: 50%; }
.card-dots span:nth-child(1) { background: #ff5f56; }
.card-dots span:nth-child(2) { background: #ffbd2e; }
.card-dots span:nth-child(3) { background: #27c93f; }
.card-path { color: var(--muted); font-size: 12.5px; }

.card-body { padding: 26px 28px 24px; }
.card-prompt { color: var(--muted); font-size: 13px; margin: 0 0 6px; }
.card-prompt::before { content: "> "; color: var(--accent); }
.card-hero {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  letter-spacing: -.03em;
  color: var(--accent-strong);
  line-height: 1;
  margin: 2px 0 6px;
  text-shadow: 0 0 28px rgba(43,212,127,.4);
}
.card-hero .cursor {
  display: inline-block; width: .5ch; height: .82em;
  background: var(--accent); margin-left: 4px;
  vertical-align: -.05em;
  animation: blink 1.05s steps(1) infinite;
  box-shadow: 0 0 14px rgba(43,212,127,.6);
}
@keyframes blink { 0%,50% { opacity: 1; } 50.01%,100% { opacity: 0; } }
.card-sub { color: var(--muted); font-size: 13px; margin: 0 0 22px; }
.card-sub::before { content: "> "; color: var(--accent); }

.card-section-label { color: var(--accent); font-size: 12px; font-weight: 600; margin: 0 0 11px; }
.card-section-label::before { content: "# "; }
.card-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.5px; padding: 5px 0;
}
.card-row .name { display: flex; align-items: center; gap: 9px; color: var(--ink); }
.card-row .name .dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 8px -1px currentColor; }
.card-row .val { color: var(--muted); font-variant-numeric: tabular-nums; }
.card-divider { height: 1px; background: var(--line); margin: 18px 0; }

.card-bars { display: flex; flex-direction: column; gap: 10px; }
.cbar { display: flex; align-items: center; gap: 12px; }
.cbar .lbl { width: 70px; flex: none; color: var(--muted); font-size: 12.5px; }
.cbar .track { flex: 1; height: 7px; border-radius: 999px; background: var(--inset); overflow: hidden; }
.cbar .fill { display: block; height: 100%; border-radius: 999px; background: var(--accent); box-shadow: 0 0 10px -1px var(--accent); }

.card-foot {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px; color: var(--dim);
}
.card-foot .brandline .tld { color: var(--accent); }
.card-streak { display: inline-flex; align-items: center; gap: 6px; color: var(--amber); }

/* little "posted to X" tag clipped to the card corner */
.post-tag {
  position: absolute;
  z-index: 2;
  right: -14px; top: 26px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px;
  border-radius: 10px;
  background: #16181d;
  border: 1px solid var(--line-2);
  font-size: 12px; color: var(--ink);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.9);
  transform: rotate(3deg);
}
.post-tag .x { font-weight: 700; }
.post-tag .dot-live { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* ============================================================
   Problem section (Section 2)
   ============================================================ */
.problem { text-align: center; }
.problem .headline { max-width: 18ch; margin: 0 auto 22px; }
.problem .lead { margin: 0 auto; text-align: center; }
.vanish {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: 46px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  letter-spacing: -.02em;
}
.vanish .v { color: var(--dim); opacity: .5; }
.vanish .v.lit { color: var(--accent-strong); opacity: 1; text-shadow: 0 0 24px rgba(43,212,127,.4); }
.vanish .v.fade1 { opacity: .35; }
.vanish .v.fade2 { opacity: .2; }
.vanish .v.fade3 { opacity: .1; }

/* ============================================================
   How it works (Section 3)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.016), transparent 120px), var(--panel);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}
.step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--green-ink);
  background: var(--accent);
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-family: var(--display); font-weight: 600; font-size: 1.25rem; letter-spacing: -.01em; margin: 0 0 8px; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.6; }
.step::after {
  content: "";
  position: absolute; right: -30px; top: -30px;
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,212,127,.10), transparent 70%);
}

/* ============================================================
   Proof (Section 4) — sparkline + streak grid
   ============================================================ */
.proof { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }

/* history log panel (replaces the old sparkline/streak visual) */
.history-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hist-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.hist-label { color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.hist-label::before { content: "# "; color: var(--accent); }
.hist-total { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--accent-strong); letter-spacing: -.02em; }
.hist-cols, .hist-row {
  display: grid;
  grid-template-columns: 1.7fr .75fr .8fr .85fr;
  gap: 10px; align-items: center;
}
.hist-cols {
  padding: 11px 22px;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim);
  border-bottom: 1px solid var(--line);
}
.hist-cols .r { text-align: right; }
.hist-row { padding: 15px 22px; border-bottom: 1px solid var(--line); }
.hist-row:last-child { border-bottom: none; }
.hist-date { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hist-date b { color: var(--ink); font-weight: 600; font-size: .98rem; }
.hist-date em { color: var(--dim); font-style: normal; font-size: 11.5px; }
.hist-n { color: var(--muted); font-variant-numeric: tabular-nums; font-size: 13.5px; }
.hist-tracked { color: var(--accent-strong); font-variant-numeric: tabular-nums; font-weight: 600; text-align: right; }
@media (max-width: 460px) {
  .hist-cols, .hist-row { grid-template-columns: 1.5fr .7fr .9fr; }
  .hist-cols span:nth-child(3), .hist-row .hist-n:nth-of-type(2) { display: none; }
}
.proof-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 24px;
  box-shadow: var(--shadow);
}
.proof-visual-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.proof-visual-head .lbl { color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.proof-visual-head .big {
  font-family: var(--display); font-weight: 700; font-size: 1.7rem;
  color: var(--accent-strong); letter-spacing: -.02em;
}
.spark { width: 100%; height: 120px; display: block; }
.spark .area { fill: url(#sparkfill); opacity: 0; transition: opacity 1s ease .6s; }
.spark .line {
  fill: none; stroke: var(--accent); stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 6px rgba(43,212,127,.5));
}
.in .spark .line { transition: stroke-dashoffset 1.6s var(--ease); stroke-dashoffset: 0; }
.in .spark .area { opacity: 1; }

.streak-wrap { margin-top: 22px; }
.streak-label {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--muted); font-size: 11.5px; margin-bottom: 10px;
}
.streak-label .flame { color: var(--amber); }
.streak-grid {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  gap: 4px;
}
.streak-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--inset);
  border: 1px solid rgba(255,255,255,.03);
  transform: scale(.4);
  opacity: 0;
}
.in .streak-cell { animation: cellPop .4s var(--ease) forwards; }
@keyframes cellPop { to { transform: scale(1); opacity: 1; } }
.streak-cell.l1 { background: rgba(43,212,127,.22); }
.streak-cell.l2 { background: rgba(43,212,127,.45); }
.streak-cell.l3 { background: rgba(43,212,127,.7); }
.streak-cell.l4 { background: var(--accent); box-shadow: 0 0 8px -2px var(--accent); }

/* ============================================================
   The flex (Section 5) — bullets + faux X post
   ============================================================ */
.flex-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.flex-points { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 2px; }
.flex-points li {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1rem;
}
.flex-points li:last-child { border-bottom: 1px solid var(--line); }
.flex-points li .mk { color: var(--accent); font-weight: 700; flex: none; }
.flex-points li b { color: var(--accent-strong); font-weight: 600; }

/* faux X post */
.xpost {
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: var(--panel);
  padding: 20px;
  box-shadow: var(--shadow);
  max-width: 440px;
}
.xpost-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.xpost-avatar {
  position: relative; overflow: hidden;
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--accent-deep), #0c2a1c);
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
}
.xpost-avatar svg { width: 22px; height: 16px; overflow: visible; }
.xpost-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.xpost-avatar .mark { stroke: var(--ink); fill: none; }
.xpost-avatar .dot { fill: var(--accent); }
.xpost-id { display: flex; flex-direction: column; line-height: 1.25; }
.xpost-id .nm { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; color: var(--ink); font-size: 14.5px; }
.xpost-id .nm .verified { width: 16px; height: 16px; fill: #1d9bf0; flex: none; }
.xpost-id .hd { color: var(--muted); font-size: 12.5px; }
.xpost-x { margin-left: auto; color: var(--ink); font-weight: 700; font-size: 18px; }
.xpost-text { font-size: 14.5px; line-height: 1.55; margin: 0 0 14px; }
.xpost-text .hl { color: var(--ink); font-weight: 600; }
.xpost-link { color: #1d9bf0; }
.xpost-link:hover { text-decoration: underline; }

.xpost-embed {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, #0e1318, #07080a);
}
/* richer embed = a mini share-card; reuse .card-* with tighter sizing */
.xpost-embed .card-top.mini { height: 34px; background: #11161c; }
.xpost-embed .card-top.mini .card-dots span { width: 9px; height: 9px; }
.xpost-embed .card-top.mini .card-path { font-size: 11.5px; }
.xpost-embed-body { padding: 16px 18px; }
.xpost-embed .card-prompt { font-size: 12px; margin: 0 0 4px; }
.embed-hero-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.xpost-embed .card-hero { font-size: 2.3rem; margin: 0; }
.embed-streak {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(224,168,54,.1); border: 1px solid rgba(224,168,54,.25);
  color: var(--amber); font-size: 12px; font-weight: 600; white-space: nowrap;
}
.xpost-embed .card-sub { font-size: 12px; margin: 4px 0 16px; }
.xpost-embed .card-section-label { margin-bottom: 8px; }
.xpost-embed .card-section-label.embed-activity { margin-top: 16px; }
.xpost-embed .card-row { font-size: 12.5px; padding: 4px 0; }
.xpost-embed .card-bars { gap: 8px; }
.xpost-embed .cbar .lbl { width: 48px; font-size: 11.5px; }
.xpost-embed .mini-foot { font-size: 11px; color: var(--dim); margin: 16px 0 0; }
.xpost-embed .mini-foot .tld { color: var(--accent); }

.xpost-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: 14px; max-width: 340px;
}
.xact { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.xact svg { width: 17px; height: 17px; flex: none; }
.xact.rp { color: var(--accent); }
.xact.lk { color: #f5588b; }

/* ============================================================
   Share-card themes — three ways to flex
   ============================================================ */
/* "Share on X" button under the themes headline */
.share-x-row { display: flex; justify-content: center; align-items: center; gap: 4px; margin-top: 28px; }
.share-x-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 14px; font-weight: 600;
  color: var(--ink); padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.03);
}
.share-x-btn svg { width: 16px; height: 16px; }

/* hand-drawn "flex it" doodle pointing at the button */
.share-doodle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--accent);
  transform: translateY(-26px);
}
.doodle-text {
  font-family: var(--hand);
  font-size: 1.9rem;
  line-height: .8;
  color: var(--accent-strong);
  transform: rotate(-7deg);
  margin-left: 18px;
}
.doodle-arrow { width: 58px; height: 44px; transform: rotate(4deg); }
@media (max-width: 540px) {
  .doodle-text { font-size: 1.6rem; }
  .doodle-arrow { width: 48px; }
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
  align-items: start;
}
.theme-group { margin-top: 52px; }
.theme-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.theme-group-name {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.theme-group-name::before { content: "# "; }
.theme-group-desc { margin: 0; font-size: 13.5px; color: var(--muted); }
.theme-group .theme-grid { margin-top: 28px; }
.theme-card { margin: 0; }
.theme-name {
  margin-top: 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.tc-art {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease);
  aspect-ratio: 4 / 5;
}
.theme-card:hover .tc-art { transform: translateY(-4px); }
img.tc-art { display: block; width: 100%; height: auto; object-fit: cover; }

/* terminal */
.tc-terminal { background: #0d1117; border: 1px solid var(--line-2); }
.tct-bar {
  display: flex; align-items: center; gap: 7px;
  background: #161b22; padding: 11px 16px; position: relative;
}
.tct-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.tct-path {
  position: absolute; left: 0; right: 0; text-align: center;
  font-family: var(--mono); font-size: 12px; color: #6e7681;
}
.tct-body { padding: 18px 20px 16px; }
.tct-line { margin: 0; font-family: var(--mono); font-size: 12.5px; color: #8b949e; }
.tct-hero-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tct-hero {
  margin: 6px 0; font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 4.4vw, 42px); color: #58e08f; letter-spacing: -.02em;
}
.tct-streak {
  flex: none; background: #1c232b; color: #ffbd2e;
  font-family: var(--mono); font-weight: 600; font-size: 12px;
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
}
.tct-head { margin: 20px 0 10px; font-family: var(--mono); font-size: 12px; color: #56d364; }
.tct-row {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 13px; color: #8b949e;
  padding: 5px 0 5px 12px;
}
.tct-val { color: #e6edf3; font-weight: 600; }
.tct-foot { margin: 18px 0 0; font-family: var(--mono); font-size: 11px; color: #3d444d; }
.tct-link { color: #56d364; }

/* heatmap */
.tc-heatmap { background: #0a0c10; border: 1px solid var(--line); padding: 20px; }
.tch-head { display: flex; justify-content: space-between; align-items: baseline; }
.tch-user { font-family: var(--mono); font-weight: 700; font-size: 14px; color: #e9edf3; }
.tch-date { font-family: var(--mono); font-size: 12px; color: var(--dim); }
.tch-streak {
  display: inline-block; margin: 18px 0 0;
  background: rgba(224,168,54,.12); border: 1px solid rgba(224,168,54,.4);
  color: var(--amber); font-family: var(--mono); font-weight: 600; font-size: 12.5px;
  padding: 5px 12px; border-radius: 999px;
}
.tch-grid {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  gap: 4px;
  margin: 14px 0 20px;
}
.tch-grid .hc { aspect-ratio: 1; border-radius: 2px; }
.hc.l0 { background: #11161d; }
.hc.l1 { background: #0e4429; }
.hc.l2 { background: #15803d; }
.hc.l3 { background: #26c95f; }
.hc.l4 { background: #46e58f; }
.tch-hero {
  margin: 18px 0 2px; font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 4.4vw, 42px); color: #46e58f; letter-spacing: -.02em;
}
.tch-sub { margin: 0; font-family: var(--mono); font-size: 13px; color: var(--muted); }
.tch-foot { margin: 16px 0 0; text-align: right; font-family: var(--mono); font-weight: 600; font-size: 12px; color: #2bd47f; }

/* brutalist */
.tc-brutalist { background: #0a0c10; padding: 14px; }
.tcb-block {
  background: var(--accent);
  color: var(--green-ink);
  border: 3px solid var(--green-ink);
  box-shadow: 8px 9px 0 var(--green-ink);
  padding: 16px 18px;
  height: 100%;
  display: flex; flex-direction: column;
}
.tcb-head {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-weight: 700; font-size: 10.5px;
  border-bottom: 3px solid var(--green-ink); padding-bottom: 12px;
}
.tcb-title {
  margin: 14px 0 12px; font-family: var(--display); font-weight: 800;
  font-size: clamp(30px, 5vw, 50px); line-height: .92; letter-spacing: -.01em;
}
.tcb-num {
  background: var(--green-ink); color: var(--accent);
  font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 4.6vw, 44px);
  text-align: center; padding: 16px 8px; letter-spacing: -.02em;
}
.tcb-numfoot { margin: 8px 0 0; font-family: var(--mono); font-weight: 700; font-size: 11px; }
.tcb-streak {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  column-gap: 12px; row-gap: 2px; margin: 16px 0 0;
}
.tcb-streak-num {
  grid-row: span 2; display: grid; place-items: center;
  width: 46px; height: 46px; background: var(--green-ink); color: var(--accent);
  font-family: var(--display); font-weight: 800; font-size: 26px;
}
.tcb-streak-lbl { font-family: var(--mono); font-weight: 700; font-size: 11px; line-height: 1.15; }
.tcb-streak-top { font-family: var(--mono); font-size: 11px; align-self: start; }
.tcb-foot {
  margin-top: auto; display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  border-top: 3px solid var(--green-ink); padding-top: 12px;
}
.tcb-foot span:first-child { font-weight: 700; }

.theme-soon {
  margin: 40px 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--dim);
  letter-spacing: .02em;
}

@media (max-width: 860px) {
  .theme-grid { grid-template-columns: 1fr; gap: 36px; max-width: 380px; margin-inline: auto; }
  .theme-group-head { flex-direction: column; gap: 6px; align-items: center; text-align: center; }
}

/* ============================================================
   The 3 excuses (Section 6)
   ============================================================ */
/* single column, read one-by-one as you scroll */
.excuses {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 780px; margin: 44px 0 0;
}
.excuse {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 30px 34px;
  display: flex; flex-direction: column; gap: 16px;
}
/* the excuse: a scribbled, crossed-out doubt */
.excuse .quote {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 1.85rem;
  color: var(--muted);
  line-height: 1.15;
  margin: 0;
}
.excuse .quote .ex-mark { color: #f0726f; font-weight: 700; font-family: var(--mono); font-size: 1.05rem; flex: none; transform: translateY(-2px); }
.excuse .quote s { text-decoration: none; }
/* the rebuttal: the hero */
.excuse .answer {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

/* ============================================================
   Privacy (Section 7)
   ============================================================ */
.privacy {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(600px 300px at 0% -40%, rgba(43,212,127,.10), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 52px;
  box-shadow: var(--shadow);
  text-align: center;
}
.privacy .lock { font-size: 1.6rem; margin-bottom: 14px; }
.privacy .headline { margin: 0 auto 18px; }
.privacy .lead { margin: 0 auto 28px; text-align: center; }
.privacy-pills { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.ppill {
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--ink);
  background: rgba(255,255,255,.02);
  display: inline-flex; align-items: center; gap: 8px;
}
.ppill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* ============================================================
   Close
   ============================================================ */
.close-cta { text-align: center; padding: 110px 0; }
.close-cta .headline { max-width: 22ch; margin: 0 auto 34px; }
.close-cta .headline .glow { display: inline; }
.close-cta .btn { font-size: 15px; min-height: 50px; padding: 0 28px; }
.close-meta {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 22px;
  color: var(--muted); font-size: 13.5px; letter-spacing: .01em;
}
.close-meta .cm { display: inline-flex; align-items: center; gap: 8px; }
.close-meta .cm-dot {
  width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
}
.close-meta .tld { color: var(--accent); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  color: var(--dim); font-size: 13px;
}
.footer-logo { color: var(--muted); }
.footer-logo .tld { color: var(--accent); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

/* ============================================================
   Scroll reveals
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .spark .line { stroke-dashoffset: 0; }
  .spark .area { opacity: 1; }
  .streak-cell { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero, .proof, .flex-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 56px; text-align: left; }
  .card-stage { order: -1; }
  .steps, .excuses { grid-template-columns: 1fr; }
  .proof-visual { order: 2; }
}
@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .nav-links a:not(.nav-cta) { display: none; }
  .privacy { padding: 34px 22px; }
  .share-card { transform: rotate(0deg); }
  .post-tag { right: 8px; }
}

/* ---- Pricing section ---- */
.pricing-sec .lead { color: var(--muted); margin-top: 10px; }
.price-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 64px; /* room for the Lifetime deal banner above the card (matters when stacked) */
  margin-top: 80px; /* room for the attached deal banner above the cards row */
}
@media (max-width: 720px) { .price-cards { grid-template-columns: 1fr; } }
.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card.featured { position: relative; border-color: var(--accent); box-shadow: 0 24px 60px -30px rgba(43,212,127,.5); }
.pc-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin: 0; }
.pc-price { font-family: var(--display); font-size: 48px; font-weight: 800; color: var(--ink); line-height: 1; }
.pc-price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.pc-list { list-style: none; padding: 0; margin: 6px 0; display: grid; gap: 9px; }
.pc-list li { color: var(--muted); font-size: 14.5px; padding-left: 20px; position: relative; }
.pc-list li::before { content: "+"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.price-card form, .price-card .pc-cta { margin-top: auto; }
.price-card .btn.primary { width: 100%; }
.price-card .status-message { font-size: 13px; color: var(--muted); margin: 8px 0 0; min-height: 1em; }
.price-card .status-message.is-error { color: #f08a8a; }
.pc-note { margin-top: 22px; color: var(--muted); }
.pc-note a { color: var(--accent); }
.pc-sub { color: var(--muted); font-size: 14px; margin: 2px 0 4px; }
.pc-body { display: flex; flex-direction: column; gap: 14px; flex: 1 1 auto; }
.pc-list-title { color: var(--ink); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin: 6px 0 2px; }
.pc-list-title::before { content: "# "; color: var(--accent); }
/* homepage plan cards: bold, eye-catching checklist with badge checks */
#pricing .pc-list { gap: 13px; margin: 10px 0; }
#pricing .pc-list li {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding-left: 32px;
  line-height: 1.35;
  min-height: 22px;
  display: flex;
  align-items: center;
}
#pricing .pc-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 7px;
  background: rgba(43,212,127,.14);
  border: 1px solid rgba(43,212,127,.35);
  color: var(--accent-strong);
  font-size: 12px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 0 14px -5px var(--accent);
}

/* ============================================================
   INTERIOR PAGES  (download · docs · support · pricing)
   Shares the landing's terminal/phosphor system.
   ============================================================ */

/* --- Page hero: compact top block for interior routes --- */
.page-hero { padding: 84px 0 26px; }
.page-hero.has-grid { padding-bottom: 56px; }
.page-hero .headline { max-width: 18ch; margin-bottom: 20px; }
.page-hero .lead { margin: 0; }
.page-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 920px) { .page-grid { grid-template-columns: 1fr; gap: 40px; } }

/* breadcrumb-ish trail line under nav */
.trail {
  color: var(--dim);
  font-size: 12.5px;
  letter-spacing: .04em;
  padding-top: 30px;
}
.trail::before { content: "$ "; color: var(--accent); }
.trail .seg { color: var(--muted); }

/* --- Trust / meta pill rows --- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* --- Forms / fields (dark terminal inputs) --- */
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label::before { content: "> "; color: var(--accent); }
.field input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: var(--inset);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder { color: var(--dim); }
.field input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(43,212,127,.04);
  box-shadow: 0 0 0 3px rgba(43,212,127,.14);
}
.fine-print { color: var(--dim); font-size: 12.5px; margin: 14px 0 0; line-height: 1.6; }
.fine-print a { color: var(--accent); }
.status-message { font-size: 13px; color: var(--muted); margin: 12px 0 0; min-height: 1em; }
.status-message.is-error { color: #f08a8a; }

/* gated reveal row (download button appears after lead capture) */
.inline-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line);
}
.inline-actions[hidden] { display: none; }

/* --- Terminal panel: reuses the share-card chrome --- */
.term {
  border-radius: 16px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, #0e1318, #090b0e);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.term-top {
  height: 40px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
  position: relative;
  background: #11161c;
}
.term-top .dots { position: absolute; left: 15px; display: flex; gap: 7px; }
.term-top .dots span { width: 11px; height: 11px; border-radius: 50%; }
.term-top .dots span:nth-child(1) { background: #ff5f56; }
.term-top .dots span:nth-child(2) { background: #ffbd2e; }
.term-top .dots span:nth-child(3) { background: #27c93f; }
.term-top .path { width: 100%; text-align: center; color: var(--muted); font-size: 12.5px; }
.term-body { padding: 22px 24px; }

/* release-meta inside a terminal panel */
.term-body h2 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin: 0 0 16px; letter-spacing: -.01em; }
.meta-list { display: grid; gap: 10px; margin: 0 0 14px; }
.meta-list span {
  display: block;
  font-size: 13px;
  color: var(--ink);
  word-break: break-all;
  padding-left: 16px;
  position: relative;
}
.meta-list span::before { content: "›"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* --- Code blocks (terminal) --- */
.code-block {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: var(--inset);
  overflow-x: auto;
  position: relative;
}
.code-block code {
  display: block;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink);
  white-space: pre;
}
.code-block.shell code { counter-reset: none; }
.code-block.shell code::before { content: none; }

/* --- Download funnel: single two-step card --- */
.download-card {
  max-width: 560px;
  margin: 48px auto 0;
  padding: 38px 36px;
  border-radius: 16px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, #0e1318, #090b0e);
  box-shadow: var(--shadow);
}
.download-card h1.headline { font-size: clamp(1.7rem, 4vw, 2.2rem); max-width: none; margin-bottom: 12px; }
.download-card .lead { margin: 0; }
.dl-step[hidden] { display: none; }
@media (max-width: 600px) { .download-card { padding: 30px 22px; } }

/* install command + copy button — side by side, never overlapping */
.install-row { display: flex; align-items: stretch; gap: 10px; margin-top: 18px; }
.install-row .code-block { flex: 1 1 auto; min-width: 0; margin-top: 0; display: flex; align-items: center; }
.install-row .code-block code { white-space: pre-wrap; overflow-wrap: anywhere; }
.copy-btn {
  flex: 0 0 auto;
  align-self: stretch;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12.5px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.copy-btn.copied { border-color: var(--accent); color: var(--accent); background: rgba(43, 212, 127, .08); }
code:not(.code-block code) {
  font-family: var(--mono);
  font-size: .9em;
  color: var(--accent-strong);
  background: rgba(43,212,127,.08);
  border: 1px solid rgba(43,212,127,.16);
  border-radius: 6px;
  padding: 1px 6px;
  word-break: break-word;
}

/* --- Generic feature/info cards (support, faq) --- */
.card-grid { display: grid; gap: 18px; margin-top: 8px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .card-grid.cols-3, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; } }

.tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.016), transparent 120px), var(--panel);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}
.tile::after {
  content: "";
  position: absolute; right: -30px; top: -30px;
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,212,127,.10), transparent 70%);
}
.tile h3 {
  font-family: var(--display); font-weight: 600; font-size: 1.2rem;
  letter-spacing: -.01em; margin: 0 0 10px;
}
.tile p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.6; }
.tile .tile-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--accent); font-size: 13.5px; font-weight: 600;
}
.tile .tile-link::after { content: "→"; transition: transform .2s var(--ease); }
.tile .tile-link:hover::after { transform: translateX(4px); }
.tile .tile-eyebrow {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 12px;
}
.tile .tile-eyebrow::before { content: "# "; }

/* faq: question/answer cards */
.faq .q {
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
  letter-spacing: -.01em; color: var(--ink); margin: 0 0 10px; line-height: 1.3;
}
.faq .q::before { content: "? "; color: var(--accent); }
.faq .a { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.6; }

/* --- Numbered steps as an ordered list --- */
ol.steps {
  list-style: none;
  counter-reset: step;
  margin: 32px 0 0;
  padding: 0;
  display: block;
  max-width: 64ch;
}
ol.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 0 16px 44px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.6;
}
ol.steps li:last-child { border-bottom: 1px solid var(--line); }
ol.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 16px;
  font-family: var(--display); font-weight: 700;
  color: var(--accent); font-size: 13px;
}

/* --- Docs layout: sticky terminal-tree sidebar + content --- */
.doc-layout {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 8px;
}
.doc-nav {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 14px;
  display: grid;
  gap: 1px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.doc-nav a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  border-left: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
.doc-nav a::before { content: "› "; color: var(--dim); }
.doc-nav a:hover { color: var(--ink); background: rgba(255,255,255,.025); }
.doc-nav a.active {
  color: var(--accent); background: rgba(43,212,127,.06);
  border-left-color: var(--accent);
}
.doc-nav a.active::before { color: var(--accent); }

.doc-content { display: grid; gap: 18px; min-width: 0; }
.doc-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 28px 30px;
  scroll-margin-top: 92px;
}
.doc-section h2 {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: -.02em; margin: 0 0 14px;
}
.doc-section h2::before { content: "# "; color: var(--accent); }
.doc-section p { color: var(--muted); margin: 0 0 12px; line-height: 1.7; }
.doc-section p:last-child { margin-bottom: 0; }

/* checklists for docs */
.check-list { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 10px; }
.check-list li { color: var(--muted); font-size: .95rem; padding-left: 24px; position: relative; line-height: 1.55; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.check-list.no-list li::before { content: "✗"; color: #f08a8a; }
.plain-list { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 10px; }
.plain-list li { color: var(--muted); font-size: .95rem; padding-left: 18px; position: relative; line-height: 1.55; }
.plain-list li::before { content: "›"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

@media (max-width: 920px) {
  .doc-layout { grid-template-columns: 1fr; gap: 24px; }
  .doc-nav {
    position: static; max-height: none;
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .doc-nav a { border-left: none; }
  .doc-nav a.active { border-left: none; }
}

/* CTA band that closes interior pages */
.mini-cta {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(600px 300px at 50% -40%, rgba(43,212,127,.10), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
}
.mini-cta .headline { max-width: 20ch; margin: 0 auto 24px; }
.mini-cta .btn { min-height: 48px; padding: 0 26px; }

/* ============================================================
   HOMEPAGE — Supports macOS + agent logos
   ============================================================ */
.os-hero {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 3vw, 30px); flex-wrap: wrap;
  text-align: center;
}
.os-apple {
  width: clamp(46px, 7vw, 86px); height: auto; flex: none;
  color: var(--ink);
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.6));
}
.os-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .95;
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 6rem);
}
.os-title .glow { color: var(--accent); text-shadow: 0 0 40px rgba(43,212,127,.35); }

.supports-strip {
  margin-top: 44px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px 20px; flex-wrap: wrap;
}
.supports-label {
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
}
.supports-label::before { content: ">"; color: var(--accent); font-weight: 700; margin-right: 8px; }

.agent-chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.016), transparent), var(--panel);
  font-family: var(--display); font-weight: 600; font-size: 1.1rem; letter-spacing: -.01em;
  color: var(--ink);
  transition: border-color .2s, transform .2s var(--ease), box-shadow .2s;
}
.agent-chip:hover { transform: translateY(-2px); border-color: var(--line-2); }
.chip-logo {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  background: var(--inset);
  color: var(--ink);
}
.chip-logo svg { width: 19px; height: 19px; display: block; }
.agent-chip.c-claude .chip-logo { color: var(--claude); box-shadow: 0 0 22px -12px var(--claude); }
.agent-chip.c-codex  .chip-logo { color: #f1f4f8; }
.agent-chip.c-cursor .chip-logo { color: #dfe3ea; box-shadow: 0 0 22px -12px #aeb8cc; }
.agent-chip.c-anti   .chip-logo { color: #7aa2ff; box-shadow: 0 0 22px -12px #7aa2ff; }
@media (max-width: 540px) {
  .agent-chip { width: 100%; justify-content: flex-start; }
}

/* ============================================================
   HOMEPAGE — Real activity tracking
   ============================================================ */
.activity-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center; }
@media (max-width: 920px) { .activity-grid { grid-template-columns: 1fr; gap: 40px; } }

.act-points { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 2px; }
.act-points li {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid var(--line);
  color: var(--ink); font-size: 1rem;
}
.act-points li:last-child { border-bottom: 1px solid var(--line); }
.act-points li .mk { color: var(--accent); font-weight: 700; flex: none; }
.act-points li b { color: var(--accent-strong); font-weight: 600; }

/* mini-dashboard mockup (mirrors the real app: tracked total + streak + status) */
.dash-body { padding: 22px 24px; }
.dash-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.dash-stat { display: flex; flex-direction: column; gap: 7px; }
.dash-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.dash-label::before { content: "~/ "; color: var(--dim); }
.dash-time {
  font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1; color: var(--accent-strong); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; text-shadow: 0 0 28px rgba(43,212,127,.35);
}
.dash-streak { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.dash-streak .flame { font-size: 1.25rem; }
.dash-streak .ds-num { font-family: var(--display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.01em; }

.dash-section { margin: 18px 0 12px; font-size: 12px; letter-spacing: .08em; color: var(--accent); }
.dash-section::before { content: "> "; }

.dash-rows { display: grid; gap: 10px; }
.dstat {
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--panel); padding: 13px 15px;
  display: grid; gap: 5px;
}
.dstat.on { border-color: rgba(43,212,127,.3); background: rgba(43,212,127,.045); }
.dstat-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dstat-name { font-family: var(--display); font-weight: 600; font-size: 1.05rem; letter-spacing: -.01em; }
.dbadge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 11px; border-radius: 999px;
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--dim); background: rgba(255,255,255,.04); border: 1px solid var(--line-2);
}
.dbadge::before { content: "●"; font-size: 7px; }
.dbadge.on { color: var(--accent); background: rgba(43,212,127,.1); border-color: rgba(43,212,127,.32); }
.dbadge.on::before { animation: recPulse 1.8s ease-out infinite; border-radius: 50%; }
.dstat-sub { color: var(--muted); font-size: 12.5px; }
.dstat-foot { color: var(--dim); font-size: 12px; }
.dstat-foot b { color: var(--accent-strong); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ============================================================
   Us vs. them
   ============================================================ */
.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
  align-items: stretch;
}
.vs-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.vs-tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.them-tag { color: var(--dim); }
.you-tag { color: var(--accent); border-color: rgba(43,212,127,.4); background: rgba(43,212,127,.06); }

.vs-card.them { background: linear-gradient(180deg, var(--panel), var(--inset)); }
.vs-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.vs-list li {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--hand);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
}
.vs-x { color: #f0726f; font-family: var(--mono); font-size: .95rem; font-weight: 700; flex: none; transform: translateY(-2px); }
.vs-list s { text-decoration: none; }

.vs-card.you {
  border-color: rgba(43,212,127,.35);
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(43,212,127,.12), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
  justify-content: center;
  gap: 12px;
}
.vs-you-line {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.vs-you-sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0;
}
.vs-you-sub .vs-accent { color: var(--accent); }

/* ============================================================
   Two paths — the fork before pricing
   ============================================================ */
.fork {
  display: grid;
  gap: 18px;
  margin: 44px auto 0;
  max-width: 760px;
}
.fork-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 26px 28px;
}
.fork-arrow {
  flex: none;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}
.fork-text {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -.01em;
  line-height: 1.3;
  color: var(--ink);
}

.fork-dark {
  background: linear-gradient(180deg, var(--panel), var(--inset));
}
.fork-dark .fork-arrow { color: var(--dim); }
.fork-dark .fork-text { color: var(--muted); }
.fork-dim { color: var(--dim); }

.fork-bright {
  border-color: rgba(43,212,127,.4);
  background:
    radial-gradient(520px 240px at 100% 0%, rgba(43,212,127,.12), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}
.fork-bright .fork-arrow { color: var(--accent); }
.fork-accent { color: var(--accent); }

/* ============================================================
   If you only got
   ============================================================ */
.only-got { max-width: 700px; margin: 0 auto; text-align: center; }
.only-got .kicker { justify-content: center; }
.only-got .headline { margin: 0 auto 24px; text-wrap: balance; }
.only-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px 18px;
  font-family: var(--mono);
  font-size: 14px;
  margin: 0 0 22px;
}
.og-off { color: var(--dim); }
.og-on { color: var(--accent); font-weight: 600; }
.only-lead { margin: 0 auto; max-width: 50ch; text-wrap: balance; }
.only-lead .ink { color: var(--ink); font-weight: 500; }

/* ============================================================
   Disposable income / let's be honest
   ============================================================ */
.honest { max-width: 700px; margin: 0 auto; text-align: center; }
.honest .kicker { justify-content: center; }
.honest .headline { margin: 0 auto 22px; text-wrap: balance; }
.honest-lead { margin: 0 auto 12px; max-width: 52ch; text-wrap: balance; }
.honest-lead:last-of-type { margin-bottom: 0; }
.spend-row {
  display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 30px;
}
.spend-chip {
  display: inline-flex; align-items: baseline; gap: 6px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255,255,255,.02);
  font-family: var(--mono);
}
.spend-chip b { color: var(--muted); font-weight: 600; font-size: 13px; }
.spend-chip i { color: var(--dim); font-style: normal; font-size: 11px; }
.spend-arrow { color: var(--dim); font-family: var(--mono); }
.spend-chip.once { border-color: rgba(43,212,127,.4); background: rgba(43,212,127,.07); }
.spend-chip.once b { color: var(--accent); }
.spend-chip.once .tld { color: var(--accent-strong); }
.spend-chip.once i { color: var(--accent-strong); }

/* ============================================================
   Founder note (reluctant hero)
   ============================================================ */
.founder {
  margin: 0 auto;
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(620px 320px at 100% -30%, rgba(43,212,127,.08), transparent 70%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 52px;
  box-shadow: var(--shadow);
}
.founder .headline { margin: 4px 0 24px; max-width: 18ch; }
.founder-body { display: grid; gap: 18px; }
.founder-body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
  max-width: 60ch;
}
.founder-body .ink { color: var(--ink); }
.founder-sign {
  display: flex; align-items: center; gap: 14px;
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.founder-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: none;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
}
.founder-mark svg { width: 30px; height: auto; }
.founder-mark .mark { stroke: var(--ink); fill: none; }
.founder-mark .dot { fill: var(--accent); }
.founder-who { display: flex; flex-direction: column; line-height: 1.15; }
.founder-name { font-family: var(--hand); font-weight: 700; font-size: 1.95rem; color: var(--ink); }
.founder-role { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.founder-role .tld { color: var(--accent); }

/* ============================================================
   Close — step flow
   ============================================================ */
.close-steps {
  display: flex; align-items: center; flex-wrap: wrap; justify-content: center;
  gap: 10px 14px;
  margin: 0 auto 30px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
}
.close-steps .cstep {
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255,255,255,.02);
}
.close-steps .cstep-sep { color: var(--accent); }

@media (max-width: 620px) {
  .versus { grid-template-columns: 1fr; }
  .founder { padding: 34px 24px; }
}

/* ============================================================
   HOMEPAGE — Hot streak (flex vehicle)
   ============================================================ */
.hotstreak-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 920px) { .hotstreak-grid { grid-template-columns: 1fr; gap: 44px; } }

.streak-card { position: relative; }
.hs-body { padding: 24px 26px 26px; }

.hs-hero {
  display: flex; align-items: center; gap: 15px;
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.hs-flame {
  font-size: 2.5rem; line-height: 1;
  filter: drop-shadow(0 0 16px rgba(224,168,54,.55));
  animation: hsFlicker 2.6s ease-in-out infinite;
}
.hs-count { display: flex; flex-direction: column; gap: 4px; margin-right: auto; }
.hs-num {
  font-family: var(--display); font-weight: 800; line-height: .85;
  font-size: clamp(2.6rem, 5.4vw, 3.4rem); letter-spacing: -.025em;
  color: var(--accent-strong); font-variant-numeric: tabular-nums;
  text-shadow: 0 0 32px rgba(43,212,127,.4);
}
.hs-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.hs-best {
  align-self: flex-start; white-space: nowrap;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em;
  color: var(--amber); border: 1px solid rgba(224,168,54,.35);
  background: rgba(224,168,54,.08); border-radius: 999px; padding: 5px 11px;
}

.hs-section { margin: 18px 0 12px; font-size: 12px; letter-spacing: .08em; color: var(--accent); }
.hs-section::before { content: "> "; }

.hs-chain { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.hs-cell { aspect-ratio: 1; border-radius: 4px; background: var(--accent); opacity: .92; }
.hs-cell.warm { opacity: .62; }
.hs-cell.mid  { opacity: .38; }
.hs-cell.today {
  background: var(--accent-strong);
  animation: hsPulse 1.8s ease-out infinite;
}

.hs-milestones { display: flex; align-items: flex-start; margin-top: 24px; }
.hs-ms { display: flex; flex-direction: column; align-items: center; gap: 4px; font-family: var(--mono); flex: none; }
.hs-ms b { font-size: 15px; font-weight: 700; }
.hs-ms i { font-size: 10px; font-style: normal; letter-spacing: .04em; white-space: nowrap; }
.hs-ms.hit b { color: var(--accent); }
.hs-ms.hit i { color: var(--accent-deep); }
.hs-ms.next b { color: var(--ink); }
.hs-ms.next i { color: var(--muted); }
.hs-track { flex: 1; height: 2px; border-radius: 2px; margin: 9px 12px 0; }
.hs-track.done { background: linear-gradient(90deg, var(--accent-deep), var(--accent)); }
.hs-track.todo { background: var(--line-2); }

.hs-doodle {
  position: absolute; right: 6px; bottom: -30px;
  font-family: var(--hand); font-size: 1.5rem; color: var(--amber);
  transform: rotate(-4deg);
}

@keyframes hsPulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,229,143,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(70,229,143,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,229,143,0); }
}
@keyframes hsFlicker {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50%      { transform: scale(1.09) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hs-flame, .hs-cell.today { animation: none; }
}

/* ---- Checkout email-capture modal ---- */
.checkout-modal {
  border: 1px solid var(--line-2);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(43, 212, 127, .10), transparent 60%),
    var(--panel);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0;
  max-width: 480px;
  width: calc(100% - 36px);
  overflow: hidden;
  box-shadow: 0 40px 120px -36px rgba(0, 0, 0, .85), 0 0 0 1px rgba(43, 212, 127, .06);
}
.checkout-modal::backdrop { background: rgba(4, 6, 9, .74); backdrop-filter: blur(4px); }
.checkout-modal__card { position: relative; display: flex; flex-direction: column; gap: 13px; padding: 32px 30px 24px; }
.checkout-modal__card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: .7;
}
.checkout-modal__close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: 0; color: var(--muted);
  font-size: 22px; line-height: 1; cursor: pointer; padding: 4px; transition: color .15s;
}
.checkout-modal__close:hover { color: var(--ink); }
.checkout-modal__eyebrow {
  display: inline-flex; align-items: center; gap: 7px; margin: 0;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
}
.checkout-modal__pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(43, 212, 127, .6); animation: cm-pulse 2s infinite;
}
@keyframes cm-pulse {
  0% { box-shadow: 0 0 0 0 rgba(43, 212, 127, .5); }
  70% { box-shadow: 0 0 0 7px rgba(43, 212, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 212, 127, 0); }
}
.checkout-modal__title { font-family: var(--display); font-size: 25px; font-weight: 800; line-height: 1.12; letter-spacing: -.01em; margin: 4px 0 0; color: var(--ink); }
.checkout-modal__sub { color: var(--muted); font-size: 14.5px; line-height: 1.5; margin: 0; }
.checkout-modal__input {
  margin-top: 6px; width: 100%;
  background: #ffffff; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  color: #14171c; font-size: 15.5px; padding: 14px 15px;
  transition: border-color .16s, box-shadow .16s;
}
.checkout-modal__input::placeholder { color: #9aa1ad; }
.checkout-modal__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(43, 212, 127, .15); }
.checkout-modal__submit { width: 100%; margin-top: 2px; font-size: 15px; transition: transform .12s, box-shadow .2s, filter .2s; }
.checkout-modal__submit:hover { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 12px 28px -12px rgba(43, 212, 127, .6); }
.checkout-modal__submit:active { transform: translateY(0); }
.checkout-modal__status { font-size: 13px; color: var(--muted); margin: 0; min-height: 1em; }
.checkout-modal__status.is-error { color: #f08a8a; }
.checkout-modal__perks {
  list-style: none; margin: 2px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 12.5px; color: var(--muted);
}
.checkout-modal__perks li { display: inline-flex; align-items: center; gap: 6px; }
.checkout-modal__check { color: var(--accent); font-weight: 700; font-size: 12px; }
.checkout-modal__trust {
  margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center;
}
.checkout-modal__secured { display: inline-flex; align-items: center; gap: 7px; max-width: 320px; font-size: 12px; color: var(--muted); }
.checkout-modal__secured-text { line-height: 1.45; }
.checkout-modal__secured strong { color: var(--ink); font-weight: 600; }
.cm-lock { width: 13px; height: 13px; color: var(--accent); flex: none; }
.checkout-modal__cards { display: inline-flex; align-items: center; gap: 10px; }
.cm-card { height: 21px; width: auto; color: #c4ccd8; display: block; }
.cm-card[aria-label="Visa"] { height: 15px; }
.cm-card[aria-label="Apple Pay"] { height: 17px; }
@keyframes cm-in { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes cm-bd { from { opacity: 0; } to { opacity: 1; } }
.checkout-modal[open] .checkout-modal__card { animation: cm-in .3s cubic-bezier(.2, .7, .3, 1); }
.checkout-modal[open]::backdrop { animation: cm-bd .25s ease; }
@media (prefers-reduced-motion: reduce) {
  .checkout-modal[open] .checkout-modal__card, .checkout-modal__pulse { animation: none; }
}
