/* ==========================================================================
   marketing.css — Achiever Board Premium Design System
   Shared across all marketing / content pages.
   ========================================================================== */

/* ── 0. Poppins font ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── 1. Variables ─────────────────────────────────────────────────────────── */
:root {
  --primary:       #5046e5;
  --primary-dark:  #3d35c9;
  --primary-light: #6d68f0;
  --accent:        #8b5cf6;
  --bg:            #f4f6fb;
  --surface:       #ffffff;
  --surface-2:     #f8fafc;
  --text:          #0f172a;
  --text-2:        #334155;
  --muted:         #64748b;
  --border:        #e2e8f0;
  --border-subtle: rgba(15, 23, 42, .05);
  --shadow-sm:     0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:     0 0 0 1px rgba(15,23,42,.05), 0 4px 16px rgba(15,23,42,.08), 0 1px 4px rgba(15,23,42,.04);
  --shadow-lg:     0 0 0 1px rgba(15,23,42,.04), 0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.06);
  --shadow-primary:0 4px 18px rgba(80,70,229,.32);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
}

/* ── 2. Reset + Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(80,70,229,.08) 0%, transparent 65%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── 3. Premium Glass Header ─────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, 4vw);
  gap: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 4px 24px rgba(0,0,0,.05);
  transition: box-shadow .2s;
}

/* ── 4. Logo ─────────────────────────────────────────────────────────────── */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo svg rect { fill: var(--primary); }
.header-logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.header-logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
}
.header-logo-sub {
  font-size: .48rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Back button (privacy / terms) */
.header-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: color .15s, border-color .15s, background .15s;
}
.header-back:hover {
  color: var(--primary);
  border-color: rgba(80,70,229,.3);
  background: rgba(80,70,229,.04);
  text-decoration: none;
}

/* ── 5. Navigation ───────────────────────────────────────────────────────── */
nav.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.header-nav a {
  font-size: .83rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
nav.header-nav a:hover {
  color: var(--text);
  background: rgba(15,23,42,.05);
}
nav.header-nav a.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(80,70,229,.07);
}
/* Open App / CTA nav link */
nav.header-nav a:last-child {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 3px rgba(80,70,229,.3), inset 0 1px 0 rgba(255,255,255,.12);
  transition: background .15s, box-shadow .15s, transform .1s;
}
nav.header-nav a:last-child:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(80,70,229,.4);
  transform: translateY(-1px);
  color: #fff;
}
nav.header-nav a:last-child.active {
  background: var(--primary);
  color: #fff;
}

/* ── 6. Dark Premium Footer ──────────────────────────────────────────────── */
footer {
  background: #0a0f1e;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 32px max(24px, 4vw);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 2px;
  font-size: .8rem;
}
footer span {
  color: rgba(255,255,255,.3);
  margin-right: 4px;
}
footer a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
footer a:hover {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  text-decoration: none;
}

/* ── 7. Typography ───────────────────────────────────────────────────────── */
h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.2;
  color: var(--text);
}
h2 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 14px;
}
h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text);
  margin-bottom: 8px;
}
p {
  color: var(--text-2);
  font-size: .93rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
p:last-child { margin-bottom: 0; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 20px; margin-bottom: 14px; }
li { color: var(--text-2); font-size: .93rem; margin-bottom: 7px; line-height: 1.65; }
strong { color: var(--text); }
code {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: .85em;
  color: var(--text);
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

/* Gradient heading utility */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 8. Cards ────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow-md);
  padding: 40px 44px;
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s;
}
.card:last-child { margin-bottom: 0; }
.hero {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow-md);
  padding: 52px 48px 44px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(80,70,229,.06) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* ── 9. Badge ────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(80,70,229,.07);
  color: var(--primary);
  border: 1px solid rgba(80,70,229,.18);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}

/* ── 10. Lead paragraph ──────────────────────────────────────────────────── */
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 640px;
}

/* ── 11. Buttons ─────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, #6355f5 100%);
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(80,70,229,.35), inset 0 1px 0 rgba(255,255,255,.15);
  transition: opacity .15s, box-shadow .15s, transform .1s;
}
.btn-primary:hover {
  opacity: .9;
  box-shadow: 0 6px 24px rgba(80,70,229,.45);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(80,70,229,.3);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .1s;
}
.btn-outline:hover {
  background: rgba(80,70,229,.06);
  border-color: var(--primary);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── 12. Tables ──────────────────────────────────────────────────────────── */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  margin: 24px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
thead { background: #f1f5f9; }
thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--border);
}
tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--text-2);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: #f8fafc; }

/* ── 13. Page wrapper ────────────────────────────────────────────────────── */
.page-wrap {
  max-width: 880px;
  margin: 52px auto 96px;
  padding: 0 24px;
}

/* ── 14. Docs sidebar layout ─────────────────────────────────────────────── */
.layout {
  display: grid;
  grid-template-columns: 224px 1fr;
  gap: 24px;
  max-width: 1060px;
  margin: 44px auto 96px;
  padding: 0 24px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 18px 14px;
  overflow: hidden;
}
.sidebar-title {
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 8px;
  padding: 0 8px;
}
.sidebar a {
  display: block;
  font-size: .83rem;
  color: var(--text-2);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
  margin-bottom: 2px;
  line-height: 1.4;
}
.sidebar a:hover {
  color: var(--primary);
  background: rgba(80,70,229,.06);
  text-decoration: none;
}
.sidebar a.active {
  color: var(--primary);
  background: rgba(80,70,229,.08);
  border-left-color: var(--primary);
  font-weight: 600;
}
.sidebar-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.content {
  min-width: 0;
}
.content .card {
  margin-bottom: 20px;
}
.content .card:last-child {
  margin-bottom: 0;
}

/* Doc content heading styles */
.content h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.content h2:first-of-type,
.content .card > h2:first-child {
  margin-top: 0;
  border-top: none;
}
.content h3 {
  font-size: 1rem;
  margin: 22px 0 8px;
}

/* ── 15. Numbered step list ──────────────────────────────────────────────── */
.step-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.step-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--text-2);
}
.step-list li:last-child { margin-bottom: 0; }
.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  margin-top: 1px;
}
.step-body {
  flex: 1;
  min-width: 0;
}
.step-body strong {
  display: block;
  color: var(--text);
  font-size: .93rem;
  margin-bottom: 4px;
}
.step-body p { margin: 0; }

/* ── 16. Tip / callout box ───────────────────────────────────────────────── */
.tip-box {
  background: rgba(80,70,229,.04);
  border: 1px solid rgba(80,70,229,.15);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.65;
}
.tip-box strong { color: var(--primary); }

/* ── 17. Kanban column chips ─────────────────────────────────────────────── */
.columns-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}
.col-chip {
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.col-todo   { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.col-doing  { background: #dbeafe; color: #2563eb; border: 1px solid #bfdbfe; }
.col-review { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.col-done   { background: #d1fae5; color: #059669; border: 1px solid #a7f3d0; }

/* ── 18. Feature grid ────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}
.feature-item {
  background: var(--surface-2);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.feature-item:hover {
  border-color: rgba(80,70,229,.2);
  box-shadow: 0 4px 16px rgba(80,70,229,.07);
}
.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.feature-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── 19. Priority chips ──────────────────────────────────────────────────── */
.priority-row {
  display: flex;
  gap: 8px;
  margin: 14px 0;
  flex-wrap: wrap;
}
.priority-chip {
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.p-high   { background: #fee2e2; color: #dc2626; border: 1px solid #fca5a5; }
.p-medium { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.p-low    { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* Team-only badge */
.team-badge {
  display: inline-flex;
  align-items: center;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(80,70,229,.09);
  color: var(--primary);
  border: 1px solid rgba(80,70,229,.2);
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 6px;
}

/* ── 20. FAQ list ────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child  { border-bottom: none; padding-bottom: 0; }
.faq-q {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  font-size: .95rem;
  line-height: 1.5;
}
.faq-q-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  font-size: .73rem;
  font-weight: 700;
}
.faq-item p { margin-bottom: 8px; }
.faq-item p:last-child { margin-bottom: 0; }

/* ── 21. Contact box ─────────────────────────────────────────────────────── */
.contact-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-top: 16px;
}
.contact-box p { margin: 0; font-size: .93rem; }

/* ── 22. Legal pages ─────────────────────────────────────────────────────── */
.legal-wrap {
  max-width: 780px;
  margin: 52px auto 96px;
  padding: 0 24px;
}
.legal-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 52px 56px;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(80,70,229,.07);
  color: var(--primary);
  border: 1px solid rgba(80,70,229,.18);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.legal-date {
  font-size: .83rem;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-card h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.legal-card h2 {
  font-size: 1.1rem;
  margin: 32px 0 10px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.legal-card h2:first-of-type { border-top: none; padding-top: 0; }
.legal-card h3 {
  font-size: .95rem;
  margin: 20px 0 8px;
}
.legal-card strong { color: var(--text); }
.legal-contact-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-top: 12px;
}
.legal-contact-box p { margin: 0; font-size: .93rem; }
.legal-contact-box p + p { margin-top: 8px; }

/* ── 23. Premium CTA Box ─────────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, #4a40e0 0%, #7c3aed 100%);
  border-radius: var(--radius-xl);
  padding: 56px 52px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(80,70,229,.3), 0 4px 16px rgba(80,70,229,.2);
  margin-bottom: 0;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.cta-box h2 {
  color: #fff;
  font-size: 1.9rem;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  border: none;
}
.cta-box p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transition: opacity .15s, transform .1s, box-shadow .15s;
  border: none;
  cursor: pointer;
}
.btn-white:hover {
  opacity: .95;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  text-decoration: none;
  color: var(--primary);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.35);
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background .15s, border-color .15s, transform .1s;
  cursor: pointer;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

/* ── 24. Icon Box (feature / value items) ────────────────────────────────── */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-box-indigo { background: #ede9fe; color: #6d28d9; }
.icon-box-amber  { background: #fef3c7; color: #d97706; }
.icon-box-green  { background: #d1fae5; color: #059669; }
.icon-box-blue   { background: #dbeafe; color: #2563eb; }
.icon-box-rose   { background: #ffe4e6; color: #e11d48; }
.icon-box-sky    { background: #e0f2fe; color: #0284c7; }

/* ── 25. Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: none; /* hidden on small screens — TOC in header area */
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  header { height: 56px; padding: 0 16px; }
  nav.header-nav { display: none; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.2rem; }
  .page-wrap { margin: 32px auto 64px; }
  .layout { margin: 28px auto 64px; padding: 0 16px; }
  .card { padding: 28px 24px; }
  .hero { padding: 36px 28px 30px; }
  .legal-card { padding: 36px 28px; }
  .cta-box { padding: 36px 24px; }
  .cta-box h2 { font-size: 1.5rem; }
}
