/* =============================================================================
   VTW26 mini-site — Phase 3b production-candidate stylesheet
   Consumes ../design-tokens.css. NO hardcoded hexes below this line except the
   two visually-hidden utility values, which carry no brand meaning.
   Design Agent · 27 July 2026 · v1.0
   ========================================================================== */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;font-family:var(--font-body)}
body{
  font-family:var(--font-body);
  font-size:var(--vtw-body-size);
  line-height:var(--vtw-body-lead);
  color:var(--body);
  background:var(--page-canvas);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
body.bp-mobile{width:var(--vtw-bp-mobile);margin:0 auto;overflow-x:hidden}
body.bp-desktop{width:var(--vtw-bp-desk);margin:0 auto}
img{max-width:100%;height:auto;display:block}
a{color:var(--action);text-underline-offset:3px}

/* ── focus: one ring, every interactive element, all three pages ─────────── */
a:focus-visible,button:focus-visible,input:focus-visible,.btn:focus-visible{
  outline:var(--vtw-focus-outline);
  outline-offset:var(--vtw-focus-offset);
  box-shadow:var(--vtw-focus-ring);
  border-radius:var(--radius);
}
.skip{
  position:absolute;left:0;top:0;z-index:99;
  transform:translateY(-140%);
  background:var(--ink);color:#fff;padding:14px 22px;
  border-radius:0 0 var(--radius) 0;
  font-family:var(--font-structural);font-size:14px;font-weight:600;text-decoration:none;
}
.skip:focus{transform:translateY(0)}
.vh{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ── shell ───────────────────────────────────────────────────────────────── */
.shell{max-width:var(--container);margin:0 auto;padding:0 var(--vtw-gutter-mobile)}
/* .shell.text — a narrow, centred editorial column. Deliberate: used for the
   "Lived experience" definition on page 1, where isolating the term is the
   whole point of the section. */
.shell.text{max-width:var(--text-col)}
.text{max-width:var(--text-col)}
/* the terminal handoff CTA — the one moment a page wants a single focal action */
.cta-final{max-width:640px;margin:0 auto;text-align:center}
.cta-final .copy{margin-left:auto;margin-right:auto}
.cta-final .ctarow{align-items:center;justify-content:center}
section{padding:var(--vtw-section-y-mobile) 0}

/* ── bands (the one-way gradient) ────────────────────────────────────────── */
.band-1{background:var(--vtw-band-1-bg)}
.band-2{background:var(--vtw-band-2-bg)}
.band-pivot{background:var(--vtw-band-3-bg);padding:var(--vtw-band-pivot-y-m) 0;border-top:var(--vtw-rule);border-bottom:var(--vtw-rule)}
.band-4{background:var(--vtw-band-4-bg)}
.band-5{background:var(--vtw-band-5-bg);border-top:var(--vtw-rule)}
.band-sand{background:var(--band-neutral)}
.band-cloud{background:var(--tat-cloud)}

/* ── header ──────────────────────────────────────────────────────────────── */
.site-head{
  background:var(--vtw-header-bg);
  border-bottom:var(--vtw-header-rule-w) solid var(--vtw-header-rule);
  /* deliberately not sticky — a persistent origin brand fights the gradient */
}
.head-in{
  min-height:var(--vtw-header-min-h);
  padding-top:var(--vtw-header-pad-y);
  padding-bottom:var(--vtw-header-pad-y);
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
}
.lockup{display:flex;align-items:center;gap:var(--vtw-lockup-gap)}
.lockup .mark-tat{height:var(--vtw-lockup-tat-h-m);width:auto}
.lockup .mark-aits{height:var(--vtw-lockup-aits-h-m);width:auto}
.lockup .with{
  font-family:var(--vtw-lockup-word-font);
  font-size:var(--vtw-lockup-word-size);
  font-weight:400;
  color:var(--vtw-lockup-word-color);
}
.head-eyebrow{
  display:none;
  font-family:var(--font-structural);
  font-size:var(--vtw-eyebrow-size);
  font-weight:var(--vtw-eyebrow-weight);
  letter-spacing:var(--vtw-eyebrow-tracking);
  text-transform:uppercase;
  color:var(--host-accent);
}

/* ── Virtuoso partner credential badge (J4D80Kht) ───────────────────────────
   A THIRD mark, deliberately NOT part of the .lockup (TAT-with-AITS) group —
   a sibling in .head-in instead, so .head-in's own flex-wrap can drop it to
   its own line on narrow viewports independently of the co-brand lockup's
   width, rather than fighting it for room in one unwrapping row.
   Dark-chip treatment: see design-tokens.css §3.2b for why. */
.partner-badge{
  display:inline-flex;align-items:center;gap:var(--vtw-partner-badge-gap);
  background:var(--vtw-partner-badge-bg);
  border-radius:var(--vtw-partner-badge-radius);
  padding:var(--vtw-partner-badge-pad-header);
  flex:0 0 auto;
}
.partner-badge__logo{height:var(--vtw-partner-badge-logo-h-m);width:auto;display:block}
.partner-badge__label{
  font-family:var(--font-structural);
  font-size:var(--vtw-partner-badge-label-size);
  font-weight:700;
  letter-spacing:var(--vtw-partner-badge-label-tracking);
  text-transform:uppercase;
  color:var(--vtw-partner-badge-fg);
  white-space:nowrap;
}
/* the hero badge — same component, slightly larger, sits under the headline */
.hero-badge{margin:16px 0 0}
.hero-badge .partner-badge{padding:var(--vtw-partner-badge-pad-hero)}
.hero-badge .partner-badge__logo{height:var(--vtw-partner-badge-logo-h-hero)}
.hero-badge .partner-badge__label{font-size:var(--vtw-partner-badge-label-size-hero)}

/* ── type ────────────────────────────────────────────────────────────────── */
.eyebrow{
  font-family:var(--font-structural);
  font-size:var(--vtw-eyebrow-size);
  font-weight:var(--vtw-eyebrow-weight);
  letter-spacing:var(--vtw-eyebrow-tracking);
  text-transform:uppercase;
  color:var(--host-accent);
  display:flex;align-items:center;gap:11px;margin-bottom:18px;
}
.eyebrow::before{content:"";width:28px;height:3px;background:var(--host-accent);flex:0 0 auto}
h1{
  font-family:var(--font-display);
  font-size:var(--vtw-h1-m);
  font-weight:600;
  line-height:1.14;
  color:var(--ink);
  letter-spacing:-.01em;
}
h1 .accent{color:var(--host-accent)}
h2{
  font-family:var(--font-display);
  font-size:var(--vtw-h2-m);
  font-weight:600;
  line-height:1.2;
  color:var(--ink);
  letter-spacing:-.01em;
}
h3{
  font-family:var(--font-structural);
  font-size:var(--vtw-h3-m);
  font-weight:600;
  line-height:1.3;
  color:var(--ink);
  letter-spacing:0;
}
.lede{font-size:var(--vtw-lede-m);line-height:1.62;color:var(--body);margin-top:18px;max-width:var(--text-col)}
p.copy{margin-top:18px;max-width:var(--text-col)}
p.copy + p.copy{margin-top:14px}
.copy b,.lede b{color:var(--ink);font-weight:600}
.term{font-weight:700;color:var(--ink)}
.micro{font-size:var(--vtw-small-size);color:var(--muted);margin-top:14px;line-height:1.55}

/* ── the three display lines under "What is a lived experience?" ─────────── */
.displines{margin-top:24px}
.displines span{
  display:block;font-family:var(--font-display);font-weight:600;
  font-size:21px;line-height:1.38;color:var(--ink);letter-spacing:-.01em;
}
/* ── dictionary-style definition card. Carries the coined term in its exact
      canonical wording — the seeding string the project plan requires
      verbatim — without repeating the display lines above it as prose. ───── */
.defcard{
  background:var(--vtw-card-bg);
  border:1px solid var(--hairline);
  border-left:4px solid var(--host-accent);
  border-radius:var(--radius);
  padding:18px 22px;margin-top:26px;max-width:var(--text-col);
}
.defcard .dt{
  font-family:var(--font-structural);font-size:11px;font-weight:700;
  letter-spacing:.11em;text-transform:uppercase;color:var(--host-accent);margin-bottom:7px;
}
.defcard .dd{font-size:17px;line-height:1.6;color:var(--ink)}

/* ── the pivot line ──────────────────────────────────────────────────────── */
.pivot-line{
  font-family:var(--aits-display);
  font-size:var(--vtw-pivot-m);
  font-weight:500;
  line-height:1.38;
  color:var(--ink);
  letter-spacing:-.01em;
  max-width:30ch;
}

/* ── buttons ─────────────────────────────────────────────────────────────── */
.ctarow{display:flex;flex-direction:column;gap:var(--vtw-stack-sm);margin-top:var(--vtw-stack-lg);align-items:stretch}
.btn{
  display:inline-flex;align-items:center;justify-content:center;text-align:center;
  font-family:var(--vtw-btn-font);
  font-size:var(--vtw-btn-size);
  font-weight:var(--vtw-btn-weight);
  text-transform:var(--vtw-btn-case);
  letter-spacing:var(--vtw-btn-tracking);
  line-height:1.2;
  padding:var(--vtw-btn-padding);
  min-height:var(--vtw-btn-min-tap);
  border-radius:var(--vtw-btn-radius);
  border:2px solid transparent;
  text-decoration:none;
  cursor:pointer;
  width:100%;
  transition:var(--vtw-btn-transition);
}
.btn-primary{background:var(--vtw-btn-fill);color:var(--vtw-btn-label);border-color:var(--vtw-btn-fill)}
.btn-primary:hover{background:var(--vtw-btn-fill-hover);border-color:var(--vtw-btn-fill-hover)}
.btn-ghost{background:transparent;color:var(--vtw-btn-ghost-label);border-color:var(--vtw-btn-ghost-border)}
.btn-ghost:hover{background:var(--vtw-btn-ghost-hover)}
.btn[aria-disabled="true"]{opacity:.62;pointer-events:none}

/* ── cards & grids ───────────────────────────────────────────────────────── */
.grid{display:grid;gap:var(--vtw-grid-gap-m);margin-top:var(--vtw-stack-lg)}
.g2,.g3{grid-template-columns:1fr}
.card{
  background:var(--vtw-card-bg);
  border:var(--vtw-card-border);
  border-radius:var(--vtw-card-radius);
  padding:var(--vtw-card-pad-m);
}
.card h3{margin-bottom:8px}
.card p{font-size:15px;line-height:1.62;color:var(--body)}
.card .num{
  display:inline-block;font-family:var(--font-structural);font-size:11px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:var(--host-accent);margin-bottom:10px;
}
.card .num.aits{color:var(--action)}
.card .ctarow{margin-top:18px}

/* ── stat row ────────────────────────────────────────────────────────────── */
.statrow{
  display:flex;flex-direction:column;margin-top:var(--vtw-stack-lg);
  background:var(--vtw-card-bg);border:var(--vtw-card-border);border-radius:var(--vtw-card-radius);overflow:hidden;
}
.statrow .stat{flex:1;padding:20px 22px;border-bottom:var(--vtw-rule)}
.statrow .stat:last-child{border-bottom:none}
.statrow .stat b{
  display:block;font-family:var(--font-structural);font-size:22px;font-weight:700;
  color:var(--ink);line-height:1.2;letter-spacing:-.01em;
}
.statrow.accent .stat b{color:var(--host-accent)}
.statrow.aits .stat b{color:var(--action)}
.h-structural{font-family:var(--font-structural);font-weight:600;letter-spacing:-.005em}
.statrow .stat span{display:block;font-size:14px;line-height:1.5;color:var(--body);margin-top:6px}

/* ── split layouts ───────────────────────────────────────────────────────── */
.split{display:block}
.hero-media{display:none}
.hero-media img,.media img{border-radius:var(--radius);width:100%}
.media{margin-top:26px}

/* ── the capture gate ────────────────────────────────────────────────────── */
/* constrained to the gate's own width — a step rail stretched across the full
   1200px container reads as unrelated to the form it belongs to */
.steps{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:22px;max-width:560px;font-family:var(--font-structural);font-size:13px;color:var(--muted)}
.steps .stp{display:flex;align-items:center;gap:8px}
.steps .dot{
  width:24px;height:24px;border-radius:50%;border:1.5px solid var(--hairline);
  display:inline-flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:var(--muted);
}
.steps .stp.on{color:var(--ink);font-weight:600}
.steps .stp.on .dot{background:var(--action);border-color:var(--action);color:#fff}
.steps .sep{flex:1;height:1px;background:var(--hairline);min-width:14px}
.gate{
  background:var(--vtw-card-bg);border:var(--vtw-card-border);border-radius:var(--vtw-card-radius);
  padding:22px;margin-top:var(--vtw-stack-lg);max-width:560px;box-shadow:var(--vtw-elevation-max);
}
.field-wrap{margin-bottom:18px}
.flabel{
  display:block;font-family:var(--font-structural);font-size:var(--vtw-field-label-size);
  font-weight:600;color:var(--vtw-field-label-color);margin-bottom:7px;
}
.flabel .opt{font-weight:400;color:var(--muted)}
.field{
  width:100%;height:var(--vtw-field-h);padding:var(--vtw-field-pad);
  font-family:var(--font-body);font-size:16px;color:var(--ink);
  background:var(--vtw-field-bg);border:1px solid var(--vtw-field-border);
  border-radius:var(--vtw-field-radius);
}
.field::placeholder{color:var(--muted)}
.field:focus{outline:none;border:2px solid var(--vtw-field-border-focus);box-shadow:var(--vtw-focus-ring)}
.field[aria-invalid="true"]{border:2px solid var(--vtw-field-border-error);background:var(--vtw-field-error-bg)}
.fhint{font-size:13.5px;line-height:1.5;color:var(--muted);margin-top:7px}
.ferr{display:flex;gap:7px;align-items:flex-start;font-size:14px;font-weight:600;color:var(--vtw-field-border-error);margin-top:8px;line-height:1.45}
.ferr .ico{
  flex:0 0 auto;width:17px;height:17px;border:2px solid var(--vtw-field-border-error);border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;font-size:11px;margin-top:1px;
}
.gate .ctarow{margin-top:8px}
.gate .fhint.legal{margin-top:16px}

/* ── state gallery (review artefact — not shipped) ───────────────────────── */
.states{
  margin-top:56px;max-width:600px;
  border:2px dashed var(--muted);border-radius:var(--radius);
  padding:22px;background:var(--band-neutral);
}
.states .hdr{
  font-family:var(--font-structural);font-size:11px;font-weight:700;letter-spacing:.11em;
  text-transform:uppercase;color:#fff;background:var(--ink);
  display:inline-block;padding:5px 11px;border-radius:4px;margin-bottom:6px;
}
.states .hdr-note{font-size:13.5px;color:var(--body);margin-bottom:22px;line-height:1.55}
.states .lbl{
  font-family:var(--font-structural);font-size:11px;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--body);margin-bottom:10px;
}
.states .row{margin-bottom:26px}
.states .row:last-child{margin-bottom:0}
.banner{
  border:1px solid var(--vtw-field-border-error);background:var(--vtw-field-error-bg);
  border-radius:var(--radius);padding:13px 16px;font-size:15px;color:var(--ink);margin-bottom:14px;line-height:1.5;
}

/* ── footer ──────────────────────────────────────────────────────────────── */
.site-foot{background:var(--vtw-band-foot-bg);border-top:var(--vtw-rule);padding:44px 0 40px}
.footcols{display:grid;grid-template-columns:1fr;gap:26px}
.site-foot .lockup{margin-bottom:14px}
/* Ink Muted on Sand is 4.52:1 — legal, but only just, and this is 13px type.
   The brief pins the "with" separator at Ink Muted *on Cream* (4.96:1), which
   is the header. In the footer the ground is Sand, so step it up one. */
.site-foot .lockup .with{color:var(--body)}
.foot-note{font-family:var(--font-structural);font-size:13px;line-height:1.7;color:var(--body)}
/* inline-block + padding so the footer links clear the WCAG 2.2 2.5.8 target
   size on their own merits, rather than relying on the inline-link exception */
.foot-note a{color:var(--action);display:inline-block;padding:4px 0;min-height:24px}
.foot-desc{font-family:var(--font-structural);font-size:11px;letter-spacing:.09em;text-transform:uppercase;color:var(--body);margin-bottom:8px}

/* ── review chrome (the grey strip at the very top; never shipped) ───────── */
.reviewbar{background:var(--aits-ink);color:#fff;padding:14px var(--vtw-gutter-mobile);font-family:var(--font-structural);font-size:12px;line-height:1.6}
.reviewbar b{color:#fff}
.reviewbar span{color:var(--tat-sand)}

/* ═══ WIDE ═══════════════════════════════════════════════════════════════ */

body.bp-desktop .shell{padding:0 var(--vtw-gutter-desk)}
body.bp-desktop section{padding:var(--vtw-section-y-desk) 0}
body.bp-desktop .band-pivot{padding:var(--vtw-band-pivot-y-d) 0}
body.bp-desktop h1{font-size:var(--vtw-h1-d);letter-spacing:var(--vtw-h1-tracking-d)}
body.bp-desktop h2{font-size:var(--vtw-h2-d)}
body.bp-desktop h3{font-size:var(--vtw-h3-d)}
body.bp-desktop .lede{font-size:var(--vtw-lede-d)}
body.bp-desktop .pivot-line{font-size:var(--vtw-pivot-d)}
body.bp-desktop .split{display:grid;grid-template-columns:1fr 0.82fr;gap:56px;align-items:center}
body.bp-desktop .split.media-left{grid-template-columns:0.82fr 1fr}
body.bp-desktop .g2{grid-template-columns:1fr 1fr;gap:var(--vtw-grid-gap-d)}
body.bp-desktop .g3{grid-template-columns:repeat(3,1fr);gap:var(--vtw-grid-gap-d)}
body.bp-desktop .statrow{flex-direction:row}
body.bp-desktop .statrow .stat{border-right:var(--vtw-rule);border-bottom:none}
body.bp-desktop .statrow .stat:last-child{border-right:none}
body.bp-desktop .ctarow{flex-direction:row;align-items:center}
body.bp-desktop .ctarow .btn{width:auto}
body.bp-desktop .card{padding:var(--vtw-card-pad-d)}
body.bp-desktop .head-in{gap:32px}
body.bp-desktop .head-eyebrow{display:block}
body.bp-desktop .partner-badge__logo{height:var(--vtw-partner-badge-logo-h-d)}
body.bp-desktop .hero-media{display:block}
body.bp-desktop .media{display:none}
body.bp-desktop .footcols{grid-template-columns:1fr 1fr;gap:40px;align-items:end}
body.bp-desktop .gate{padding:40px}
body.bp-desktop .steps{gap:16px}
body.bp-desktop .displines span{font-size:26px}
body.bp-desktop h2.eyebrow{font-size:var(--vtw-eyebrow-size);line-height:1.4}
body.bp-desktop .defcard{padding:22px 26px}
body.bp-desktop .reviewbar{padding-left:var(--vtw-gutter-desk);padding-right:var(--vtw-gutter-desk)}

@media (min-width:768px){

body:not(.bp-mobile):not(.bp-desktop) .shell{padding:0 var(--vtw-gutter-desk)}
body:not(.bp-mobile):not(.bp-desktop) section{padding:var(--vtw-section-y-desk) 0}
body:not(.bp-mobile):not(.bp-desktop) .band-pivot{padding:var(--vtw-band-pivot-y-d) 0}
body:not(.bp-mobile):not(.bp-desktop) h1{font-size:var(--vtw-h1-d);letter-spacing:var(--vtw-h1-tracking-d)}
body:not(.bp-mobile):not(.bp-desktop) h2{font-size:var(--vtw-h2-d)}
body:not(.bp-mobile):not(.bp-desktop) h3{font-size:var(--vtw-h3-d)}
body:not(.bp-mobile):not(.bp-desktop) .lede{font-size:var(--vtw-lede-d)}
body:not(.bp-mobile):not(.bp-desktop) .pivot-line{font-size:var(--vtw-pivot-d)}
body:not(.bp-mobile):not(.bp-desktop) .split{display:grid;grid-template-columns:1fr 0.82fr;gap:56px;align-items:center}
body:not(.bp-mobile):not(.bp-desktop) .split.media-left{grid-template-columns:0.82fr 1fr}
body:not(.bp-mobile):not(.bp-desktop) .g2{grid-template-columns:1fr 1fr;gap:var(--vtw-grid-gap-d)}
body:not(.bp-mobile):not(.bp-desktop) .g3{grid-template-columns:repeat(3,1fr);gap:var(--vtw-grid-gap-d)}
body:not(.bp-mobile):not(.bp-desktop) .statrow{flex-direction:row}
body:not(.bp-mobile):not(.bp-desktop) .statrow .stat{border-right:var(--vtw-rule);border-bottom:none}
body:not(.bp-mobile):not(.bp-desktop) .statrow .stat:last-child{border-right:none}
body:not(.bp-mobile):not(.bp-desktop) .ctarow{flex-direction:row;align-items:center}
body:not(.bp-mobile):not(.bp-desktop) .ctarow .btn{width:auto}
body:not(.bp-mobile):not(.bp-desktop) .card{padding:var(--vtw-card-pad-d)}
body:not(.bp-mobile):not(.bp-desktop) .head-in{gap:32px}
body:not(.bp-mobile):not(.bp-desktop) .head-eyebrow{display:block}
body:not(.bp-mobile):not(.bp-desktop) .partner-badge__logo{height:var(--vtw-partner-badge-logo-h-d)}
body:not(.bp-mobile):not(.bp-desktop) .hero-media{display:block}
body:not(.bp-mobile):not(.bp-desktop) .media{display:none}
body:not(.bp-mobile):not(.bp-desktop) .footcols{grid-template-columns:1fr 1fr;gap:40px;align-items:end}
body:not(.bp-mobile):not(.bp-desktop) .gate{padding:40px}
body:not(.bp-mobile):not(.bp-desktop) .steps{gap:16px}
body:not(.bp-mobile):not(.bp-desktop) .displines span{font-size:26px}
body:not(.bp-mobile):not(.bp-desktop) h2.eyebrow{font-size:var(--vtw-eyebrow-size);line-height:1.4}
body:not(.bp-mobile):not(.bp-desktop) .defcard{padding:22px 26px}
body:not(.bp-mobile):not(.bp-desktop) .reviewbar{padding-left:var(--vtw-gutter-desk);padding-right:var(--vtw-gutter-desk)}

}
