/* Fastmov marketing subpages — shared shell (Contact · Legal) */
:root {
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --canvas: #f7f5f2;
  --surface: #ffffff;
  --brand: #0f172a;
  --brand-soft: #e8ecf1;
  --accent: #e85d4c;
  --accent-hover: #d64a39;
  --accent-soft: #fdeeec;
  --ready: #1a7a4c;
  --ready-soft: #e8f6ee;
  --line: #e2e8f0;
  --max: 1180px;
  --page-gutter: 48px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 16px 48px rgba(15, 23, 42, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-nav {
  width: 100%;
  padding: 20px var(--page-gutter);
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-start {
  display: flex;
  align-items: center;
  gap: 44px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--ink);
  flex-shrink: 0;
  line-height: 1;
}
.brand-logo {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.nav-links a {
  color: var(--ink);
  opacity: 0.88;
  transition: opacity 0.15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

/* Blog + legal: Home · Blog centered in the top bar (logo left, auth right) */
body:has(.blog-page) .site-nav-inner,
body:has(.article-breadcrumb) .site-nav-inner,
body:has(.policy-wrap) .site-nav-inner,
body:has(.legal-hub-grid) .site-nav-inner {
  position: relative;
}

body:has(.blog-page) .nav-start,
body:has(.article-breadcrumb) .nav-start,
body:has(.policy-wrap) .nav-start,
body:has(.legal-hub-grid) .nav-start {
  gap: 0;
}

body:has(.blog-page) .nav-links,
body:has(.article-breadcrumb) .nav-links,
body:has(.policy-wrap) .nav-links,
body:has(.legal-hub-grid) .nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-login {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 8px 12px 8px 0;
}
.nav-login:hover { opacity: 0.75; }
.nav-signup {
  background: var(--surface);
  color: var(--brand);
  padding: 9px 18px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.nav-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.page-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--page-gutter) 80px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: var(--ink-soft);
  transition: color 0.15s;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { opacity: 0.45; }

.page-hero {
  margin-bottom: 48px;
  max-width: 720px;
}
.page-hero h1 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 52em;
}
.page-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.page-meta .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.contact-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.contact-card a.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}
.contact-card a.email-link:hover { color: var(--accent-hover); }
.contact-card .response-time {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.contact-aside {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
}
.info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
}
.info-panel h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}
.info-panel p,
.info-panel address {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  font-style: normal;
}
.info-panel p + p { margin-top: 12px; }
.info-panel a { color: var(--ink-soft); font-weight: 700; }
.info-panel a:hover { color: var(--ink); }

.quick-links {
  background: var(--brand);
  color: #fff;
  border-radius: 16px;
  padding: 28px 32px;
}
.quick-links h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.72;
  margin-bottom: 16px;
}
.quick-links ul { list-style: none; }
.quick-links li { margin-bottom: 10px; }
.quick-links a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.15s;
}
.quick-links a:hover { color: #fff; }

/* —— Legal hub —— */
.legal-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.legal-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.legal-hub-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}
.legal-hub-card h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal-hub-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.legal-hub-card .read-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}
.legal-hub-card:hover .read-link { color: var(--accent-hover); }
.legal-hub-card .hub-audience {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 10px;
}
.legal-hub-card .hub-audience--buyer { color: var(--ready); }
.legal-hub-card .hub-audience--creator { color: var(--accent); }

.entity-strip {
  margin-top: 48px;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.entity-strip strong { color: var(--ink); }

/* —— Legal document —— */
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 96px;
}
.legal-sidebar h2 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}
.legal-sidebar nav { display: flex; flex-direction: column; gap: 4px; }
.legal-sidebar a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.legal-sidebar a:hover {
  background: var(--surface);
  color: var(--ink);
}
.legal-sidebar a.is-active {
  background: var(--surface);
  color: var(--accent);
  border-left-color: var(--accent);
}
.legal-sidebar .sidebar-divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}
.legal-sidebar .sidebar-other {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 0 12px 8px;
}

.legal-prose {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
  max-width: 780px;
}
.legal-prose > p.intro {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.legal-prose section {
  scroll-margin-top: 112px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.legal-prose section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-prose h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}
.legal-prose h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 20px 0 10px;
  color: var(--ink);
}
.legal-prose p,
.legal-prose li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.legal-prose p { margin-bottom: 14px; }
.legal-prose ul,
.legal-prose ol {
  margin: 0 0 14px 1.25em;
}
.legal-prose li { margin-bottom: 8px; }
.legal-prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-prose a:hover { color: var(--accent-hover); }

.callout {
  background: var(--accent-soft);
  border: 1px solid rgba(232, 93, 76, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0;
}
.callout p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.callout strong { color: var(--ink); }

.callout--neutral {
  background: var(--brand-soft);
  border-color: var(--line);
}

.plain-legal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.plain-legal h3 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 12px;
}
.plain-legal p,
.plain-legal li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.plain-legal ul {
  margin: 0;
  padding-left: 1.2em;
}
.plain-legal li { margin-bottom: 8px; }
.plain-legal li:last-child { margin-bottom: 0; }

.demo-note {
  margin-top: 32px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--canvas);
  border: 1px dashed #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.6;
}

/* —— Modern policy page (Privacy-style · not contract card) —— */
.page-main:has(.policy-wrap) > .breadcrumb,
.page-main:has(.policy-wrap) > .page-hero,
.page-main:has(.legal-hub-grid) > .breadcrumb,
.page-main:has(.legal-hub-grid) > .page-hero,
.page-main:has(.legal-hub-grid) > .legal-hub-grid,
.page-main:has(.legal-hub-grid) > .entity-strip,
.page-main:has(.legal-hub-grid) > .demo-note {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.policy-wrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.policy-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.policy-summary-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.policy-summary h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}
.policy-summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.policy-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.policy-summary-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.policy-summary-list a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-summary-list a:hover { color: var(--accent-hover); }

.policy-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.policy-jump a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.policy-jump a:hover {
  color: var(--ink);
  border-color: #cbd5e1;
}

.policy-section {
  scroll-margin-top: 108px;
  margin-bottom: 56px;
}
.policy-section h2 {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--ink);
}
.policy-section .section-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 38em;
}
.policy-section p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-section a:hover { color: var(--accent-hover); }

.audience-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
}
.audience-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.audience-card-icon svg { width: 20px; height: 20px; }
.audience-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}
.audience-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  margin: 8px 0 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 14px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.data-table tr:last-child th,
.data-table tr:last-child td { border-bottom: none; }
.data-table th {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--canvas);
  width: 28%;
}
.data-table td { color: var(--ink-soft); line-height: 1.55; }
.data-table td:first-child {
  font-weight: 700;
  color: var(--ink);
  width: 22%;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}
.use-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.5;
}
.use-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ready-soft);
  color: var(--ready);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.processor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 20px;
}
.processor-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.rights-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 8px;
}
.rights-box p {
  margin-bottom: 20px;
}
.rights-box .btn-coral-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.rights-box .btn-coral-inline:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: #fff;
}

.policy-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.policy-related h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}
.policy-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.policy-related-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.15s, color 0.15s;
}
.policy-related-links a:hover {
  color: var(--ink);
  border-color: #cbd5e1;
}

.policy-full-text {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}
.policy-full-text summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.15s;
}
.policy-full-text summary::-webkit-details-marker { display: none; }
.policy-full-text summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}
.policy-full-text[open] summary {
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}
.policy-full-text[open] summary::after { content: "−"; }
.policy-full-text .policy-full-body {
  padding: 24px 28px 28px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.policy-full-text .policy-full-body h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-soft);
  margin: 20px 0 8px;
}
.policy-full-text .policy-full-body h3:first-child { margin-top: 0; }
.policy-full-text .policy-full-body p { margin-bottom: 12px; }
.policy-full-text .policy-full-body ul {
  margin: 0 0 12px 1.2em;
}
.policy-full-text .policy-full-body li { margin-bottom: 6px; }

/* —— Steps (Returns) —— */
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}
.step-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.step-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 4px;
}
.step-body h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}
.step-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.step-body a {
  color: var(--accent);
  font-weight: 700;
}

.eligibility-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.eligibility-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
}
.eligibility-col h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eligibility-col--yes h3 { color: var(--ready); }
.eligibility-col--no h3 { color: var(--accent); }
.eligibility-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.eligibility-col li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.eligibility-col--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ready);
  font-weight: 800;
  font-size: 13px;
}
.eligibility-col--no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
}
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
  padding: 16px 22px 20px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* —— Payout flow (Affiliate) —— */
.payout-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
  position: relative;
}
.payout-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.payout-step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 16px 20px;
}
.payout-step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--line);
  margin: 0 auto 14px;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--line);
}
.payout-step--active .payout-step-dot {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
.payout-step--ready .payout-step-dot {
  background: var(--ready);
  box-shadow: 0 0 0 2px var(--ready);
}
.payout-step h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}
.payout-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.use-item--no::before {
  content: "✕";
  background: var(--accent-soft);
  color: var(--accent);
}

.mor-banner {
  background: var(--brand);
  color: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 8px;
}
.mor-banner p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.mor-banner strong { color: #fff; }
.mor-banner a {
  color: #fca5a5;
  font-weight: 700;
}

.stat-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  margin-top: 12px;
}
.stat-highlight em {
  font-style: normal;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.policy-audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ready);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ready-soft);
  border: 1px solid rgba(26, 122, 76, 0.15);
  margin-bottom: 12px;
}
.policy-audience-badge--creator {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(232, 93, 76, 0.2);
}

.mor-disclosure {
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.mor-disclosure strong { color: var(--ink-soft); }

/* —— Buyer shell (returns · store-linked policy pages) —— */

.site-nav--buyer .site-nav-inner {
  justify-content: space-between;
}
.site-nav--buyer .brand {
  pointer-events: none;
  cursor: default;
}
.site-nav--buyer .nav-links,
.site-nav--buyer .nav-login,
.site-nav--buyer .nav-signup {
  display: none;
}
.nav-support {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.15s, transform 0.15s var(--ease);
}
.nav-support:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.buyer-footer {
  background: var(--canvas);
  border-top: 1px solid var(--line);
  padding: 40px var(--page-gutter) 32px;
}
.buyer-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.buyer-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px 48px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.buyer-footer-brand {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}
.buyer-footer-brand .footer-brand-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.buyer-footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 28em;
}
.buyer-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 28px;
  flex-shrink: 0;
}
.buyer-footer-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.15s;
}
.buyer-footer-links a:hover { color: var(--ink); }
.buyer-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.buyer-footer-copy {
  font-size: 14px;
  color: var(--muted);
}
.buyer-footer-bottom a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.15s;
}
.buyer-footer-bottom a:hover { color: var(--ink); }

body.buyer-shell .breadcrumb {
  display: none;
}

body.buyer-shell .creator-only {
  display: none !important;
}

body.buyer-shell .copy-marketing {
  display: none !important;
}

body.buyer-shell .policy-related {
  display: none !important;
}

body:not(.buyer-shell) .copy-buyer {
  display: none !important;
}

.shell-buyer[hidden],
.shell-marketing[hidden] {
  display: none !important;
}

footer {
  background: var(--canvas);
  color: var(--ink-soft);
  padding: 72px var(--page-gutter) 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.footer-brand-row .brand-logo,
.footer-brand-row .brand-mark {
  width: 36px;
  height: 36px;
}
.footer-brand-name {
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.footer-tagline {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 36em;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}
.footer-social li { display: flex; line-height: 0; }
.footer-col a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.footer-col a:last-child { margin-bottom: 0; }
.footer-col a:hover { color: var(--ink); }
.footer-col .footer-social a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  overflow: hidden;
  box-sizing: border-box;
  transition: color 0.15s, border-color 0.15s, transform 0.15s var(--ease);
}
.footer-col .footer-social a:hover {
  color: var(--ink);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}
.footer-col .footer-social svg {
  display: block;
  width: 20px;
  height: 20px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
}
.footer-bottom a:hover { color: var(--ink); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .contact-grid,
  .legal-hub-grid,
  .contact-aside { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar {
    position: static;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
  }
  .legal-sidebar nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .legal-sidebar a {
    border-left: none;
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
  }
  .legal-sidebar a.is-active {
    border-color: var(--accent);
    background: var(--accent-soft);
  }
  .legal-sidebar h2,
  .legal-sidebar .sidebar-divider,
  .legal-sidebar .sidebar-other { display: none; }
  .audience-row,
  .use-grid,
  .eligibility-cols,
  .payout-flow { grid-template-columns: 1fr; }
  .payout-flow::before { display: none; }
  .data-table th,
  .data-table td { display: block; width: 100%; }
  .data-table th {
    padding-bottom: 6px;
    border-bottom: none;
    background: transparent;
  }
  .data-table td {
    padding-top: 0;
    padding-bottom: 16px;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
  .buyer-footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .buyer-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page-main { padding: 40px 24px 64px; }
  .site-nav { padding: 16px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}
