/*
 * VENDORED brand stylesheet — canonical source: sailient-website/assets/styles.css
 * Keep this byte-identical to the marketing site. App-specific component styles
 * for the portal live in portal.css, not here. If you change the brand system,
 * edit it in sailient-website and re-copy this file.
 */
/* ===== DESIGN TOKENS ===== */
:root {
  --navy-deep: #102040;
  --navy: #1F3A6B;
  --blue: #2E63C6;
  --blue-bright: #3B8BE8;
  --gold: #A07D18;
  --gold-light: #C9A24E;
  --gold-faint: #F4ECD8;
  --ink: #1A1A2E;
  --ink-soft: #3A3F55;
  --grey: #5A6378;
  --hairline: #D9DEE8;
  --rule: #E5E9F2;
  --bg: #FAFBFD;
  --bg-tint: #F1F4FA;
  --bg-navy: #0E1A33;
  --pain-bg: #FFF7F6;
  --pain-label: #B23A2E;
  --fix-bg: #F4F9F5;
  --fix-label: #1C7C4A;

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, 'Liberation Sans', system-ui, sans-serif;
  --font-serif: ui-serif, Cambria, 'Times New Roman', serif;

  --shell: 1180px;
  --prose: 720px;
  --section-py: 72px;
  --gutter: 24px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--blue-bright); }
p + p { margin-top: 1em; }
ul, ol { padding-left: 1.25em; }
strong { font-weight: 600; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ROLES ===== */
.display {
  font-size: clamp(2.25rem, 4.6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.section-title {
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.018em;
}
h1 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.012em;
}
h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.28;
}
h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.4; }
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
}
.accent { color: var(--blue); }
.accent-gold { color: var(--gold); }
.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 680px;
}
.serif { font-family: var(--font-serif); }

/* ===== LAYOUT ===== */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }
.prose-shell { max-width: var(--prose); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-py) 0; }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--bg-navy); color: #fff; }
.table-wrapper { overflow-x: auto; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,251,253,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 36px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.primary-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.primary-nav a:hover { color: var(--navy); background: var(--bg-tint); }
.primary-nav li.active > a {
  color: var(--navy);
  background: rgba(46,99,198,0.07);
  font-weight: 600;
}
.primary-nav .nav-cta a {
  background: var(--navy-deep);
  color: #fff !important;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 6px;
  margin-left: 4px;
}
.primary-nav .nav-cta a:hover { background: var(--navy) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-toggle:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 120% 80% at 65% 30%, rgba(59,139,232,0.1) 0%, transparent 60%),
    linear-gradient(to bottom, var(--bg) 0%, var(--bg-tint) 100%);
  padding: 80px 0 72px;
}
.hero--compact { padding: 56px 0 48px; }
.hero--vip {
  background:
    radial-gradient(ellipse 120% 80% at 50% 40%, rgba(160,125,24,0.14) 0%, transparent 60%),
    linear-gradient(to bottom, var(--bg) 0%, var(--bg-tint) 100%);
  text-align: center;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero--vip .hero-ctas { justify-content: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.3;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn--primary { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); }
.btn--primary:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--ghost { background: transparent; color: var(--navy-deep); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: #8a6b14; border-color: #8a6b14; color: #fff; }
.btn--ghost-gold { background: transparent; color: var(--gold); border-color: var(--gold-light); }
.btn--ghost-gold:hover { background: var(--gold-faint); }
.btn--sm { padding: 8px 16px; font-size: 13px; }

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card .eyebrow { margin-bottom: 10px; }
.card h3 { margin-bottom: 10px; color: var(--navy-deep); }
.card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.card .card-meta {
  font-size: 12px;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.card-arrow {
  color: var(--blue);
  font-weight: 700;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  transition: color 0.15s, gap 0.15s;
}
.card:hover .card-arrow { gap: 8px; }

/* VIP profile card */
.card--profile { border-top: 3px solid var(--gold-light); }
.card--profile .badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-faint);
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 14px;
}

/* ===== AUDIENCE SPLIT ===== */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.audience-card {
  background: var(--bg-tint);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 40px 36px;
  transition: box-shadow 0.2s;
}
.audience-card:hover { box-shadow: var(--shadow-hover); }
.audience-card .eyebrow { margin-bottom: 12px; }
.audience-card h3 { font-size: 1.3rem; color: var(--navy-deep); margin-bottom: 12px; }
.audience-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 24px; }

/* ===== PAIN-FIX BLOCKS ===== */
.pain-fix-section { display: flex; flex-direction: column; gap: 20px; }
.pain-fix-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.pain-side { background: var(--pain-bg); padding: 28px 24px; }
.fix-side { background: var(--fix-bg); padding: 28px 24px; }
.pain-label, .fix-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.pain-label { color: var(--pain-label); }
.fix-label { color: var(--fix-label); }
.pain-side p, .fix-side p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.service-card .eyebrow { margin-bottom: 12px; }
.service-card h3 { color: var(--navy-deep); margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; flex: 1; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--bg-navy);
  padding: 72px 0;
  text-align: center;
}
.cta-band .eyebrow { color: var(--blue-bright); margin-bottom: 16px; }
.cta-band .section-title { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 540px; margin: 0 auto 32px; }
.cta-band-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band--gold .eyebrow { color: var(--gold-light); }

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 24px;
}
.comparison-table th {
  background: var(--navy);
  color: #fff;
  padding: 13px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.comparison-table th:first-child { border-radius: 8px 0 0 0; }
.comparison-table th:last-child { border-radius: 0 8px 0 0; }
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  line-height: 1.55;
  color: var(--ink-soft);
}
.comparison-table td:first-child { font-weight: 600; color: var(--navy-deep); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg-tint); }
.comparison-table .anchor-price { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ===== PLATFORM CARDS ===== */
.platform-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.platform-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.platform-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); transition: box-shadow 0.2s, transform 0.2s; }
.platform-card .meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-faint);
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 14px;
}
.platform-card h3 { color: var(--navy-deep); margin-bottom: 10px; }
.platform-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

/* ===== INVESTOR BAND ===== */
.investor-band {
  background: var(--bg-navy);
  border-radius: 12px;
  padding: 52px 40px;
  text-align: center;
  margin: 56px 0;
}
.investor-band .eyebrow { color: var(--gold-light); margin-bottom: 16px; }
.investor-band h2 { color: #fff; margin-bottom: 14px; }
.investor-band p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 28px; font-size: 1.05rem; }

/* ===== VIP MINI FEATURE CARDS ===== */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.mini-card {
  background: #fff;
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
}
.mini-card .eyebrow { color: var(--gold); margin-bottom: 6px; font-size: 10px; }
.mini-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.mini-card-icon { font-size: 22px; margin-bottom: 10px; }

/* ===== VIP OFFER GRID ===== */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.offer-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--gold-light);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.offer-card h3 { color: var(--navy-deep); margin-bottom: 16px; }
.offer-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.offer-card ul li { padding-left: 20px; position: relative; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.offer-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== STEPS (How it works) ===== */
.steps { display: flex; flex-direction: column; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--gold-faint);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}
.step-content h3 { color: var(--navy-deep); margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
.step-accent { border-left: 3px solid var(--gold-light); padding-left: 20px; }

/* ===== COMPENSATION CARDS ===== */
.comp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.comp-card {
  background: var(--bg-tint);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 28px 24px;
}
.comp-card h3 { color: var(--navy-deep); margin-bottom: 10px; font-size: 1.05rem; }
.comp-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

/* ===== COMMUNITY GRID ===== */
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ===== APPLY GATE ===== */
.apply-gate {
  background: var(--bg-tint);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.apply-gate p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; }
details.faq-item { border-bottom: 1px solid var(--rule); }
details.faq-item:first-child { border-top: 1px solid var(--rule); }
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  user-select: none;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.faq-body {
  padding: 0 4px 20px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 15px;
}
.faq-body p + p { margin-top: 0.75em; }

/* ===== DIRECT CONTACTS BAND ===== */
.contacts-band {
  background: var(--bg-tint);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
}
.contact-emails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}
.contact-email-item { display: flex; flex-direction: column; gap: 6px; }
.contact-email-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
}
.contact-email-addr {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
}
.contact-email-addr:hover { color: var(--blue-bright); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-navy);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer-brand .footer-logo { height: 30px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 240px; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-email { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-email a { color: var(--blue-bright); transition: color 0.15s; }
.footer-email a:hover { color: #fff; }
.footer-email .footer-email-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.footer-email-group { display: flex; flex-direction: column; gap: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}

/* ===== PROSE LIST ===== */
.prose-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.prose-list li { padding-left: 22px; position: relative; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.prose-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

.standards-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.standards-list li { padding-left: 22px; position: relative; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.standards-list li::before { content: '✓'; position: absolute; left: 0; color: var(--fix-label); font-weight: 700; }

.checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li { padding-left: 24px; position: relative; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--fix-label); font-weight: 700; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-small { font-size: 13px; }
.italic { font-style: italic; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-56 { margin-top: 56px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== RESPONSIVE — 920px ===== */
@media (max-width: 920px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }

  .primary-nav--open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: 64px;
    left: -24px;
    right: -24px;
    background: #fff;
    border-bottom: 1px solid var(--hairline);
    padding: 10px 16px 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .primary-nav--open li a { display: block; padding: 10px 12px; }
  .primary-nav--open .nav-cta { margin-top: 4px; }
  .primary-nav--open .nav-cta a { text-align: center; display: block; margin-left: 0; }

  .mini-cards { grid-template-columns: repeat(2, 1fr); }
  .platform-cards { grid-template-columns: 1fr 1fr; }
  .comp-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===== RESPONSIVE — 720px ===== */
@media (max-width: 720px) {
  :root { --section-py: 48px; }

  .card-grid { grid-template-columns: 1fr; }
  .audience-split { grid-template-columns: 1fr; }
  .pain-fix-block { grid-template-columns: 1fr; }
  .platform-cards { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .contact-emails { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .hero { padding: 48px 0 40px; }
  .hero--compact { padding: 40px 0 36px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .cta-band-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .investor-band { padding: 36px 24px; }
  .contacts-band { padding: 32px 24px; }
  .mini-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .mini-cards { grid-template-columns: 1fr; }
  .comp-cards { grid-template-columns: 1fr; }
}

/* ===== FOCUS & ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== VIP PAGE OVERRIDES ===== */
.page-partners .accent { color: var(--gold); }
.page-partners .eyebrow { color: var(--gold); }
.vip-hero-graphic { max-width: 380px; margin: 0 auto 28px; }
.vip-logo-wrapper { display: flex; justify-content: center; margin-bottom: 24px; }

/* ===== CONTACT FORM ===== */
.contact-form-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.contact-form-card h2 { font-size: 1.5rem; color: var(--navy-deep); margin-bottom: 8px; }
.contact-form-intro { color: var(--ink-soft); font-size: 15px; margin-bottom: 28px; }
.contact-form-intro a { color: var(--blue); }

.contact-form .form-row { margin-bottom: 20px; }
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form label .optional { font-weight: 400; color: var(--grey); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 99, 198, 0.15);
}

.contact-form .form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-form button[disabled] { opacity: 0.6; cursor: progress; }

.form-status { font-size: 14px; margin: 0; }
.form-status--success { color: var(--fix-label); }
.form-status--error { color: var(--pain-label); }

/* Honeypot — visually hidden but still in the DOM for bots to trip over. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .contact-form-card { padding: 28px 20px; }
  .contact-form .form-grid { grid-template-columns: 1fr; gap: 0; }
}
