/* ==========================================================
   RISE METHOD — site styles
   Palette (from brand): #FB8500 #FFB703 #023047 #219EBC #8ECAE6
   ========================================================== */

:root {
  --orange: #FB8500;
  --orange-600: #e67700;
  --gold: #FFB703;
  --navy: #023047;
  --blue: #219EBC;
  --blue-soft: #8ECAE6;

  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --bg-dark: var(--navy);
  --text: #0b1d2a;
  --text-muted: #5a6b78;
  --text-soft: #8a98a4;
  --line: #e7eaee;
  --line-strong: #d4dae0;

  --shadow-sm: 0 1px 2px rgba(2, 48, 71, 0.06);
  --shadow-md: 0 8px 24px rgba(2, 48, 71, 0.08);
  --shadow-lg: 0 24px 60px rgba(2, 48, 71, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --font-display: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --container: 1200px;
  --container-narrow: 920px;
}

[data-theme="dark"] {
  --bg: #0a1922;
  --bg-alt: #0f2230;
  --bg-dark: #050f15;
  --text: #f1f5f8;
  --text-muted: #a8b8c4;
  --text-soft: #6a7d8a;
  --line: #1a2f3d;
  --line-strong: #243d4d;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); line-height: 1.2; }
h4 { font-size: 1.125rem; line-height: 1.3; }
p  { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow.ink { color: var(--text-muted); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--container-narrow); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(251, 133, 0, 0.35);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(251, 133, 0, 0.45); }
.btn-secondary {
  background: var(--navy);
  color: #fff;
}
[data-theme="dark"] .btn-secondary { background: #fff; color: var(--navy); }
.btn-secondary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--text); }
.btn-lg { padding: 20px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
[data-theme="dark"] .site-header {
  background: rgba(10, 25, 34, 0.85);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  color: var(--text);
}
.brand img { width: 32px; height: 32px; }
.brand-logo { width: auto !important; height: 34px !important; display: block; }
@media (max-width: 480px) { .brand-logo { height: 28px !important; } }
.brand-mark-text { display: flex; gap: 0; align-items: center; }
.brand-mark-text span { letter-spacing: 0.04em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav a:hover { color: var(--orange); }
.site-nav a.active { color: var(--orange); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px !important;
  background: var(--navy);
  color: #fff !important;
  border-radius: var(--radius-md);
}
[data-theme="dark"] .nav-cta { background: var(--orange); }
.nav-cta:hover { color: #fff !important; }
.nav-cta::after { content: "→"; font-family: var(--font-body); }

.nav-toggle { display: none; }


@media (max-width: 820px) {
  /* Hide links by default; show burger */
  .site-nav .nav-link { display: none; }

  /* When open: turn nav into a full-width dropdown */
  .site-nav.nav-open {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .site-nav.nav-open .nav-link {
    display: block;
  }
  /* Keep Log In CTA visible and full-width when open */
  .site-nav .nav-cta {
    display: inline-flex;
  }
  .site-nav.nav-open .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    color: var(--text);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
/* Short laptop screens: tighten hero so the CTA stays above the fold */
@media (min-width: 901px) and (max-height: 820px) {
  .hero { padding-top: 28px; padding-bottom: 40px; }
  .hero h1 { font-size: clamp(2.2rem, 3.4vw, 3rem); }
  .hero-sub { margin-top: 14px; font-size: 1rem; }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
}
.hero-copy { min-width: 0; }
.hero-copy h1 .accent { color: var(--orange); }
.hero-copy h1 .underline {
  background: linear-gradient(180deg, transparent 65%, rgba(255, 183, 3, 0.45) 65%);
  padding: 0 4px;
}
.hero-sub {
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.55;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.trust-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.trust-item strong { color: var(--text); font-weight: 700; }

/* Home hero — pillars, checklist, rating */
.hero-pillars {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.hero-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 48ch;
}
.hero-checks {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 9px;
}
.hero-checks li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 0.97rem;
}
.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 15px;
  height: 9px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}
.hero-rating {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.hero-rating span { color: var(--gold, #fb8500); margin-right: 4px; }
@media (max-width: 760px) {
  .hero-note { max-width: none; }
  .hero-checks { margin-top: 18px; }
  /* Long CTA label must wrap rather than overflow on narrow phones */
  .hero-actions { width: 100%; }
  .hero-actions .btn {
    white-space: normal;
    text-align: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 901px) and (max-height: 950px) {
  .hero { padding-top: 40px; padding-bottom: 48px; }
  .hero-pillars { margin-top: 12px; }
  .hero-checks { margin-top: 16px; gap: 8px; }
  .hero-rating { margin-top: 13px; }
  .hero-sub { margin-top: 14px; }
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-lg);
}
.hero-visual .photo-placeholder {
  position: absolute; inset: 0;
}

/* Status strip (BTC waitlist) */
.status-strip {
  background: var(--navy);
  color: #fff;
}
[data-theme="dark"] .status-strip { background: #050f15; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.status-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  text-align: center;
}
.status-strip-inner .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-strip-inner .pill .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.status-strip-inner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.stat .num .accent { color: var(--orange); }
.stat .label {
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 48px;
  max-width: 720px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 60ch;
}
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Transformations grid ---------- */
.tx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .tx-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tx-grid { grid-template-columns: 1fr; } }

.tx-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.tx-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.tx-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.tx-photo {
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.tx-photo::after {
  content: attr(data-label);
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(2, 48, 71, 0.85);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}
.tx-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Combined before/after image (single file, already side-by-side) */
.tx-photos--combined {
  display: block;
  background: var(--bg-alt);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.tx-combined {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.tx-photos .divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(-0.5px);
  pointer-events: none;
  z-index: 3;
}
.tx-meta {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tx-meta .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}
.tx-meta .lost {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Pillars / Features ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--bg);
  transition: border-color 0.15s ease;
}
.pillar:hover { border-color: var(--orange); }
.pillar .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.pillar h3 { margin-top: 12px; }
.pillar p { margin-top: 10px; color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Comparison (problem/solution) ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare > div { padding: 36px 32px; }
.compare-bad { background: var(--bg-alt); }
.compare-good { background: var(--navy); color: #fff; }
.compare h3 { color: inherit; }
.compare-good h3 { color: #fff; }
.compare ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.compare li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.45; }
.compare li svg { flex-shrink: 0; margin-top: 3px; }
.compare-bad li { color: var(--text-muted); }
.compare-good li { color: rgba(255, 255, 255, 0.92); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.step h4 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Plan / Pricing ---------- */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 820px) { .plans { grid-template-columns: 1fr; } }
.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 20px 50px rgba(251, 133, 0, 0.15);
}
.plan-flag {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.plan-flag.muted { background: var(--navy); }
.plan-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.plan-title {
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.plan-price {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.plan-price .amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.25rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.plan-price .per { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.plan-tagline { margin-top: 8px; color: var(--text-muted); font-size: 0.95rem; }
.plan-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 13px 15px;
  background: rgba(251, 133, 0, 0.08);
  border: 1px solid rgba(251, 133, 0, 0.3);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.91rem;
  line-height: 1.5;
}
.plan-callout svg { color: var(--orange); margin-top: 1px; }
.plan-highlight { color: var(--text) !important; }
.plan-divider {
  margin: 24px 0;
  border: none;
  border-top: 1px solid var(--line);
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.plan ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.4;
}
.plan ul li svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); }
.plan-cta { margin-top: 28px; }
.plan-note { margin-top: 14px; font-size: 0.82rem; color: var(--text-soft); text-align: center; }

/* ---------- Coach card ---------- */
.coach {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .coach { grid-template-columns: 1fr; } }
.coach-img {
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.coach-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.coach-cred {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.coach-cred span {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.coach blockquote {
  margin: 24px 0 0;
  padding: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-left: 3px solid var(--orange);
  padding-left: 18px;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
}
.review p { color: var(--text-muted); line-height: 1.55; }
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  font-size: 0.85rem;
}
.review .name { font-weight: 700; font-size: 0.92rem; }
.review .src { font-size: 0.78rem; color: var(--text-soft); }

/* Google reviews badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 14px 20px;
  border-radius: 999px;
  margin-bottom: 32px;
}
.google-badge .g {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
}
.google-badge .g .b { color: #4285F4; }
.google-badge .g .r { color: #EA4335; }
.google-badge .g .y { color: #FBBC05; }
.google-badge .g .b2 { color: #4285F4; }
.google-badge .g .gr { color: #34A853; }
.google-badge .g .r2 { color: #EA4335; }
.google-badge .stars { color: var(--gold); letter-spacing: 1px; }
.google-badge .rating { font-weight: 800; font-family: var(--font-display); }

/* ---------- CTA Block ---------- */
.cta-block {
  background: var(--navy);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(251, 133, 0, 0.4) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-block::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(33, 158, 188, 0.5) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: #fff; }
.cta-block .lede { color: rgba(255, 255, 255, 0.85); margin-top: 16px; max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-block .hero-actions { justify-content: center; }
.cta-block .hero-trust { justify-content: center; color: rgba(255, 255, 255, 0.85); }
.cta-block .trust-item { color: rgba(255, 255, 255, 0.85); }
.cta-block .trust-item strong { color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px 24px; } }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--text-muted); font-size: 0.9rem; white-space: nowrap; }
.footer-grid a:hover { color: var(--orange); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; max-width: 30ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ---------- Photo placeholder ---------- */
.photo-placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg,
      rgba(2, 48, 71, 0.04) 0,
      rgba(2, 48, 71, 0.04) 12px,
      rgba(2, 48, 71, 0.08) 12px,
      rgba(2, 48, 71, 0.08) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 12px;
}
[data-theme="dark"] .photo-placeholder {
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 12px,
      rgba(255,255,255,0.08) 12px,
      rgba(255,255,255,0.08) 24px);
}

/* ---------- Page hero (smaller, for sub-pages) ---------- */
.page-hero {
  padding: clamp(56px, 8vw, 88px) 0 clamp(28px, 4vw, 48px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
.page-hero .lede {
  margin: 18px auto 0;
  color: var(--text-muted);
  max-width: 60ch;
  font-size: 1.1rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.faq-q .chev {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
  color: var(--orange);
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 600px; padding-top: 14px; }

/* ---------- Filter bar ---------- */
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}
.filter-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.filter-bar button {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: all 0.15s ease;
}
.filter-bar button:hover { color: var(--text); border-color: var(--text-muted); }
.filter-bar button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
[data-theme="dark"] .filter-bar button.active { background: var(--orange); border-color: var(--orange); }

/* ---------- Helpers ---------- */
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.divider-row { height: 1px; background: var(--line); margin: 0; }

/* Logo dots SVG inline color follows CSS */
.logo-dots {
  display: inline-flex;
  width: 30px; height: 30px;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(2, 48, 71, 0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(2, 48, 71, 0.08);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
[data-theme="dark"] .modal-close { background: rgba(255,255,255,0.08); }
.modal-photos { display: block; background: var(--bg-alt); }
.modal-photos .tx-combined { width: 100%; height: auto; max-height: 68vh; object-fit: contain; display: block; }
.modal-body { padding: 28px 32px; }
.modal-body h3 { margin-bottom: 6px; }

/* ---------- Marquee logos ---------- */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.marquee-item .dot {
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
}

/* ---------- Tweaks panel branding ---------- */
.tweaks-mini-bar {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 80;
}


/* ---------- Join guarantee strip ---------- */
.guarantee-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  padding: 30px 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 30px;
  align-items: center;
}
.guarantee-strip__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.guarantee-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  padding: 18px 20px;
}
.guarantee-card__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.guarantee-card h4 { margin: 0 0 6px; font-size: 1.02rem; }
.guarantee-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 900px) {
  .guarantee-strip { grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 26px 22px; }
}

/* ---------- Two ways in (BTC12 vs Membership) ---------- */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.way-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.way-card--featured {
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-md);
}
.way-flag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.way-flag--muted { background: var(--navy); }
.way-card h3 { font-size: 1.28rem; margin: 0 0 12px; }
.way-price { display: flex; align-items: baseline; gap: 8px; }
.way-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.way-per { color: var(--text-muted); font-size: 0.92rem; }
.way-deadline {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.way-deadline--green { color: #16a34a; }
.way-desc { margin: 14px 0 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.way-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.way-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.way-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}
.way-list strong { color: var(--text); }
.way-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
}
@media (max-width: 680px) {
  .way-card { padding: 24px 20px; }
  .way-amount { font-size: 2.2rem; }
}

/* ---------- Hero video (replaces the 478KB GIF) ---------- */
.hero-video { background: var(--bg-alt); }
/* Respect a visitor's reduced-motion setting: show the poster, not the loop */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
  .hero-visual::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: url("assets/btc12-hero-poster.jpg") center / cover no-repeat;
    border-radius: var(--radius-lg);
  }
}
