/* ─── FINANCIALCHEQ DESIGN SYSTEM ─── */

:root {
  /* Brand colors */
  --sand:       #C4BFA8;
  --sage:       #6B8F71;
  --mint:       #8DBF8F;
  --pale:       #B8DDB9;
  --mist:       #E8F0E8;
  --charcoal:   #2C3229;
  --forest:     #3D5C40;
  --warm-white: #F5F2EA;
  --border:     #C8C9B4;
  --muted:      #7A7A6A;
  --dark-surf:  #1E2B1F;
  --darker:     #1A211A;

  /* Typography */
  --display: 'Playfair Display', Georgia, serif;
  --body:    'Instrument Sans', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-28: 7rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w: 1160px;
  --col:   680px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44,50,41,0.08);
  --shadow-md: 0 4px 16px rgba(44,50,41,0.10);
  --shadow-lg: 0 8px 32px rgba(44,50,41,0.14);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  background: var(--warm-white);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TYPOGRAPHY UTILITIES ─── */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
.h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); }
.h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.h4 { font-size: 1.25rem; }

.label {
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.body-xl { font-size: 1.125rem; line-height: 1.7; }
.body-lg { font-size: 1.0625rem; line-height: 1.7; }
.body-md { font-size: 0.9375rem; line-height: 1.65; }
.body-sm { font-size: 0.875rem;  line-height: 1.65; }
.body-xs { font-size: 0.8125rem; line-height: 1.6; }
.caption  { font-size: 0.75rem;  line-height: 1.5; }

/* ─── LAYOUT ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.col { max-width: var(--col); margin: 0 auto; }

.section {
  padding: var(--sp-28) var(--sp-8);
}

.section-sm {
  padding: var(--sp-20) var(--sp-8);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal);
  height: 64px;
  display: flex;
  align-items: center;
  transition: border-bottom 0.2s;
}

.nav--scrolled {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-mark {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--mint);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.nav-wordmark {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-wordmark span { color: var(--mint); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { color: rgba(255,255,255,0.9); }

.nav-link.active {
  color: var(--pale);
}

.nav-link--employee {
  color: var(--mint) !important;
  border: 1px solid rgba(141,191,143,0.3);
  border-radius: var(--r-sm);
  padding: 7px 14px;
  transition: background 0.2s, border-color 0.2s !important;
}

.nav-link--employee:hover {
  background: rgba(141,191,143,0.08);
  border-color: rgba(141,191,143,0.6);
  color: var(--mint) !important;
}

/* ─── RIPPLE BUTTON ─── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--mint);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--pale); }

.btn-sage {
  background: var(--sage);
  color: #fff;
}
.btn-sage:hover { background: var(--forest); }

.btn-dark {
  background: var(--charcoal);
  color: var(--mint);
}
.btn-dark:hover { background: var(--dark-surf); }

.btn-ghost-dark {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost-dark:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost-light {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost-light:hover {
  color: var(--charcoal);
  border-color: var(--sage);
}

.btn-outline-mint {
  background: transparent;
  color: var(--mint);
  border: 1px solid rgba(141,191,143,0.35);
}
.btn-outline-mint:hover {
  background: rgba(141,191,143,0.08);
}

.btn-sm { padding: 9px 18px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  animation: ripple-anim 0.55s ease-out forwards;
}
.btn-primary .ripple   { background: rgba(44,50,41,0.18); }
.btn-sage .ripple      { background: rgba(255,255,255,0.2); }
.btn-dark .ripple      { background: rgba(141,191,143,0.2); }
.btn-ghost-dark .ripple { background: rgba(255,255,255,0.12); }
.btn-ghost-light .ripple { background: rgba(107,143,113,0.12); }
.btn-outline-mint .ripple { background: rgba(141,191,143,0.15); }

@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ─── NAV CTA (special btn) ─── */
.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--mint);
  padding: 9px 20px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--pale); }

/* ─── CURVE DIVIDERS ─── */
.curve-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.curve-divider svg { display: block; width: 100%; }

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.section-eyebrow {
  color: var(--sage);
  display: block;
  margin-bottom: var(--sp-4);
}

.section-eyebrow--light {
  color: var(--pale);
}

.section-title { color: var(--charcoal); }
.section-title--light { color: #fff; }

.section-body {
  color: var(--muted);
  margin-top: var(--sp-4);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-body--light {
  color: rgba(255,255,255,0.45);
}

/* ─── CARDS ─── */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.card-dark {
  background: var(--dark-surf);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

/* ─── FEATURE CARD (no numbers) ─── */
.feat-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
  transition: border-color 0.22s, box-shadow 0.22s;
}

.feat-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}

.feat-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--mist);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-6);
}

.feat-card-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
}

.feat-card-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── PROOF CARD ─── */
.proof-card {
  background: var(--mist);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.proof-quote {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}

.proof-author {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sage);
}

.proof-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── HOW CARD ─── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}

.how-card {
  background: var(--warm-white);
  padding: var(--sp-10) var(--sp-8);
  transition: background 0.2s;
}

.how-card:hover { background: #F0EFE6; }

.how-step-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-4);
  display: block;
}

.how-card-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
  line-height: 1.4;
}

.how-card-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background: var(--dark-surf);
  border-color: var(--sage);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(141,191,143,0.12);
  border: 1px solid rgba(141,191,143,0.25);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  width: fit-content;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.pricing-amount {
  font-family: var(--display);
  font-size: 3.75rem;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.pricing-custom {
  font-family: var(--display);
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.pricing-unit {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--sp-8);
  line-height: 1.5;
}

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: var(--sp-6);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: var(--sp-8);
}

.pricing-feature {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.pricing-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--sage);
  padding: var(--sp-12) var(--sp-8);
}

.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  text-align: center;
  padding: var(--sp-4) var(--sp-8);
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-n {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: var(--sp-2);
}

.stat-l {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ─── FAQ ─── */
.faq-list { max-width: 640px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  user-select: none;
}

.faq-icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}

.faq-item.open .faq-icon { border-color: var(--sage); }

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item.open .faq-icon::after { transform: rotate(90deg) scaleY(0); opacity: 0; }
.faq-item.open .faq-icon::before { background: var(--sage); }

.faq-a {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
}

.faq-item.open .faq-a { max-height: 320px; padding-bottom: var(--sp-6); }

/* ─── DIALOG / MODAL ─── */
.dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44,50,41,0.6);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: grid;
  place-items: center;
  padding: var(--sp-8);
}

.dialog {
  background: var(--warm-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.dialog-title {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
}

.dialog-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--sp-8);
}

.dialog-actions {
  display: flex;
  gap: var(--sp-3);
  justify-content: flex-end;
}

.dialog-close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mist);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 1.1rem;
  transition: background 0.2s;
}

.dialog-close:hover { background: var(--border); }

/* ─── HERO ─── */
.hero {
  background: var(--charcoal);
  padding-top: calc(64px + var(--sp-28));
  padding-bottom: 0;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8) var(--sp-20);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-24);
  align-items: center;
}

.hero-eyebrow { color: var(--sage); margin-bottom: var(--sp-6); }

.hero-title { color: #fff; margin-bottom: var(--sp-6); }
.hero-title em { font-style: italic; color: var(--mint); }

.hero-body {
  color: rgba(255,255,255,0.48);
  max-width: 480px;
  margin-bottom: var(--sp-10);
}

.hero-actions { display: flex; gap: var(--sp-4); align-items: center; flex-wrap: wrap; }

/* Report card */
.report-card {
  background: var(--dark-surf);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}

.report-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.score-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--mint);
  background: rgba(141,191,143,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.score-n {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--mint);
  line-height: 1;
}

.score-d { font-size: 0.625rem; color: var(--sage); letter-spacing: 0.05em; }

.report-card-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.4;
}

.report-card-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.step-list { display: flex; flex-direction: column; }

.step-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.step-row:last-child { border-bottom: none; }

.step-pip {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1;
}

.pip-done   { background: rgba(141,191,143,0.14); color: var(--mint); }
.pip-active { background: rgba(196,191,168,0.14); color: var(--sand); }
.pip-idle   { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.18); }

.step-text { font-size: 0.8125rem; line-height: 1.4; }
.step-text.done   { color: rgba(184,221,185,0.8); }
.step-text.active { color: rgba(255,255,255,0.55); }
.step-text.idle   { color: rgba(255,255,255,0.2); }

/* ─── FORM ELEMENTS ─── */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(122,122,106,0.55); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,143,113,0.12);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-hint {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── EMAIL INPUT STRIP ─── */
.email-strip {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}

.email-input-dark {
  font-family: var(--body);
  font-size: 0.9375rem;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 13px 18px;
  width: 260px;
  outline: none;
  transition: border-color 0.2s;
}

.email-input-dark::placeholder { color: rgba(255,255,255,0.22); }
.email-input-dark:focus { border-color: var(--sage); }

/* ─── FOOTER ─── */
footer {
  background: var(--darker);
  padding: var(--sp-16) var(--sp-8) var(--sp-8);
}

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-16);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--sp-8);
}

.footer-brand { max-width: 260px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: var(--sp-4);
}

.footer-mark {
  width: 26px; height: 26px;
  border-radius: 5px;
  background: var(--forest);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 500;
  color: var(--mint);
}

.footer-wordmark { font-size: 14px; color: rgba(255,255,255,0.45); }
.footer-wordmark span { color: var(--mint); }
.footer-tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.22); line-height: 1.6; }

.footer-links { display: flex; gap: var(--sp-16); flex-wrap: wrap; }

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: var(--sp-4);
  display: block;
}

.footer-link {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  margin-bottom: var(--sp-3);
  transition: color 0.2s;
}

.footer-link:hover { color: rgba(255,255,255,0.7); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.18); }
.footer-disc {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.14);
  max-width: 500px;
  line-height: 1.65;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--charcoal);
  padding: calc(64px + var(--sp-20)) var(--sp-8) var(--sp-20);
  text-align: center;
}

.page-hero-eyebrow { color: var(--sage); margin-bottom: var(--sp-4); }
.page-hero-title { color: #fff; }
.page-hero-title em { font-style: italic; color: var(--mint); }
.page-hero-body {
  color: rgba(255,255,255,0.45);
  max-width: 540px;
  margin: var(--sp-5) auto 0;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ─── CURVE OVERLAY ─── */
#curve-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
}

#curve-overlay svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ─── TEAM / ABOUT ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.team-card {
  background: var(--mist);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pale);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: var(--sp-5);
}

.team-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.team-role { font-size: 0.8125rem; color: var(--sage); margin-bottom: var(--sp-4); }
.team-bio  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-2);
  display: block;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: var(--charcoal);
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: var(--sp-10) 0 var(--sp-4);
}

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

.legal-content p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.legal-content ul {
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}

.legal-content li {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}

/* ─── UTILITY ─── */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-sage    { color: var(--sage); }
.text-mint    { color: var(--mint); }
.text-muted   { color: var(--muted); }
.text-white   { color: #fff; }
.text-charcoal { color: var(--charcoal); }

.mt-auto  { margin-top: auto; }
.mt-4     { margin-top: var(--sp-4); }
.mt-6     { margin-top: var(--sp-6); }
.mt-8     { margin-top: var(--sp-8); }
.mt-12    { margin-top: var(--sp-12); }
.mb-4     { margin-bottom: var(--sp-4); }
.mb-6     { margin-bottom: var(--sp-6); }
.mb-8     { margin-bottom: var(--sp-8); }

.bg-charcoal   { background: var(--charcoal); }
.bg-mist       { background: var(--mist); }
.bg-warm-white { background: var(--warm-white); }
.bg-dark       { background: var(--darker); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero-card-wrap { display: none; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
}

@media (max-width: 768px) {
  .section { padding: var(--sp-20) var(--sp-6); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .grid-3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: var(--sp-6); }
  .stat-item:last-child { border-bottom: none; }
  .footer-top { flex-direction: column; gap: var(--sp-8); }
  .footer-links { gap: var(--sp-8); }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .how-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-inner { padding: 0 var(--sp-6) var(--sp-16); }
  .container { padding: 0 var(--sp-6); }
  .section { padding: var(--sp-16) var(--sp-6); }
  .email-strip { flex-direction: column; align-items: center; }
  .email-input-dark { width: 100%; max-width: 320px; }
}
