/* ==========================================================================
   OHASys marketing site — single stylesheet
   Design tokens transcribed from the supplied design exports.
   ========================================================================== */

/* ---- tokens ---- */
:root {
  --green: #75b53c;
  --green-hover: #67a233;
  --green-link: #4e7d27;      /* darkened from the design's #5a8f2e for WCAG AA on white */
  --green-link-hover: #3f671f;
  --green-light: #8ecb54;
  --ink: #241f38;
  --ink-2: #1c1830;
  --grey: #5b6472;
  --grey-2: #4a5261;
  --grey-3: #3a4250;
  --grey-muted: #667080;   /* darkened from the design's #8891a0 for AA on small labels */
  --border: #eceef2;
  --border-2: #e7e9ef;
  --border-3: #eef0f4;
  --panel: #f2f3f7;
  --bg-soft: #fafbfc;
  --hero-text: #b3aecb;
  --footer-text: #8b85a8;
  --footer-muted: #6b6689;
  --error: #b3341f;
  --r-btn: 11px;
  --r-card: 13px;
  --r-card-lg: 16px;
  --r-band: 26px;
  --r-frame: 14px;
  --r-pill: 100px;
  --container: 1200px;
  --gutter: 40px;
  --nav-h: 74px;
  --font-head: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --grad-hero: radial-gradient(120% 130% at 80% -10%, #3a3357 0%, #2a2440 45%, #221d36 100%);
  --grad-cta: radial-gradient(110% 130% at 50% 0%, #3a3357, #221d36);
  --grad-band: radial-gradient(120% 140% at 85% 0%, #3a3357, #241f38);
  --grad-green: linear-gradient(120deg, #75b53c 0%, #5a8f2e 100%);
}

/* ---- fonts (variable, self-hosted, latin subset) ---- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/bricolage-grotesque-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-var.woff2') format('woff2');
}

/* ---- reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; }
p { margin: 0; }
a { color: var(--green-link); text-decoration: none; }
a:hover { color: var(--green-link-hover); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 2px; }
.on-dark :focus-visible, .site-footer :focus-visible { outline-color: #fff; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
}

/* ---- layout ---- */
.wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 92px); }
.section--soft { background: var(--bg-soft); }
.section--bordered { border-top: 1px solid var(--border-3); border-bottom: 1px solid var(--border-3); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto; }
.section-head > p { font-size: 17.5px; line-height: 1.6; color: var(--grey); }
.section-head--gap { margin-bottom: 52px; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-link);
  margin-bottom: 16px;
}
.on-dark .eyebrow { color: var(--green-light); }

h2.title { font-weight: 700; font-size: clamp(30px, 2.2rem + 1.3vw, 46px); line-height: 1.08; letter-spacing: -.025em; margin-bottom: 18px; }
h3.title-sm { font-weight: 700; font-size: clamp(24px, 1.4rem + 1vw, 34px); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px; }

/* ---- skip link ---- */
.skip-link {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--r-btn);
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; color: #fff; }

/* ---- buttons ---- */
.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--r-btn);
  border: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
  text-align: center;
  transition: background .2s, transform .2s, border-color .2s;
}
/* dark ink on brand green: the design's white-on-green fails WCAG AA (2.5:1);
   ink passes at 6.4:1 while keeping the green vivid */
.btn-g { background: var(--green); color: var(--ink); box-shadow: 0 10px 24px -10px rgba(117, 181, 60, .8); }
.btn-g:hover { background: var(--green-hover); color: var(--ink); transform: translateY(-1px); }
.btn-o { background: transparent; color: var(--ink); border: 1px solid #d5d9e0; }
.btn-o:hover { color: var(--ink); border-color: var(--ink); transform: translateY(-1px); }
.on-dark .btn-o { color: #fff; border-color: rgba(255, 255, 255, .22); }
.on-dark .btn-o:hover { color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-w { background: #fff; color: var(--green-link); font-size: 15px; font-weight: 700; padding: 14px 26px; }
.btn-w:hover { color: var(--green-link-hover); transform: translateY(-1px); }
.btn--sm { font-size: 14.5px; padding: 11px 20px; }
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; }
}

/* ---- header / nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border-3);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-brand { display: flex; align-items: center; gap: 40px; min-width: 0; }
.nav-logo { display: block; width: 120px; flex-shrink: 0; }
.nav-logo svg, .nav-logo img { width: 100%; height: auto; }
.nav-links { display: flex; gap: 22px; font-size: 14.5px; font-weight: 500; white-space: nowrap; margin: 0; padding: 0; list-style: none; }
.nav-links a { color: var(--grey-2); transition: color .18s; }
.nav-links a:hover { color: var(--green-link); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.nav-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; margin-left: 20px; }
.nav-signin { font-size: 15px; font-weight: 500; color: var(--grey-2); white-space: nowrap; }
.nav-signin:hover { color: var(--green-link); }

.nav-panel { display: none; }
html.nav-open .nav-panel { display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  margin-right: -10px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle-icon { display: block; position: relative; width: 22px; height: 16px; }
.nav-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .18s, opacity .18s, top .18s;
}
.nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle-icon span:nth-child(2) { top: 7px; }
.nav-toggle-icon span:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ---- hero (dark) ---- */
.hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  color: #fff;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  top: -120px;
  right: -60px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(117, 181, 60, .28), transparent 62%);
}
.hero::after {
  bottom: -160px;
  left: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(117, 181, 60, .12), transparent 65%);
}
.hero .wrap { position: relative; z-index: 1; padding-top: 74px; text-align: center; }
.hero--page .wrap { padding-bottom: 74px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #c6e6a3;
  margin-bottom: 26px;
}
.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(117, 181, 60, .25);
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(34px, 1.5rem + 3.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 auto 22px;
  max-width: 900px;
  text-wrap: balance;
}
.hero h1 .hl { color: var(--green-light); }
.hero__sub { font-size: clamp(16px, 1rem + .4vw, 19px); line-height: 1.6; color: var(--hero-text); margin: 0 auto 32px; max-width: 640px; }
.hero__sub--sm { font-size: clamp(15px, 1rem + .15vw, 16.5px); max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 14px; }
.hero__note { font-size: 13.5px; color: #8983a5; margin-bottom: 56px; }
.hero__shot { max-width: 1000px; margin: 0 auto; transform: translateY(1px); }
.hero__spacer { height: 64px; }

/* ---- browser frame ---- */
.browser-frame {
  border-radius: var(--r-frame);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: 0 34px 80px -30px rgba(20, 14, 40, .28);
  background: #fff;
}
.browser-frame--dark { border-color: rgba(255, 255, 255, .1); box-shadow: 0 34px 80px -30px rgba(20, 14, 40, .7); }
.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  background: var(--panel);
  border-bottom: 1px solid var(--border-2);
}
.browser-frame__bar .fd { width: 11px; height: 11px; border-radius: 50%; }
.browser-frame__bar .fd-r { background: #f45d51; }
.browser-frame__bar .fd-a { background: #f7bd3b; }
.browser-frame__bar .fd-g { background: #5ac05a; }
.browser-frame__url {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 12px;
  flex: 1;
  max-width: 340px;
  background: #fff;
  border: 1px solid #e2e4ea;
  border-radius: 7px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: var(--grey-muted);
  overflow: hidden;
  white-space: nowrap;
}
.browser-frame__url svg { flex: none; }

/* ---- trust strip ---- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--border-3); }
.trust-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 30px;
}
.trust-strip__lede { font-size: 14.5px; font-weight: 500; color: var(--grey); max-width: 320px; }
.trust-strip__lede strong { color: var(--ink); }
/* three short proof statements, in place of headline numbers */
.trust-strip__points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  justify-content: space-between;
}
.trust-strip__points li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey);
}
.trust-strip__points strong { color: var(--ink); font-weight: 700; }
.trust-strip__stats { display: flex; gap: 48px; margin: 0; }
.stat { display: flex; flex-direction: column-reverse; }
.stat dd, .stat .stat__value { margin: 0; }
.stat__value { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--ink); }
.stat__value .plus { color: var(--green); }
.stat__label { font-size: 12.5px; color: var(--grey-muted); }

/* ---- generic grids ---- */
.grid { display: grid; gap: 16px; }
ul.grid, ul.pain-list { margin: 0; padding: 0; list-style: none; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--tight { gap: 12px; }

/* ---- chips & list items ---- */
.pain-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-3);
  box-shadow: 0 1px 2px rgba(20, 14, 40, .04);
}
.pain-item .dot { width: 7px; height: 7px; border-radius: 50%; background: #e0574b; flex: none; }

.check { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 500; color: var(--ink); }
.check .tick, .pline .tick, .fp-chip .tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.tick { background: var(--green); color: #fff; }
.tick--inverse { background: #fff; color: var(--green-link); }
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }

.pline {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-card);
  padding: 15px 17px;
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
}

.fp-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  padding: 14px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}

.chip {
  display: inline-flex;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--grey-3);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-3);
  background: #f4f6f8;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 11px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }

.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 0; padding: 0; list-style: none; }
.benefit-grid .check { font-size: 14.5px; gap: 10px; }

/* highlight strip under a page hero (features) */
.stat-strip { background: #fff; border-bottom: 1px solid var(--border-3); }
.stat-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 32px; }
.stat-strip .stat__value { font-size: 26px; }
.stat-strip .stat__label { font-size: 13px; margin-top: 4px; }

/* callout cards (features page security/partner pair) */
.callout-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.callout {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 1px 2px rgba(20, 14, 40, .04);
}
.callout--dark {
  position: relative;
  overflow: hidden;
  background: var(--grad-band);
  border: 0;
  color: #fff;
}
.callout--dark::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -30px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 181, 60, .22), transparent 65%);
  pointer-events: none;
}
.callout--dark > * { position: relative; }
.callout__icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(117, 181, 60, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-link);
}
.callout--dark .callout__icon { background: rgba(117, 181, 60, .2); color: var(--green-light); }
.callout .eyebrow { font-size: 12.5px; margin-bottom: 10px; }
.callout h2 { font-weight: 700; font-size: 26px; letter-spacing: -.015em; margin-bottom: 12px; }
.callout > p { font-size: 15.5px; line-height: 1.6; color: var(--grey); margin-bottom: 20px; }
.callout--dark > p { color: #c3bedb; }
.callout .check-list { gap: 10px; }
.callout .check { font-size: 14px; gap: 9px; }
.callout--dark .check { color: #fff; }
.arrow-link { display: inline-block; margin-top: 20px; font-size: 14.5px; font-weight: 600; }
.callout--dark .arrow-link { color: var(--green-light); }
.callout--dark .arrow-link:hover { color: #c6e6a3; }
.arrow-link--light { color: var(--green-light); }
.arrow-link--light:hover { color: #c6e6a3; }

/* screenshot caption — the caption carries more weight than the image */
.shot { margin: 0; }
.shot__caption {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--grey);
}
.on-dark .shot__caption { color: var(--hero-text); }

/* closing line under a section's list */
.section-note {
  margin-top: 34px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey);
  max-width: 640px;
}
.section-note .arrow-link { margin-top: 0; }

/* ---- cards ---- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card-lg);
  padding: 24px 22px;
  box-shadow: 0 1px 2px rgba(20, 14, 40, .04);
}
.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(117, 181, 60, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-link);
}
.card h3 { font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14px; line-height: 1.55; color: var(--grey); }

/* ---- feature rows ---- */
.feature-rows { display: flex; flex-direction: column; gap: clamp(64px, 8vw, 110px); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.feature-row__copy > .eyebrow { margin-bottom: 14px; }
.feature-row__copy > p { font-size: 16.5px; line-height: 1.62; color: var(--grey); margin-bottom: 22px; }
.feature-row--flip .feature-row__media { order: -1; }

/* ---- dark / green bands ---- */
.band {
  position: relative;
  border-radius: var(--r-band);
  overflow: hidden;
  background: var(--grad-band);
  padding: clamp(36px, 5vw, 60px) clamp(24px, 4.5vw, 56px);
  color: #fff;
}
.band::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 181, 60, .22), transparent 65%);
  pointer-events: none;
}
.band__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.band p { font-size: 16.5px; line-height: 1.62; color: #c3bedb; }

.band--green { background: var(--grad-green); box-shadow: 0 30px 70px -28px rgba(117, 181, 60, .7); }
.band--green::before { background: rgba(255, 255, 255, .12); top: -90px; right: -30px; width: 340px; height: 340px; }
.band--green .band__grid { grid-template-columns: 1.05fr 1fr; gap: 52px; }
.band--green p { color: rgba(255, 255, 255, .92); max-width: 440px; }
.band__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .2);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.band .check-list { gap: 14px; }

/* ---- final CTA ---- */
.cta-final { background: var(--grad-cta); padding-block: clamp(64px, 9vw, 96px); color: #fff; }
.cta-final .wrap { text-align: center; max-width: 720px; }
.cta-final h2 {
  font-weight: 700;
  font-size: clamp(32px, 1.6rem + 2.4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
.cta-final p { font-size: 18px; line-height: 1.6; color: var(--hero-text); margin-bottom: 26px; }
.cta-final__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: center;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.cta-final__assurances li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
.cta-final__footnote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--hero-text);
  margin: 26px auto 0;
  max-width: 560px;
}
.cta-final__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- footer ---- */
.site-footer { background: var(--ink-2); color: #a49ec2; padding: 60px 0 34px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-footer__logo { display: block; width: 140px; margin-bottom: 18px; }
.site-footer__tagline { font-size: 14px; line-height: 1.6; color: var(--footer-text); max-width: 290px; }
.site-footer h2 { font-family: var(--font-body); color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.site-footer ul { display: flex; flex-direction: column; gap: 11px; font-size: 14px; margin: 0; padding: 0; list-style: none; }
.site-footer ul a { color: var(--footer-text); }
.site-footer ul a:hover { color: #fff; }
.site-footer__legal {
  padding-top: 26px;
  font-size: 13px;
  color: var(--footer-text); /* lightened from the design's #6b6689 for AA on the navy bg */
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__legal a { color: var(--footer-text); }
.site-footer__legal a:hover { color: #fff; }

/* ---- two-column split sections (about story, proven-in-practice) ---- */
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.split--center { grid-template-columns: 1fr 1fr; align-items: center; }
.split__label { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.split__body { font-size: 16.5px; line-height: 1.62; color: var(--grey); margin-bottom: 16px; }
.quote-band-wrap { margin-top: 44px; }
.quote-card { margin-top: 26px; }
.proven-head { margin-bottom: 44px; }
.benefit-list { gap: 14px; }
.section-head-wide { max-width: 860px; text-align: center; }
.section-head-wide .grid { margin-top: 34px; text-align: left; }
.why-lede { margin-bottom: 0; }
.confidence-lede { margin-bottom: 32px; }
.section-head .grid { margin-top: 32px; }

/* ---- quote band & quote card (about) ---- */
.quote-band {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: radial-gradient(120% 160% at 88% 0%, #3a3357, #241f38);
  padding: 40px 44px;
  color: #fff;
}
.quote-band::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 181, 60, .2), transparent 65%);
  pointer-events: none;
}
.quote-band p {
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(19px, 1rem + 1vw, 24px);
  line-height: 1.35;
  letter-spacing: -.01em;
  max-width: 820px;
  margin: 0;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.quote-card::before {
  content: "\201C";
  font-size: 52px;
  font-family: var(--font-head);
  color: #d8e6c6;
  line-height: .8;
  flex: none;
}
.quote-card p { font-size: 16.5px; line-height: 1.6; color: var(--grey-3); font-style: italic; }
.quote-card cite { font-style: normal; font-weight: 600; color: var(--ink); }

/* ---- team cards (about) ---- */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 1px 2px rgba(20, 14, 40, .04);
}
.team-card .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.team-card h3 { font-weight: 700; font-size: 20px; letter-spacing: -.01em; margin-bottom: 4px; }
.team-card .role { font-size: 13.5px; font-weight: 600; color: var(--green-link); margin-bottom: 2px; }
.team-card .creds { font-size: 12px; color: var(--grey-muted); letter-spacing: .02em; margin-bottom: 14px; }
.team-card > p { font-size: 14px; line-height: 1.6; color: var(--grey); }

/* ---- stat / mini / benefit / protect cards ---- */
.stat-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-card-lg); padding: 24px; }
.stat-card .stat__value { font-size: 34px; }
.stat-card .stat__label { font-size: 13px; margin-top: 4px; }

.mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.mini-card--dot { font-weight: 500; color: var(--grey-3); font-size: 14.5px; line-height: 1.4; padding: 20px 18px; box-shadow: 0 1px 2px rgba(20, 14, 40, .04); }
.mini-card--dot .dot { display: block; width: 8px; height: 8px; border-radius: 50%; background: #e0574b; margin-bottom: 12px; }

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.benefit-card--white { background: #fff; align-items: center; gap: 12px; border-radius: 14px; padding: 18px; font-size: 15px; box-shadow: 0 1px 2px rgba(20, 14, 40, .04); }

.protect-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}

/* ---- security page split panels ---- */
.panel-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-soft);
  border: 1px solid var(--border-3);
  border-radius: 20px;
  overflow: hidden;
}
.panel-duo > div { padding: 44px; }
.panel-duo__list { background: #fff; border-left: 1px solid var(--border-3); }
.panel-duo--flip .panel-duo__list { border-left: 0; border-right: 1px solid var(--border-3); }
.panel-duo--flip .panel-duo__copy { order: 2; }
.panel-duo .eyebrow { font-size: 12.5px; margin-bottom: 12px; }
.panel-duo h2 { font-weight: 700; font-size: 27px; letter-spacing: -.015em; margin-bottom: 12px; }
.panel-duo p { font-size: 15.5px; line-height: 1.6; color: var(--grey); }
.panel-stack { display: flex; flex-direction: column; gap: 26px; }

/* ---- green hero & green CTA (founding partners) ---- */
.hero--green { background: var(--grad-green); }
.hero--green::before { background: rgba(255, 255, 255, .12); top: -100px; right: -40px; width: 460px; height: 460px; }
.hero--green::after { content: none; }
.hero--green .hero__badge { background: rgba(255, 255, 255, .2); border: 0; color: #fff; }
.hero--green .hero__sub { color: rgba(255, 255, 255, .92); }
.cta-final--green { background: var(--grad-green); }
.cta-final--green p { color: rgba(255, 255, 255, .92); }

/* ---- centered dark band (founding partners "limited availability") ---- */
.band--center { text-align: center; border-radius: 22px; padding: 48px 52px; }
.band--center h2 { font-weight: 700; font-size: 30px; letter-spacing: -.02em; margin-bottom: 12px; }
.band--center p { max-width: 520px; margin-inline: auto; }
.band-narrow { max-width: 820px; margin-inline: auto; }

/* ---- forms ---- */
.form-page { max-width: 620px; margin-inline: auto; }
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 1px 2px rgba(20, 14, 40, .04);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field .hint { font-size: 13px; color: var(--grey); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid #d5d9e0;
  border-radius: 9px;
  padding: 12px 14px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 0;
  border-color: var(--green);
}
.field--invalid input, .field--invalid select, .field--invalid textarea { border-color: var(--error); }
.field__error { font-size: 13.5px; font-weight: 500; color: var(--error); margin-top: 6px; }
.form-errors {
  background: #fdf3f1;
  border: 1px solid #f0c8c0;
  border-radius: var(--r-card);
  padding: 16px 18px;
  margin-bottom: 24px;
  font-size: 14.5px;
  color: var(--error);
}
.form-errors h2 { font-family: var(--font-body); font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--error); }
.form-errors ul { margin: 0; padding-left: 18px; }
.form-errors a { color: var(--error); text-decoration: underline; }
/* honeypot — hidden from humans, present for bots */
.field--website { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; margin-top: 6px; }
.form-privacy { font-size: 13px; color: var(--grey); margin-top: 14px; text-align: center; }
.form-privacy a, .prose p a { text-decoration: underline; }
.hero--form .wrap { padding-block: 64px; }
.hero--form .hero__note { margin-bottom: 0; }
.tick--lg { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.thanks-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ---- prose (legal pages) ---- */
.prose { max-width: 720px; margin-inline: auto; }
.prose h1 { font-size: clamp(30px, 2rem + 1vw, 40px); letter-spacing: -.025em; margin-bottom: 20px; }
.prose h2 { font-size: 22px; letter-spacing: -.015em; margin: 32px 0 10px; }
.prose p, .prose li { font-size: 16px; color: var(--grey-3); margin-bottom: 12px; }
.error-detail {
  text-align: left;
  overflow-x: auto;
  background: var(--panel);
  border: 1px solid var(--border-2);
  border-radius: var(--r-card);
  padding: 16px;
  font-size: 13px;
}
.placeholder-note {
  background: #fff8e6;
  border: 1px solid #f0dfae;
  border-radius: var(--r-card);
  padding: 14px 18px;
  font-size: 14.5px;
  color: #7a5d0f;
  margin-bottom: 28px;
}

/* ---- scroll reveal (only when JS present; always visible otherwise) ---- */
@media (prefers-reduced-motion: no-preference) {
  html.js .rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s cubic-bezier(.16, .7, .3, 1), transform .7s cubic-bezier(.16, .7, .3, 1);
  }
  html.js .rv.in { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  :root { --gutter: 28px; }
  .feature-row { gap: 40px; }
  .trust-strip__stats { gap: 32px; }
  .trust-strip__points { gap: 14px 28px; }
}

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .callout-pair { grid-template-columns: 1fr; }
  .split, .split--center { grid-template-columns: 1fr; gap: 32px; }
  .panel-duo { grid-template-columns: 1fr; }
  .panel-duo__list { border-left: 0; border-top: 1px solid var(--border-3); }
  .panel-duo--flip .panel-duo__list { border-right: 0; }
  .panel-duo--flip .panel-duo__copy { order: 0; }
  .feature-row--flip .feature-row__media { order: 0; }
  .grid--3, .grid--4, .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .band__grid, .band--green .band__grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip .wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
  .trust-strip__lede { max-width: none; }
  .trust-strip__points { flex-direction: column; gap: 14px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .nav-links, .nav-signin { display: none; }
  .nav-toggle { display: block; }
  .site-header .nav-cta { display: none; }

  .nav-panel {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 49;
    background: #fff;
    border-bottom: 1px solid var(--border-3);
    box-shadow: 0 24px 40px -24px rgba(20, 14, 40, .25);
    padding: 10px var(--gutter) 24px;
  }
  html.nav-open body { overflow: hidden; }
  .nav-panel ul { margin: 0; padding: 0; list-style: none; }
  .nav-panel ul a {
    display: block;
    padding: 13px 4px;
    font-size: 17px;
    font-weight: 500;
    color: var(--grey-2);
    border-bottom: 1px solid var(--border-3);
  }
  .nav-panel ul a[aria-current="page"] { color: var(--ink); font-weight: 700; }
  .nav-panel__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
  .nav-panel__actions .btn { width: 100%; }
  @media (prefers-reduced-motion: no-preference) {
    html.nav-open .nav-panel {
      transition: opacity .16s ease, transform .16s ease;
      @starting-style { opacity: 0; transform: translateY(-6px); }
    }
  }

  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .trust-strip__stats { width: 100%; justify-content: space-between; gap: 16px; }
  .hero__actions .btn, .cta-final__actions .btn { flex: 1 1 100%; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .site-footer__legal { flex-direction: column; }
}

@media (max-width: 420px) {
  :root { --gutter: 20px; }
  .trust-strip__stats { flex-wrap: wrap; }
}
