/* ==========================================================================
   Charterline — design system
   Modern trust: deep navy, warm brass, generous type, quiet motion.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Brand */
  --ink:          #08182B;
  --navy:         #0E2A47;
  --navy-600:     #17456F;
  --navy-400:     #3A6B99;
  --accent:       #E4A34A;
  --accent-600:   #C9822B;
  --accent-soft:  #FBEFDC;
  --success:      #16794C;
  --success-soft: #E4F2EA;

  /* Neutrals */
  --paper:        #FBF9F5;
  --paper-2:      #F4F1EA;
  --surface:      #FFFFFF;
  --text:         #10233A;
  --muted:        #5C6B7E;
  --muted-2:      #8593A4;
  --line:         #E7E2D9;
  --line-strong:  #D6CFC2;

  /* Type */
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif:   "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-mono:    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Space */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 2.75rem; --sp-8: 4rem;
  --sp-9: 5.5rem;  --sp-10: 7.5rem;

  /* Shape */
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 26px; --r-pill: 999px;

  /* Elevation */
  --sh-sm: 0 1px 2px rgba(8,24,43,.06), 0 1px 3px rgba(8,24,43,.05);
  --sh-md: 0 4px 12px rgba(8,24,43,.06), 0 12px 28px rgba(8,24,43,.06);
  --sh-lg: 0 8px 24px rgba(8,24,43,.08), 0 30px 60px rgba(8,24,43,.10);
  --sh-navy: 0 18px 48px rgba(14,42,71,.28);

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -.025em; line-height: 1.12; color: var(--ink); }
p { margin: 0; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--accent-600); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent-soft); color: var(--ink); }

/* --- Typography scale --------------------------------------------------- */
.h-display { font-size: clamp(2.5rem, 6.2vw, 4.4rem); letter-spacing: -.035em; line-height: 1.03; }
.h1 { font-size: clamp(2.15rem, 4.6vw, 3.35rem); letter-spacing: -.032em; line-height: 1.07; }
.h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); letter-spacing: -.028em; }
.h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.h4 { font-size: 1.1rem; letter-spacing: -.015em; }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.24rem); line-height: 1.6; color: var(--muted); }
.small { font-size: .875rem; }
.tiny  { font-size: .78rem; }
.muted { color: var(--muted); }
.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -.01em; }
.mono  { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }

/* --- Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2rem); }
.narrow { max-width: 760px; }
.section { padding-block: clamp(3.5rem, 8vw, var(--sp-10)); }
.section--tight { padding-block: clamp(2.75rem, 5vw, var(--sp-8)); }
.section--paper2 { background: var(--paper-2); }
.section--white { background: var(--surface); }
.section--ink { background: var(--ink); color: #C9D6E4; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .muted { color: #8FA4BC; }

.grid { display: grid; gap: var(--sp-5); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.stack > * + * { margin-top: var(--sp-4); }
.flex { display: flex; gap: var(--sp-3); align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.between { justify-content: space-between; }
.hr { height: 1px; background: var(--line); border: 0; margin-block: var(--sp-6); }

/* --- Section header ----------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-600);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--accent); border-radius: 2px; }
.section--ink .eyebrow { color: var(--accent); }
.sec-head { max-width: 660px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head.center { margin-inline: auto; }
.sec-head .h2 { margin-top: var(--sp-3); }
.sec-head .lead { margin-top: var(--sp-4); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .96rem; letter-spacing: -.01em;
  padding: .82rem 1.5rem; border-radius: var(--r-pill);
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .18s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: var(--ink); box-shadow: 0 4px 14px rgba(228,163,74,.35); }
.btn--primary:hover { background: #F0B25E; box-shadow: 0 10px 24px rgba(228,163,74,.42); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 4px 14px rgba(14,42,71,.25); }
.btn--navy:hover { background: var(--navy-600); box-shadow: 0 10px 26px rgba(14,42,71,.3); }
.btn--outline { border-color: var(--line-strong); color: var(--ink); background: var(--surface); }
.btn--outline:hover { border-color: var(--navy); box-shadow: var(--sh-md); }
.btn--ghost { color: var(--ink); padding-inline: .4rem; }
.btn--ghost:hover { color: var(--accent-600); transform: none; }
.btn--ghost:hover svg { transform: translateX(3px); }
.btn--onink { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(6px); }
.btn--onink:hover { background: rgba(255,255,255,.14); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--sm { padding: .55rem 1.05rem; font-size: .86rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251,249,245,.82);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 20px rgba(8,24,43,.05); }
.header-bar { display: flex; align-items: center; gap: var(--sp-5); min-height: 74px; }
.site-header.is-scrolled .header-bar { min-height: 64px; }
.header-bar { transition: min-height .25s var(--ease); }

.brand { display: inline-flex; align-items: center; gap: .6rem; flex: none; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.24rem;
  letter-spacing: -.035em; color: var(--ink);
}
.brand__name em { font-style: normal; color: var(--accent-600); }

.nav { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.nav__link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  padding: .5rem .8rem; border-radius: var(--r-pill); color: var(--text);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__link:hover { background: rgba(14,42,71,.06); }
.nav__link.is-active { color: var(--navy-600); font-weight: 600; }
.nav__link.is-active::after { content: ""; }
.nav__chev { width: 12px; height: 12px; opacity: .5; transition: transform .2s var(--ease); }

.has-menu { position: relative; }
.has-menu:hover .nav__chev, .has-menu:focus-within .nav__chev { transform: rotate(180deg); }
.menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
  min-width: 320px; padding: .55rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.menu__item { display: flex; gap: .8rem; padding: .7rem .8rem; border-radius: var(--r-md); transition: background .16s var(--ease); }
.menu__item:hover { background: var(--paper-2); }
.menu__ico { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 9px; background: var(--accent-soft); color: var(--accent-600); }
.menu__ico svg { width: 17px; height: 17px; }
.menu__t { display: block; font-family: var(--font-display); font-weight: 600; font-size: .93rem; color: var(--ink); }
.menu__d { display: block; font-size: .81rem; color: var(--muted); line-height: 1.45; margin-top: .12rem; }

.header-cta { display: flex; align-items: center; gap: .65rem; flex: none; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: var(--r-md); align-items: center; justify-content: center; border: 1px solid var(--line); }
.nav-toggle span { display: block; width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; top: 112px; right: 0; bottom: 0; left: 0; z-index: 89; background: var(--paper);
  padding: var(--sp-5) clamp(1.15rem, 4vw, 2rem) var(--sp-8);
  overflow-y: auto; transform: translateX(100%); visibility: hidden;
  transition: transform .32s var(--ease), visibility .32s;
}
body.nav-open .drawer { transform: none; visibility: visible; }
body.nav-open { overflow: hidden; }
.drawer a.drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 500; font-size: 1.22rem;
  padding: .95rem 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.drawer a.drawer__link span { font-size: .8rem; color: var(--muted); font-weight: 400; }
.drawer .btn { margin-top: var(--sp-5); }

/* --- Announcement ------------------------------------------------------- */
.topbar { background: var(--ink); color: #C9D6E4; font-size: .82rem; }
.topbar .container { display: flex; align-items: center; justify-content: center; gap: .6rem; min-height: 38px; text-align: center; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #C9D6E4; padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 9vw, 7rem); }
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 120%;
  background:
    radial-gradient(closest-side at 22% 18%, rgba(23,69,111,.85), transparent 72%),
    radial-gradient(closest-side at 82% 8%,  rgba(228,163,74,.20), transparent 70%),
    radial-gradient(closest-side at 62% 78%, rgba(23,69,111,.55), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(closest-side at 50% 35%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(closest-side at 50% 35%, #000 35%, transparent 100%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { color: #fff; }
.hero .lead { color: #A9BCD1; margin-top: var(--sp-5); max-width: 34ch; }
.hero .btn-row { margin-top: var(--sp-6); }

.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .85rem .4rem .5rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  font-size: .8rem; font-weight: 500; color: #D6E2EE; backdrop-filter: blur(6px);
}
.pill b { display: inline-flex; align-items: center; gap: .3rem; padding: .12rem .5rem; border-radius: var(--r-pill); background: var(--accent); color: var(--ink); font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.1); }
.hero-trust div { font-size: .84rem; color: #8FA4BC; }
.hero-trust b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; letter-spacing: -.03em; }
/* Home hero column is narrow — lay the proof points out as a deliberate 2x2 */
.hero .hero-trust { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem 2rem; max-width: 470px; }

/* Filing card mock */
.filing-card {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-xl); padding: 1.35rem; backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px rgba(0,0,0,.4); color: #E4ECF4;
}
.filing-card__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.filing-card__id { font-family: var(--font-mono); font-size: .74rem; color: #7E93AB; letter-spacing: .02em; }
.filing-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: #fff; letter-spacing: -.02em; }
.badge-live { display: inline-flex; align-items: center; gap: .38rem; font-size: .72rem; font-weight: 600; color: #6EE7A8; background: rgba(22,121,76,.22); border: 1px solid rgba(110,231,168,.28); padding: .25rem .6rem; border-radius: var(--r-pill); }
.dot-live { width: 6px; height: 6px; border-radius: 50%; background: #6EE7A8; box-shadow: 0 0 0 0 rgba(110,231,168,.65); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(110,231,168,0); } 100% { box-shadow: 0 0 0 0 rgba(110,231,168,0); } }

.track { margin-top: 1.1rem; display: grid; gap: .1rem; }
.track__row { display: flex; align-items: flex-start; gap: .8rem; padding: .62rem 0; }
.track__dot { width: 21px; height: 21px; flex: none; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid rgba(255,255,255,.22); margin-top: 1px; }
.track__dot svg { width: 11px; height: 11px; opacity: 0; transform: scale(.5); transition: opacity .3s var(--ease), transform .35s var(--ease); }
.track__row.done .track__dot { background: var(--success); border-color: var(--success); }
.track__row.done .track__dot svg { opacity: 1; transform: scale(1); color: #fff; }
.track__row.active .track__dot { border-color: var(--accent); border-style: dashed; animation: spin 3.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.track__t { display: block; font-size: .9rem; font-weight: 500; color: #DCE6F0; line-height: 1.4; }
.track__row:not(.done):not(.active) .track__t { color: #6F86A0; }
.track__m { display: block; font-size: .76rem; color: #7E93AB; margin-top: .1rem; }
.track__row.active .track__m { color: var(--accent); }
.filing-card__foot { margin-top: .9rem; padding-top: .95rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; }
.filing-card__foot span { font-size: .78rem; color: #7E93AB; }
.filing-card__foot b { font-family: var(--font-display); font-size: 1.05rem; color: #fff; }

/* --- Logo strip --------------------------------------------------------- */
.strip { padding-block: var(--sp-6); border-bottom: 1px solid var(--line); background: var(--paper); }
.strip__label { text-align: center; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2.6rem; margin-top: var(--sp-5); }
.strip__row span { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: #9AA6B4; letter-spacing: -.015em; transition: color .2s var(--ease); }
.strip__row span:hover { color: var(--navy); }

/* --- Cards -------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-5); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--line-strong); }
.card__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-600); margin-bottom: var(--sp-4); }
.card__ico svg { width: 21px; height: 21px; }
.card__ico--navy { background: rgba(14,42,71,.07); color: var(--navy); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: var(--sp-4); font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--navy-600); }
.card__link svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.card--hover:hover .card__link svg { transform: translateX(4px); }

.card--feature { padding: var(--sp-6); }
.card--dark { background: var(--navy); border-color: rgba(255,255,255,.1); color: #C9D6E4; }
.card--dark h3 { color: #fff; } .card--dark p { color: #A9BCD1; }

/* --- Checklist ---------------------------------------------------------- */
.checks { display: grid; gap: .7rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; line-height: 1.55; }
.checks svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--success); }
.checks--gold svg { color: var(--accent-600); }
.checks--onink li { color: #B7C7D8; } .checks--onink svg { color: #6EE7A8; }
.checks b { font-weight: 600; color: var(--ink); }
.checks--onink b { color: #fff; }

/* --- Steps -------------------------------------------------------------- */
.steps { display: grid; gap: var(--sp-5); grid-template-columns: repeat(3, 1fr); counter-reset: s; }
.step { position: relative; padding-top: var(--sp-5); border-top: 2px solid var(--line); counter-increment: s; }
.step::before {
  content: "0" counter(s);
  font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .1em;
  color: var(--accent-600); display: block; margin-bottom: .7rem;
}
.step::after { content: ""; position: absolute; top: -2px; left: 0; width: 34px; height: 2px; background: var(--accent); }
.step h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .94rem; }

/* --- Stats -------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 600; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.stat span { display: block; margin-top: .55rem; font-size: .88rem; color: var(--muted); }
.section--ink .stat b { color: #fff; }
.section--ink .stat span { color: #8FA4BC; }

/* --- Price cards -------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); align-items: start; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5); display: flex; flex-direction: column; height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.plan--featured { border: 2px solid var(--navy); box-shadow: var(--sh-lg); position: relative; }
.plan--featured::before {
  content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; padding: .3rem .9rem; border-radius: var(--r-pill); white-space: nowrap;
}
.plan__name { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; color: var(--ink); }
.plan__desc { font-size: .88rem; color: var(--muted); margin-top: .35rem; min-height: 2.6em; }
.plan__price { display: flex; align-items: baseline; gap: .3rem; margin-top: var(--sp-5); }
.plan__price b { font-family: var(--font-display); font-size: 2.9rem; font-weight: 600; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.plan__price i { font-style: normal; font-size: 1.3rem; color: var(--muted); font-weight: 500; }
.plan__price em { font-style: normal; font-size: .88rem; color: var(--muted); }
.plan__fee { font-size: .82rem; color: var(--muted); margin-top: .5rem; }
.plan__fee b { color: var(--ink); font-weight: 600; }
.plan .btn { margin-block: var(--sp-5); }
.plan .checks { font-size: .9rem; }
.plan .checks li { font-size: .9rem; }
.plan__div { font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: .8rem; }

/* --- Toggle ------------------------------------------------------------- */
.toggle { display: inline-flex; padding: 4px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-pill); }
.toggle button {
  padding: .5rem 1.25rem; border-radius: var(--r-pill); font-family: var(--font-display);
  font-weight: 600; font-size: .89rem; color: var(--muted); transition: all .2s var(--ease);
}
.toggle button.is-on { background: var(--surface); color: var(--ink); box-shadow: var(--sh-sm); }

/* --- Comparison table --------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); -webkit-overflow-scrolling: touch; }
table.tbl { min-width: 640px; font-size: .93rem; }
table.tbl th, table.tbl td { padding: .95rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.tbl thead th {
  font-family: var(--font-display); font-weight: 600; font-size: .78rem; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted); background: var(--paper-2); white-space: nowrap;
  position: sticky; top: 0; z-index: 2;
}
table.tbl tbody tr:last-child td { border-bottom: 0; }
table.tbl tbody tr:hover { background: #FCFBF8; }
table.tbl td:first-child { font-weight: 600; color: var(--ink); }
table.tbl .num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: .89rem; }
table.tbl .yes { color: var(--success); font-weight: 600; }
table.tbl .no  { color: var(--muted-2); }
.tbl-highlight { background: rgba(228,163,74,.07); }
.tbl-note { font-size: .8rem; color: var(--muted); margin-top: var(--sp-3); }

/* --- State picker ------------------------------------------------------- */
.picker { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: var(--sp-5); box-shadow: var(--sh-md); }
.picker__head { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: flex-end; }
.field { display: flex; flex-direction: column; gap: .4rem; flex: 1 1 190px; min-width: 0; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.field select, .field input, .field textarea {
  width: 100%; padding: .78rem .95rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-md);
  background: var(--surface); font-size: .96rem; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C6B7E' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .85rem center; background-size: 15px; padding-right: 2.4rem; cursor: pointer; }
.field textarea { resize: vertical; min-height: 130px; font-family: var(--font-body); }
.field select:focus, .field input:focus, .field textarea:focus { outline: none; border-color: var(--navy-400); box-shadow: 0 0 0 4px rgba(23,69,111,.1); }
.field .hint { font-size: .78rem; color: var(--muted); }
.field.invalid select, .field.invalid input, .field.invalid textarea { border-color: #C0392B; }
.field .err { font-size: .78rem; color: #C0392B; display: none; }
.field.invalid .err { display: block; }

.picker__out { margin-top: var(--sp-5); padding-top: var(--sp-5); border-top: 1px dashed var(--line-strong); display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: var(--sp-5) var(--sp-4); }
.po > span { display: block; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.po b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -.03em; color: var(--ink); margin-top: .3rem; line-height: 1.15; }
.po b.gold { color: var(--accent-600); }
.po small { display: block; font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.picker__note { margin-top: var(--sp-4); font-size: .84rem; color: var(--muted); background: var(--paper-2); border-radius: var(--r-md); padding: .8rem 1rem; border-left: 3px solid var(--accent); }

/* --- States table ------------------------------------------------------- */
.states-tools { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; margin-bottom: var(--sp-5); }
.search-input { position: relative; flex: 1 1 280px; }
.search-input svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--muted-2); pointer-events: none; }
.search-input input { width: 100%; padding: .8rem 1rem .8rem 2.7rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-pill); background: var(--surface); font-size: .95rem; }
.search-input input:focus { outline: none; border-color: var(--navy-400); box-shadow: 0 0 0 4px rgba(23,69,111,.1); }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip { padding: .5rem 1rem; border-radius: var(--r-pill); border: 1.5px solid var(--line-strong); background: var(--surface); font-size: .86rem; font-weight: 500; font-family: var(--font-display); color: var(--muted); transition: all .18s var(--ease); }
.chip:hover { border-color: var(--navy-400); color: var(--ink); }
.chip.is-on { background: var(--navy); border-color: var(--navy); color: #fff; }
.state-count { font-size: .86rem; color: var(--muted); }
.state-star { color: var(--accent-600); font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
tr.no-results td { text-align: center; color: var(--muted); padding: 2.5rem 1rem; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-4);
  padding: 1.35rem 0; text-align: left; font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; color: var(--ink); letter-spacing: -.015em; line-height: 1.4;
}
.faq__q:hover { color: var(--navy-600); }
.faq__ico { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; margin-top: 1px; transition: all .25s var(--ease); }
.faq__ico svg { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.faq__item.is-open .faq__ico { background: var(--navy); border-color: var(--navy); color: #fff; }
.faq__item.is-open .faq__ico svg { transform: rotate(180deg); }
.faq__a { overflow: hidden; height: 0; transition: height .32s var(--ease); }
.faq__a > div { padding-bottom: 1.4rem; padding-right: 3rem; color: var(--muted); font-size: .97rem; }
.faq__a p + p { margin-top: .75rem; }
.faq__a a { color: var(--navy-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* --- Quotes ------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-5); display: flex; flex-direction: column; }
.quote__stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: var(--sp-4); }
.quote__stars svg { width: 15px; height: 15px; }
.quote p { font-family: var(--font-serif); font-size: 1.22rem; line-height: 1.42; color: var(--ink); letter-spacing: -.01em; }
.quote footer { margin-top: auto; padding-top: var(--sp-5); display: flex; align-items: center; gap: .75rem; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: .84rem; flex: none; }
.quote cite { font-style: normal; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink); display: block; }
.quote small { font-size: .8rem; color: var(--muted); }

/* --- CTA band ----------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy); border-radius: var(--r-xl); padding: clamp(2.5rem, 6vw, 4.25rem); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(closest-side at 50% 0%, rgba(228,163,74,.22), transparent 70%), radial-gradient(closest-side at 15% 100%, rgba(255,255,255,.08), transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: #A9BCD1; margin-top: var(--sp-4); max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: var(--sp-6); }
.cta-band .tiny { color: #7E93AB; margin-top: var(--sp-5); }

/* --- Page hero (inner pages) -------------------------------------------- */
.page-hero { background: var(--ink); color: #C9D6E4; padding-block: clamp(3rem, 6vw, 4.75rem) clamp(3.25rem, 6vw, 5rem); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: -50% -20% auto -20%; height: 160%; background: radial-gradient(closest-side at 25% 25%, rgba(23,69,111,.8), transparent 70%), radial-gradient(closest-side at 85% 15%, rgba(228,163,74,.16), transparent 70%); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-top: var(--sp-3); }
.page-hero .lead { color: #A9BCD1; margin-top: var(--sp-4); max-width: 60ch; }
.page-hero .btn-row { margin-top: var(--sp-6); }
.crumbs { display: flex; align-items: center; gap: .45rem; font-size: .82rem; color: #7E93AB; }
.crumbs a:hover { color: var(--accent); }
.crumbs svg { width: 12px; height: 12px; opacity: .6; }

/* --- Split -------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--wide { grid-template-columns: 1.15fr .85fr; }
.split img, .split .visual { border-radius: var(--r-lg); }
.visual { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-5); box-shadow: var(--sh-md); }

/* Doc mock */
.doc-mock { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; }
.doc-mock__bar { display: flex; align-items: center; gap: .4rem; padding: .8rem 1rem; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.doc-mock__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.doc-mock__bar span { margin-left: .6rem; font-family: var(--font-mono); font-size: .74rem; color: var(--muted); }
.doc-mock__body { padding: var(--sp-5); }
.doc-row { display: flex; align-items: center; justify-content: space-between; padding: .78rem 0; border-bottom: 1px solid var(--line); font-size: .91rem; }
.doc-row:last-child { border-bottom: 0; }
.doc-row span { color: var(--muted); }
.doc-row b { font-weight: 600; color: var(--ink); font-family: var(--font-display); flex: none; white-space: nowrap; }
.tag { display: inline-flex; align-items: center; gap: .3rem; font-size: .74rem; font-weight: 600; padding: .22rem .6rem; border-radius: var(--r-pill); white-space: nowrap; }
.tag svg { width: 12px; height: 12px; flex: none; }
.tag--ok { background: var(--success-soft); color: var(--success); }
.tag--wait { background: var(--accent-soft); color: var(--accent-600); }
.tag--idle { background: var(--paper-2); color: var(--muted); }

/* --- Multi-step form ---------------------------------------------------- */
.wizard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow: hidden; }
.wizard__bar { height: 4px; background: var(--paper-2); }
.wizard__bar i { display: block; height: 100%; width: 25%; background: var(--accent); transition: width .4s var(--ease); }
.wizard__head { padding: var(--sp-5) var(--sp-6) 0; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); }
.wizard__step { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--accent-600); }
.wizard__body { padding: var(--sp-5) var(--sp-6) var(--sp-6); }
.wizard__pane { display: none; }
.wizard__pane.is-on { display: block; animation: fade .35s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.wizard__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-5) var(--sp-6); border-top: 1px solid var(--line); background: var(--paper); }

.opts { display: grid; gap: .75rem; margin-top: var(--sp-5); }
.opts--2 { grid-template-columns: 1fr 1fr; }
.opt { position: relative; display: block; cursor: pointer; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt__box { display: block; border: 1.5px solid var(--line-strong); border-radius: var(--r-lg); padding: 1.1rem 1.2rem; transition: all .2s var(--ease); height: 100%; }
.opt:hover .opt__box { border-color: var(--navy-400); }
.opt input:checked + .opt__box { border-color: var(--navy); background: #F7FAFD; box-shadow: 0 0 0 3px rgba(23,69,111,.09); }
.opt input:focus-visible + .opt__box { outline: 2px solid var(--accent-600); outline-offset: 2px; }
.opt__t { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.opt__t em { font-style: normal; font-size: .9rem; color: var(--accent-600); font-weight: 600; }
.opt__d { display: block; font-size: .86rem; color: var(--muted); margin-top: .3rem; line-height: 1.5; }

.summary { background: var(--paper-2); border-radius: var(--r-lg); padding: var(--sp-5); }
.summary h4 { margin-bottom: var(--sp-4); }
.sum-row { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.sum-row span { color: var(--muted); }
.sum-row b { font-weight: 600; color: var(--ink); }
.sum-row--total { border-bottom: 0; padding-top: 1rem; font-size: 1.05rem; }
.sum-row--total b { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -.03em; }

.done-state { text-align: center; padding: var(--sp-7) var(--sp-5); }
.done-state__ico { width: 62px; height: 62px; border-radius: 50%; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin: 0 auto var(--sp-5); }
.done-state__ico svg { width: 30px; height: 30px; }

/* --- Alert / notices ---------------------------------------------------- */
.notice { display: flex; gap: .85rem; padding: 1.05rem 1.25rem; border-radius: var(--r-lg); background: var(--paper-2); border: 1px solid var(--line); font-size: .91rem; color: var(--muted); }
.notice svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--navy-400); }
.notice b { color: var(--ink); font-weight: 600; }
.notice--gold { background: var(--accent-soft); border-color: #EBD9BA; } .notice--gold svg { color: var(--accent-600); }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #8FA4BC; padding-block: clamp(3rem, 6vw, 4.5rem) var(--sp-6); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: var(--sp-6) var(--sp-5); }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin-top: var(--sp-4); max-width: 30ch; font-size: .88rem; line-height: 1.6; }
.footer-contact { margin-top: var(--sp-5); display: grid; gap: .45rem; font-size: .87rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .5rem; }
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { width: 15px; height: 15px; opacity: .65; }
.fcol h4 { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; color: #fff; margin-bottom: var(--sp-4); }
.fcol li + li { margin-top: .62rem; }
.fcol a { font-size: .89rem; transition: color .16s var(--ease); }
.fcol a:hover { color: var(--accent); }
.footer-states { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,.1); }
.footer-states h4 { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; color: #fff; margin-bottom: var(--sp-4); }
.footer-states__list { display: flex; flex-wrap: wrap; gap: .35rem .9rem; }
.footer-states__list a { font-size: .8rem; color: #7E93AB; }
.footer-states__list a:hover { color: var(--accent); }
.footer-bottom { margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; align-items: center; font-size: .8rem; color: #6F86A0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--accent); }
.legal-note { margin-top: var(--sp-4); font-size: .78rem; color: #5E748C; line-height: 1.6; max-width: 90ch; }

/* --- Photography -------------------------------------------------------- */
.photo { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2); box-shadow: var(--sh-md); margin: 0; }
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo--wide img  { aspect-ratio: 16 / 9; }
.photo--3x2 img   { aspect-ratio: 3 / 2; }
.photo--4x3 img   { aspect-ratio: 4 / 3; }
.photo--tall img  { aspect-ratio: 4 / 5; }
.photo--ring { box-shadow: var(--sh-lg), 0 0 0 1px rgba(8,24,43,.06); }
.photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.6rem 1.15rem .95rem;
  font-size: .82rem; color: #EAF1F7; line-height: 1.45;
  background: linear-gradient(180deg, transparent, rgba(8,24,43,.86));
}
.photo figcaption b { color: #fff; font-family: var(--font-display); font-weight: 600; }
.photo-caption { font-size: .82rem; color: var(--muted); margin-top: .8rem; line-height: 1.5; }

/* Photo used as a section backdrop, dropped behind a navy wash */
.band { position: relative; isolation: isolate; overflow: hidden; }
.band__bg { position: absolute; inset: 0; z-index: -1; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; filter: saturate(.72) contrast(1.02); }
.band__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,24,43,.86) 0%, rgba(8,24,43,.76) 45%, rgba(8,24,43,.92) 100%);
}

/* Two-up photo pair */
.photo-pair { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--sp-4); align-items: stretch; }
.photo-pair .photo { height: 100%; }
.photo-pair .photo img { aspect-ratio: 3 / 2; height: 100%; }

/* Avatars carrying a real portrait */
.avatar { width: 46px; height: 46px; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

/* --- Reveal animation --------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --- Utility ------------------------------------------------------------ */
.mt-0 { margin-top: 0 !important; }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.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 --------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .lead { max-width: 52ch; }
  .filing-card { max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .g-4, .stats { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav, .header-cta .btn--navy { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .g-3, .steps, .plans, .split, .split--wide { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .g-2, .g-4, .stats, .opts--2 { grid-template-columns: 1fr; }
  .picker__out { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hide-sm { display: none; }
  .topbar .container { min-height: 34px; }
  .btn-row .btn { width: 100%; }
  .photo-pair { grid-template-columns: 1fr; }
  .wizard__head, .wizard__body, .wizard__foot { padding-inline: var(--sp-5); }
  .faq__a > div { padding-right: 0; }
  .hero-trust { gap: 1.1rem 1.6rem; }
}
@media print {
  .site-header, .drawer, .topbar, .cta-band, .site-footer { display: none; }
  body { background: #fff; }
}
