/* Roazr — dark theme with mint accent (#8BCD9D) */
:root {
  color-scheme: dark;
  --bg: #060607;
  --bg-elevated: #0c0c0f;
  --bg-card: #121215;
  --bg-card-hover: #18181c;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.12);
  --accent: #8bcd9d;
  --accent-hover: #a8dcc0;
  --accent-ink: #0a0a0c;
  --accent-soft: rgba(139, 205, 157, 0.14);
  --accent-line: rgba(139, 205, 157, 0.38);
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --shadow-sm: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 20px 50px -15px rgba(0, 0, 0, 0.65);
  --radius: 10px;
  --radius-sm: 8px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;
  --radius-btn: 10px;
  --max-w: 1120px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --section-pad: clamp(5.25rem, 12vw, 8.5rem);
  --container-pad: clamp(1.5rem, 5vw, 3.25rem);
  --nav-bg: rgba(6, 6, 7, 0.88);
  --nav-edge: 0 1px 0 rgba(255, 255, 255, 0.03);
  --hero-spot: rgba(139, 205, 157, 0.1);
  --outline-hover-border: rgba(255, 255, 255, 0.22);
  --outline-hover-bg: rgba(255, 255, 255, 0.04);
  --cta-gradient: linear-gradient(165deg, #0c1814 0%, var(--bg-elevated) 40%, var(--bg) 100%);
  --cta-ghost-text: #ffffff;
  --cta-ghost-border: rgba(255, 255, 255, 0.35);
  --cta-ghost-hover-bg: rgba(255, 255, 255, 0.08);
  --cta-ghost-hover-border: rgba(255, 255, 255, 0.55);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f8fafc;
  --bg-elevated: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fafb;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --accent: #059669;
  --accent-hover: #047857;
  --accent-ink: #ffffff;
  --accent-soft: rgba(5, 150, 105, 0.12);
  --accent-line: rgba(5, 150, 105, 0.35);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 40px -12px rgba(15, 23, 42, 0.12);
  --nav-bg: rgba(248, 250, 252, 0.92);
  --nav-edge: 0 1px 2px rgba(15, 23, 42, 0.06);
  --hero-spot: rgba(5, 150, 105, 0.1);
  --outline-hover-border: #cbd5e1;
  --outline-hover-bg: #f1f5f9;
  --cta-gradient: linear-gradient(180deg, #ecfdf5 0%, #f8fafc 50%, #f1f5f9 100%);
  --cta-ghost-text: #0f172a;
  --cta-ghost-border: rgba(15, 23, 42, 0.2);
  --cta-ghost-hover-bg: rgba(15, 23, 42, 0.06);
  --cta-ghost-hover-border: rgba(15, 23, 42, 0.3);
}

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

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-link:hover {
  color: var(--accent-hover);
}

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

/* ====================== REVEALS ====================== */
.reveal {
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
html.reveal-js .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(16px);
}
html.reveal-js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.reveal-js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* ====================== LAYOUT ====================== */
.container {
  width: min(100% - var(--container-pad), var(--max-w));
  margin-inline: auto;
}

/* ====================== NAV ====================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--nav-edge);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.35rem;
  gap: 1.25rem;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 0.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.theme-toggle:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.theme-icon {
  display: block;
  flex-shrink: 0;
}
.theme-icon-sun {
  opacity: 0.35;
  color: var(--text-tertiary);
}
.theme-icon-moon {
  opacity: 1;
  color: var(--accent);
}
html[data-theme="light"] .theme-icon-sun {
  opacity: 1;
  color: var(--accent);
}
html[data-theme="light"] .theme-icon-moon {
  opacity: 0.35;
  color: var(--text-tertiary);
}

.wordmark {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.nav-links {
  display: none;
  gap: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a {
  transition: color 0.2s;
  padding: 0.5rem 0.15rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover {
  color: var(--text-primary);
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.65rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:active {
  transform: scale(0.98);
}
.btn:hover {
  box-shadow: var(--shadow-md);
}
.btn-sm {
  min-height: 2.35rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.8125rem;
}
.btn-lg {
  min-height: 3.1rem;
  padding: 0.95rem 1.9rem;
  font-size: 1rem;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--outline-hover-border);
  background: var(--outline-hover-bg);
}

.btn-outline-on-dark {
  background: transparent;
  color: var(--cta-ghost-text);
  border: 1.5px solid var(--cta-ghost-border);
}
.btn-outline-on-dark:hover {
  background: var(--cta-ghost-hover-bg);
  border-color: var(--cta-ghost-hover-border);
}

/* ====================== HERO (split + feed) ====================== */
.hero-split {
  padding: clamp(3.75rem, 10vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 80% 55% at 50% -15%, var(--hero-spot), transparent 55%),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 45%);
}

.hero-split-inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-split-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 4.5rem);
  }
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: none;
  border-radius: 0;
}
.hero-eyebrow::before {
  content: "[ ";
}
.hero-eyebrow::after {
  content: " ]";
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 1.75rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}
.hero-line {
  display: block;
}
.hero-pill-inline {
  display: inline-block;
  padding: 0.05em 0.45em 0.12em;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 0.25em;
  letter-spacing: -0.045em;
  transform: rotate(-1.5deg);
  vertical-align: baseline;
  margin-right: 0.05em;
}
.hero-highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 2rem;
  max-width: 34rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-trust-row {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}
@media (min-width: 520px) {
  .hero-trust-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
}
.hero-trust-row li {
  position: relative;
  padding-left: 1.35rem;
}
.hero-trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.hero-rating {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
}

/* Hero mock cards (contentrewards-style stacked product UI) */
.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}
.mock-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 1.4rem 1.5rem;
  position: relative;
}
.mock-card-balance {
  transform: rotate(-1.5deg);
  z-index: 2;
}
.mock-card-feed {
  transform: rotate(1deg) translateX(0.5rem);
  padding: 0;
  overflow: hidden;
}
@media (min-width: 960px) {
  .mock-card-balance {
    margin-right: 1.5rem;
  }
  .mock-card-feed {
    margin-left: 1.5rem;
  }
}
.mock-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.mock-card-feed .mock-card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
.mock-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
}
.mock-card-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.mock-card-value {
  margin: 0.85rem 0 0.35rem;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.mock-card-meta {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mock-trend {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}
.mock-trend-up {
  color: var(--accent);
  background: var(--accent-soft);
}
.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 3.5rem;
  margin-top: 0.25rem;
}
.mock-bars span {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-soft) 100%);
  border-radius: 0.25rem 0.25rem 0 0;
  min-height: 0.5rem;
}

.hero-feed {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
}
.hero-feed-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.hero-feed-item:last-child {
  border-bottom: none;
}
.hero-feed-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}
.hero-feed-body {
  min-width: 0;
}
.hero-feed-name {
  margin: 0 0 0.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}
.hero-feed-time {
  font-weight: 500;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}
.hero-feed-event {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.hero-feed-event strong {
  color: var(--text-primary);
}

/* ====================== REPEATING CTA STRIP ====================== */
.cta-strip {
  padding: clamp(2.5rem, 6vw, 4.25rem) 0 clamp(2.75rem, 6vw, 4.5rem);
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  text-align: center;
}
.cta-strip-meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ====================== SECTIONS ====================== */
.section-kicker {
  display: inline-block;
  margin: 0 0 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-kicker::before {
  content: "[ ";
}
.section-kicker::after {
  content: " ]";
}
.section-lede {
  margin: 1.5rem auto 0;
  max-width: 38rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.section-header.center .section-lede {
  text-align: center;
}

.section-dark {
  padding-block: var(--section-pad);
  background: var(--bg);
}

.section-elevated {
  padding-block: var(--section-pad);
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-header {
  margin-bottom: clamp(3.25rem, 6vw, 4.5rem);
}
.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  color: var(--text-primary);
}

/* ====================== FEATURE CARDS ====================== */
.feature-grid {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
  color: var(--accent);
}
.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}
.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.15rem;
  padding: 0.5rem 0;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}
.card-link:hover {
  color: var(--accent-hover);
}

/* ====================== HOW IT WORKS (steps with mock UI) ====================== */
.steps-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.step-mock {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
  margin-bottom: 1.5rem;
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.step-mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
}
.step-mock-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}
.step-mock-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.step-mock-status::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.step-mock-track {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.step-mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-full);
  margin-inline: auto;
}
.step-mock-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
.step-mock-big {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.step-mock-small {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.step-mock-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.step-mock-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.step-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.6rem;
}
.step-title {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.step-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ====================== COMPARISON TABLE ====================== */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  position: relative;
}
@media (max-width: 640px) {
  .comparison-table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2.5rem;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--bg-card));
  }
}
.comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
}
.comparison-table th,
.comparison-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comparison-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg-elevated);
  position: sticky;
  top: 0;
}
.comparison-table thead th.highlight {
  color: var(--accent);
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}
.comparison-table td {
  color: var(--text-secondary);
}
.comparison-table td.highlight {
  background: var(--accent-soft);
}

.check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.125rem;
}
.cross {
  color: var(--text-tertiary);
  font-size: 1.125rem;
}
.partial {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
}

.comparison-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ====================== TRUST ====================== */
.trust-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.trust-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.trust-text {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0;
}

/* ====================== TESTIMONIALS ====================== */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 52rem;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  margin: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.tq {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.testimonial-card strong {
  font-size: 0.875rem;
  color: var(--text-primary);
}
.testimonial-card span {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ====================== FAQ ====================== */
.faq-list {
  max-width: 42rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-tertiary);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item summary:hover {
  background: var(--bg-elevated);
}

.faq-item p {
  margin: 0;
  padding: 0 1.35rem 1.2rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-item[open] summary {
  color: var(--accent);
}

/* ====================== STATS BAND ====================== */
.stats-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-band-inner {
  display: grid;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 720px) {
  .stats-band-inner {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
    gap: 2rem;
  }
}
.stat-value {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.stat-label {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ====================== CTA / WAITLIST ====================== */
.cta-section {
  padding-block: var(--section-pad);
  text-align: center;
  background: var(--cta-gradient);
  color: var(--text-primary);
  border-top: 1px solid var(--border);
}
.cta-inner {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}
.section-kicker-on-dark {
  color: var(--accent);
}
.cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
  line-height: 1.05;
}
.cta-sub {
  margin: 0 0 2rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.waitlist-wrap {
  max-width: 28rem;
  margin-inline: auto;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .waitlist-form {
    flex-direction: row;
  }
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-height: 3rem;
  padding: 0.9rem 1.2rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-btn);
  background: var(--bg-card);
  color: var(--text-primary);
}
.waitlist-form input::placeholder {
  color: var(--text-tertiary);
}
.waitlist-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}
.waitlist-form .btn {
  white-space: nowrap;
}

.thank-you {
  display: none;
  padding: 1.15rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--accent);
}
.thank-you.show {
  display: block;
}

/* ====================== FOOTER ====================== */
.footer {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.footer-email {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-email:hover {
  color: var(--accent-hover);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin: 0 0 0.75rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-links a {
  color: var(--text-secondary);
  transition: color 0.2s;
  padding: 0.25rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover {
  color: var(--text-primary);
}

.footer-link-text {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  display: inline-flex;
  align-items: center;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin: 0 0 0.75rem;
  max-width: 42rem;
}
.copyright {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin: 0;
}

/* ====================== LEGAL PAGES ====================== */
.legal-page {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
  background: var(--bg);
}

.legal-container {
  max-width: 48rem;
}

.legal-header {
  margin-bottom: 2.5rem;
}

.legal-header h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0.5rem 0 0.75rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin: 0 0 1.25rem;
}

.legal-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.legal-intro a,
.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.legal-intro a:hover,
.legal-body a:hover {
  color: var(--accent-hover);
}

.legal-toc {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.legal-toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin: 0 0 0.75rem;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.legal-toc a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.legal-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 6rem;
}

.legal-section h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.legal-section h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem;
  line-height: 1.4;
}

.legal-section p {
  margin: 0 0 1rem;
}

.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-section code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.875em;
  padding: 0.15em 0.4em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.legal-contact {
  font-style: normal;
  margin: 0 0 1rem;
  line-height: 1.8;
}

.footer-links a[aria-current="page"] {
  color: var(--text-primary);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .container {
    width: min(100% - clamp(2.5rem, 9vw, 4rem), var(--max-w));
  }
  .mock-card-balance,
  .mock-card-feed {
    transform: none;
    margin: 0;
  }
  .hero-pill-inline {
    transform: rotate(-1deg);
  }
}
