/* ============================================================
 * site.css — Trydent marketing-site components
 * ============================================================
 * Marketing-only layout on top of the components.css primitives and
 * the shared.css brand tokens. Implements the 2026-06 "one system, not
 * three" design language: a clean modern-SaaS base in navy + blue, one
 * black REVEAL band (yellow VS), honest proof, and show-what-you-get
 * product mockups (a browser-chrome marketing site + an ops dashboard +
 * Google/Meta ad cards). Full spec in /DESIGN.md.
 *
 * Token discipline: no raw hex except inside the product-mock chrome
 * (the fake tenant site, the dashboard rows, the ad cards) where the
 * pixels ARE the illustration. Shadows capped per the anti-slop ban,
 * except the deep stage shadow on the hero visuals (they sit on navy).
 * ============================================================ */

/* ============================================================
 * 1. SHARED CHROME — header, nav, footer (used on every page)
 *    Class hooks here are wired by site.js; keep their names.
 * ============================================================ */

/* ---- Header: navy banner carrying the real wordmark + the price ---- */
.header { position: sticky; top: 0; z-index: 100; padding: 0; }
.header--dark {
  background: rgba(11, 34, 56, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.header--dark.is-scrolled { box-shadow: 0 6px 16px rgba(3, 12, 24, 0.28); }
.header__row { min-height: 68px; gap: var(--sp-24); }
.header__logo img { height: clamp(26px, 2.6vw, 32px); width: auto; display: block; }
.header__nav { gap: var(--sp-24); flex: 1; justify-content: flex-start; margin-left: var(--sp-8); }
.header--dark .header__nav a { color: #D7E4F2; font-weight: 500; font-size: 0.94rem; }
.header--dark .header__nav a:hover { color: #fff; }
.header--dark .header__nav a[aria-current="page"] { color: var(--brand-accent); }
.header__right { gap: var(--sp-16); }
.header__price { color: #9FB6CC; font-size: var(--fs-14); font-weight: 500; white-space: nowrap; }
.header__price b { color: #fff; font-weight: 700; }
.header__cta { white-space: nowrap; }
@media (max-width: 980px) { .header__price { display: none; } }

/* On navy, the primary CTA stays the CTA blue (reads on navy at AA);
 * keep the white focus ring so it is visible on the blue fill. */
.header--dark .btn--primary:focus-visible { outline-color: #fff; }
.header--dark .nav-toggle { border-color: rgba(255, 255, 255, 0.35); }
.header--dark .nav-toggle__bars,
.header--dark .nav-toggle__bars::before,
.header--dark .nav-toggle__bars::after { background: #fff; }
.header--dark .nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }

/* Mobile nav toggle — hidden on desktop, shown <900px. */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--touch-min); height: var(--touch-min);
  background: transparent; border: 1px solid var(--neutral-border);
  border-radius: var(--r-sm); cursor: pointer;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--brand-secondary); position: relative;
  transition: transform 150ms, opacity 150ms;
}
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---- Trades dropdown (desktop nav) ---- */
.nav-dropdown { position: relative; display: inline-flex; }
.nav-dropdown__toggle {
  background: transparent; border: 0; color: inherit; font: inherit; font-weight: 500;
  font-size: 0.94rem; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.nav-dropdown__toggle::after {
  content: ''; width: 6px; height: 6px; margin-top: -3px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform 120ms;
}
.nav-dropdown__toggle[aria-expanded="true"]::after { transform: rotate(-135deg); margin-top: 2px; }
.header--dark .nav-dropdown__toggle { color: #D7E4F2; }
.header--dark .nav-dropdown__toggle:hover { color: #fff; }
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--neutral-bg); border: 1px solid var(--neutral-border);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: var(--sp-8); min-width: 230px; display: none; z-index: 60;
}
.nav-dropdown__menu[data-open="true"] { display: block; }
.nav-dropdown__menu a { display: block; padding: var(--sp-12) var(--sp-16); border-radius: var(--r-sm); color: var(--brand-secondary); text-decoration: none; font-weight: 600; font-size: var(--fs-14); }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a:focus-visible { background: var(--neutral-bg-tint); color: var(--brand-primary); }
.nav-dropdown__menu a small { display: block; font-weight: 400; font-size: var(--fs-12); color: var(--neutral-fg-3); }
/* On navy the header link color (specificity 0,2,1) would turn the open
 * menu white-on-white; re-assert dark-on-light at equal specificity. */
.header--dark .nav-dropdown__menu a { color: var(--brand-secondary); }
.header--dark .nav-dropdown__menu a:hover,
.header--dark .nav-dropdown__menu a:focus-visible { color: var(--brand-primary); }
.header--dark .nav-dropdown__menu a small { color: var(--neutral-fg-3); }

/* ---- Mobile nav panel — full-width overlay below the sticky header ---- */
.mobile-nav { display: none; position: fixed; inset: 68px 0 0 0; background: var(--neutral-bg); z-index: 49; padding: var(--sp-24); overflow-y: auto; }
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav__label { display: block; font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--neutral-fg-3); padding: var(--sp-16) 0 var(--sp-4); }
.mobile-nav a { display: block; padding: var(--sp-16) 0; font-size: var(--fs-20); font-weight: 600; text-decoration: none; color: var(--brand-secondary); border-bottom: 1px solid var(--neutral-border); }
.mobile-nav .btn { margin-top: var(--sp-24); width: 100%; }
@media (min-width: 900px) { .nav-toggle { display: none; } .mobile-nav { display: none !important; } }

/* ---- Footer (navy, white wordmark) ---- */
.footer { background: var(--brand-secondary); color: #9FB6CC; padding: var(--sp-48) 0 var(--sp-32); }
.footer__brand img { height: 30px; width: auto; display: block; margin-bottom: var(--sp-16); }
.footer__brand p { font-size: var(--fs-14); color: #7E96AE; line-height: 1.6; max-width: 280px; }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-32); padding-bottom: var(--sp-32); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: var(--fs-12); letter-spacing: 0.05em; text-transform: uppercase; margin: 0 0 var(--sp-16); font-weight: 700; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-12); }
.footer__col li { margin: 0; }
.footer__col a { font-size: var(--fs-14); color: #9FB6CC; text-decoration: none; }
.footer__col a:hover { color: #fff; }
.footer__legal { border-top: 0; padding-top: var(--sp-24); font-size: var(--fs-12); color: #6E869E; line-height: 1.6; }
@media (max-width: 760px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__cols { grid-template-columns: 1fr; } }


/* ============================================================
 * 2. PRIMITIVES — buttons, eyebrow, pills, section frame
 * ============================================================ */

/* Pill buttons (winner uses fully-rounded CTAs). Extends components .btn. */
.btn { border-radius: var(--r-full); font-weight: 700; gap: 9px; transition: background-color .14s, transform .12s, box-shadow .16s; }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; flex: none; }
.btn--primary { background: var(--brand-primary); color: #fff; box-shadow: 0 8px 20px rgba(19, 102, 214, 0.26); }
.btn--primary:hover { background: var(--brand-primary-dk); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(19, 102, 214, 0.32); }
.btn--ghost { background: transparent; color: var(--brand-secondary); border: 1px solid var(--neutral-border); }
.btn--ghost:hover { background: var(--neutral-bg-tint); border-color: #C7D6E8; }
/* On-navy variants (final CTA, hero secondary). */
.btn--onnavy { background: #fff; color: var(--brand-secondary); }
.btn--onnavy:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25); }
.btn--ghost-light { background: rgba(255, 255, 255, 0.06); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.22); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn--sm { min-height: 40px; padding: var(--sp-8) var(--sp-16); font-size: var(--fs-14); }

/* Eyebrow with a leading dot (extends components .eyebrow). */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.09em; color: var(--brand-primary); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: var(--r-full); background: currentColor; flex: none; }
.eyebrow.on-navy { color: var(--brand-accent); }

/* Section frame: tighten the canonical 96px to a brand-consistent 84px. */
section { padding: 84px 0; }
.sec-alt { background: var(--neutral-bg-tint); }
.sec-navy { background: var(--brand-secondary); color: #fff; }
.sec-navy h2 { color: #fff; }

/* Centered section head. */
.section-head, .head { max-width: 720px; margin: 0 auto var(--sp-48); text-align: center; }
.head h2 { font-size: var(--fs-40); margin: var(--sp-16) 0; }
.head p, .section-head .lead { font-size: var(--fs-18); color: var(--neutral-fg-2); line-height: 1.55; }
.sec-navy .head p, .sec-navy .section-head .lead { color: #BBD0E4; }


/* ============================================================
 * 3. HERO + STAGE (clean value prop above the fold, then the
 *    two deliverables side by side: the marketing site + the
 *    ops dashboard)
 * ============================================================ */
.hero {
  position: relative; color: #fff; overflow: hidden; padding: 0;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(111,183,245,0.20), transparent 60%),
    radial-gradient(700px 420px at 6% 110%, rgba(22,163,74,0.12), transparent 60%),
    linear-gradient(180deg, var(--brand-secondary) 0%, var(--navy-2) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(900px 620px at 60% 0%, #000, transparent 78%);
  mask-image: radial-gradient(900px 620px at 60% 0%, #000, transparent 78%);
}
.hero__inner { position: relative; z-index: 2; padding: 56px 0 30px; }
.hero__top { max-width: 840px; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5.4vw, 3.375rem); line-height: 1.02; margin: var(--sp-16) 0; }
.hero h1 .hl { color: var(--brand-accent); }
.hero__sub { font-size: var(--fs-18); line-height: 1.55; color: #C9DAEC; max-width: 660px; margin: 0; }
.hero__sub b { color: #fff; font-weight: 700; }
.hero__cta { display: flex; gap: var(--sp-12); flex-wrap: wrap; margin-top: var(--sp-24); }
.hero__assure { display: flex; align-items: center; gap: 9px; margin-top: var(--sp-16); color: #A9C0D6; font-size: var(--fs-14); }
.hero__assure svg { width: 17px; height: 17px; fill: none; stroke: var(--savings); stroke-width: 2.4; flex: none; }

/* The stage: the two things you get, side by side. */
.stage { position: relative; z-index: 2; margin-top: 50px; }
.stage__cap { display: flex; align-items: center; justify-content: center; gap: 9px; color: #A9C0D6; font-size: var(--fs-14); margin: 0 0 var(--sp-24); text-align: center; }
.stage__cap .lvdot { width: 8px; height: 8px; border-radius: var(--r-full); background: var(--savings); box-shadow: 0 0 0 4px rgba(22,163,74,0.22); flex: none; }
.stage__cap b { color: #fff; font-weight: 700; }
.showcase { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-24); align-items: end; }
.stage__note { text-align: center; color: #7E96AE; font-size: var(--fs-12); margin: var(--sp-24) 0 0; }

/* Browser chrome holding the tenant marketing SITE. */
.browser { border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-stage); transform: perspective(1700px) rotateY(3deg) rotateX(1.4deg); transition: transform .6s var(--ease); }
.showcase:hover .browser { transform: perspective(1700px) rotateY(0) rotateX(0); }
.browser__bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--brand-secondary); border-bottom: 1px solid rgba(255,255,255,0.08); }
.browser__bar .b-dots { display: flex; gap: 6px; }
.browser__bar .b-dots span { width: 11px; height: 11px; border-radius: var(--r-full); background: rgba(255,255,255,0.16); }
.browser__bar .b-url { margin-left: 8px; flex: 1; background: rgba(255,255,255,0.08); border-radius: 7px; height: 26px; display: flex; align-items: center; padding: 0 11px; color: #9FB6CC; font-family: var(--font-num); font-size: 0.72rem; }
.browser__bar .b-url svg { width: 12px; height: 12px; margin-right: 7px; stroke: var(--savings); fill: none; stroke-width: 2; }
/* The rendered tenant site inside the chrome (illustration pixels). */
.site { background: #fff; color: var(--neutral-fg); }
.site__nav { display: flex; align-items: center; gap: 14px; padding: 15px 20px; border-bottom: 1px solid var(--line-soft); }
.site__logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: var(--fs-14); color: var(--brand-secondary); }
.site__logo i { width: 24px; height: 24px; border-radius: 7px; background: linear-gradient(135deg, var(--brand-secondary), var(--navy-3)); display: inline-flex; align-items: center; justify-content: center; }
.site__logo i svg { width: 13px; height: 13px; stroke: var(--brand-accent); fill: none; stroke-width: 2; }
.site__nav .sn { margin-left: auto; display: flex; gap: 16px; align-items: center; color: var(--neutral-fg-3); font-size: 0.72rem; font-weight: 500; }
.site__nav .sn .cta { background: var(--brand-primary); color: #fff; padding: 6px 12px; border-radius: var(--r-full); font-size: 0.69rem; }
.site__hero { padding: 30px 26px 24px; background: linear-gradient(170deg, #EFF6FF, #fff 72%); }
.site__hero .badge { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--brand-primary); background: #E0EDFF; padding: 4px 10px; border-radius: var(--r-full); }
.site__hero h3 { font-size: var(--fs-24); line-height: 1.12; margin: 12px 0 8px; color: var(--brand-secondary); }
.site__hero p { font-size: 0.78rem; color: var(--neutral-fg-2); margin: 0 0 16px; max-width: 330px; line-height: 1.5; }
.site__hero .row { display: flex; gap: 9px; align-items: center; }
.site__hero .row .pri { background: var(--brand-primary); color: #fff; padding: 9px 16px; border-radius: var(--r-full); font-size: 0.72rem; font-weight: 700; }
.site__hero .row .sec { padding: 9px 14px; border-radius: var(--r-full); font-size: 0.72rem; font-weight: 700; color: var(--brand-secondary); box-shadow: inset 0 0 0 1px var(--neutral-border); }
.site__hero .meta { margin-top: 14px; font-size: 0.69rem; color: var(--neutral-fg-3); }
.site__strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 16px 26px 26px; }
.site__strip .s { background: var(--neutral-bg-tint); border-radius: 10px; padding: 12px; box-shadow: inset 0 0 0 1px var(--line-soft); }
.site__strip .s .ic { width: 26px; height: 26px; border-radius: 8px; background: #E6F1FB; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.site__strip .s .ic svg { width: 14px; height: 14px; stroke: var(--brand-primary); fill: none; stroke-width: 2; }
.site__strip .s b { display: block; font-size: 0.72rem; color: var(--brand-secondary); margin-bottom: 3px; }
.site__strip .s span { font-size: 0.62rem; color: var(--neutral-fg-3); line-height: 1.4; }

/* The ops DASHBOARD card, floating. */
.dashcard { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.5); }
.dashcard__head { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); background: #FBFDFF; }
.dashcard__head .av { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--brand-secondary), var(--navy-3)); color: #CFE6FF; display: flex; align-items: center; justify-content: center; font-size: 0.69rem; font-weight: 800; }
.dashcard__head .who { display: flex; flex-direction: column; line-height: 1.15; }
.dashcard__head .who b { font-size: var(--fs-14); color: var(--brand-secondary); }
.dashcard__head .who span { font-size: 0.66rem; color: var(--neutral-fg-3); }
.dashcard__head .tabs { margin-left: auto; display: flex; gap: 4px; background: var(--mk-accent-tint); padding: 3px; border-radius: 9px; }
.dashcard__head .tabs span { font-size: 0.66rem; font-weight: 600; color: var(--neutral-fg-3); padding: 4px 9px; border-radius: 6px; }
.dashcard__head .tabs span.on { background: #fff; color: var(--brand-secondary); box-shadow: var(--shadow-sm); }
.dashcard__body { padding: 15px 16px 16px; }
.greet { font-size: var(--fs-14); color: var(--brand-secondary); font-weight: 700; margin: 0 0 2px; }
.greet + span { font-size: 0.69rem; color: var(--neutral-fg-3); display: block; margin-bottom: 12px; }
.frow { display: flex; align-items: center; gap: 11px; padding: 10px 11px; border-radius: 11px; margin-bottom: 8px; box-shadow: inset 0 0 0 1px var(--line-soft); }
.frow .fm { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex: none; }
.frow .fm svg { width: 14px; height: 14px; fill: none; stroke-width: 2.1; }
.frow .fc { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.frow .fc .ft { font-size: 0.72rem; color: var(--neutral-fg); }
.frow .fc .fa { font-size: 0.62rem; color: var(--neutral-fg-3); }
.frow .famt { margin-left: auto; font-size: 0.75rem; font-weight: 700; color: var(--brand-secondary); font-family: var(--font-num); }
.frow.due { background: var(--mk-red-soft); }
.frow.due .fm { background: #FCE0D9; } .frow.due .fm svg { stroke: var(--mk-red); } .frow.due .famt { color: var(--mk-red); }
.frow.wait { background: #FFFAEF; } .frow.wait .fm { background: var(--mk-amber-soft); } .frow.wait .fm svg { stroke: var(--mk-amber); }
.frow.lead { background: var(--savings-soft); } .frow.lead .fm { background: #CFEEDD; } .frow.lead .fm svg { stroke: var(--savings-dk); } .frow.lead .famt { color: var(--savings-dk); }
.pipe { display: flex; gap: 8px; margin: 12px 0 0; }
.pipe .pt { flex: 1; background: var(--neutral-bg-tint); border-radius: 10px; padding: 9px; text-align: center; box-shadow: inset 0 0 0 1px var(--line-soft); }
.pipe .pt b { display: block; font-size: var(--fs-16); color: var(--brand-secondary); font-weight: 800; font-family: var(--font-num); }
.pipe .pt span { font-size: 0.6rem; color: var(--neutral-fg-3); }
.paybar { display: flex; align-items: center; gap: 10px; margin-top: 11px; padding: 11px 12px; border-radius: 11px; background: linear-gradient(120deg, var(--brand-secondary), var(--brand-primary)); color: #fff; }
.paybar .pyi { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; flex: none; }
.paybar .pyi svg { width: 14px; height: 14px; stroke: #CFE6FF; fill: none; stroke-width: 2; }
.paybar .pyt { display: flex; flex-direction: column; line-height: 1.2; }
.paybar .pyt b { font-size: 0.72rem; }
.paybar .pyt span { font-size: 0.62rem; color: #BCD3F5; }
.paybar .pyv { margin-left: auto; font-size: var(--fs-16); font-weight: 800; font-family: var(--font-num); }
/* Floating "new lead" pill on the dashboard. */
.pop { position: absolute; left: -16px; bottom: 22px; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 13px; padding: 11px 14px; box-shadow: var(--shadow-md); border: 1px solid var(--neutral-border); animation: floaty 4.5s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.pop .pi { width: 30px; height: 30px; border-radius: 9px; background: var(--savings); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.pop .pi svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2.6; }
.pop b { display: block; font-size: 0.72rem; color: var(--brand-secondary); }
.pop span { font-size: 0.62rem; color: var(--neutral-fg-3); }

/* Hero trust strip + caption. */
.hero__strip { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
.ministat { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-full); padding: 8px 14px; font-size: var(--fs-14); color: #D7E4F2; }
.ministat svg { width: 15px; height: 15px; fill: none; stroke: var(--brand-accent); stroke-width: 2.2; flex: none; }
.ministat b { color: #fff; font-weight: 700; }
.hero__cap { position: relative; z-index: 2; font-size: var(--fs-12); color: #7E96AE; text-align: center; padding-bottom: 30px; margin: var(--sp-24) 0 0; }

@media (max-width: 980px) {
  .hero__inner { padding: 44px 0 24px; }
  .showcase { grid-template-columns: 1fr; gap: 34px; }
  .browser { transform: none; }
}
@media (max-width: 560px) {
  .site__strip { grid-template-columns: 1fr 1fr; }
  .site__strip .s:last-child { display: none; }
  .pop { display: none; }
}


/* ============================================================
 * 4. HONEST PROOF BAR (no fabricated counts — facts about the
 *    platform, not customer testimonials)
 * ============================================================ */
.proofbar { background: var(--neutral-bg-tint); border-top: 1px solid var(--neutral-border); border-bottom: 1px solid var(--neutral-border); }
.proofbar__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.pb { padding: 26px 22px; text-align: center; border-right: 1px solid var(--neutral-border); }
.pb:last-child { border-right: 0; }
.pb .pn { font-size: var(--fs-32); font-weight: 800; color: var(--brand-secondary); letter-spacing: -0.03em; }
.pb .pn.g { color: var(--savings-dk); }
.pb .pl { font-size: var(--fs-14); color: var(--neutral-fg-2); margin-top: 3px; line-height: 1.4; }
@media (max-width: 560px) {
  .proofbar__row { grid-template-columns: 1fr 1fr; }
  .pb:nth-child(2) { border-right: 0; }
  .pb { border-bottom: 1px solid var(--neutral-border); }
}


/* ============================================================
 * 5. THE REVEAL — one black band, three vendors vs one system.
 *    The single yellow VS lives only here.
 * ============================================================ */
.reveal { background: var(--reveal-bg); color: #fff; overflow: hidden; }
.reveal__head { text-align: center; padding: 64px 24px 18px; }
.reveal__head h2 { color: #fff; font-size: var(--fs-32); margin-top: var(--sp-16); }
.reveal__head p { color: #B9B9B9; font-size: var(--fs-18); max-width: 620px; margin: var(--sp-12) auto 0; }
.reveal__inner { display: grid; grid-template-columns: 1fr 84px 1fr; align-items: stretch; }
.reveal__side { padding: 62px 48px; }
.reveal__side.three { background: var(--reveal-bg); }
.reveal__side.one { background: #fff; color: var(--neutral-fg); }
.reveal__tag { font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.reveal__side.three .reveal__tag { color: #8A8A8A; }
.reveal__side.one .reveal__tag { color: var(--savings-dk); }
.reveal__side h3 { font-size: var(--fs-32); font-weight: 800; margin: var(--sp-12) 0 var(--sp-24); line-height: 1.08; }
.reveal__side.three h3 { color: #fff; }
.reveal__side.one h3 { color: var(--brand-secondary); }
.vbill { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.reveal__side.one .vbill { border-bottom-color: var(--neutral-border); }
.vbill:last-of-type { border-bottom: 0; }
.vbill .vl { display: flex; flex-direction: column; }
.vbill .vn { font-size: var(--fs-16); font-weight: 600; }
.reveal__side.three .vbill .vn { color: #E6E6E6; }
.reveal__side.one .vbill .vn { color: var(--brand-secondary); }
.vbill .vs { font-size: 0.78rem; margin-top: 2px; }
.reveal__side.three .vbill .vs { color: #888; }
.reveal__side.one .vbill .vs { color: var(--neutral-fg-3); }
.vbill .vc { font-size: var(--fs-16); font-weight: 700; }
.reveal__side.three .vbill .vc { color: #fff; }
.reveal__side.one .vbill .vc { color: var(--savings-dk); }
.reveal__total { display: flex; align-items: baseline; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 2px solid; }
.reveal__side.three .reveal__total { border-top-color: #333; }
.reveal__side.one .reveal__total { border-top-color: var(--savings); }
.reveal__total .tl { font-size: 0.81rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.reveal__side.three .reveal__total .tl { color: #9A9A9A; }
.reveal__side.one .reveal__total .tl { color: var(--neutral-fg-2); }
.reveal__total .tv { font-size: var(--fs-32); font-weight: 800; letter-spacing: -0.03em; }
.reveal__side.three .reveal__total .tv { color: #fff; }
.reveal__side.one .reveal__total .tv { color: var(--savings-dk); }
.reveal__vs { display: flex; align-items: center; justify-content: center; background: var(--reveal-vs); }
.reveal__vs span { font-weight: 800; font-size: var(--fs-18); color: #0A0A0A; letter-spacing: -0.02em; white-space: nowrap; transform: rotate(-90deg); }
.reveal__foot { background: #fff; text-align: center; padding: 26px 24px; border-top: 1px solid var(--neutral-border); }
.reveal__foot b { font-size: var(--fs-18); font-weight: 800; color: var(--brand-secondary); }
.reveal__foot b span { color: var(--savings-dk); }
.reveal__note { display: block; margin-top: 8px; font-size: 0.78rem; color: var(--neutral-fg-3); font-weight: 400; }
@media (max-width: 900px) {
  .reveal__inner { grid-template-columns: 1fr; }
  .reveal__vs { padding: 14px; }
  .reveal__vs span { transform: none; }
}


/* ============================================================
 * 6. WHAT YOU GET — benefit grid + ad-clarity callout
 * ============================================================ */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-24); }
.bcard { background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); position: relative; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; }
.bcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C7D6E8; }
.bcard__ic { width: 48px; height: 48px; border-radius: 13px; background: var(--brand-secondary); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-16); }
.bcard__ic svg { width: 24px; height: 24px; fill: none; stroke: var(--brand-accent); stroke-width: 2; }
.bcard h3 { font-size: var(--fs-20); color: var(--brand-secondary); margin-bottom: 10px; }
.bcard > p { font-size: var(--fs-16); color: var(--neutral-fg-2); line-height: 1.55; margin-bottom: var(--sp-16); }
.bcard ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.bcard li { display: flex; gap: 10px; font-size: var(--fs-14); color: var(--neutral-fg); line-height: 1.45; }
.bcard li svg { width: 18px; height: 18px; fill: none; stroke: var(--savings); stroke-width: 2.6; flex: none; margin-top: 1px; }
.bcard__tag { position: absolute; top: 18px; right: 18px; font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--savings-dk); background: var(--savings-soft); border: 1px solid var(--savings-border); padding: 4px 10px; border-radius: var(--r-full); }
@media (max-width: 900px) { .bgrid { grid-template-columns: 1fr; } }

/* Ad clarity callout (corrects the "we write, you launch" positioning). */
.adclar { background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; overflow: hidden; margin-top: var(--sp-32); }
.adclar__l { padding: 34px 36px; }
.adclar__l .eyebrow { margin-bottom: 14px; }
.adclar__l h3 { font-size: var(--fs-24); color: var(--brand-secondary); margin-bottom: 12px; }
.adclar__l p { font-size: var(--fs-16); color: var(--neutral-fg-2); line-height: 1.6; }
.adclar__l p b { color: var(--neutral-fg); }
.adclar__steps { display: flex; flex-direction: column; background: var(--brand-secondary); padding: 30px 32px; color: #fff; }
.adstep { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.adstep:last-child { border-bottom: 0; }
.adstep .an { width: 28px; height: 28px; border-radius: 8px; background: var(--mk-accent-on-navy); color: var(--brand-accent); font-weight: 800; font-size: 0.81rem; display: flex; align-items: center; justify-content: center; flex: none; font-family: var(--font-num); }
.adstep b { font-size: 0.91rem; color: #fff; display: block; }
.adstep span { font-size: var(--fs-14); color: #A9C0D6; line-height: 1.45; }
.adstep .by { color: var(--brand-accent); font-weight: 600; }
@media (max-width: 760px) { .adclar { grid-template-columns: 1fr; } }


/* ============================================================
 * 7. HOW IT WORKS (4 steps with connecting arrows)
 * ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-16); }
.step { background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-lg); padding: 24px 22px; position: relative; box-shadow: var(--shadow-sm); }
.step .n, .step__n { width: 34px; height: 34px; border-radius: 9px; background: var(--brand-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: var(--fs-16); margin-bottom: var(--sp-16); }
.step h3 { font-size: var(--fs-18); color: var(--brand-secondary); margin-bottom: 8px; }
.step p { font-size: var(--fs-14); color: var(--neutral-fg-2); line-height: 1.5; margin: 0; }
.step .time, .step__t { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: var(--fs-12); font-weight: 700; color: var(--savings-dk); background: var(--savings-soft); padding: 5px 11px; border-radius: var(--r-full); }
.step .time svg, .step__t svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.3; }
.step__arrow { position: absolute; right: -14px; top: 38px; z-index: 2; color: #C2D2E4; }
.step__arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.steps--3 { grid-template-columns: repeat(3, 1fr); max-width: 920px; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .step__arrow { display: none; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
@media (max-width: 820px) { .steps--3 { grid-template-columns: 1fr; max-width: 460px; } }


/* ============================================================
 * 8. COMPARISON TABLE (Trydent column highlighted; mobile card-stack)
 * ============================================================ */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--neutral-border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); background: var(--neutral-bg); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 720px; }
.cmp th, .cmp td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: var(--fs-14); vertical-align: middle; }
.cmp thead th { background: var(--neutral-bg-tint); font-size: var(--fs-12); letter-spacing: 0.04em; text-transform: uppercase; color: var(--neutral-fg-2); font-weight: 700; border-bottom: 1px solid var(--neutral-border); }
.cmp .col-tr { background: rgba(19,102,214,0.05); }
.cmp thead .col-tr { background: var(--brand-secondary); }
.cmp thead .col-tr .cth b { color: #fff; font-size: var(--fs-16); font-weight: 800; text-transform: none; letter-spacing: -0.01em; display: block; }
.cmp thead .col-tr .cth span { color: var(--brand-accent); font-size: var(--fs-12); text-transform: none; letter-spacing: 0; font-weight: 600; }
.cmp tbody th { font-weight: 600; color: var(--neutral-fg); background: var(--neutral-bg); width: 28%; }
.cmp td.col-tr { font-weight: 600; color: var(--brand-secondary); }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }
.ck { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-14); font-weight: 600; }
.ck svg { width: 17px; height: 17px; fill: none; stroke-width: 2.5; flex: none; }
.ck.y, .ck.yes { color: var(--savings-dk); } .ck.y svg, .ck.yes svg { stroke: var(--savings); }
.ck.n, .ck.no { color: var(--neutral-fg-3); } .ck.n svg, .ck.no svg { stroke: var(--mk-red); }
.cmp-foot { margin-top: 14px; font-size: 0.78rem; color: var(--neutral-fg-3); text-align: center; }
@media (max-width: 720px) {
  .cmp-wrap { overflow: visible; border: 0; box-shadow: none; }
  table.cmp, table.cmp tbody, table.cmp tr, table.cmp th, table.cmp td { display: block; min-width: 0; width: auto; }
  table.cmp thead { display: none; }
  table.cmp tbody tr { background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-md); margin-bottom: var(--sp-16); padding: var(--sp-8) var(--sp-16) var(--sp-16); box-shadow: var(--shadow-sm); }
  table.cmp tbody th { width: auto; font-size: var(--fs-16); padding: var(--sp-12) 0 var(--sp-8); border-bottom: 1px solid var(--line-soft); }
  table.cmp td { border: 0; padding: var(--sp-8) 0 0; padding-left: 9rem; position: relative; }
  table.cmp td::before { content: attr(data-label); position: absolute; left: 0; width: 8.5rem; font-weight: 700; font-size: var(--fs-12); color: var(--neutral-fg-3); }
  table.cmp td.col-tr { background: transparent; }
}


/* ============================================================
 * 9. PRICING (highlighted plan card + side reassurance)
 * ============================================================ */
.price { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-24); align-items: stretch; }
.price__main { background: var(--neutral-bg); border: 2px solid var(--brand-primary); border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; position: relative; }
.price__ribbon { position: absolute; top: 0; right: 0; background: var(--brand-primary); color: #fff; font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 7px 16px; border-bottom-left-radius: var(--r-md); }
.price__top { padding: 28px 30px 0; }
.price__top .tier { font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--brand-primary); }
.price__top h3 { font-size: var(--fs-24); color: var(--brand-secondary); margin-top: 8px; }
.price__figs { display: flex; align-items: center; gap: 22px; padding: 24px 30px; border-bottom: 1px solid var(--line-soft); flex-wrap: wrap; }
.price__fig .amt { font-size: var(--fs-40); font-weight: 800; color: var(--brand-secondary); letter-spacing: -0.03em; line-height: 1; }
.price__fig .amt small { font-size: var(--fs-18); font-weight: 700; color: var(--neutral-fg-2); }
.price__fig .cap { font-size: var(--fs-14); color: var(--neutral-fg-3); margin-top: 4px; }
.price__sep { width: 1px; height: 46px; background: var(--neutral-border); }
.price__body { padding: 24px 30px 30px; }
.price__incl { list-style: none; margin: 0 0 22px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.price__incl li { display: flex; gap: 9px; font-size: var(--fs-14); color: var(--neutral-fg); }
.price__incl svg { width: 18px; height: 18px; fill: none; stroke: var(--savings); stroke-width: 2.6; flex: none; margin-top: 1px; }
.price__main .btn { width: 100%; }
.price__reassure { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; }
.price__reassure span { display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-14); color: var(--neutral-fg-2); font-weight: 500; }
.price__reassure svg { width: 16px; height: 16px; fill: none; stroke: var(--savings); stroke-width: 2.6; }
.price__side { display: flex; flex-direction: column; gap: 18px; }
.guarantee { background: var(--brand-secondary); color: #fff; border-radius: var(--r-lg); padding: 26px; flex: 1; border-left: 0; margin: 0; }
.guarantee .gi { width: 42px; height: 42px; border-radius: 11px; background: var(--mk-accent-on-navy); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.guarantee .gi svg { width: 22px; height: 22px; fill: none; stroke: var(--brand-accent); stroke-width: 2.2; }
.guarantee b { font-size: var(--fs-18); display: block; margin-bottom: 8px; color: #fff; }
.guarantee p { font-size: var(--fs-14); color: #B6CADD; line-height: 1.55; margin: 0; }
.human { background: var(--savings-soft); border: 1px solid var(--savings-border); border-radius: var(--r-lg); padding: 20px 22px; display: flex; align-items: center; gap: 14px; }
.human .av { width: 46px; height: 46px; border-radius: var(--r-full); background: var(--savings); color: #fff; font-weight: 800; font-size: var(--fs-16); display: flex; align-items: center; justify-content: center; flex: none; }
.human b { font-size: var(--fs-14); color: var(--savings-dk); display: block; }
.human span { font-size: var(--fs-14); color: #3F6B4F; line-height: 1.45; }
@media (max-width: 900px) { .price { grid-template-columns: 1fr; } .price__incl { grid-template-columns: 1fr; } }


/* ============================================================
 * 10. TRADES (Live-now cards + "built for trades like" chip row)
 * ============================================================ */
.trades { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-24); }
.trade { background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease; }
.trade:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.trade__ph { height: 170px; position: relative; overflow: hidden; background: var(--neutral-bg-tint); }
.trade__ph img { width: 100%; height: 100%; object-fit: cover; }
.trade__tag { position: absolute; top: 12px; left: 12px; font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; background: var(--savings); padding: 5px 11px; border-radius: var(--r-full); display: inline-flex; align-items: center; gap: 6px; }
.trade__tag .lvdot { width: 7px; height: 7px; border-radius: var(--r-full); background: #fff; }
.trade__body { padding: 22px 24px; }
.trade__body h3 { font-size: var(--fs-20); color: var(--brand-secondary); margin-bottom: 8px; }
.trade__body p { font-size: var(--fs-14); color: var(--neutral-fg-2); line-height: 1.55; margin-bottom: 14px; }
.trade__body ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.trade__body li { font-size: var(--fs-12); color: var(--neutral-fg-2); background: var(--neutral-bg-tint); border: 1px solid var(--neutral-border); padding: 5px 11px; border-radius: var(--r-full); }
.more { margin-top: 30px; text-align: center; }
.more h4 { font-size: var(--fs-14); color: var(--neutral-fg-2); font-weight: 700; margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; max-width: 780px; margin: 0 auto; }
.chip { font-size: var(--fs-14); color: var(--neutral-fg); background: var(--neutral-bg); border: 1px solid var(--neutral-border); padding: 8px 15px; border-radius: var(--r-full); box-shadow: var(--shadow-sm); }
.more > p { margin-top: 18px; font-size: var(--fs-14); color: var(--neutral-fg-2); }
.more a { color: var(--brand-primary); font-weight: 600; }
@media (max-width: 720px) { .trades { grid-template-columns: 1fr; } }


/* ============================================================
 * 11. FAQ (native details/summary accordion)
 * ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: var(--sp-12); }
details.faq { background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
details.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: var(--fs-16); font-weight: 600; color: var(--brand-secondary); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq .chev { width: 20px; height: 20px; fill: none; stroke: var(--neutral-fg-3); stroke-width: 2.2; flex: none; transition: transform .2s ease; }
details.faq[open] .chev { transform: rotate(180deg); }
details.faq .ans { padding: 0 22px 20px; font-size: var(--fs-16); color: var(--neutral-fg-2); line-height: 1.62; }


/* ============================================================
 * 12. FINAL CTA (navy, full-bleed)
 * ============================================================ */
.final {
  color: #fff; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(111,183,245,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy-2), var(--brand-secondary));
}
.final h2 { font-size: var(--fs-40); margin: var(--sp-16) auto; max-width: 760px; color: #fff; }
.final p { font-size: var(--fs-18); color: #C9DAEC; max-width: 620px; margin: 0 auto var(--sp-24); line-height: 1.55; }
.final .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final .badge-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.final .bp { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-14); color: #C9DAEC; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); padding: 8px 15px; border-radius: var(--r-full); }
.final .bp svg { width: 15px; height: 15px; fill: none; stroke: var(--savings); stroke-width: 2.6; }


/* ============================================================
 * 13. STICKY MOBILE CTA (always-on under 720px, off on transactional)
 * ============================================================ */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  body:not(.is-transactional) { padding-bottom: var(--mobile-cta-h); }
  .sticky-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120; background: var(--brand-secondary); border-top: 1px solid rgba(255,255,255,0.1); padding: 11px 16px; box-shadow: 0 -8px 24px rgba(0,0,0,0.22); align-items: center; gap: var(--sp-12); justify-content: space-between; }
  body.is-transactional .sticky-cta { display: none; }
  .sticky-cta .sc-text { flex: 1; min-width: 0; }
  .sticky-cta .sc-text b { display: block; font-size: var(--fs-14); font-weight: 700; color: #fff; line-height: 1.2; }
  .sticky-cta .sc-text span { font-size: var(--fs-12); color: #9FB6CC; }
  .sticky-cta .btn { flex: none; }
}
/* Legacy hook from components.css; the marketing sticky CTA is the one above. */
body.is-transactional .mobile-sticky-cta { display: none; }


/* ============================================================
 * 14. SHARED INNER-PAGE COMPONENTS (tour, /start chooser, offer,
 *     signup, demo banner, video facade) — reused by other pages.
 *     Restyled to the new tokens; structure unchanged so site.js
 *     and the existing page markup keep working.
 * ============================================================ */

/* Tour demo picker (one card per trade). */
.demo-picker { display: grid; gap: var(--sp-24); grid-template-columns: 1fr 1fr; max-width: 860px; margin: 0 auto; }
.demo-picker__group { background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-lg); padding: var(--sp-24); box-shadow: var(--shadow-sm); }
.demo-picker__label { text-align: center; margin: 0 0 var(--sp-16); font-size: var(--fs-18); }
.demo-picker[data-single="true"] { grid-template-columns: 1fr; max-width: 480px; }
@media (max-width: 760px) { .demo-picker { grid-template-columns: 1fr; } }

/* Trade chooser (/start/). */
.choice-grid { display: grid; gap: var(--sp-24); grid-template-columns: 1fr 1fr; max-width: 720px; margin: var(--sp-32) auto 0; }
.choice-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-12); padding: var(--sp-32) var(--sp-24); background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-lg); text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: border-color .15s, box-shadow .15s, transform .15s; }
.choice-card:hover, .choice-card:focus-visible { border-color: var(--brand-primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.choice-card__icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: var(--r-md); background: var(--mk-go-soft); color: var(--brand-primary); }
.choice-card__icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 2; }
.choice-card__title { font-size: var(--fs-20); font-weight: 700; }
.choice-card__desc { color: var(--neutral-fg-2); font-size: var(--fs-14); }
@media (max-width: 600px) { .choice-grid { grid-template-columns: 1fr; } }

/* Inert instant-quote demo widget. */
.quote-demo { background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-lg); padding: var(--sp-24); }
.quote-demo .field { margin-bottom: var(--sp-16); }
.quote-demo .field label { display: block; font-weight: 600; margin-bottom: var(--sp-8); }
.quote-demo select, .quote-demo input { width: 100%; padding: var(--sp-12); border: 1px solid var(--neutral-border); border-radius: var(--r-sm); font: inherit; background: #fff; }
.quote-demo__result { margin-top: var(--sp-8); padding: var(--sp-16); border-radius: var(--r-md); background: var(--neutral-bg-tint); text-align: center; font-size: var(--fs-18); color: var(--brand-primary); }
.quote-demo__result span { display: block; font-size: var(--fs-14); color: var(--neutral-fg-3); font-weight: 400; margin-top: 2px; }
.quote-demo__disc { font-size: var(--fs-12); color: var(--neutral-fg-3); text-align: center; margin: var(--sp-12) 0 0; }

/* Offer page (/{trade}/offer/). */
.offer { max-width: 620px; margin: 0 auto; }
.offer__price { font-size: 1.5rem; font-weight: 700; text-align: center; margin: 0; }
.offer__price span { color: var(--neutral-fg-3); font-weight: 500; font-size: var(--fs-16); }
.offer__list { list-style: none; padding: 0; margin: var(--sp-24) 0; display: grid; gap: var(--sp-12); }
.offer__list li { display: flex; gap: var(--sp-12); align-items: flex-start; font-size: var(--fs-16); }
.offer__list li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; stroke: var(--savings); fill: none; stroke-width: 2; }

/* Signup form. */
.signup-wrap { max-width: 540px; margin: var(--sp-64) auto; padding: 0 var(--sp-24); }
.signup-wrap > h1 { text-align: center; font-size: var(--fs-32); }
.signup-wrap > .lead { text-align: center; margin-bottom: var(--sp-32); }
.signup-card { background: var(--neutral-bg); border: 1px solid var(--neutral-border); border-radius: var(--r-lg); padding: var(--sp-32); box-shadow: var(--shadow-md); }
.signup-pricing { background: var(--neutral-bg-tint); border-radius: var(--r-md); padding: var(--sp-16); margin-bottom: var(--sp-24); font-size: var(--fs-14); }
.signup-pricing strong { font-size: var(--fs-18); color: var(--brand-secondary); }
.field { margin-bottom: var(--sp-16); }
.field label { display: block; font-weight: 600; margin-bottom: var(--sp-8); font-size: var(--fs-14); }
.field input { width: 100%; min-height: var(--touch-min); padding: var(--sp-12) var(--sp-16); border: 1px solid var(--neutral-border); border-radius: var(--r-sm); font: inherit; background: var(--neutral-bg); color: var(--neutral-fg); }
/* Radios/checkboxes must escape the text-input sizing above. Without this the
   "Your web address" radios inflate to full-width 48px boxes that push their
   labels off the card (worst on mobile). Keep them native-sized beside the label. */
.field input[type="radio"], .field input[type="checkbox"] { width: auto; height: auto; min-height: 0; padding: 0; border: 0; flex: none; accent-color: var(--brand-primary); }
.field .hint { font-size: var(--fs-12); color: var(--neutral-fg-3); margin-top: var(--sp-4); }
.field--error input { border-color: var(--color-error); }
.field__error { color: var(--color-error); font-size: var(--fs-14); margin-top: var(--sp-8); min-height: 1.2em; }
.domain-row { display: flex; align-items: center; border: 1px solid var(--neutral-border); border-radius: var(--r-sm); background: var(--neutral-bg); }
.field--error .domain-row { border-color: var(--color-error); }
.domain-row input { flex: 1; min-width: 0; border: 0; background: transparent; }
.domain-row input:focus-visible { outline: none; }
.domain-row .suffix { padding: 0 var(--sp-16); color: var(--neutral-fg-3); white-space: nowrap; }
/* Narrow phones: the ".painters.trydent.io" / ".tint.trydent.io" suffix is long
   enough to crush the input to a few characters and look messy. Stack it under a
   full-width input, with the suffix on its own tinted line, so the whole address
   stays readable and nothing runs out of the card. */
@media (max-width: 480px) {
  .domain-row { flex-direction: column; align-items: stretch; }
  .domain-row input { width: 100%; padding: var(--sp-12) var(--sp-16); min-height: var(--touch-min); }
  .domain-row .suffix {
    padding: var(--sp-8) var(--sp-16);
    border-top: 1px solid var(--neutral-border);
    background: var(--neutral-bg-tint);
    white-space: normal;
    word-break: break-word;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
  }
}
.signup-status { font-size: var(--fs-14); margin-top: var(--sp-12); min-height: 1.2em; color: var(--neutral-fg-3); }
.signup-status--error { color: var(--color-error); font-weight: 600; }
.signup-legal { font-size: var(--fs-12); color: var(--neutral-fg-3); margin-top: var(--sp-16); }
.signup-assent { font-size: var(--fs-14); color: var(--neutral-fg); line-height: 1.5; margin: 0 0 var(--sp-16); }
.signup-assent a { color: var(--brand-primary); text-decoration: underline; font-weight: 600; }
.signup-assent a:hover { color: var(--brand-primary-dk); }

/* Transactional pages (signup, checkout return): no sticky CTA. */
body.is-transactional { padding-bottom: 0; }

/* Same-origin example-site replica "back to Trydent" banner. */
.demo-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 40px; display: flex; align-items: center; justify-content: center; gap: var(--sp-16); background: var(--brand-secondary); color: #fff; font-size: var(--fs-14); }
.demo-banner a { color: var(--brand-accent); font-weight: 600; text-decoration: none; }
.demo-banner__cta { background: #1366D6; color: #fff !important; padding: 5px 14px; border-radius: var(--r-full); }
.demo-banner__cta:hover { background: #0F55B5; }
body.has-demo-banner { padding-top: 40px; }
@media (max-width: 600px) { .demo-banner { gap: var(--sp-12); font-size: 0.8rem; } .demo-banner__dash { display: none; } }

/* Video facade card (used by /learn, how-it-works). */
.video-card { border: 1px solid var(--neutral-border); border-radius: var(--r-md); overflow: hidden; background: var(--neutral-bg); }
.video-facade { position: relative; display: block; width: 100%; border: 0; padding: 0; cursor: pointer; aspect-ratio: 16 / 9; background: var(--neutral-bg-tint) center/cover no-repeat; }
.video-facade__play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; display: grid; place-items: center; border-radius: var(--r-full); background: rgba(11,34,56,0.85); color: #fff; font-size: var(--fs-24); }
.video-card__body { padding: var(--sp-16) var(--sp-24); }
.video-card__body h3 { font-size: var(--fs-18); margin: 0 0 var(--sp-4); }
.video-card__dur { font-size: var(--fs-12); color: var(--neutral-fg-3); }
