/* === Handshapes Landing — Static Site Styles === */

.landing {
  --ink: #1a1a2e;
  --cream: #faf8f4;
  --coral: #ff6b5a;
  --coral-light: #fff0ee;
  --teal: #2ec4b6;
  --teal-dark: #1a9e92;
  --teal-light: #e8faf8;
  --lavender: #7c6cf0;
  --lavender-light: #f0eeff;
  --warm: #f5a623;
  --warm-light: #fff8eb;
  --sage: #6b9080;
  --pink: #f4a0b5;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-soft: 0 4px 30px rgba(26,26,46,0.06);
  --shadow-card: 0 8px 40px rgba(26,26,46,0.08);
  --shadow-hover: 0 12px 50px rgba(26,26,46,0.12);

  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Also apply to legal pages */
.legal-page {
  --ink: #1a1a2e;
  --cream: #faf8f4;
  --coral: #ff6b5a;
  --coral-light: #fff0ee;
  --muted: #595959;
  --border: rgba(26, 26, 46, 0.12);
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Nav */
.landing-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.landing-nav.scrolled {
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(26,26,46,0.06);
}
.landing-nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.nav-logo-img { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink); text-decoration: none;
  opacity: 0.7; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--coral); color: #fff !important; opacity: 1 !important;
  padding: 10px 24px; border-radius: 100px; font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,107,90,0.35); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 6px 0; transition: 0.3s; border-radius: 2px; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: blobFloat 20s ease-in-out infinite; }
.blob-1 { width: 600px; height: 600px; background: var(--teal); top: -200px; right: -100px; }
.blob-2 { width: 500px; height: 500px; background: var(--coral); bottom: -150px; left: -100px; animation-delay: -7s; }
.blob-3 { width: 400px; height: 400px; background: var(--lavender); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: -14s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 {
  font-family: 'Fraunces', serif; font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px;
}
.highlight { color: var(--coral); font-style: italic; position: relative; }
.highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 8px;
  background: var(--coral); opacity: 0.2; border-radius: 4px; transform: rotate(-1deg);
}
.hero-text p { font-size: 1.2rem; line-height: 1.7; color: rgba(26,26,46,0.7); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero-pill {
  display: inline-flex; align-items: center; padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  background: rgba(26,26,46,0.05); color: rgba(26,26,46,0.6); border: 1px solid rgba(26,26,46,0.08);
}
.hero-trust {
  font-size: 0.85rem; color: rgba(26,26,46,0.4); margin-top: 20px; margin-bottom: 0;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,90,0.35); }
.btn-secondary { background: #fff; color: var(--ink); border: 2px solid rgba(26,26,46,0.12); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.btn-lg { font-size: 1.1rem; padding: 18px 40px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-mockup {
  width: 100%; max-width: 520px; aspect-ratio: 4/3; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden;
  position: relative; border: 1px solid rgba(26,26,46,0.06);
}
.mockup-bar { height: 40px; background: #fafafa; border-bottom: 1px solid rgba(26,26,46,0.06); display: flex; align-items: center; gap: 6px; padding: 0 14px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-body { padding: 20px; display: grid; grid-template-columns: 140px 1fr; gap: 16px; height: calc(100% - 40px); }
.mockup-sidebar { display: flex; flex-direction: column; gap: 8px; }
.mockup-nav-item { height: 28px; border-radius: 6px; background: rgba(26,26,46,0.04); }
.mockup-nav-item.active { background: var(--coral-light); position: relative; }
.mockup-nav-item.active::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px; border-radius: 0 3px 3px 0; background: var(--coral);
}
.mockup-content { display: flex; flex-direction: column; gap: 12px; }
.mockup-header { height: 20px; width: 60%; background: rgba(26,26,46,0.08); border-radius: 4px; }
.mockup-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
.mockup-card { border-radius: var(--radius-xs); padding: 12px; display: flex; flex-direction: column; gap: 6px; animation: cardPulse 3s ease-in-out infinite; }
.mockup-card:nth-child(1) { background: var(--teal-light); }
.mockup-card:nth-child(2) { background: var(--coral-light); animation-delay: 0.5s; }
.mockup-card:nth-child(3) { background: var(--lavender-light); animation-delay: 1s; }
.mockup-card:nth-child(4) { background: var(--warm-light); animation-delay: 1.5s; }
.mockup-card-line { height: 8px; border-radius: 4px; background: rgba(26,26,46,0.08); }
.mockup-card-line:first-child { width: 50%; }
.mockup-card-line:last-child { width: 80%; }
@keyframes cardPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }

/* Float badges */
.float-badge {
  position: absolute; background: #fff; border-radius: var(--radius-sm);
  padding: 12px 18px; box-shadow: var(--shadow-card); display: flex; align-items: center;
  gap: 10px; font-size: 0.85rem; font-weight: 600; animation: floatBadge 6s ease-in-out infinite;
  white-space: nowrap; z-index: 2;
}
.badge-icon {
  width: 32px; height: 32px; border-radius: 8px; display: flex;
  align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.badge-icon-teal { background: var(--teal-light); color: var(--teal); }
.badge-icon-lavender { background: var(--lavender-light); color: var(--lavender); }
.badge-icon-coral { background: var(--coral-light); color: var(--coral); }
.float-badge-1 { top: 10%; right: -20px; }
.float-badge-2 { bottom: 20%; left: -30px; animation-delay: -2s; }
.float-badge-3 { bottom: 5%; right: 10%; animation-delay: -4s; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Social proof */
.social-proof { padding: 60px 0; text-align: center; }
.proof-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; color: rgba(26,26,46,0.35); margin-bottom: 32px; }
.proof-stats { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.proof-stat { text-align: center; }
.proof-stat .number { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 800; color: var(--teal-dark); line-height: 1; }
.proof-stat .label { font-size: 0.9rem; color: rgba(26,26,46,0.5); margin-top: 6px; }

/* Sections */
section { padding: 100px 0; }
.section-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--coral); margin-bottom: 12px; }
.section-title {
  font-family: 'Fraunces', serif; font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-subtitle { font-size: 1.15rem; color: rgba(26,26,46,0.6); max-width: 600px; line-height: 1.7; }
.section-subtitle a { color: var(--coral); text-decoration: none; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }

/* Features */
.features { background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--cream); border-radius: var(--radius); padding: 36px 30px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius) var(--radius) 0 0; opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-card:hover::before { opacity: 1; }
.feature-card:nth-child(1)::before { background: var(--teal); }
.feature-card:nth-child(2)::before { background: var(--coral); }
.feature-card:nth-child(3)::before { background: var(--lavender); }
.feature-card:nth-child(4)::before { background: var(--warm); }
.feature-card:nth-child(5)::before { background: var(--sage); }
.feature-card:nth-child(6)::before { background: var(--pink); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-card:nth-child(1) .feature-icon { background: var(--teal-light); color: var(--teal); }
.feature-card:nth-child(2) .feature-icon { background: var(--coral-light); color: var(--coral); }
.feature-card:nth-child(3) .feature-icon { background: var(--lavender-light); color: var(--lavender); }
.feature-card:nth-child(4) .feature-icon { background: var(--warm-light); color: var(--warm); }
.feature-card:nth-child(5) .feature-icon { background: #e8f5ee; color: var(--sage); }
.feature-card:nth-child(6) .feature-icon { background: #fde8ee; color: var(--pink); }
.feature-card h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; color: rgba(26,26,46,0.6); line-height: 1.65; }

/* Audiences */
.audiences { position: relative; overflow: hidden; }
.audiences::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  border-radius: 50%; background: var(--teal); opacity: 0.04;
}
.audience-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.audience-tab {
  padding: 12px 28px; border-radius: 100px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; border: 2px solid rgba(26,26,46,0.1);
  background: #fff; color: var(--ink); transition: all 0.25s;
}
.audience-tab:hover { border-color: var(--coral); color: var(--coral); }
.audience-tab.active { background: var(--coral); border-color: var(--coral); color: #fff; }
.audience-panel { display: none; animation: panelIn 0.4s ease; }
.audience-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.audience-info h3 { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.audience-info p { font-size: 1.05rem; color: rgba(26,26,46,0.6); line-height: 1.7; margin-bottom: 28px; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; line-height: 1.5; }
.benefit-check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--teal-light);
  color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.benefit-check svg { width: 14px; height: 14px; }
.audience-visual {
  background: #fff; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(26,26,46,0.06);
}
.mini-ui { display: flex; flex-direction: column; gap: 12px; }
.mini-ui-row {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border-radius: var(--radius-sm); background: var(--cream); transition: transform 0.2s;
}
.mini-ui-row:hover { transform: translateX(4px); }
.mini-ui-avatar { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; }
.mini-ui-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mini-ui-line { height: 8px; border-radius: 4px; background: rgba(26,26,46,0.07); }
.mini-ui-line:first-child { width: 70%; }
.mini-ui-line:last-child { width: 45%; }
.mini-ui-badge { padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }

/* How It Works */
.how-it-works { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--lavender), var(--warm)); border-radius: 2px;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 800; color: #fff; position: relative; z-index: 1;
}
.step:nth-child(1) .step-number { background: var(--teal); }
.step:nth-child(2) .step-number { background: var(--coral); }
.step:nth-child(3) .step-number { background: var(--lavender); }
.step:nth-child(4) .step-number { background: var(--warm); }
.step h3 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: rgba(26,26,46,0.55); line-height: 1.6; }

/* Compliance */
.compliance { position: relative; overflow: hidden; }
.compliance::after {
  content: ''; position: absolute; bottom: -300px; left: -200px; width: 700px; height: 700px;
  border-radius: 50%; background: var(--lavender); opacity: 0.03;
}
.compliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compliance-card {
  background: #fff; border-radius: var(--radius); padding: 36px 30px; text-align: center;
  box-shadow: var(--shadow-soft); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.compliance-card:hover { transform: translateY(-4px); }
.compliance-shield {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.compliance-card:nth-child(1) .compliance-shield { background: var(--teal-light); color: var(--teal); }
.compliance-card:nth-child(2) .compliance-shield { background: var(--lavender-light); color: var(--lavender); }
.compliance-card:nth-child(3) .compliance-shield { background: var(--coral-light); color: var(--coral); }
.compliance-shield svg { width: 28px; height: 28px; }
.compliance-card h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.compliance-card p { font-size: 0.9rem; color: rgba(26,26,46,0.55); line-height: 1.65; }
.compliance-badges { display: flex; justify-content: center; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.compliance-badge { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(26,26,46,0.5); }

/* Founders */
.founders-section { background: #fff; }
.founders-content { max-width: 800px; margin: 0 auto; }
.founders-body {
  font-size: 1.15rem; color: rgba(26,26,46,0.65); line-height: 1.7;
  text-align: center; margin-bottom: 48px;
}
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.founder-info a { color: inherit; text-decoration: none; }
.founder-info a:hover strong { color: var(--teal); }
.founder-role { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 6px; }
.founder-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 28px;
  border-radius: var(--radius); background: var(--cream); border: 1px solid rgba(26,26,46,0.06);
}
.founder-avatar { width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.founder-info strong {
  display: block; font-family: 'Fraunces', serif; font-size: 1.1rem;
  font-weight: 700; margin-bottom: 6px;
}
.founder-info span { font-size: 0.9rem; color: rgba(26,26,46,0.55); line-height: 1.6; }

/* CTA */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, var(--teal) 0%, transparent 50%), radial-gradient(circle at 80% 20%, var(--coral) 0%, transparent 50%);
  opacity: 0.06;
}
.cta-content { position: relative; z-index: 1; }
.cta-section .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.cta-section .section-subtitle { margin: 0 auto 40px; max-width: 600px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Footer */
.landing-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; opacity: 0.6; max-width: 280px; }
.footer-col h4 { color: #fff; font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; opacity: 0.4;
}

/* === Legal pages === */
.legal-nav {
  border-bottom: 1px solid var(--border);
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
}
.legal-nav-inner { max-width: 900px; margin: 0 auto; padding: 18px 24px; }
.back-link {
  font-size: 0.95rem; font-weight: 500; color: var(--coral);
  text-decoration: none; transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.75; }
.legal-article {
  max-width: 820px; margin: 0 auto; padding: 60px 24px 48px;
  color: var(--muted); font-size: 0.95rem;
}
.legal-article h1 {
  font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700; color: var(--ink); line-height: 1.15;
  letter-spacing: -0.02em; margin: 0;
}
.legal-article h2 {
  font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--ink); margin-top: 2.5rem; scroll-margin-top: 5rem;
  letter-spacing: -0.01em;
}
.legal-article h3 {
  font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-top: 1.75rem; scroll-margin-top: 5rem;
}
.legal-article p { margin: 0.75rem 0; }
.legal-article ul, .legal-article ol { margin: 0.75rem 0; padding-left: 1.5rem; }
.legal-article li { margin: 0.35rem 0; }
.legal-article a {
  color: var(--coral); text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 90, 0.3);
}
.legal-article a:hover { border-bottom-color: var(--coral); }
.legal-article strong { color: var(--ink); }
.legal-article em { color: var(--ink); }
.last-updated { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }
.cross-link { margin-top: 0.75rem; font-size: 0.9rem; padding: 12px 16px; background: rgba(255, 107, 90, 0.08); border-radius: 8px; }
.cross-link a { color: var(--coral); text-decoration: none; border-bottom: 1px solid rgba(255, 107, 90, 0.3); }
.toc { padding-left: 1.5rem; }

/* Legal: CSA numbered lists */
.cp-body ol {
  padding-left: 1.5rem; margin: 1rem 0;
  counter-reset: item; list-style: none;
}
.cp-body ol > li {
  counter-increment: item; position: relative;
  margin: 0.6rem 0; padding-left: 2.9rem;
}
.cp-body ol > li::before {
  content: counters(item, ".") "."; position: absolute; left: 0;
  width: 2.5rem; text-align: right;
  font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums;
}
.cp-body ol[type="a"] { counter-reset: alpha; }
.cp-body ol[type="a"] > li { counter-increment: alpha; }
.cp-body ol[type="a"] > li::before { content: "(" counter(alpha, lower-alpha) ")"; }
.cp-body .cp-h2 {
  display: block; font-family: 'Fraunces', serif; font-size: 1.4rem;
  color: var(--ink); margin: 2rem 0 0.5rem; letter-spacing: -0.01em;
}
.cp-body strong { color: var(--ink); }
.cp-body p { margin: 0.75rem 0; }
.cp-body a {
  color: var(--coral); text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 90, 0.3);
}

/* Legal: Subprocessors table */
.legal-article.wide { max-width: 900px; }
.table-wrap {
  margin: 1rem 0; overflow-x: auto; background: #fff;
  border-radius: 12px; box-shadow: 0 4px 20px rgba(26, 26, 46, 0.04);
}
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.table-wrap thead { background: var(--coral-light); }
.table-wrap th, .table-wrap td {
  padding: 12px 16px; text-align: left;
  border: 1px solid var(--border); color: var(--ink); vertical-align: top;
}
.table-wrap th { font-weight: 700; }

.legal-footer {
  max-width: 900px; margin: 0 auto; padding: 32px 24px 60px;
  border-top: 1px solid var(--border); text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-pills { justify-content: center; }
  .hero-trust { text-align: center; }
  .hero-visual { margin-top: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .audience-panel.active { grid-template-columns: 1fr; }
  .audience-visual { order: -1; }
  .founders-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%;
    left: 0; right: 0; background: var(--cream); padding: 24px;
    box-shadow: var(--shadow-card); border-radius: 0 0 var(--radius) var(--radius);
  }
  .mobile-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .proof-stats { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .float-badge { display: none; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
}
