/* TensorSwing marketing site — implemented from "TensorSwing Site.dc.html" */

:root {
  --bg: #0B0D10;
  --bg-raised: #0E1013;
  --bg-card: #111417;
  --bg-deep: #08090A;
  --bg-frame: #16191D;
  --text: #F2F4F6;
  --text-bright: #E8EAED;
  --text-mid: #B6BCC5;
  --text-soft: #9BA1AA;
  --text-dim: #7A818B;
  --text-faint: #5A6069;
  --text-ghost: #4E535B;
  --blue: #7FA6FF;
  --blue-bright: #A6C0FF;
  --green: #45C08A;
  --amber: #E9A34B;
  --red: #EF5B60;
  --tan: #C7A97A;
  --line: rgba(255, 255, 255, .07);
  --line-strong: rgba(255, 255, 255, .12);
  --line-brighter: rgba(255, 255, 255, .14);
  --sans: 'Instrument Sans', system-ui, sans-serif;
  --serif: 'Newsreader', serif;
  --mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-bright); }
::selection { background: rgba(127, 166, 255, .28); }
i, b { font-style: normal; font-weight: inherit; }
h1, h2, p { margin: 0; }

section[id] { scroll-margin-top: 70px; }

/* ---------- shared ---------- */

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 104px 40px 0;
}
.section--last { padding-bottom: 104px; }

.kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.2px;
  color: var(--blue);
}
.kicker--hero { font-size: 11px; letter-spacing: 2.4px; }

.section-title {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.22;
  color: var(--text);
}
.section-title--method { max-width: 760px; }

.section-sub {
  margin: 16px 0 0;
  max-width: 640px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-soft);
}
.section-sub--full { max-width: none; line-height: 1.62; }

.c-blue { color: var(--blue); }
.c-green { color: var(--green); }
.c-amber { color: var(--amber); }
.c-bright { color: var(--text-bright); }

.hr, .divider { height: 1px; background: var(--line); }
.divider { margin: 12px 0; }
.divider--tight { margin: 11px 0; }

/* App Store button */
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px 13px 18px;
  border-radius: 13px;
  background: var(--text);
  color: var(--bg);
}
.appstore-btn:hover { color: var(--bg); }
.apple-glyph { font-family: var(--mono); font-size: 26px; font-weight: 700; line-height: 1; }
.appstore-text { display: flex; flex-direction: column; gap: 1px; text-align: left; }
.appstore-small { font-family: var(--mono); font-size: 8.5px; letter-spacing: 1.4px; color: #3E444D; }
.appstore-big { font-size: 17px; font-weight: 600; letter-spacing: -0.2px; }
.appstore-btn--lg { padding: 14px 24px 14px 20px; }
.appstore-btn--lg .apple-glyph { font-size: 28px; }
.appstore-btn--lg .appstore-big { font-size: 18px; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 40px;
  background: rgba(11, 13, 16, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--bg);
  border: 1px solid var(--line-brighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}
.brand-name {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  color: var(--text-bright);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
}
.site-nav a { color: var(--text-dim); }
.site-nav a:hover { color: var(--text-bright); }
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 9px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.btn-download:hover { color: var(--bg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(0, 430px);
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 32px 72px;
}
.hero-title {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 58px;
  line-height: 1.14;
  letter-spacing: -0.5px;
  color: var(--text);
  text-wrap: pretty;
}
.hero-sub {
  margin: 22px 0 0;
  max-width: 560px;
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--text-mid);
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 13px;
  background: var(--bg-raised);
  border: 1px solid var(--line-strong);
  color: var(--text-bright);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
}
.btn-ghost:hover { color: var(--text); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 1.1px;
  color: var(--text-ghost);
}
.hero-meta .sep { color: #2A2E34; }
.hero-meta .free { color: var(--green); }
.hero-disclaimer {
  margin-top: 38px;
  padding: 11px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 1.3px;
  color: var(--text-dim);
}

.hero-phone-wrap { position: relative; display: flex; justify-content: center; }
.hero-glow {
  position: absolute;
  inset: -40px -20px;
  background: radial-gradient(60% 50% at 50% 40%, rgba(127, 166, 255, .10), transparent 70%);
  pointer-events: none;
}
.phone {
  position: relative;
  width: 406px;
  max-width: 100%;
  aspect-ratio: 406 / 760;
  border-radius: 52px;
  padding: 8px;
  background: var(--bg-frame);
  border: 1px solid var(--line-strong);
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, .85);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 44px;
  overflow: hidden;
  background: var(--bg);
}

/* Phone screen content is laid out on a fixed 390px-wide canvas and scaled
   to its frame by main.js (scale = frame width / 390). */
.shot {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  transform-origin: top left;
}
.shot--hero { height: 744px; }
.shot--tab { height: 700px; padding: 22px 20px 0; transform: scale(0.62); }

.notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 29px;
  border-radius: 16px;
  background: #000;
  z-index: 3;
}
.statusbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 54px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 26px 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-bright);
  z-index: 2;
}
.statusbar .signal { letter-spacing: 1px; }
.app-body {
  position: absolute;
  inset: 54px 0 0 0;
  overflow: hidden;
  padding: 0 20px;
}
.screen-note {
  text-align: center;
  padding: 7px 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, .04);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.3px;
  color: var(--text-dim);
}

.week-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 16px;
}
.week-title { display: flex; flex-direction: column; gap: 5px; }
.week-name {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1;
}
.week-sub { font-family: var(--mono); font-size: 11.5px; color: var(--text-dim); }
.week-days { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.days-num { font-family: var(--mono); font-size: 20px; font-weight: 600; line-height: 1; }
.days-num .on { color: var(--text-bright); }
.days-num .of { color: var(--text-ghost); }
.days-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: var(--text-faint);
}

.free-card {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(69, 192, 138, .07);
  border: 1px solid rgba(69, 192, 138, .22);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.free-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.free-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: var(--green);
}
.free-count { font-family: var(--mono); font-size: 9.5px; color: var(--text-dim); }

.segs { display: flex; gap: 2px; }
.seg { flex: 1; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .1); }
.seg.on { background: var(--green); }
.segs--thin .seg { height: 3px; }

.sealed-row {
  margin-top: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 9px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
}
.sealed-row .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: none; }
.sealed-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--text-dim);
}
.sealed-info .hash { color: var(--text-soft); }
.sealed-link { margin-left: auto; font-family: var(--mono); font-size: 9.5px; color: var(--amber); }

.threshold-row { display: flex; align-items: center; gap: 7px; min-height: 44px; }
.threshold-row span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.6px;
  color: var(--text-dim);
}
.threshold-row .threshold-link { margin-left: auto; letter-spacing: 0; color: var(--blue); }

.call-list { display: flex; flex-direction: column; gap: 10px; }
.call-card {
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.call-head { display: flex; align-items: flex-start; justify-content: space-between; }
.call-id { display: flex; flex-direction: column; gap: 3px; }
.call-ticker { font-family: var(--mono); font-size: 18px; font-weight: 600; color: var(--text); line-height: 1; }
.call-name { font-size: 11.5px; color: var(--text-faint); }
.call-live { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.call-move { font-family: var(--mono); font-size: 16px; font-weight: 600; color: var(--text-bright); line-height: 1; }
.call-ref { font-family: var(--mono); font-size: 9.5px; color: var(--text-faint); }

.mrows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .06);
}
.mrow { display: flex; align-items: center; gap: 9px; padding: 8px 10px; background: var(--bg-raised); }
.mname { width: 70px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.6px; color: var(--text-soft); }
.pill {
  width: 42px;
  text-align: center;
  padding: 3px 0;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1px;
}
.pill.long { background: rgba(127, 166, 255, .14); color: var(--blue); }
.pill.short { background: rgba(233, 163, 75, .14); color: var(--amber); }
.mval { width: 44px; text-align: right; font-family: var(--mono); font-size: 11px; color: var(--text-bright); }
.mbars { display: flex; gap: 3px; }
.mb { width: 11px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, .12); }
.mb.b { background: var(--blue); }
.mb.a { background: var(--amber); }
.mstat {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.6px;
  color: var(--text-soft);
}
.mstat.behind { color: var(--text-faint); }

.agree { display: flex; align-items: center; gap: 9px; }
.agree-label {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-dim);
}
.agree-bars { display: flex; gap: 3px; }
.ab { width: 15px; height: 3px; border-radius: 2px; }
.ab.b { background: var(--blue); }
.ab.a { background: var(--amber); }
.agree-text { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.6px; color: var(--text-soft); }
.agree-text.blue { color: var(--blue); }
.agree-link { margin-left: auto; font-family: var(--mono); font-size: 9.5px; color: var(--blue); }

.shot-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(11, 13, 16, 0), var(--bg) 80%);
  pointer-events: none;
}
.shot-fade--hero { height: 120px; background: linear-gradient(to bottom, rgba(11, 13, 16, 0), var(--bg) 78%); z-index: 2; }

.tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  padding: 9px 12px 8px;
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
}
.tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.tab-icon { height: 18px; display: flex; align-items: center; justify-content: center; }
.tab-label { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.6px; color: var(--text-faint); }
.tab.active .tab-label { color: var(--blue); }
.icon-week { display: flex; align-items: flex-end; gap: 2.6px; height: 18px; }
.icon-week i { width: 3px; border-radius: 2px; background: var(--blue); }
.icon-week i:nth-child(1) { height: 11px; }
.icon-week i:nth-child(2) { height: 15px; }
.icon-week i:nth-child(3) { height: 9px; }
.icon-week i:nth-child(4) { height: 18px; }
.icon-archive { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5px; }
.icon-archive i { border-radius: 1.5px; border: 1.6px solid var(--text-faint); }
.icon-archive .top { width: 20px; height: 4px; }
.icon-archive .bottom { width: 16px; height: 9.5px; }
.icon-settings { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.icon-settings i { width: 18px; height: 1.6px; border-radius: 2px; background: var(--text-faint); }

/* ---------- stats strip ---------- */

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
}
.stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-label {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: var(--text-dim);
}
.stat-value { font-family: var(--mono); font-size: 26px; font-weight: 600; color: var(--text); line-height: 1; }
.stat-note { font-family: var(--mono); font-size: 10.5px; color: var(--text-ghost); }

/* ---------- how a week works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.step {
  background: var(--bg-card);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.step-num { font-family: var(--mono); font-size: 10px; letter-spacing: 1.2px; color: var(--text-ghost); }
.step-when { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 1.4px; }
.step-body { font-size: 15px; line-height: 1.55; color: var(--text-bright); }
.step-path {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-ghost);
  margin-top: auto;
  overflow-wrap: anywhere;
  line-height: 1.6;
}

/* ---------- inside the app ---------- */

.apps-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.apps-side { margin: 0; max-width: 420px; font-size: 15px; line-height: 1.6; color: var(--text-soft); }

.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
  margin-top: 52px;
  align-items: start;
}
.shot-item { display: flex; flex-direction: column; gap: 18px; }
.shot-outer {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 700;
  border-radius: 38px;
  padding: 7px;
  background: var(--bg-frame);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.shot-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg);
}
.shot-title { font-size: 29px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); }
.shot-caption { display: flex; flex-direction: column; gap: 7px; }
.shot-tag { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 1.6px; }
.shot-text { font-size: 15px; line-height: 1.55; color: var(--text-mid); }

.warn-note {
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: 10px;
  background: rgba(233, 163, 75, .09);
  border: 1px solid rgba(233, 163, 75, .25);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.warn-big { font-family: var(--mono); font-size: 19px; font-weight: 700; color: var(--amber); line-height: 1.1; }
.warn-text { font-size: 12.5px; line-height: 1.45; color: var(--tan); }

.chips { display: flex; gap: 6px; margin-top: 12px; }
.chip {
  padding: 6px 11px;
  border-radius: 99px;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.6px;
}
.chip.active { background: var(--text-bright); color: var(--bg); border: none; }

.panel {
  margin-top: 12px;
  padding: 13px;
  border-radius: 14px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
}

.tick-head { display: flex; padding-bottom: 11px; }
.tick-spacer-l { width: 70px; }
.tick-spacer-r { width: 74px; }
.tick-week {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.7px;
  color: var(--text-faint);
}
.tick-rows { display: flex; flex-direction: column; gap: 11px; }
.tick-row { display: flex; align-items: center; }
.tick-name { width: 70px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.5px; color: var(--text-bright); }
.tick-group { flex: 1; display: flex; justify-content: center; gap: 2px; }
.tick { width: 9px; height: 18px; border-radius: 2px; }
.tick.g { background: var(--green); }
.tick.r { background: var(--red); }
.tick-res { width: 74px; display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.tick-res b { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--text); }
.tick-res i { font-family: var(--mono); font-size: 9px; color: var(--text-faint); }
.tick-major { display: flex; align-items: center; gap: 9px; }
.tick-major-label { width: 70px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.5px; color: var(--text-dim); }
.tick-major-text { font-size: 11.5px; color: var(--text-soft); }
.tick-major-val { margin-left: auto; font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--text-bright); }

.mae-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.1px;
  color: var(--text-faint);
}
.mae-head span:first-child { font-weight: 600; }
.mae-head span:last-child { letter-spacing: 0.8px; }
.mae-rows { display: flex; flex-direction: column; gap: 10px; }
.mae-row { display: flex; align-items: center; gap: 10px; }
.mae-name { width: 66px; font-family: var(--mono); font-size: 10px; color: var(--text-bright); }
.bar {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
  display: block;
}
.bar i { display: block; height: 100%; border-radius: 99px; background: var(--blue); }
.mae-val { width: 40px; text-align: right; font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--text); }
.mae-val.amber { color: var(--amber); }
.mae-val.push { margin-left: auto; }
.mae-naive { display: flex; align-items: center; gap: 10px; }
.mae-naive-name { width: 66px; font-family: var(--mono); font-size: 9px; color: var(--amber); }
.mae-naive-text { font-size: 11.5px; color: var(--tan); }

/* Proof shot */
.hash-ok {
  margin-top: 12px;
  padding: 17px;
  border-radius: 14px;
  background: rgba(69, 192, 138, .06);
  border: 1px solid rgba(69, 192, 138, .32);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hash-ok-head { display: flex; align-items: center; gap: 9px; }
.check-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.4px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--green);
}
.hash-ok-label { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 1.8px; color: var(--green); }
.hash-ok-text { font-size: 13.5px; line-height: 1.5; color: var(--text-soft); }
.kv-rows { display: flex; flex-direction: column; gap: 6px; }
.kv { display: flex; gap: 9px; }
.kv-k { width: 84px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.8px; color: var(--text-dim); }
.kv-v { font-family: var(--mono); font-size: 10.5px; color: var(--text-bright); }
.kv-v.ok { color: var(--green); }

.panel--manifest { padding: 15px; display: flex; flex-direction: column; gap: 11px; }
.manifest-label { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 1.2px; color: var(--text-faint); }
.manifest-hash { font-family: var(--mono); font-size: 12px; line-height: 1.6; word-break: break-all; color: var(--text-bright); }
.manifest-note { font-size: 12px; line-height: 1.5; color: var(--text-dim); }
.mf-row { display: flex; gap: 10px; }
.mf-k { width: 62px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.8px; color: var(--text-dim); }
.mf-v { font-family: var(--mono); font-size: 10.5px; color: var(--text-soft); }
.mf-v.bright { color: var(--text-bright); }
.mf-v.blue { color: var(--blue); }
.mf-proof { display: flex; flex-direction: column; gap: 2px; }
.mf-line { display: flex; gap: 10px; }
.mf-sub { padding-left: 72px; font-family: var(--mono); font-size: 10.5px; color: var(--text-faint); }

.panel--check { padding: 15px; display: flex; flex-direction: column; gap: 10px; }
.check-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--text-faint);
}
.check-head .copy-link { font-size: 9.5px; font-weight: 400; letter-spacing: 0; color: var(--blue); }
.mini-term {
  padding: 12px;
  border-radius: 8px;
  background: var(--bg-deep);
  border: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.5;
}
.mini-term span { color: var(--text-soft); }
.mini-term .indent { padding-left: 22px; }
.mini-term .ok, .terminal .ok { color: var(--green); }
.pr { color: var(--text-faint); }

/* Archive shot */
.arch-head { display: flex; align-items: flex-end; justify-content: space-between; }
.badge-resolved {
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(69, 192, 138, .14);
  color: var(--green);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.6px;
}
.score-strip {
  margin-top: 14px;
  display: flex;
  gap: 1px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}
.score-cell {
  flex: 1;
  padding: 11px 0;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.score-name { font-family: var(--mono); font-size: 9px; letter-spacing: 0.6px; color: var(--text-dim); }
.score-val { font-family: var(--mono); font-size: 19px; font-weight: 600; color: var(--text); }
.score-val i { font-size: 11px; color: var(--text-faint); }

.call-card--scored { margin-top: 14px; gap: 10px; }
.col-head { display: flex; gap: 9px; padding: 0 10px; }
.ch-spacer { width: 70px; }
.ch { font-family: var(--mono); font-size: 8px; letter-spacing: 1px; color: var(--text-ghost); }
.ch-call { width: 42px; text-align: center; }
.ch-num { width: 46px; text-align: right; }
.mrow--scored .mname { letter-spacing: 0; }
.mrow--scored .mval { width: 46px; }
.merr { width: 46px; text-align: right; font-family: var(--mono); font-size: 11px; color: var(--text-dim); }
.badge {
  margin-left: auto;
  padding: 3px 7px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.9px;
}
.badge.win { background: rgba(69, 192, 138, .14); color: var(--green); }
.badge.loss { background: rgba(239, 91, 96, .14); color: var(--red); }
.badge.scratch { background: rgba(155, 161, 170, .14); color: var(--text-faint); }
.call-note { font-family: var(--serif); font-size: 13px; line-height: 1.55; color: var(--text-soft); }

/* ---------- the record so far ---------- */

.record-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr));
  gap: 60px;
  align-items: start;
}
.amber-note {
  margin-top: 26px;
  padding: 15px 17px;
  border-radius: 12px;
  background: rgba(233, 163, 75, .09);
  border: 1px solid rgba(233, 163, 75, .25);
  font-size: 14px;
  line-height: 1.55;
  color: var(--tan);
}
.record-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-raised);
}
.rt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--text-dim);
}
.rt-head-right { font-weight: 400; letter-spacing: 1px; color: var(--text-ghost); }
.rt-cols, .rt-row {
  display: grid;
  grid-template-columns: 110px minmax(190px, 1fr) 92px 92px;
  gap: 16px;
  padding: 14px 20px;
}
.rt-cols { font-family: var(--mono); font-size: 9px; letter-spacing: 1.1px; color: var(--text-ghost); }
.rt-cols .right { text-align: right; }
.rt-row { padding: 16px 20px; border-top: 1px solid var(--line); align-items: center; }
.rt-name { font-family: var(--mono); font-size: 12px; color: var(--text); }
.rt-weeks { display: flex; gap: 14px; min-width: 0; }
.rt-group { display: flex; gap: 3px; flex: 1; min-width: 0; }
.tick-lg { width: 10px; height: 22px; border-radius: 2px; }
.tick-lg.g { background: var(--green); }
.tick-lg.r { background: var(--red); }
.rt-val { text-align: right; font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--text); }
.rt-val.amber { color: var(--amber); }
.rt-row--major { background: var(--bg-card); }
.rt-major-label { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.8px; color: var(--text-dim); }
.rt-major-text { font-size: 13px; color: var(--text-soft); }
.rt-major-val { text-align: right; font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--text-bright); }
.rt-dash { text-align: right; font-family: var(--mono); font-size: 11px; color: var(--text-ghost); }
.rt-note {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: 0.5px;
  color: var(--text-ghost);
}

/* ---------- verify it yourself ---------- */

.proof-grid {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.proof-copy {
  padding: 44px 40px;
  background: var(--bg-raised);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.proof-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.24;
  color: var(--text);
}
.proof-sub { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--text-soft); }
.proof-list { display: flex; flex-direction: column; gap: 11px; margin-top: 6px; }
.pf-item { display: flex; gap: 11px; align-items: flex-start; }
.pf-mark { color: var(--text-faint); font-size: 13px; line-height: 1.5; }
.pf-mark.yes { color: var(--green); }
.pf-text { font-size: 14.5px; line-height: 1.5; color: var(--text-dim); }
.pf-text.yes { color: var(--text-bright); }
.proof-term {
  padding: 32px;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.terminal { font-family: var(--mono); font-size: 13.5px; line-height: 1.85; color: var(--text-soft); }
.terminal .indent { padding-left: 26px; }
.terminal .cm { margin-top: 14px; color: var(--text-ghost); }

/* ---------- universe ---------- */

.universe-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  gap: 60px;
  align-items: start;
}
.uni-chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.8px;
  color: var(--text-dim);
}
.uni-chips span { padding: 7px 11px; border: 1px solid var(--line-strong); border-radius: 99px; }
.uni-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.uni-cell { background: var(--bg-raised); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.uni-cell-head { display: flex; align-items: center; justify-content: space-between; }
.uni-cell-label { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 1.3px; color: var(--blue); }
.uni-cell-num { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--text); }
.uni-rule { display: flex; gap: 10px; }
.uni-rule-num { font-family: var(--mono); font-size: 10px; color: var(--text-ghost); }
.uni-rule-text { font-size: 13.5px; line-height: 1.5; color: var(--text-bright); }
.etf-row { display: flex; gap: 10px; }
.etf-k {
  width: 52px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.9px;
  color: var(--text-dim);
  padding-top: 3px;
}
.etf-v { font-family: var(--mono); font-size: 12px; line-height: 1.6; color: var(--text-bright); }
.uni-excluded {
  grid-column: 1 / -1;
  background: var(--bg-raised);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(233, 163, 75, .22);
}
.uni-excluded-label { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 1.3px; color: var(--amber); }
.uni-excluded-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.uni-ex { display: flex; flex-direction: column; gap: 4px; }
.uni-ex-t { font-size: 13.5px; color: var(--text-bright); }
.uni-ex-d { font-family: var(--serif); font-size: 13.5px; line-height: 1.5; color: var(--text-soft); }

/* ---------- price ---------- */

.price-card {
  padding: 44px 40px;
  border-radius: 20px;
  background: rgba(69, 192, 138, .06);
  border: 1px solid rgba(69, 192, 138, .24);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.price-title {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.22;
  color: var(--text);
}
.price-sub { margin: 16px 0 0; max-width: 560px; font-size: 15.5px; line-height: 1.62; color: var(--text-mid); }
.price-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; align-items: center; }
.price-after { font-family: var(--mono); font-size: 10px; letter-spacing: 1.1px; color: var(--text-dim); }
.price-box {
  padding: 24px;
  border-radius: 14px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-box-head { display: flex; align-items: center; justify-content: space-between; }
.price-box-title { font-size: 15px; color: var(--text-bright); }
.price-box-badge {
  padding: 4px 8px;
  border-radius: 5px;
  background: rgba(69, 192, 138, .14);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--green);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-soft);
}
.pf-row { display: flex; gap: 10px; }
.pf-yes { color: var(--green); }
.pf-no { color: var(--text-faint); }
.pf-muted { color: var(--text-dim); }

/* ---------- faq ---------- */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.qa { background: var(--bg-raised); padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.q { font-family: var(--serif); font-size: 20px; line-height: 1.35; color: var(--text); }
.a { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); }

/* ---------- final cta ---------- */

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  padding: 64px 40px;
  border-radius: 20px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
}
.cta-title {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.2;
  color: var(--text);
}
.cta-sub { margin: 0; max-width: 560px; font-size: 15.5px; line-height: 1.6; color: var(--text-soft); }

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--line); background: var(--bg-raised); }
.footer-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-version {
  font-family: var(--mono);
  font-size: 9.5px;
  line-height: 1.8;
  letter-spacing: 0.5px;
  color: var(--text-ghost);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
}
.footer-col-head { color: var(--text-dim); font-weight: 600; }
.footer-col a { color: var(--text-soft); }
.footer-col a:hover { color: var(--text-bright); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-note { font-family: var(--mono); font-size: 9px; letter-spacing: 1.3px; color: var(--text-dim); }
.footer-legal {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-faint);
  max-width: 980px;
}
.footer-copyright { font-family: var(--mono); font-size: 9px; letter-spacing: 1px; color: var(--text-ghost); }

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .universe-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 64px 24px 56px; }
  .hero-phone-wrap { margin-top: 16px; }
  .proof-grid { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 24px; }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat:nth-child(even) { padding-right: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
}

@media (max-width: 760px) {
  .section { padding: 72px 20px 0; }
  .section--last { padding-bottom: 72px; }
  .stats-inner { padding: 0 20px; }
  .site-header { padding: 12px 20px; }
  .hero { padding: 56px 20px 48px; }
  .hero-title { font-size: 42px; }
  .section-title { font-size: 31px; }
  .proof-title { font-size: 29px; }
  .price-title { font-size: 31px; }
  .cta-title { font-size: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 36px 20px; }
  .footer-bottom-inner { padding: 24px 20px; }
  .record-grid { gap: 44px; }
  .proof-copy { padding: 32px 24px; }
  .proof-term { padding: 24px 20px; }
  .terminal { font-size: 12px; }
  .cta-card { padding: 48px 24px; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .uni-grid { grid-template-columns: 1fr; }
  .uni-excluded-grid { grid-template-columns: 1fr; gap: 14px; }
  .rt-cols, .rt-row {
    grid-template-columns: 78px minmax(130px, 1fr) 62px 56px;
    gap: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .rt-head, .rt-note { padding-left: 14px; padding-right: 14px; }
  .rt-weeks { gap: 8px; }
  .tick-lg { width: 7px; height: 18px; }
  .rt-val, .rt-major-val { font-size: 13px; }
}
