/* TokoSales Marketing Site — style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Design tokens (added 2026-05-13, hero v2 redesign) */
:root {
  /* Layout */
  --content-max: 1280px;
  --content-padding: clamp(1rem, 4vw, 3rem);
  --section-gap: clamp(3rem, 8vw, 6rem);
  --column-gap: clamp(1.5rem, 4vw, 4rem);

  /* Fluid type scale */
  --font-size-hero: clamp(2rem, 5vw, 3.75rem);
  --font-size-h2: clamp(1.5rem, 3.5vw, 2.5rem);
  --font-size-h3: clamp(1.125rem, 2vw, 1.375rem);
  --font-size-body: clamp(1rem, 1.25vw, 1.125rem);
  --font-size-small: 0.875rem;
  --font-size-stat: clamp(2.5rem, 6vw, 4.5rem);

  --line-height-tight: 1.15;
  --line-height-normal: 1.55;

  /* Radii */
  --radius-card: 12px;
  --radius-button: 8px;

  /* Brand colours mapped to semantic tokens. Existing palette preserved. */
  --accent: #0F6E56;
  --accent-dark: #085041;
  --accent-amber: #D97B3F;
  --accent-purple: #7C5CBF;
  --text-primary: #1a1a1a;
  --text-muted: #555555;
  --surface-card: #ffffff;
  --surface-alt: #f7f7f5;
  --border-subtle: #e6e6e6;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
}

h1 {
  font-size: var(--font-size-hero);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #0F6E56;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: #085041;
}

small, .small-text {
  font-size: 14px;
  color: #666;
}

/* Layout — fluid container, hero v2 redesign */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-inline: var(--content-padding);
}

/* Legacy alias — kept for old markup; same fluid behaviour now */
.container-wide {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-inline: var(--content-padding);
}

/* Shared card base, used by stat cards, platform cards, founder cards */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Fluid grid — reflows without media queries */
.grid {
  display: grid;
  gap: var(--column-gap);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }

/* Reading measure for long-form prose blocks */
.prose {
  max-width: 65ch;
}

/* Section vertical rhythm */
section {
  padding-block: var(--section-gap);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

@media (max-width: 600px) {
  .site-header-inner {
    padding: 0 16px;
  }
}

.site-wordmark {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
}

.site-wordmark:hover {
  color: #1a1a1a;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.site-nav a:hover {
  color: #0F6E56;
}

.site-nav .btn-demo {
  font-size: 14px;
  padding: 6px 14px;
  border: 1px solid #0F6E56;
  border-radius: 6px;
  color: #0F6E56;
  background: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav .btn-demo:hover {
  background: #E1F5EE;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger svg {
  display: block;
}

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

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 200;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu nav a {
  font-size: 1.25rem;
  color: #1a1a1a;
  text-decoration: none;
}

.mobile-menu nav a:hover {
  color: #0F6E56;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: #0F6E56;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary:hover {
  background: #085041;
  color: #ffffff;
}

.btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #0F6E56;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border: 1px solid #0F6E56;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
}

.btn-secondary:hover {
  background: #E1F5EE;
  color: #0F6E56;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-alt {
  background: #f7f7f5;
  padding: 64px 0;
}

@media (max-width: 600px) {
  .section, .section-alt {
    padding: 40px 0;
  }
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Hero */
.hero {
  padding: 80px 0 48px;
}

.hero h1 {
  max-width: 600px;
}

.hero .subheadline {
  font-size: 1.1rem;
  color: #444;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero {
    padding: 48px 0 32px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Stats cards */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e0e0dc;
  border-radius: 8px;
  padding: 20px;
}

.stat-card .stat-number {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0F6E56;
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* Conversion comparison */
.conversion-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.conversion-card {
  border: 1px solid #e0e0dc;
  border-radius: 8px;
  padding: 24px;
}

.conversion-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.conversion-bar {
  height: 8px;
  background: #e0e0dc;
  border-radius: 4px;
  overflow: hidden;
  margin: 12px 0 8px;
}

.conversion-bar-fill {
  height: 100%;
  border-radius: 4px;
}

.conversion-bar-fill.low {
  width: 15%;
  background: #999;
}

.conversion-bar-fill.high {
  width: 75%;
  background: #0F6E56;
}

.conversion-number {
  font-size: 1.8rem;
  font-weight: 600;
}

.conversion-card:last-child .conversion-number {
  color: #0F6E56;
}

@media (max-width: 600px) {
  .conversion-compare {
    grid-template-columns: 1fr;
  }
}

/* Pricing card */
.pricing-card {
  border: 2px solid #0F6E56;
  border-radius: 8px;
  padding: 40px;
  max-width: 480px;
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 600;
  color: #0F6E56;
  margin-bottom: 4px;
}

.pricing-card .price-period {
  font-size: 1rem;
  color: #666;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid #e0e0dc;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #0F6E56;
  font-weight: 600;
}

/* Pricing card (compact, for homepage) */
.pricing-preview {
  border: 1px solid #e0e0dc;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-preview p {
  margin: 0;
  font-size: 1.1rem;
}

.pricing-preview .price-big {
  font-weight: 600;
  color: #0F6E56;
}

/* Trust block */
.trust-list {
  list-style: none;
}

.trust-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid #e0e0dc;
}

.trust-list li:last-child {
  border-bottom: none;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 12px;
  background: #E1F5EE;
  border: 2px solid #0F6E56;
  border-radius: 50%;
}

/* Signup form */
.signup-form {
  max-width: 420px;
}

.signup-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.signup-form input[type="email"] {
  width: 100%;
  font-size: 16px;
  padding: 12px 16px;
  border: 1px solid #e0e0dc;
  border-radius: 6px;
  font-family: inherit;
  margin-bottom: 12px;
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: #0F6E56;
  box-shadow: 0 0 0 2px #E1F5EE;
}

/* SVG diagram */
.diagram {
  margin: 40px 0;
  overflow-x: auto;
}

.diagram svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Timeline (how-it-works) */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0dc;
}

.timeline-step {
  position: relative;
  padding-bottom: 32px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0F6E56;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

.timeline-dot.auto {
  background: #7C5CBF;
}

.timeline-step h3 {
  margin-bottom: 4px;
}

.timeline-step p {
  color: #444;
  margin-bottom: 0;
}

.timeline-step .time-note {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

/* Protocol list */
.protocol-list {
  list-style: none;
}

.protocol-list li {
  padding: 24px 0;
  border-bottom: 1px solid #e0e0dc;
}

.protocol-list li:last-child {
  border-bottom: none;
}

.protocol-name {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-top: 8px;
}

/* FAQ */
.faq-list {
  list-style: none;
}

.faq-list li {
  padding: 24px 0;
  border-bottom: 1px solid #e0e0dc;
}

.faq-list li:last-child {
  border-bottom: none;
}

.faq-list li strong {
  display: block;
  margin-bottom: 8px;
}

/* Additional pricing */
.addons {
  margin-top: 24px;
  font-size: 14px;
  color: #666;
}

.addons p {
  margin-bottom: 4px;
}

/* Data page two-column */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}

@media (max-width: 600px) {
  .data-grid {
    grid-template-columns: 1fr;
  }
}

.data-grid h3 {
  margin-bottom: 8px;
}

/* Legal pages */
.legal-content h2 {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e0e0dc;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 20px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  background: #f7f7f5;
  border-top: 1px solid #e0e0dc;
  padding: 48px 0 32px;
  margin-top: 64px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }
}

.footer-brand p {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 48px;
}

@media (max-width: 600px) {
  .footer-links {
    gap: 32px;
  }
}

.footer-links-group h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-links-group a {
  display: block;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-links-group a:hover {
  color: #0F6E56;
}

.footer-bottom {
  max-width: 960px;
  margin: 24px auto 0;
  padding: 16px 24px 0;
  border-top: 1px solid #e0e0dc;
  font-size: 14px;
  color: #666;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 600px) {
  .footer-bottom {
    padding: 16px 16px 0;
  }
}

/* Fan-out diagram */
.fanout-diagram {
  margin: 32px 0;
}

/* Onboarding flow diagram */
.flow-diagram {
  margin: 40px 0;
}

/* Setup steps */
.setup-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.setup-step {
  border: 1px solid #e0e0dc;
  border-radius: 8px;
  padding: 24px;
}

.setup-step .step-num {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #0F6E56;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .setup-steps {
    grid-template-columns: 1fr;
  }
}

/* Separator */
.auto-separator {
  text-align: center;
  padding: 24px 0;
  color: #7C5CBF;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.auto-separator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: repeating-linear-gradient(to right, #7C5CBF 0, #7C5CBF 6px, transparent 6px, transparent 12px);
}

.auto-separator span {
  background: #fff;
  padding: 0 16px;
  position: relative;
}

.section-alt .auto-separator span {
  background: #f7f7f5;
}

/* Utility */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ===== Agent Readiness Audit form ===== */
.audit-form {
  max-width: 520px;
  margin: 24px 0 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e0e0dc;
  border-radius: 6px;
}

.audit-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  margin-top: 12px;
}

.audit-form__label:first-of-type { margin-top: 0; }

.audit-form__field {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #c8c8c4;
  border-radius: 4px;
  background: #fafaf8;
  color: #1a1a1a;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.audit-form__field:focus {
  outline: 2px solid #0F6E56;
  outline-offset: 1px;
  background: #ffffff;
  border-color: #0F6E56;
}

.audit-form__submit {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #0F6E56;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 12px;
}

.audit-form__submit:hover { background: #0a5544; }
.audit-form__submit:disabled { background: #888; cursor: wait; }

.audit-form__note {
  font-size: 14px;
  color: #555;
  margin-top: 12px;
  margin-bottom: 0;
}

.audit-form__error {
  color: #993C1D;
  font-size: 14px;
  margin-top: 12px;
  padding: 10px 12px;
  background: #fdecec;
  border-left: 3px solid #993C1D;
  border-radius: 3px;
}

/* ===== Trust strip below hero form ===== */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.trust-strip span { white-space: nowrap; }

/* ===== Section 3: stat grid (2x2) ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.stat-card-v2 {
  background: #ffffff;
  border: 1px solid #e0e0dc;
  border-radius: 6px;
  padding: 24px;
}

.stat-figure {
  font-size: 44px;
  font-weight: 700;
  color: #0F6E56;
  line-height: 1.05;
  margin-bottom: 12px;
}

.stat-context {
  font-size: 16px;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.stat-source {
  font-size: 13px;
  color: #666;
  margin: 0;
}

@media (max-width: 720px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat-figure { font-size: 36px; }
}

/* ===== Section 6: platform tiers ===== */
.platform-tier {
  border-left: 4px solid #c8c8c4;
  padding: 20px 24px;
  margin: 20px 0;
  background: #ffffff;
}

.platform-tier--live { border-left-color: #0F6E56; background: #f3faf6; }
.platform-tier--in-progress { border-left-color: #D97B3F; background: #fdf7f1; }
.platform-tier--opening { border-left-color: #b1b4b6; background: #f7f7f5; }

.platform-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.platform-status--live { background: #0F6E56; color: #ffffff; }
.platform-status--in-progress { background: #D97B3F; color: #ffffff; }
.platform-status--opening { background: #b1b4b6; color: #ffffff; }

.platform-tier h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.platform-logos {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.platform-logos--row { gap: 8px 16px; }

.platform-logo {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid #c8c8c4;
  background: #ffffff;
}

.platform-logo--prominent { font-size: 18px; color: #1a1a1a; padding: 8px 16px; }
.platform-logo--muted { font-size: 14px; color: #555; background: #fafaf8; }

.platform-closing { margin-top: 24px; }

/* ===== Section 7: numbered list ===== */
.numbered-list {
  list-style: decimal inside;
  padding-left: 0;
  margin: 16px 0;
}

.numbered-list li {
  margin-bottom: 12px;
  padding-left: 8px;
  line-height: 1.6;
}

/* ===== Section 8: addons line ===== */
.addons-line {
  margin-top: 16px;
  color: #555;
}

/* ===== Section 9: founder blocks ===== */
.founders-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 24px 0;
}

.founder-block {
  background: #ffffff;
  border: 1px solid #e0e0dc;
  border-radius: 6px;
  padding: 20px 24px;
}

.founder-block h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.founder-role {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px;
  font-style: italic;
}

.founders-legal {
  font-size: 14px;
  color: #555;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .founders-row { grid-template-columns: 1fr; }
}

/* =============================================================
   Hero v2 redesign (2026-05-13)
   Replaces the centered single-column hero with a two-column
   layout: value prop on the left, audit form (sticky) on the right.
   ============================================================= */

.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 6vw, 5rem);
}

.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: var(--column-gap);
  align-items: start;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  /* override the old .hero h1 max-width: 600px */
  max-width: none;
}

.hero__copy h1 {
  max-width: 24ch;
  margin-bottom: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-small);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--accent);
  margin: 0;
  width: fit-content;
}

.hero__eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__lead {
  font-size: clamp(1rem, 1.35vw, 1.1875rem);
  line-height: var(--line-height-normal);
  margin: 0;
  max-width: 60ch;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: var(--font-size-small);
  color: var(--text-muted);
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__trust li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.hero__action {
  position: sticky;
  top: clamp(1rem, 4vw, 2rem);
  width: 100%;
}

.hero__form-card {
  gap: 1rem;
}

.hero__form-heading {
  font-size: var(--font-size-h3);
  margin: 0;
}

.hero__form-sub {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  margin: 0;
}

/* Make the existing audit form fill the card cleanly */
.hero__form-card .audit-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* override prior .audit-form padding + border — card already provides those */
  padding: 0;
  border: none;
  background: transparent;
  max-width: none;
  margin: 0;
}

.hero__form-card .audit-form__field {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-body);
  border-radius: var(--radius-button);
  min-height: 44px;
}

.hero__form-card .audit-form__submit {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: var(--font-size-body);
  font-weight: 600;
  border-radius: var(--radius-button);
  min-height: 44px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero__action {
    position: static;
  }
}

/* =============================================================
   Stat cards (Section 3) — shared .card base + figure/context/source
   ============================================================= */

.section-lead {
  font-size: clamp(1rem, 1.35vw, 1.1875rem);
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.stat-card__figure {
  font-size: var(--font-size-stat);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text-primary);
}

.stat-card__context {
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
  margin: 0;
}

.stat-card__source {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  margin: 0;
}

/* =============================================================
   Platform cards (Section 6) — three-tier display
   ============================================================= */

.platform-card__status {
  font-size: var(--font-size-small);
  font-weight: 600;
  margin: 0;
}

.platform-card--live .platform-card__status { color: var(--accent); }
.platform-card--progress .platform-card__status { color: var(--accent-amber); }
.platform-card--opening .platform-card__status { color: var(--text-muted); }

.section-footnote {
  max-width: 60ch;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  font-size: var(--font-size-small);
  color: var(--text-muted);
  text-align: center;
}

/* =============================================================
   Founder cards (Section 9)
   ============================================================= */

.founder-card__role {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  margin: 0;
}

/* =============================================================
   Section background variants — keep alt sections visually distinct
   while sharing the same container + card system
   ============================================================= */

.section-stats {
  background: var(--surface-alt);
}

.section-founders {
  background: var(--surface-alt);
}

/* Footer legal line — hero v2 redesign moved this here */
.footer-legal {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1.25rem) var(--content-padding);
  font-size: var(--font-size-small);
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}

.footer-legal p {
  margin: 0;
  max-width: 80ch;
}
