:root {
  /* BTR DESK theme tokens (extracted from desk_static/index.html 2026-07-13).
     Steel-blue is the brand; GREEN (--signal) is reserved for live/on/positive only. */
  --bg: #05070A;
  --bg-soft: #090C10;
  --surface: #0C1015;
  --surface-2: #12181F;
  --panel: var(--surface);
  --panel-strong: var(--surface-2);
  --border: #141A21;
  --line: var(--border);
  --line-bright: #212a34;
  --text: #D6DEE3;
  --muted: #8A96A1;      /* body copy: a step brighter than the desk's #77828C for long-form reading */
  --faint: #48525B;
  --brand1: #3E5C78;
  --brand2: #5E7C9E;
  --brand3: #8AA6C2;
  --cyan: var(--brand2);
  --blue: var(--brand1);
  --accent: var(--brand2);
  --accent-strong: var(--brand1);
  --accent-soft: rgba(94, 124, 158, 0.12);
  --gold: #D0A24E;
  --warning: var(--gold);
  --warning-soft: rgba(208, 162, 78, 0.09);
  --success: #2FD98C;
  --signal: #2FD98C;
  --loss: #E5484D;
  --hot: #5E7C9E;
  --mono: "Cascadia Mono", "JetBrains Mono", ui-monospace, Consolas, "SF Mono", monospace;
  --radius: 6px;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--text);
  /* desk cockpit ground: 112px hairline column grid + steel top glow over near-black */
  background:
    repeating-linear-gradient(90deg, rgba(110, 136, 152, 0.022) 0, rgba(110, 136, 152, 0.022) 1px, transparent 1px, transparent 112px),
    radial-gradient(120% 90% at 50% -12%, rgba(110, 124, 140, 0.05), transparent 55%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #05070A;
  background: var(--accent);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(33, 42, 52, 0.42);
  background: rgba(5, 8, 13, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: auto;
  max-width: 180px;
  flex: 0 0 auto;
  padding: 0;
}

.brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.brand-wordmark {
  display: block;
  width: 128px;
  max-width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding: 0.45rem 0;
  transition: color 160ms ease;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  min-height: 40px;
  padding: 0.5rem 0.95rem;
  display: inline-flex;
  align-items: center;
  color: #EAF0F5;
  background: linear-gradient(92deg, var(--brand1), var(--brand2));
  border: 1px solid rgba(138, 166, 194, 0.35);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(94, 124, 158, 0.16);
}

.nav-links .nav-cta:hover {
  color: #FFFFFF;
  background: linear-gradient(92deg, var(--brand2), var(--brand3));
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 4rem;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 0 1.1rem;
  padding: 0.34rem 0.7rem;
  color: var(--brand3);
  background: transparent;
  border: 1px solid rgba(94, 124, 158, 0.3);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--success);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.3rem;
  font-size: 4.75rem;
}

.hero h1 {
  max-width: 680px;
  font-size: 3.75rem;
}

.hero-brand-lockup,
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-brand-lockup {
  margin-bottom: 1.5rem;
}

.hero-brand-lockup .brand-mark-icon {
  width: 42px;
  height: 42px;
}

.hero-brand-lockup .brand-mark-wordmark {
  width: 142px;
  height: auto;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 4.25rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.65rem;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(92deg, var(--brand2), var(--brand3) 58%, #C5D6E4);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 760px;
  margin: 0 0 2rem;
  color: #B9C3CC;
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  color: var(--text);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.button-primary {
  color: #EAF0F5;
  background: linear-gradient(92deg, var(--brand1), var(--brand2));
  border-color: rgba(138, 166, 194, 0.35);
  box-shadow: 0 10px 30px rgba(94, 124, 158, 0.16);
}

.button-primary:hover {
  color: #FFFFFF;
  background: linear-gradient(92deg, var(--brand2), var(--brand3));
}

.button-quiet {
  color: #B9C3CC;
  background: rgba(255, 255, 255, 0.025);
}

.hero-panel,
.card,
.product-card,
.pricing-card,
.form-card,
.callout {
  background: linear-gradient(150deg, rgba(17, 29, 42, 0.96), rgba(9, 15, 22, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.system-window {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  color: var(--muted);
  background: linear-gradient(180deg, var(--surface-2), transparent);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-body {
  padding: 1.35rem;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0;
  color: var(--muted);
  border-bottom: 1px dashed var(--border);
}

.metric strong,
.metric .metric-v {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.metric:last-child {
  border-bottom: 0;
}

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

.status {
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 5.25rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.25rem;
}

.section-heading p,
.muted,
.card p,
.product-card p,
.pricing-card p {
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.product-card,
.pricing-card {
  padding: 1.5rem;
}

.card,
.product-card {
  min-height: 100%;
}

.card-number {
  display: inline-block;
  margin-bottom: 1.6rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.feature-list,
.plain-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.65rem;
  color: #c8d2de;
  border-bottom: 1px solid rgba(33, 42, 52, 0.35);
}

.feature-list li:last-child,
.check-list li:last-child {
  border-bottom: 0;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 0.2rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(94, 124, 158, 0.45);
}

.plain-list {
  display: grid;
  gap: 0.75rem;
  color: #c8d2de;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 3rem;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.55rem;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(94, 124, 158, 0.16);
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-grid {
  align-items: stretch;
}

.product-offer-card {
  min-height: 100%;
  overflow: hidden;
}

.product-media {
  display: block;
  margin: -1.5rem -1.5rem 1.3rem;
  aspect-ratio: 1;
  overflow: hidden;
  background: #05080d;
  border-bottom: 1px solid rgba(33, 42, 52, 0.68);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-offer-card h3 {
  min-height: 2.8em;
}

.product-offer-card > p:not(.price):not(.product-disclaimer) {
  min-height: 5.5em;
}

.product-offer-card.free-offer {
  border-color: rgba(98, 229, 180, 0.48);
  box-shadow: 0 20px 52px rgba(98, 229, 180, 0.08);
}

.label-free {
  color: var(--success);
  background: rgba(98, 229, 180, 0.09);
  border-color: rgba(98, 229, 180, 0.24);
}

.pricing-card.featured {
  border-color: rgba(94, 124, 158, 0.58);
  box-shadow: 0 24px 70px rgba(62, 92, 120, 0.16);
}

.price {
  margin: 0.5rem 0 1.2rem;
  font-size: 2.15rem;
  font-weight: 850;
  letter-spacing: 0;
}

.pricing-card .button {
  margin-top: auto;
}

.product-card-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: auto;
}

.product-card-actions .button {
  margin-top: 0;
}

.product-disclaimer {
  margin-top: 1rem;
  padding-top: 1rem;
  color: #d7c293;
  border-top: 1px solid rgba(248, 201, 109, 0.24);
  font-size: 0.82rem;
}

.callout {
  padding: 1.25rem 1.35rem;
  color: #dce5ef;
  border-left: 4px solid var(--accent);
}

.callout-warning {
  background: linear-gradient(150deg, rgba(63, 49, 22, 0.55), rgba(14, 17, 21, 0.96));
  border-color: rgba(248, 201, 109, 0.35);
  border-left-color: var(--warning);
}

.callout strong {
  display: block;
  margin-bottom: 0.35rem;
}

.bot-value-band {
  padding: 4.75rem 0;
  background: #080C11;
  border-top: 1px solid rgba(94, 124, 158, 0.28);
  border-bottom: 1px solid rgba(94, 124, 158, 0.2);
}

.bot-value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 5rem;
  align-items: start;
}

.bot-value-intro h2 {
  max-width: 13ch;
  margin: 0.45rem 0 1rem;
  font-size: 3rem;
  line-height: 1.06;
}

.bot-value-intro > p:not(.eyebrow) {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
}

.bot-value-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  color: var(--brand3);
  font-weight: 800;
}

.bot-value-link span {
  transition: transform 160ms ease;
}

.bot-value-link:hover span,
.bot-value-link:focus-visible span {
  transform: translateX(4px);
}

.bot-value-list {
  border-top: 1px solid var(--line-bright);
}

.bot-value-point {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-bright);
}

.bot-value-index {
  padding-top: 0.18rem;
  color: var(--brand3);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.bot-value-point h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.bot-value-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb span {
  color: var(--accent);
}

.cta-band {
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: transparent;
  border-top: 1px solid rgba(94, 124, 158, 0.28);
  border-bottom: 1px solid rgba(94, 124, 158, 0.16);
}

.cta-band h2 {
  margin-bottom: 0.55rem;
  font-size: 2.35rem;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.form-card {
  max-width: 760px;
  padding: clamp(1.25rem, 4vw, 2.2rem);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #d9e2ec;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  padding: 0.85rem 0.9rem;
  color: var(--text);
  background: #0C1015;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(94, 124, 158, 0.3);
  border-color: var(--accent);
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-actions {
  margin-top: 1.2rem;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: start;
  gap: 3rem;
}

.waitlist-contact-card {
  border-color: rgba(94, 124, 158, 0.42);
}

.waitlist-contact-card .button {
  width: 100%;
}

.waitlist-secondary {
  margin-top: 0.75rem;
}

.waitlist-interest {
  padding: 0.75rem 0.85rem;
  color: var(--gold);
  background: rgba(248, 201, 109, 0.08);
  border: 1px solid rgba(248, 201, 109, 0.26);
  border-radius: 6px;
  font-weight: 750;
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #c8d2de;
  line-height: 1.45;
}

.checkbox-line input {
  width: auto;
  min-width: 18px;
  height: 18px;
  margin-top: 0.17rem;
  accent-color: var(--accent);
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 2.7rem;
  font-size: 1.7rem;
}

.legal-copy p,
.legal-copy li {
  color: #bec9d6;
}

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0;
  color: var(--muted);
  background: rgba(3, 6, 10, 0.72);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(130px, 0.5fr));
  gap: 2rem;
}

.footer-title {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 800;
}

.footer-brand-block {
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.8rem;
}

.footer-brand-mark {
  max-width: 180px;
}

.footer-brand-icon {
  width: 34px;
  height: 34px;
}

.footer-brand-wordmark {
  width: 124px;
  height: auto;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.fine-print {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(33, 42, 52, 0.4);
  font-size: 0.8rem;
}

.free-checklist-page {
  background: linear-gradient(180deg, #05070b 0%, #0C1015 48%, #05070b 100%);
}

.free-checklist-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(33, 42, 52, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 42, 52, 0.28) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

.free-checklist-hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(34, 50, 70, 0.72);
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96) 0%, rgba(5, 7, 11, 0.79) 48%, rgba(5, 7, 11, 0.52) 100%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.96) 0%, rgba(5, 7, 11, 0.1) 46%, rgba(5, 7, 11, 0.82) 100%),
    url("https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?auto=format&fit=crop&w=1800&q=75") center / cover;
}

.free-checklist-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
}

.free-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
}

.free-checklist-hero h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-size: 4.25rem;
}

.free-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.free-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.75rem;
  color: #dce6f1;
  background: rgba(7, 16, 26, 0.68);
  border: 1px solid rgba(94, 124, 158, 0.22);
  border-radius: 6px;
  backdrop-filter: blur(14px);
  font-size: 0.86rem;
  font-weight: 750;
}

.free-snapshot-section {
  padding-top: 2.2rem;
}

.free-snapshot-grid,
.free-capture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.checklist-preview-panel,
.dashboard-preview-panel {
  padding: 1.45rem;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(18, 30, 44, 0.96), rgba(10, 16, 24, 0.96));
  border: 1px solid rgba(94, 124, 158, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checklist-preview-panel {
  position: relative;
}

.checklist-preview-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  pointer-events: none;
  border: 1px solid rgba(248, 201, 109, 0.18);
  border-radius: 4px;
}

.checklist-preview-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.checklist-preview-top strong {
  color: var(--warning);
  font-size: 1.04rem;
}

.free-capture-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  align-items: start;
  gap: 3rem;
}

.free-capture-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(14, 22, 33, 0.68);
  border: 1px solid rgba(33, 42, 52, 0.7);
  border-radius: 8px;
}

.mini-stat span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #05070A;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-stat strong {
  color: var(--text);
}

.free-capture-form {
  position: sticky;
  top: 98px;
}

.free-capture-form h2 {
  font-size: 2.2rem;
}

.free-form-secondary {
  width: 100%;
  margin-top: 0.9rem;
}

.free-ladder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.free-ladder-card {
  min-height: 220px;
  border-color: rgba(94, 124, 158, 0.24);
}

.free-ladder-card.featured {
  border-color: rgba(248, 201, 109, 0.45);
  box-shadow: 0 24px 70px rgba(248, 201, 109, 0.09);
}

.free-final-cta {
  border-top-color: rgba(248, 201, 109, 0.38);
}

@media (max-width: 900px) {
  .bot-value-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bot-value-intro h2 {
    max-width: 18ch;
  }

  .hero-grid,
  .split,
  .free-snapshot-grid,
  .free-capture-grid,
  .waitlist-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .free-ladder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
  }

  h1,
  .free-checklist-hero h1 {
    font-size: 4rem;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .page-hero h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .free-capture-form {
    position: static;
  }

  .nav {
    align-items: center;
    padding: 1rem 0;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .bot-value-band {
    padding: 3rem 0;
  }

  .bot-value-layout {
    gap: 2rem;
  }

  .bot-value-intro h2 {
    max-width: none;
    font-size: 2.2rem;
  }

  .bot-value-point {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 0.75rem;
  }

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

  .nav {
    display: grid;
    gap: 0.55rem;
    padding: 0.8rem 0 0.55rem;
  }

  .brand {
    max-width: 168px;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-wordmark {
    width: 122px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
    padding: 0.1rem 0 0.45rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links .nav-cta {
    min-height: auto;
    padding: 0.45rem 0;
    color: var(--accent);
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .free-ladder-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding: 3.25rem 0 3rem;
  }

  .free-checklist-hero {
    min-height: auto;
    padding: 2.25rem 0 2rem;
  }

  h1,
  .hero h1,
  .free-checklist-hero h1 {
    font-size: 2.75rem;
  }

  .hero-panel {
    display: none;
  }

  .page-hero {
    min-height: 430px;
    padding: 4rem 0 3.5rem;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

  h2,
  .cta-band h2 {
    font-size: 2.05rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-brand-lockup .brand-mark-icon {
    width: 36px;
    height: 36px;
  }

  .hero-brand-lockup .brand-mark-wordmark {
    width: 124px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button-row .button-primary {
    grid-column: 1 / -1;
  }

  .free-checklist-hero .button-row {
    grid-template-columns: 1fr;
  }

  .free-checklist-hero .lead {
    margin-bottom: 1.5rem;
  }

  .free-hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
  }

  .free-hero-proof span {
    justify-content: center;
    min-height: 48px;
    text-align: center;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .brand {
    max-width: 38px;
  }

  .brand-wordmark {
    display: none;
  }

  .nav-links {
    overflow-x: visible;
    flex-wrap: wrap;
    row-gap: 0.2rem;
    white-space: normal;
  }

  .nav-links > a {
    flex: 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .bot-value-link span {
    transition: none;
  }
}


/* ================================================================
   BTR DESK LAYER — components ported from the desk (2026-07-13)
   ================================================================ */

/* live dot (green = live/on only) */
.dotpulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 10px var(--signal);
  animation: btrpulse 2.4s ease-in-out infinite;
  flex: none;
}
@keyframes btrpulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.82); }
}
@media (prefers-reduced-motion: reduce) {
  .dotpulse { animation: none; }
}

/* prices + any figure wears the mono, desk-style */
.price,
.price-line {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.2rem 0 1rem;
}
.price-line .amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: transparent;
  background: linear-gradient(92deg, var(--brand2), var(--brand3) 58%, #C5D6E4);
  background-clip: text;
  -webkit-background-clip: text;
}
.price-line .per {
  color: var(--faint);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* disabled commerce buttons (empty payment link -> "coming soon") */
.btn-disabled,
.button.btn-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.45;
  border-style: dashed;
  box-shadow: none;
  background: transparent;
  color: var(--muted);
}

/* desk-style micro label */
.mlabel {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

/* screenshot / placeholder slab (desk .ph-sp) */
.ph-slab {
  border: 1px dashed var(--line-bright);
  border-radius: 4px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1rem;
}

.desk-shot {
  margin: 0 0 0.75rem;
}

.desk-shot-link {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 4px;
  background: #070a0d;
}

.desk-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1702 / 744;
  object-fit: contain;
}

.desk-shot figcaption {
  margin-top: 0.55rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.55;
}

/* stat row inside desk-styled panels */
.statline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.statline:last-child { border-bottom: none; }
.statline .v {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.statline .v.pos { color: var(--signal); }

@media (max-width: 640px) {
  .statline {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .statline > :first-child {
    flex: 0 0 4.6rem;
  }

  .statline .v {
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
  }
}

/* scroll reveal — progressive enhancement: hidden state exists ONLY under html.js (added by
   site.js before first paint), so content is always visible with JS off. site.js auto-tags
   section headings + grid children and staggers siblings via --ri. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--ri, 0) * 75ms),
    transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--ri, 0) * 75ms);
}
html.js [data-reveal].seen { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* waitlist form (posts to /api/waitlist) */
.form-label { display: block; margin: 0.9rem 0 0.3rem; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-input {
  width: 100%; padding: 0.65rem 0.8rem; border-radius: 8px;
  background: var(--raised, rgba(255, 255, 255, 0.04)); color: var(--text);
  border: 1px solid var(--line); font: inherit;
}
.form-input:focus { outline: 2px solid var(--brand-2, #5E7C9E); outline-offset: 1px; border-color: transparent; }
.form-consent { display: flex; gap: 0.55rem; align-items: flex-start; margin: 1rem 0; font-size: 0.85rem; color: var(--muted); }
.form-consent input { margin-top: 0.15rem; flex: 0 0 auto; width: 1.05rem; height: 1.05rem; accent-color: var(--brand-2, #5E7C9E); cursor: pointer; }
.form-status { margin-top: 0.8rem; font-size: 0.88rem; }
.form-status.success { color: var(--signal, #2FD98C); }
.form-status.error { color: var(--loss, #E5484D); }
.form-status.progress { color: var(--muted); }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Discord promo strip (under the homepage hero) */
.discord-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(92deg, rgba(62, 92, 120, 0.16), rgba(47, 217, 140, 0.06)); }
.discord-strip .container { display: flex; align-items: center; gap: 1rem; padding-top: 0.85rem; padding-bottom: 0.85rem; flex-wrap: wrap; }
.discord-strip .dotpulse { flex: 0 0 auto; }
.discord-strip p { margin: 0; flex: 1 1 24ch; font-size: 0.92rem; color: var(--text); }
.discord-strip p .muted { color: var(--muted); }
.discord-strip .button { flex: 0 0 auto; }

/* text slab thumbnails for digital products (no fake box-shot images) */
.product-thumb {
  display: flex; align-items: center; justify-content: center;
  height: 120px; border-radius: 10px; margin-bottom: 0.9rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(62, 92, 120, 0.35), rgba(9, 12, 16, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 111px, rgba(255, 255, 255, 0.035) 111px 112px);
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.34em; color: var(--muted);
  text-transform: uppercase;
}
.product-thumb.gold { background: linear-gradient(140deg, rgba(154, 123, 45, 0.4), rgba(9, 12, 16, 0.92)); color: #C9B06A; }

/* cards get the desk hover lift */
.card:hover,
.product-card:hover,
.pricing-card:hover {
  border-color: rgba(94, 124, 158, 0.4);
}

/* print / light degradation: readable on paper */
@media print {
  body { background: #FFFFFF; color: #10151A; }
  .site-header, .site-footer, .button, .nav-cta { display: none !important; }
  .card, .product-card, .pricing-card, .callout, .system-window { border-color: #B9C3CC; box-shadow: none; background: #FFFFFF; color: #10151A; }
}

/* ================================================================== 21st.dev adaptations
   (static, vanilla) - animated dropdown navbar (Aceternity navbar-menu) + hover-card
   (shadcn/radix) + revived pointer-tilt spotlight. Desk tokens only. */

/* scrolled header state (site.js toggles .is-scrolled) */
.site-header.is-scrolled {
  border-bottom-color: var(--line-bright);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

/* --- dropdown navbar (desktop) --- */
@media (min-width: 901px) {
  .nav-links {
    padding: 0.32rem 0.5rem 0.32rem 1.15rem;
    border: 1px solid var(--line-bright);
    border-radius: 999px;
    background: rgba(12, 16, 21, 0.74);
    backdrop-filter: blur(10px);
  }

  .nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  /* invisible hover bridge so the pointer can travel from trigger to panel */
  .nav-item::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -0.9rem;
    left: -0.9rem;
    height: 1.15rem;
  }

  .nav-trigger {
    position: relative;
    padding: 0.45rem 0;
    color: var(--muted);
    transition: color 160ms ease;
  }

  .nav-trigger::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
  }

  .nav-trigger:hover,
  .nav-item.open .nav-trigger,
  .nav-trigger[aria-current="page"] {
    color: var(--text);
  }

  .nav-trigger:hover::after,
  .nav-item.open .nav-trigger::after,
  .nav-trigger[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    z-index: 40;
    min-width: 248px;
    padding: 0.55rem;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line-bright);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px) scale(0.97);
    transform-origin: top center;
    transition:
      opacity 240ms cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
      visibility 0s linear 300ms;
    /* panels read as body copy, not nav mono */
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    white-space: normal;
    color: var(--muted);
  }

  .nav-item.open .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    transition:
      opacity 240ms cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1),
      visibility 0s;
  }

  .nav-menu-wide {
    min-width: 384px;
  }

  .menu-link {
    display: block;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    color: var(--muted);
    transition: color 140ms ease, background 140ms ease;
  }

  .menu-link:hover,
  .menu-link:focus-visible {
    color: var(--text);
    background: rgba(94, 124, 158, 0.10);
  }

  .menu-products {
    display: grid;
    gap: 0.3rem;
  }

  .menu-product {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    transition: background 140ms ease;
  }

  .menu-product:hover,
  .menu-product:focus-visible {
    background: rgba(94, 124, 158, 0.10);
  }

  .menu-thumb {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 40px;
    border: 1px solid var(--line-bright);
    border-radius: 7px;
    background:
      radial-gradient(90% 120% at 20% 0%, rgba(94, 124, 158, 0.28), transparent 60%),
      var(--surface);
    color: var(--brand3);
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
  }

  .mp-title {
    display: block;
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
  }

  .mp-desc {
    display: block;
    margin-top: 0.1rem;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
    max-width: 24rem;
  }
}

/* mobile: triggers act as plain links inside the existing scroll strip; panels stay hidden */
@media (max-width: 900px) {
  .nav-item {
    display: contents;
  }

  .nav-menu {
    display: none !important;
  }

  .nav-trigger {
    padding: 0.45rem 0;
  }
}

/* --- hover-card --- */
.hovercard {
  position: absolute;
  z-index: 60;
  width: min(20.5rem, calc(100vw - 2rem));
  padding: 0.95rem 1.05rem;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px) scale(0.96);
  transform-origin: top left;
  transition: opacity 200ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 200ms cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 200ms;
}

.hovercard.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: opacity 200ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 200ms cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s;
}

.hovercard h4 {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.hovercard p {
  margin: 0.35rem 0;
}

.hovercard ul {
  margin: 0.4rem 0 0.1rem;
  padding-left: 1.1rem;
}

.hovercard li {
  margin: 0.22rem 0;
}

.hovercard .mlabel {
  display: block;
  margin-bottom: 0.3rem;
}

.hc-trigger {
  display: inline;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  color: var(--brand3);
  border-bottom: 1px dotted rgba(138, 166, 194, 0.65);
  cursor: help;
  text-align: inherit;
}

.hc-trigger:hover,
.hc-trigger:focus-visible {
  color: var(--text);
  border-bottom-color: var(--signal);
}

/* --- pointer-tilt spotlight (site.js adds .tilt-card on fine pointers) --- */
.tilt-card {
  position: relative;
  transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 190ms ease, border-color 190ms ease;
  will-change: transform;
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(138, 166, 194, 0.10), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.tilt-card:hover::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu,
  .hovercard,
  .tilt-card {
    transition: none;
  }

  .tilt-card {
    transform: none;
  }
}

/* --- Free checklist / interactive edition 2026 --- */
.free-checklist-page {
  background: var(--bg);
}

.free-checklist-page::after {
  opacity: 0.11;
  background-size: 72px 72px;
}

.free-checklist-hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(94, 124, 158, 0.26);
  background:
    linear-gradient(90deg, #05070A 0%, rgba(5, 7, 10, 0.99) 44%, rgba(5, 7, 10, 0.82) 62%, rgba(5, 7, 10, 0.16) 100%),
    linear-gradient(180deg, #05070A 0%, #090C10 100%);
}

.free-checklist-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
}

.free-hero-art {
  position: absolute;
  z-index: -2;
  top: 76px;
  right: -10vw;
  width: min(66vw, 1040px);
  pointer-events: none;
  filter: saturate(0.95) contrast(1.03);
}

.free-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #05070A 0%, transparent 32%, transparent 78%, rgba(5, 7, 10, 0.64) 100%);
}

.free-hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.free-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.free-checklist-hero h1 {
  max-width: 630px;
  margin-bottom: 1.2rem;
  font-size: 4.5rem;
}

.free-checklist-hero .lead {
  max-width: 575px;
}

.free-hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.6rem;
  margin-top: 2rem;
}

.free-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 40px;
  padding: 0.5rem 0.8rem;
  color: #DCE6F1;
  background: rgba(8, 17, 26, 0.78);
  border: 1px solid rgba(94, 124, 158, 0.26);
  border-radius: 6px;
  backdrop-filter: blur(14px);
  font-size: 0.86rem;
  font-weight: 750;
}

.free-hero-proof strong {
  color: var(--brand3);
}

.free-workbook-section {
  color: var(--text);
  background: var(--surface);
  border-bottom: 1px solid rgba(94, 124, 158, 0.2);
}

.free-workbook-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.free-cover-figure {
  width: min(100%, 390px);
  margin: 0 auto;
}

.free-cover-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(94, 124, 158, 0.28);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.42);
}

.free-cover-figure figcaption {
  margin-top: 0.8rem;
  color: #91A2B2;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-align: center;
  text-transform: uppercase;
}

.free-workbook-copy h2 {
  max-width: 720px;
  color: #F4F7FB;
}

.free-workbook-copy .eyebrow {
  color: var(--brand3);
}

.lead-small {
  max-width: 700px;
  color: #9DADBC;
  font-size: 1.08rem;
  line-height: 1.75;
}

.free-feature-list {
  margin-top: 2rem;
  border-top: 1px solid rgba(94, 124, 158, 0.3);
}

.free-feature-list > div {
  display: grid;
  grid-template-columns: 44px minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(94, 124, 158, 0.3);
}

.free-feature-list span {
  color: var(--brand3);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.free-feature-list strong {
  color: #F4F7FB;
}

.free-feature-list p {
  margin: 0;
  color: #91A2B2;
  font-size: 0.92rem;
}

.free-flow-section {
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(94, 124, 158, 0.18);
}

.free-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.free-flow-step {
  min-height: 250px;
  padding: 1.5rem;
  background: var(--surface-2);
  border: 1px solid rgba(94, 124, 158, 0.24);
  border-radius: 8px;
}

.free-flow-step h3 {
  margin-top: 2.8rem;
  color: #F4F7FB;
}

.free-flow-step p {
  color: #98A8B7;
}

.free-flow-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--bg);
  background: var(--brand3);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 800;
}

.free-flow-number.amber {
  color: var(--text);
  background: var(--brand2);
}

.free-flow-number.green {
  color: var(--text);
  background: var(--brand1);
}

.free-capture-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.72fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.free-capture-form {
  position: sticky;
  top: 98px;
  border-color: rgba(94, 124, 158, 0.32);
}

.free-download-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.4rem 0 0.4rem;
}

.free-download-specs span {
  padding: 0.35rem 0.55rem;
  color: #C7D2DD;
  border: 1px solid rgba(94, 124, 158, 0.3);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.free-path-section {
  background: var(--bg-soft);
  border-top: 1px solid rgba(94, 124, 158, 0.18);
}

.free-ladder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.free-route-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 1.5rem;
  background: var(--surface-2);
  border: 1px solid rgba(94, 124, 158, 0.26);
  border-radius: 8px;
}

.free-route-card h3 {
  margin-top: 1.45rem;
  color: #F4F7FB;
}

.free-route-card p {
  color: #98A8B7;
}

.free-route-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(94, 124, 158, 0.2);
}

.free-route-footer strong {
  color: var(--gold);
  font-family: var(--mono);
}

.free-route-footer a {
  color: var(--brand3);
  font-weight: 750;
}

.free-final-cta {
  border-top-color: rgba(94, 124, 158, 0.38);
}

@media (max-width: 900px) {
  .free-checklist-hero {
    min-height: 680px;
    padding: 4rem 0 3.5rem;
    background:
      linear-gradient(90deg, #05070A 0%, rgba(5, 7, 10, 0.95) 58%, rgba(5, 7, 10, 0.55) 100%),
      #05070A;
  }

  .free-hero-art {
    top: 82px;
    right: -30vw;
    width: 110vw;
    opacity: 0.28;
  }

  .free-checklist-hero h1 {
    max-width: 620px;
    font-size: 4rem;
  }

  .free-workbook-grid,
  .free-capture-grid {
    grid-template-columns: 1fr;
  }

  .free-cover-figure {
    width: min(68vw, 340px);
  }

  .free-flow-grid,
  .free-ladder-grid {
    grid-template-columns: 1fr;
  }

  .free-flow-step,
  .free-route-card {
    min-height: 0;
  }

  .free-capture-form {
    position: static;
  }
}

@media (max-width: 600px) {
  .free-checklist-hero .breadcrumb {
    display: none;
  }

  .free-checklist-hero {
    min-height: auto;
    padding: 1.2rem 0 1.4rem;
  }

  .free-hero-art {
    top: 235px;
    right: -70vw;
    width: 165vw;
    opacity: 0.08;
  }

  .free-checklist-hero h1 {
    font-size: 2.75rem;
  }

  .free-hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .free-hero-proof span {
    justify-content: center;
    min-height: 46px;
    text-align: center;
    line-height: 1.35;
  }

  .free-cover-figure {
    width: min(78vw, 315px);
  }

  .free-feature-list > div {
    grid-template-columns: 38px 1fr;
  }

  .free-feature-list p {
    grid-column: 2;
  }

  .free-flow-step,
  .free-route-card {
    padding: 1.2rem;
  }

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