/* ================================================================
   SuperSearch Static CSS
   Pixel-match reproduction of React components
   ================================================================ */

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  --ss-navy:       #0b1c2c;
  --ss-steel:      #2e3f50;
  --ss-off-white:  #f7f7f7;
  --ss-white:      #ffffff;
  --ss-teal:       #1a7a6e;
  --ss-teal-hover: #176a60;
  --ss-teal-light: #e8f5f3;
  --ss-muted-body: #46576a;
  --ss-muted-sub:  #5d6f80;
  --ss-divider:    #e6e6e6;
  --ss-white-82:   rgba(255,255,255,0.82);
  --ss-white-60:   rgba(255,255,255,0.60);
  --ss-teal-dark:  #1f9384;
  --ss-step-num:   #b0cdc9;
  --ss-dark-card-bg: rgba(255,255,255,0.04);
  --ss-dark-card-body: rgba(255,255,255,0.72);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ss-navy);
  background: var(--ss-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button { cursor: pointer; }
a { text-decoration: none; }

/* ── Layout ─────────────────────────────────────────────────────── */
.ss-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.ss-faq-inner { max-width: 800px; }

/* ── Section padding ────────────────────────────────────────────── */
.ss-section {
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
}
.ss-section--white  { background: var(--ss-white); }
.ss-section--offwhite { background: var(--ss-off-white); }
.ss-section--navy   { background: var(--ss-navy); }

/* ── Scroll anchors ─────────────────────────────────────────────── */
.ss-scroll-anchor { scroll-margin-top: 80px; }

/* ── Dividers ───────────────────────────────────────────────────── */
.ss-divider {
  height: 1px;
  background: var(--ss-divider);
  border: none;
  margin: 0;
}
.ss-divider--dark { background: rgba(255,255,255,0.06); }

/* ── Eyebrow ────────────────────────────────────────────────────── */
.ss-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ss-teal);
  margin: 0 0 16px 0;
}
.ss-eyebrow--dark {
  color: var(--ss-white-60);
}

/* ── Section Heading ────────────────────────────────────────────── */
.ss-section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--ss-navy);
  max-width: 680px;
  margin: 0 0 clamp(32px, 4vw, 48px) 0;
}
.ss-section-heading--light { color: var(--ss-white-82); }

/* ── Body text ──────────────────────────────────────────────────── */
.ss-body {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--ss-muted-body);
  margin: 0 0 20px 0;
  max-width: 540px;
}

/* ── Rule ───────────────────────────────────────────────────────── */
.ss-rule {
  width: 48px;
  height: 2px;
  background: var(--ss-teal);
  margin-bottom: clamp(20px, 2vw, 28px);
}

/* ════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════ */
.ss-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ss-navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ss-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.ss-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ss-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--ss-teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  color: var(--ss-white-82);
}
.ss-logo-tld { color: var(--ss-teal-dark); }

.ss-desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.ss-nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ss-white-60);
  background: none;
  border: none;
  padding: 0;
  transition: color 0.15s;
}
.ss-nav-link:hover { color: var(--ss-white-82); }

.ss-cta-sm {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ss-white);
  background: var(--ss-teal);
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  transition: background 0.15s;
}
.ss-cta-sm:hover { background: var(--ss-teal-hover); }

/* Hamburger */
.ss-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ss-white-82);
  padding: 4px;
}

/* Mobile menu */
.ss-mobile-menu {
  background: var(--ss-navy);
  padding: 0 clamp(20px, 4vw, 48px) 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ss-mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ss-white-60);
  background: none;
  border: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ss-mobile-cta-wrap { padding-top: 16px; }
.ss-cta-mobile {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ss-white);
  background: var(--ss-teal);
  border: none;
  border-radius: 8px;
  padding: 14px 0;
}

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

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.ss-hero {
  background: var(--ss-navy);
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(72px, 10vw, 120px);
}
.ss-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--ss-white);
  max-width: 680px;
  margin: 0 0 clamp(18px, 2vw, 28px) 0;
}
.ss-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
  color: var(--ss-white-60);
  max-width: 580px;
  margin: 0 0 clamp(28px, 3vw, 40px) 0;
}

/* Trust signals */
.ss-trust-row {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.ss-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--ss-white-60);
}
.ss-check { flex-shrink: 0; }

/* CTA row */
.ss-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.ss-cta-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ss-white);
  background: var(--ss-teal);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  transition: background 0.15s, transform 0.1s;
}
.ss-cta-lg:hover { background: var(--ss-teal-hover); transform: translateY(-1px); }
.ss-hero-secondary {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 15px);
  color: var(--ss-white-60);
  background: none;
  border: none;
  padding: 12px 4px;
  transition: color 0.15s;
}
.ss-hero-secondary:hover { color: var(--ss-white-82); }

/* Partner badge */
.ss-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 10px 18px;
}
.ss-partner-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ss-white-60);
}
.ss-partner-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.12);
}
.ss-partner-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ss-teal-dark);
  transition: color 0.15s;
}
.ss-partner-name:hover { color: var(--ss-white-82); }

/* ════════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════════ */
.ss-stats-section {
  background: var(--ss-off-white);
  border-top: 1px solid var(--ss-divider);
  border-bottom: 1px solid var(--ss-divider);
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(48px, 5vw, 72px);
}
.ss-stats-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ss-teal);
  text-align: center;
  margin: 0 0 clamp(32px, 3vw, 48px) 0;
}
.ss-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  text-align: center;
}
.ss-stat-value {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1;
  letter-spacing: -1px;
  color: var(--ss-navy);
  margin: 0 0 12px 0;
}
.ss-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.5;
  color: var(--ss-steel);
  margin: 0;
  font-weight: 400;
}
.ss-stats-source {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #8a96a3;
  text-align: center;
  margin: clamp(24px, 3vw, 40px) 0 0 0;
}

@media (max-width: 640px) {
  .ss-stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ════════════════════════════════════════════════════════════════
   WHAT SUPERSEARCH DOES (two-col)
   ════════════════════════════════════════════════════════════════ */
.ss-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.ss-card {
  background: var(--ss-white);
  border: 1px solid var(--ss-divider);
  border-radius: 10px;
  padding: clamp(28px, 3vw, 40px);
}
.ss-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ss-teal);
  margin: 0 0 24px 0;
}
.ss-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ss-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ss-navy);
  font-weight: 500;
}

@media (max-width: 768px) {
  .ss-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ════════════════════════════════════════════════════════════════
   HOW IT WORKS (4-step grid)
   ════════════════════════════════════════════════════════════════ */
.ss-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(32px, 3vw, 48px);
}
.ss-step {
  border-top: 2px solid var(--ss-teal);
  padding-top: 24px;
}
.ss-step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -1px;
  margin: 0 0 16px 0;
  line-height: 1;
  color: var(--ss-step-num);
}
.ss-step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 19px);
  color: var(--ss-navy);
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.ss-step-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ss-muted-body);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   WHAT MAY BE FOUND (dark cards)
   ════════════════════════════════════════════════════════════════ */
.ss-dark-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(20px, 2vw, 28px);
}
.ss-dark-card {
  background: var(--ss-dark-card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: clamp(24px, 2.5vw, 32px);
  border-top: 2px solid var(--ss-teal);
}
.ss-dark-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ss-white-82);
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.ss-dark-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ss-dark-card-body);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   WHY USE SUPERSEARCH (3 cards with left border)
   ════════════════════════════════════════════════════════════════ */
.ss-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(24px, 2.5vw, 32px);
}
.ss-why-card {
  background: var(--ss-white);
  border: 1px solid var(--ss-divider);
  border-left: 3px solid var(--ss-teal);
  border-radius: 10px;
  padding: clamp(24px, 2.5vw, 32px);
}
.ss-why-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ss-navy);
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.ss-why-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ss-muted-body);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   TRUST / POSITIONING (2-col)
   ════════════════════════════════════════════════════════════════ */
.ss-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: start;
}
.ss-trust-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: var(--ss-navy);
  margin: 0 0 20px 0;
}
.ss-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ss-trust-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ss-navy);
}
.ss-callout {
  display: flex;
  gap: 14px;
  background: var(--ss-teal-light);
  border-radius: 8px;
  padding: 20px;
}
.ss-callout-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ss-muted-body);
  margin: 0;
}

@media (max-width: 768px) {
  .ss-trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════ */
.ss-faq-list {
  border-top: 1px solid var(--ss-divider);
}
.ss-faq-item {
  border-bottom: 1px solid var(--ss-divider);
}
.ss-faq-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ss-navy);
  line-height: 1.4;
}
.ss-faq-chevron {
  flex-shrink: 0;
  transition: transform 220ms;
}
.ss-faq-item.is-open .ss-faq-chevron {
  transform: rotate(180deg);
}
.ss-faq-answer {
  display: none;
  padding-bottom: 22px;
}
.ss-faq-item.is-open .ss-faq-answer {
  display: block;
}
.ss-faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.75;
  color: var(--ss-muted-body);
  margin: 0;
  max-width: 680px;
}

/* ════════════════════════════════════════════════════════════════
   BOTTOM CTA
   ════════════════════════════════════════════════════════════════ */
.ss-bottom-cta-section {
  background: var(--ss-navy);
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(72px, 8vw, 120px);
}
.ss-bottom-cta-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ss-white);
  margin: 0 0 20px 0;
}
.ss-bottom-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--ss-white-60);
  margin: 0 0 clamp(28px, 3vw, 40px) 0;
}
.ss-bottom-cta-btn-wrap { margin-bottom: 20px; }
.ss-bottom-cta-trust {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.8px;
  color: var(--ss-white-60);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.ss-footer {
  background: #070f18;
  padding: 40px 0;
}
.ss-footer-entity {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ss-white-60);
  margin: 0 0 8px 0;
  max-width: 680px;
}
.ss-footer-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ss-white-60);
  margin: 0 0 20px 0;
}
.ss-footer-hr {
  height: 1px;
  background: rgba(255,255,255,0.08);
  border: none;
  margin: 0 0 20px 0;
}
.ss-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.ss-footer-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ss-white-82);
}
.ss-footer-tld { color: var(--ss-teal-dark); }
.ss-footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.ss-footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ss-white-60);
  transition: color 0.15s;
}
.ss-footer-link:hover { color: var(--ss-white-82); }
.ss-footer-email {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ss-white-60);
}
.ss-footer-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.ss-footer-meta-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ss-white-60);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════════════════ */
.ss-modal-backdrop {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 200;
  background: rgba(11,28,44,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ss-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 201;
  background: var(--ss-white);
  border-radius: 12px;
  padding: clamp(28px, 3vw, 40px);
  width: min(440px, calc(100% - 40px));
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.ss-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #8a96a3;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s;
}
.ss-modal-close:hover { color: var(--ss-navy); }
.ss-modal-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--ss-navy);
  margin: 0 0 12px 0;
}
.ss-modal-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ss-muted-body);
  margin: 0 0 24px 0;
}
.ss-modal-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--ss-divider);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s;
  color: var(--ss-navy);
  background: var(--ss-white);
}
.ss-modal-input:focus { border-color: var(--ss-teal); }
.ss-modal-input::placeholder { color: #a0aab4; }
.ss-modal-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ss-white);
  background: var(--ss-teal);
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  transition: background 0.15s, opacity 0.15s;
  margin-bottom: 12px;
}
.ss-modal-submit:hover:not(:disabled) { background: var(--ss-teal-hover); }
.ss-modal-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.ss-modal-helper {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8a96a3;
  text-align: center;
  margin: 0;
}
.ss-modal-check-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ss-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ss-modal-resend {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ss-teal);
  background: none;
  border: none;
  padding: 8px 0;
  margin-top: 12px;
  transition: color 0.15s;
}
.ss-modal-resend:hover { color: var(--ss-teal-hover); }

/* ════════════════════════════════════════════════════════════════
   LOADING OVERLAY
   ════════════════════════════════════════════════════════════════ */
.ss-loading-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 150;
  background: rgba(11,28,44,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-loading-box {
  background: var(--ss-white);
  border-radius: 8px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ss-navy);
}

/* ════════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════════ */
@keyframes ss-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Fade-in on scroll */
.ss-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.ss-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════
   LEGAL PAGES (privacy, terms, collection-notice)
   ════════════════════════════════════════════════════════════════ */
.ss-legal-body {
  background: var(--ss-off-white);
  min-height: 100vh;
}

/* ── Sticky header ─────────────────────────────────────────────── */
.ss-legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,247,247,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ss-divider);
}
.ss-legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 1120px;
}
.ss-legal-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ss-navy);
}
.ss-legal-back {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ss-teal);
}
.ss-legal-back:hover { opacity: 0.8; }

/* ── Hero section ──────────────────────────────────────────────── */
.ss-legal-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--ss-divider);
}
.ss-legal-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.ss-legal-tag {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ss-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px 0;
}
.ss-legal-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  color: var(--ss-navy);
  margin: 0;
}
.ss-legal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ss-muted-body);
  margin: 12px 0 0 0;
}
.ss-legal-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8c9baa;
  margin: 8px 0 0 0;
}

/* ── Article body ──────────────────────────────────────────────── */
.ss-legal-article {
  padding: 40px 0 80px;
}
.ss-legal-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ss-navy);
  margin: 0 0 14px 0;
}
.ss-legal-h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ss-navy);
  margin: 0 0 8px 0;
}
.ss-legal-body-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ss-muted-body);
  margin: 0 0 12px 0;
}
.ss-legal-gap {
  margin-bottom: 32px;
}
.ss-legal-link {
  color: var(--ss-teal);
  transition: opacity 0.15s;
}
.ss-legal-link:hover { opacity: 0.8; }
.ss-legal-list {
  padding-left: 16px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ss-legal-list-item {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ss-muted-body);
  margin: 0;
  padding-left: 8px;
}
