@charset "utf-8";
/* ==========================================================================
   VCEdump — class-based stylesheet
   Prefix: .vd-  ·  All design values live in CSS custom properties (§1).
   No inline styles are used anywhere in the delivered HTML.

   §1  Tokens
   §2  Reset & base
   §3  Layout primitives
   §4  Typography
   §5  Buttons
   §6  Form fields
   §7  Badges · alerts · status
   §8  Cards, panels, tables
   §9  Global shell (promo, header, nav, drawer, footer, breadcrumb)
   §10 Catalog (exam row, vendor card, logo box, chips, sort, pagination)
   §11 Product detail
   §12 Reading line (PDF sample / full / print)
   §13 Auth
   §14 Checkout & payment
   §15 Account · My Exams
   §16 Content family (prose, accordion, steps, reviews)
   §17 Practice engine skin
   §18 Utilities
   §19 Responsive
   §20 Print
   ========================================================================== */

/* ─────────────────────────────────────────────────────────────────────────
   §1 TOKENS
   ───────────────────────────────────────────────────────────────────────── */
:root {
  /* -- colour · green ramp ------------------------------------------------ */
  --vd-green-50: #e9f7ef;
  --vd-green-100: #cbeddd;
  --vd-green-200: #97dbbb;
  --vd-green-300: #5fc796;
  --vd-green-400: #22b671;
  --vd-green-500: #00a651;
  --vd-green-600: #00803e;
  --vd-green-700: #00632f;
  --vd-green-800: #004821;
  --vd-green-900: #002e15;

  /* -- colour · neutral ramp (hue 150, chroma < 0.01) --------------------- */
  --vd-n-0: #ffffff;
  --vd-n-25: #fafbfa;
  --vd-n-50: #f4f6f4;
  --vd-n-100: #eceeec;
  --vd-n-200: #dde1de;
  --vd-n-300: #c4cac6;
  --vd-n-400: #9aa29d;
  --vd-n-500: #737b76;
  --vd-n-600: #565d58;
  --vd-n-700: #3d443f;
  --vd-n-800: #262c28;
  --vd-n-900: #111614;

  /* -- colour · semantic -------------------------------------------------- */
  --vd-success: #0b6e6a;
  --vd-success-bg: #e6f4f3;
  --vd-success-border: #8dc9c6;
  --vd-success-ink: #0b3e3c;

  --vd-warning: #9a5b00;
  --vd-warning-bg: #fdf1de;
  --vd-warning-border: #e6bd76;
  --vd-warning-ink: #5c3600;

  --vd-error: #b3261e;
  --vd-error-bg: #fdeceb;
  --vd-error-border: #eeaaa5;
  --vd-error-ink: #6e1712;
  --vd-error-hover: #8f1e18;
  --vd-error-active: #701712;

  --vd-info: #1f5fa8;
  --vd-info-bg: #e8f0fa;
  --vd-info-border: #a7c3e6;
  --vd-info-ink: #123a68;

  /* -- role · surface & border ------------------------------------------- */
  --vd-surface-page: var(--vd-n-50);
  --vd-surface-card: var(--vd-n-0);
  --vd-surface-sunken: var(--vd-n-25);
  --vd-surface-subtle: var(--vd-n-100);
  --vd-surface-selected: var(--vd-green-50);
  --vd-surface-terminal: var(--vd-n-900);
  --vd-surface-hatch: repeating-linear-gradient(135deg, var(--vd-n-50), var(--vd-n-50) 6px, var(--vd-n-100) 6px, var(--vd-n-100) 12px);
  --vd-scrim: rgba(17, 22, 20, 0.42);

  --vd-border-divider: var(--vd-n-200);
  --vd-border-divider-faint: var(--vd-n-100);
  --vd-border-field: var(--vd-n-300);
  --vd-border-field-hover: var(--vd-n-400);
  --vd-border-field-focus: var(--vd-green-600);
  --vd-border-field-disabled: var(--vd-n-200);
  --vd-border-on-brand: rgba(255, 255, 255, 0.4);

  /* -- role · text -------------------------------------------------------- */
  --vd-text-heading: var(--vd-n-900);
  --vd-text-body: var(--vd-n-700);
  --vd-text-secondary: var(--vd-n-600);
  --vd-text-muted: var(--vd-n-500);
  --vd-text-disabled: var(--vd-n-400);
  --vd-text-link: var(--vd-green-700);
  --vd-text-link-hover: var(--vd-green-600);
  --vd-text-on-brand: var(--vd-n-0);
  --vd-text-inverse: var(--vd-n-0);

  /* -- role · buttons ----------------------------------------------------- */
  --vd-btn-primary-bg: var(--vd-green-600);
  --vd-btn-primary-bg-hover: var(--vd-green-700);
  --vd-btn-primary-bg-active: var(--vd-green-800);
  --vd-btn-primary-bg-disabled: var(--vd-n-200);
  --vd-btn-ghost-bg-hover: var(--vd-n-100);
  --vd-btn-ghost-bg-hover-tinted: var(--vd-n-200);
  --vd-btn-ghost-bg-hover-on-brand: rgba(255, 255, 255, 0.16);
  --vd-btn-ghost-bg-active-on-brand: rgba(255, 255, 255, 0.26);

  /* -- type --------------------------------------------------------------- */
  --vd-font-ui: Ubuntu, system-ui, -apple-system, "Segoe UI", sans-serif;
  --vd-font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --vd-display-size: 40px;   --vd-display-line: 46px;   --vd-display-weight: 700; --vd-display-track: -0.02em;
  --vd-h1-size: 32px;        --vd-h1-line: 38px;        --vd-h1-weight: 700;      --vd-h1-track: -0.015em;
  --vd-h2-size: 24px;        --vd-h2-line: 30px;        --vd-h2-weight: 700;
  --vd-h3-size: 19px;        --vd-h3-line: 26px;        --vd-h3-weight: 500;
  --vd-h4-size: 16px;        --vd-h4-line: 22px;        --vd-h4-weight: 500;
  --vd-body-lg-size: 17px;   --vd-body-lg-line: 27px;
  --vd-body-size: 15px;      --vd-body-line: 24px;
  --vd-body-sm-size: 13px;   --vd-body-sm-line: 20px;
  --vd-label-size: 13px;     --vd-label-line: 18px;     --vd-label-weight: 500;
  --vd-caption-size: 12px;   --vd-caption-line: 18px;
  --vd-overline-size: 11px;  --vd-overline-line: 16px;  --vd-overline-track: 0.12em;
  --vd-code-lg-size: 24px;   --vd-code-lg-line: 30px;
  --vd-code-size: 14px;      --vd-code-line: 20px;
  --vd-code-sm-size: 12px;   --vd-code-sm-line: 18px;

  /* -- spacing · 4px base ------------------------------------------------- */
  --vd-space-05: 2px;
  --vd-space-1: 4px;
  --vd-space-2: 8px;
  --vd-space-3: 12px;
  --vd-space-4: 16px;
  --vd-space-5: 20px;
  --vd-space-6: 24px;
  --vd-space-8: 32px;
  --vd-space-10: 40px;
  --vd-space-12: 48px;
  --vd-space-16: 64px;
  --vd-space-20: 80px;
  --vd-space-24: 96px;

  /* -- radius ------------------------------------------------------------- */
  --vd-radius-none: 0;
  --vd-radius-xs: 4px;
  --vd-radius-sm: 7px;
  --vd-radius-md: 10px;
  --vd-radius-lg: 14px;
  --vd-radius-xl: 20px;
  --vd-radius-pill: 999px;

  /* -- shadow & rings ----------------------------------------------------- */
  --vd-shadow-sm: 0 1px 2px rgba(17, 22, 20, 0.06);
  --vd-shadow-md: 0 2px 8px rgba(17, 22, 20, 0.08);
  --vd-shadow-lg: 0 6px 20px rgba(17, 22, 20, 0.10);
  --vd-shadow-xl: 0 16px 40px rgba(17, 22, 20, 0.16);
  --vd-focus-ring: 0 0 0 2px #ffffff, 0 0 0 4px #00632f;
  --vd-focus-ring-inverse: 0 0 0 2px #00632f, 0 0 0 4px #ffffff;
  --vd-focus-ring-error: 0 0 0 2px #ffffff, 0 0 0 4px #701712;

  /* -- size --------------------------------------------------------------- */
  --vd-control-sm: 32px;
  --vd-control-md: 40px;
  --vd-control-lg: 48px;
  --vd-field-h: 42px;
  --vd-search-h: 46px;
  --vd-touch-min: 44px;
  --vd-icon-sm: 14px;
  --vd-icon-md: 20px;
  --vd-icon-lg: 24px;
  --vd-border-hairline: 1px;
  --vd-border-strong: 1.5px;
  --vd-border-accent: 2px;
  --vd-rail-accent: 3px;
  --vd-alert-rail: 4px;
  --vd-nav-item-h: 44px;
  --vd-status-tab-h: 34px;
  --vd-pay-region-min: 168px;
  --vd-quota-meter-h: 6px;
  --vd-exhibit-h: 190px;
  --vd-header-h: 64px;
  --vd-promo-h: 56px;
  --vd-header-search-w: 320px;
  --vd-drawer-row: 52px;
  --vd-back-to-top: 48px;
  --vd-suggest-row: 44px;
  --vd-suggest-code-w: 92px;
  --vd-step-marker: 48px;
  --vd-qmap-cell: 32px;

  /* -- layout ------------------------------------------------------------- */
  --vd-container-max: 1200px;
  --vd-gutter-desktop: 24px;
  --vd-gutter-mobile: 16px;
  --vd-gutter-1440: 120px;
  --vd-account-nav-w: 240px;
  --vd-overview-rail: 288px;
  --vd-rail-width: 396px;
  --vd-summary-rail: 440px;
  --vd-auth-card-w: 440px;
  --vd-reading-max: 760px;
  --vd-detail-max: 680px;
  --vd-sticky-offset: 24px;
  --vd-print-sheet-w: 816px;
  --vd-print-sheet-h: 1056px;

  /* -- motion ------------------------------------------------------------- */
  --vd-dur-fast: 120ms;
  --vd-dur-base: 180ms;
  --vd-dur-slow: 280ms;
  --vd-ease-standard: cubic-bezier(0.2, 0, 0.2, 1);
  --vd-shimmer: 1.4s;
  --vd-spin: 1.1s;
}

/* ─────────────────────────────────────────────────────────────────────────
   §2 RESET & BASE
   ───────────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--vd-surface-page);
  color: var(--vd-text-body);
  font-family: var(--vd-font-ui);
  font-size: var(--vd-body-size);
  line-height: var(--vd-body-line);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

/* [hidden] is an attribute selector and loses to any class that sets display —
   every vd- layout class would otherwise override it. This wins outright. */
[hidden] { display: none !important; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }

a { color: var(--vd-text-link); text-decoration: none; }
a:hover { color: var(--vd-text-link-hover); text-decoration: underline; }

:focus-visible { outline: none; box-shadow: var(--vd-focus-ring); }
.vd-field-group:focus-within { box-shadow: var(--vd-focus-ring); }
.vd-field-group :focus-visible { box-shadow: none; }
.vd-field-group--on-brand:focus-within { box-shadow: var(--vd-focus-ring-inverse); }

::selection { background: var(--vd-green-100); color: var(--vd-n-900); }

@keyframes vd-shimmer { from { background-position: -220px 0; } to { background-position: 340px 0; } }
@keyframes vd-spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────────────────────────────────
   §3 LAYOUT PRIMITIVES
   ───────────────────────────────────────────────────────────────────────── */
.vd-page { min-height: 100vh; display: flex; flex-direction: column; }
.vd-main { flex: 1; }

.vd-container {
  width: 100%;
  max-width: calc(var(--vd-container-max) + var(--vd-gutter-desktop) * 2);
  margin-inline: auto;
  padding-inline: var(--vd-gutter-desktop);
}

.vd-section { padding-block: var(--vd-space-12); }
.vd-section--tight { padding-block: var(--vd-space-8); }
.vd-section--flush-top { padding-top: 0; }

.vd-stack { display: flex; flex-direction: column; }
.vd-stack--05 { gap: var(--vd-space-05); }
.vd-stack--1 { gap: var(--vd-space-1); }
.vd-stack--2 { gap: var(--vd-space-2); }
.vd-stack--3 { gap: var(--vd-space-3); }
.vd-stack--4 { gap: var(--vd-space-4); }
.vd-stack--5 { gap: var(--vd-space-5); }
.vd-stack--6 { gap: var(--vd-space-6); }
.vd-stack--8 { gap: var(--vd-space-8); }
.vd-stack--10 { gap: var(--vd-space-10); }
.vd-stack--12 { gap: var(--vd-space-12); }

.vd-row { display: flex; align-items: center; }
.vd-row--wrap { flex-wrap: wrap; }
.vd-row--top { align-items: flex-start; }
.vd-row--bottom { align-items: flex-end; }
.vd-row--between { justify-content: space-between; }
.vd-row--end { justify-content: flex-end; }
.vd-row--center { justify-content: center; }
.vd-row--2 { gap: var(--vd-space-2); }
.vd-row--3 { gap: var(--vd-space-3); }
.vd-row--4 { gap: var(--vd-space-4); }
.vd-row--5 { gap: var(--vd-space-5); }
.vd-row--6 { gap: var(--vd-space-6); }
.vd-row--8 { gap: var(--vd-space-8); }

.vd-spacer { flex: 1; }

/* Column-flex containers stretch their children. Intrinsically inline
   components must keep their own width there; row contexts are untouched. */
:where(.vd-stack, .vd-pay-region, .vd-purchase-rail, .vd-auth-card, .vd-field, .vd-empty, .vd-alert__body, .vd-order-card, .vd-entry-card, .vd-vendor-card, .vd-accordion, .vd-drawer)
  > :where(.vd-badge, .vd-chip, .vd-status-tab, .vd-mark-control, .vd-disclosure, .vd-segmented, .vd-star-control, .vd-stars, .vd-code, .vd-btn:not(.vd-btn--block), .vd-account-entry, .vd-logo-box, .vd-link-arrow) {
  align-self: flex-start;
}
.vd-fixed { flex: none; }
.vd-min0 { min-width: 0; }

/* two-column page shells — each width comes from a named token */
.vd-split { display: grid; gap: var(--vd-space-6); align-items: start; }
.vd-split--product { grid-template-columns: minmax(0, 1fr) var(--vd-rail-width); }
.vd-split--reading { grid-template-columns: var(--vd-overview-rail) minmax(0, 1fr); gap: var(--vd-space-10); }
.vd-split--player  { grid-template-columns: minmax(0, 1fr) var(--vd-overview-rail); }
.vd-split--account { grid-template-columns: var(--vd-account-nav-w) minmax(0, 1fr); gap: var(--vd-space-8); }
.vd-split--summary { grid-template-columns: minmax(0, 1fr) var(--vd-summary-rail); gap: var(--vd-space-8); }

.vd-rail-sticky { position: sticky; top: var(--vd-sticky-offset); }

.vd-grid { display: grid; gap: var(--vd-space-4); }
.vd-grid--vendors { grid-template-columns: repeat(auto-fill, minmax(216px, 1fr)); }
.vd-grid--vendors-index { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--vd-space-3); }
.vd-grid--entry { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--vd-space-4); }
.vd-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vd-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.vd-reading { max-width: var(--vd-reading-max); }
.vd-detail-max { max-width: var(--vd-detail-max); }

/* ─────────────────────────────────────────────────────────────────────────
   §4 TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────── */
.vd-display { font-size: var(--vd-display-size); line-height: var(--vd-display-line); font-weight: var(--vd-display-weight); letter-spacing: var(--vd-display-track); color: var(--vd-text-heading); }
.vd-h1 { font-size: var(--vd-h1-size); line-height: var(--vd-h1-line); font-weight: var(--vd-h1-weight); letter-spacing: var(--vd-h1-track); color: var(--vd-text-heading); }
.vd-h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: var(--vd-h2-weight); color: var(--vd-text-heading); }
.vd-h3 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: var(--vd-h3-weight); color: var(--vd-text-heading); }
.vd-h4 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: var(--vd-h4-weight); color: var(--vd-text-heading); }
.vd-body-lg { font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); }
.vd-body { font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
.vd-body-sm { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }
.vd-label { font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: var(--vd-label-weight); }
.vd-caption { font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); }
.vd-overline { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 500; letter-spacing: var(--vd-overline-track); text-transform: uppercase; }

.vd-code-lg { font-family: var(--vd-font-mono); font-size: var(--vd-code-lg-size); line-height: var(--vd-code-lg-line); font-weight: 500; }
.vd-code { font-family: var(--vd-font-mono); font-size: var(--vd-code-size); line-height: var(--vd-code-line); font-weight: 500; white-space: nowrap; }
.vd-code-sm { font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); line-height: var(--vd-code-sm-line); }

.vd-ink-heading { color: var(--vd-text-heading); }
.vd-ink-body { color: var(--vd-text-body); }
.vd-ink-secondary { color: var(--vd-text-secondary); }
.vd-ink-muted { color: var(--vd-text-muted); }
.vd-ink-disabled { color: var(--vd-text-disabled); }
.vd-ink-brand { color: var(--vd-green-700); }
.vd-ink-inverse { color: var(--vd-text-inverse); }
.vd-ink-error { color: var(--vd-error); }
.vd-ink-success { color: var(--vd-success); }
.vd-ink-warning { color: var(--vd-warning); }
.vd-ink-info { color: var(--vd-info); }

.vd-w-300 { font-weight: 300; }
.vd-w-400 { font-weight: 400; }
.vd-w-500 { font-weight: 500; }
.vd-w-700 { font-weight: 700; }
.vd-strike { text-decoration: line-through; }
.vd-price-strike { color: var(--vd-text-secondary); text-decoration: line-through; }
.vd-nowrap { white-space: nowrap; }
.vd-truncate { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vd-measure { max-width: 56ch; }

/* ─────────────────────────────────────────────────────────────────────────
   §5 BUTTONS
   ───────────────────────────────────────────────────────────────────────── */
.vd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vd-space-2);
  height: var(--vd-control-md);
  padding-inline: var(--vd-space-4);
  border: 0;
  border-radius: var(--vd-radius-md);
  background: transparent;
  font-family: inherit;
  font-size: var(--vd-body-size);
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--vd-dur-fast) var(--vd-ease-standard), border-color var(--vd-dur-fast) var(--vd-ease-standard), color var(--vd-dur-fast) var(--vd-ease-standard);
}
.vd-btn:hover { text-decoration: none; }
.vd-btn--sm { height: var(--vd-control-sm); border-radius: var(--vd-radius-sm); padding-inline: var(--vd-space-3); font-size: var(--vd-body-sm-size); }
.vd-btn--lg { height: var(--vd-control-lg); padding-inline: var(--vd-space-5); }
.vd-btn--block { width: 100%; }

.vd-btn--primary { background: var(--vd-btn-primary-bg); color: var(--vd-text-on-brand); }
.vd-btn--primary:hover { background: var(--vd-btn-primary-bg-hover); color: var(--vd-text-on-brand); }
.vd-btn--primary:active { background: var(--vd-btn-primary-bg-active); }
.vd-btn--primary[disabled], .vd-btn--primary[aria-disabled="true"] { background: var(--vd-btn-primary-bg-disabled); color: var(--vd-text-disabled); cursor: default; }

.vd-btn--secondary { background: var(--vd-n-0); border: var(--vd-border-hairline) solid var(--vd-green-600); color: var(--vd-green-700); }
.vd-btn--secondary:hover { background: var(--vd-green-50); color: var(--vd-green-700); }
.vd-btn--secondary:active { background: var(--vd-green-100); border-color: var(--vd-green-700); color: var(--vd-green-800); }
.vd-btn--secondary[disabled], .vd-btn--secondary[aria-disabled="true"] { border-color: var(--vd-n-200); color: var(--vd-text-disabled); cursor: default; }

.vd-btn--ghost { background: transparent; color: var(--vd-text-body); }
.vd-btn--ghost:hover { background: var(--vd-btn-ghost-bg-hover); color: var(--vd-text-body); }
.vd-btn--ghost:active { background: var(--vd-btn-ghost-bg-hover-tinted); color: var(--vd-n-800); }
.vd-btn--ghost-tinted:hover { background: var(--vd-btn-ghost-bg-hover-tinted); }
.vd-btn--ghost-tinted:active { background: var(--vd-n-300); }
.vd-btn--ghost-on-brand { color: var(--vd-n-0); }
.vd-btn--ghost-on-brand:hover { background: var(--vd-btn-ghost-bg-hover-on-brand); color: var(--vd-n-0); }
.vd-btn--ghost-on-brand:active { background: var(--vd-btn-ghost-bg-active-on-brand); }
.vd-btn--ghost-on-brand:focus-visible { box-shadow: var(--vd-focus-ring-inverse); }
.vd-btn--ghost[disabled] { color: var(--vd-text-disabled); cursor: default; }

.vd-btn--destructive { background: var(--vd-error); color: var(--vd-n-0); }
.vd-btn--destructive:hover { background: var(--vd-error-hover); color: var(--vd-n-0); }
.vd-btn--destructive:active { background: var(--vd-error-active); }
.vd-btn--destructive:focus-visible { box-shadow: var(--vd-focus-ring-error); }
.vd-btn--destructive[disabled] { background: var(--vd-n-200); color: var(--vd-text-disabled); cursor: default; }

.vd-link-arrow { font-size: var(--vd-body-size); font-weight: 500; white-space: nowrap; }

/* ─────────────────────────────────────────────────────────────────────────
   §6 FORM FIELDS
   ───────────────────────────────────────────────────────────────────────── */
.vd-field { display: flex; flex-direction: column; gap: var(--vd-space-2); }
.vd-field__label { font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: var(--vd-label-weight); color: var(--vd-text-heading); }
.vd-field__hint { font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); color: var(--vd-text-secondary); }

.vd-input, .vd-select, .vd-textarea {
  width: 100%;
  height: var(--vd-field-h);
  padding-inline: var(--vd-space-3);
  border: var(--vd-border-hairline) solid var(--vd-border-field);
  border-radius: var(--vd-radius-md);
  background: var(--vd-n-0);
  color: var(--vd-text-body);
  font-size: var(--vd-body-size);
}
.vd-textarea { height: auto; min-height: 120px; padding-block: var(--vd-space-3); line-height: var(--vd-body-line); resize: vertical; }
.vd-input::placeholder, .vd-textarea::placeholder { color: var(--vd-text-muted); }
.vd-input:hover, .vd-select:hover, .vd-textarea:hover { border-color: var(--vd-border-field-hover); }
.vd-input:focus, .vd-select:focus, .vd-textarea:focus { border-color: var(--vd-border-field-focus); outline: none; }
.vd-input:focus-visible, .vd-select:focus-visible, .vd-textarea:focus-visible { box-shadow: var(--vd-focus-ring); }
.vd-input[disabled], .vd-select[disabled], .vd-textarea[disabled] { background: var(--vd-surface-page); border-color: var(--vd-border-field-disabled); color: var(--vd-text-disabled); }
.vd-input--lg, .vd-select--lg { height: var(--vd-control-lg); }

.vd-input[aria-invalid="true"] { border-color: var(--vd-error); background: var(--vd-error-bg); }
.vd-input[aria-invalid="true"]:focus-visible { box-shadow: var(--vd-focus-ring-error); }

.vd-field-msg { display: inline-flex; align-items: center; gap: var(--vd-space-2); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); }
.vd-field-msg--error { color: var(--vd-error); }
.vd-field-msg--success { color: var(--vd-success); }
.vd-field-msg__glyph {
  flex: none; width: var(--vd-icon-sm); height: var(--vd-icon-sm);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; line-height: 1; font-weight: 700; color: var(--vd-n-0);
}
.vd-field-msg--error .vd-field-msg__glyph { background: var(--vd-error); }
.vd-field-msg--success .vd-field-msg__glyph { background: var(--vd-success); }

/* password reveal — sits inside the field frame */
.vd-field-reveal { position: relative; }
.vd-field-reveal .vd-input { padding-right: 78px; }
.vd-reveal-btn {
  position: absolute; top: 50%; right: var(--vd-space-1); transform: translateY(-50%);
  height: var(--vd-control-sm); padding-inline: var(--vd-space-3);
  border: 0; border-radius: var(--vd-radius-sm);
  background: var(--vd-n-100); color: var(--vd-text-body);
  font-size: var(--vd-caption-size); font-weight: 500; cursor: pointer;
}
.vd-reveal-btn:hover { background: var(--vd-n-200); }

/* joined input group — the ring lives on the wrapper */
.vd-field-group {
  display: flex; align-items: center;
  height: var(--vd-search-h);
  border: var(--vd-border-hairline) solid var(--vd-border-field);
  border-radius: var(--vd-radius-md);
  background: var(--vd-n-0);
  overflow: hidden;
}
.vd-field-group__input { flex: 1; min-width: 0; height: 100%; border: 0; padding-inline: var(--vd-space-4); background: transparent; font-size: var(--vd-body-size); }
.vd-field-group__input:focus { outline: none; }
.vd-field-group__btn { flex: none; height: 100%; padding-inline: var(--vd-space-5); border: 0; border-radius: 0; background: var(--vd-btn-primary-bg); color: var(--vd-n-0); font-weight: 500; cursor: pointer; }
.vd-field-group__btn:hover { background: var(--vd-btn-primary-bg-hover); }
.vd-field-group--on-brand { border-color: var(--vd-border-on-brand); }

.vd-checkbox { display: inline-flex; align-items: flex-start; gap: var(--vd-space-3); cursor: pointer; }
.vd-checkbox input { flex: none; width: var(--vd-icon-md); height: var(--vd-icon-md); margin: 2px 0 0; accent-color: var(--vd-green-600); }

/* segmented control */
.vd-segmented { display: inline-flex; gap: var(--vd-space-1); padding: var(--vd-space-1); border-radius: var(--vd-radius-md); background: var(--vd-n-50); }
.vd-segmented--bordered { border: var(--vd-border-hairline) solid var(--vd-border-divider); background: var(--vd-n-50); }
.vd-segmented__item {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--vd-space-2);
  height: var(--vd-control-md); padding-inline: var(--vd-space-4);
  border: 0; border-radius: var(--vd-radius-sm);
  background: transparent; color: var(--vd-text-body);
  font-size: var(--vd-body-size); font-weight: 500; cursor: pointer; white-space: nowrap;
}
.vd-segmented__item:hover { background: var(--vd-n-100); }
.vd-segmented__item[aria-pressed="true"], .vd-segmented__item[aria-checked="true"] { background: var(--vd-green-600); color: var(--vd-n-0); }
.vd-segmented__item[aria-pressed="true"]:hover, .vd-segmented__item[aria-checked="true"]:hover { background: var(--vd-green-700); }
.vd-segmented--sm .vd-segmented__item { height: var(--vd-control-sm); font-size: var(--vd-body-sm-size); padding-inline: var(--vd-space-3); }

/* Plan comparison terms carry a short supporting label. Keep the control
   inside narrow viewports without changing the shared segmented component. */
@media (max-width: 599px) {
  .vd-compare-term-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .vd-compare-term-switch .vd-segmented__item {
    flex-direction: column;
    gap: 2px;
    width: 100%;
    height: auto;
    min-height: var(--vd-touch-min);
    padding: var(--vd-space-2);
    white-space: normal;
  }
}

/* radio option row — shared by formats, modes, engine options */
.vd-option-row {
  display: flex; align-items: flex-start; gap: var(--vd-space-3);
  width: 100%; text-align: left;
  padding: 14px 16px;
  border: var(--vd-border-hairline) solid var(--vd-border-field);
  border-radius: var(--vd-radius-sm);
  background: var(--vd-n-0);
  font-family: inherit; font-size: var(--vd-body-size); cursor: pointer;
}
.vd-option-row:hover { border-color: var(--vd-border-field-hover); }
.vd-option-row[aria-checked="true"], .vd-option-row.is-selected {
  padding: 13px 15px;
  border: var(--vd-border-accent) solid var(--vd-green-600);
  background: var(--vd-surface-selected);
}
.vd-option-row__dot { flex: none; margin-top: 3px; width: 18px; height: 18px; border-radius: 50%; border: var(--vd-border-accent) solid var(--vd-border-field); }
.vd-option-row[aria-checked="true"] .vd-option-row__dot, .vd-option-row.is-selected .vd-option-row__dot { border: 6px solid var(--vd-green-600); }
.vd-option-row__letter { flex: none; font-family: var(--vd-font-mono); font-size: var(--vd-code-size); font-weight: 500; color: var(--vd-text-secondary); }

/* ─────────────────────────────────────────────────────────────────────────
   §7 BADGES · ALERTS · STATUS
   ───────────────────────────────────────────────────────────────────────── */
.vd-badge {
  display: inline-flex; align-items: center; gap: var(--vd-space-1);
  padding: 3px var(--vd-space-2);
  border: var(--vd-border-hairline) solid var(--vd-n-200);
  border-radius: var(--vd-radius-xs);
  background: var(--vd-n-100);
  color: var(--vd-text-body);
  font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); font-weight: 500;
  white-space: nowrap;
}
.vd-badge--success { background: var(--vd-success-bg); border-color: var(--vd-success-border); color: var(--vd-success); }
.vd-badge--warning { background: var(--vd-warning-bg); border-color: var(--vd-warning-border); color: var(--vd-warning); }
.vd-badge--warning-dashed { background: var(--vd-warning-bg); border: var(--vd-border-strong) dashed var(--vd-warning); color: var(--vd-warning); }
.vd-badge--error { background: var(--vd-error-bg); border-color: var(--vd-error-border); color: var(--vd-error); }
.vd-badge--info { background: var(--vd-info-bg); border-color: var(--vd-info-border); color: var(--vd-info); }
.vd-badge--brand { background: var(--vd-green-50); border-color: var(--vd-green-200); color: var(--vd-green-700); }
/* the attempt badge is a pill so it can never read as an order status */
.vd-badge--attempt { border-radius: var(--vd-radius-pill); padding-inline: var(--vd-space-3); }

.vd-glyph { display: inline-flex; align-items: center; justify-content: center; flex: none; font-weight: 700; line-height: 1; }
.vd-glyph--circle { border-radius: 50%; }
.vd-glyph--square { border-radius: var(--vd-radius-xs); }
.vd-glyph--ring { border-radius: 50%; background: transparent; border: var(--vd-border-strong) solid currentColor; }
.vd-glyph--sm { width: var(--vd-icon-sm); height: var(--vd-icon-sm); font-size: 10px; }
.vd-glyph--md { width: var(--vd-icon-md); height: var(--vd-icon-md); font-size: 12px; }
.vd-glyph--lg { width: var(--vd-icon-lg); height: var(--vd-icon-lg); font-size: 14px; }
.vd-glyph--on-success { background: var(--vd-success); color: var(--vd-n-0); }
.vd-glyph--on-warning { background: var(--vd-warning); color: var(--vd-n-0); }
.vd-glyph--on-error { background: var(--vd-error); color: var(--vd-n-0); }
.vd-glyph--on-info { background: var(--vd-info); color: var(--vd-n-0); }
.vd-glyph--on-neutral { background: var(--vd-n-500); color: var(--vd-n-0); }

.vd-alert {
  display: flex; align-items: flex-start; gap: var(--vd-space-3);
  padding: var(--vd-space-3) var(--vd-space-4);
  border: var(--vd-border-hairline) solid var(--vd-n-200);
  border-left-width: var(--vd-alert-rail);
  border-radius: var(--vd-radius-md);
  background: var(--vd-n-50);
}
.vd-alert__body { display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; }
.vd-alert__title { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 500; }
.vd-alert__text { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-body); }
.vd-alert--success { background: var(--vd-success-bg); border-color: var(--vd-success-border); border-left-color: var(--vd-success); }
.vd-alert--success .vd-alert__title { color: var(--vd-success-ink); }
.vd-alert--warning { background: var(--vd-warning-bg); border-color: var(--vd-warning-border); border-left-color: var(--vd-warning); }
.vd-alert--warning .vd-alert__title { color: var(--vd-warning-ink); }
.vd-alert--error { background: var(--vd-error-bg); border-color: var(--vd-error-border); border-left-color: var(--vd-error); }
.vd-alert--error .vd-alert__title { color: var(--vd-error-ink); }
.vd-alert--info { background: var(--vd-info-bg); border-color: var(--vd-info-border); border-left-color: var(--vd-info); }
.vd-alert--info .vd-alert__title { color: var(--vd-info-ink); }

.vd-status-block { border: var(--vd-border-strong) solid var(--vd-n-300); border-left-width: var(--vd-alert-rail); border-radius: var(--vd-radius-md); padding: var(--vd-space-4); }
.vd-status-block--correct { background: var(--vd-success-bg); border-color: var(--vd-success); }
.vd-status-block--incorrect { background: var(--vd-error-bg); border-color: var(--vd-error); }
.vd-status-block--marked { background: var(--vd-warning-bg); border: var(--vd-border-strong) dashed var(--vd-warning); }
.vd-status-block--expired { background: var(--vd-surface-hatch); border-color: var(--vd-n-300); }

.vd-hatched { background: var(--vd-surface-hatch); }

/* meters — print quota, sample progress, star distribution, domain score */
.vd-meter { display: block; height: var(--vd-quota-meter-h); border-radius: var(--vd-radius-pill); background: var(--vd-n-200); overflow: hidden; }
.vd-meter__fill { display: block; height: 100%; border-radius: var(--vd-radius-pill); background: var(--vd-green-500); }
.vd-meter__fill--frozen { background: var(--vd-n-400); }
.vd-meter__fill--warning { background: var(--vd-warning); }
.vd-meter__fill--below { background: repeating-linear-gradient(135deg, var(--vd-warning-bg), var(--vd-warning-bg) 4px, var(--vd-warning-border) 4px, var(--vd-warning-border) 8px); }

/* skeleton */
.vd-skeleton { background: var(--vd-n-100); border-radius: var(--vd-radius-sm); background-image: linear-gradient(90deg, var(--vd-n-100), var(--vd-n-50), var(--vd-n-100)); background-size: 340px 100%; background-repeat: no-repeat; animation: vd-shimmer var(--vd-shimmer) linear infinite; }
.vd-spinner { width: var(--vd-icon-lg); height: var(--vd-icon-lg); border-radius: 50%; border: var(--vd-border-accent) solid var(--vd-n-200); border-top-color: var(--vd-green-600); animation: vd-spin var(--vd-spin) linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .vd-skeleton { animation: none; background-image: none; }
  .vd-spinner { animation: none; }
  * { transition-duration: 1ms !important; }
}

/* ─────────────────────────────────────────────────────────────────────────
   §8 CARDS, PANELS, TABLES
   ───────────────────────────────────────────────────────────────────────── */
.vd-card { background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); }
.vd-card--flush { overflow: hidden; }
.vd-card--pad { padding: var(--vd-space-5) var(--vd-space-6); }
.vd-card--pad-lg { padding: var(--vd-space-8); }
.vd-card--sunken { background: var(--vd-surface-sunken); }
.vd-card--selected { background: var(--vd-surface-selected); border: var(--vd-border-accent) solid var(--vd-green-500); }

.vd-panel { background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-md); padding: var(--vd-space-4); }
.vd-panel--sunken { background: var(--vd-surface-sunken); }

.vd-menu-panel { background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-md); box-shadow: var(--vd-shadow-xl); padding: var(--vd-space-2); }

.vd-divider { height: var(--vd-border-hairline); background: var(--vd-border-divider); border: 0; }
.vd-divider--faint { background: var(--vd-border-divider-faint); }
.vd-divider--v { width: var(--vd-border-hairline); align-self: stretch; background: var(--vd-border-divider); }

.vd-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--vd-space-3);
  min-height: 148px; padding: var(--vd-space-6);
  background: var(--vd-surface-card);
  border: var(--vd-border-hairline) dashed var(--vd-n-300);
  border-radius: var(--vd-radius-lg);
  text-align: center;
}

.vd-table-wrap { border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-md); overflow: hidden; }
.vd-table { width: 100%; border-collapse: collapse; font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
.vd-table th { background: var(--vd-surface-subtle); text-align: left; font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 500; color: var(--vd-text-heading); padding: var(--vd-space-3) var(--vd-space-4); }
.vd-table td { padding: var(--vd-space-3) var(--vd-space-4); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); color: var(--vd-text-body); }
.vd-table__num { font-family: var(--vd-font-mono); }
.vd-table__group td { background: var(--vd-surface-sunken); font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 500; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-green-700); }
.vd-table tbody tr:hover td { background: var(--vd-n-50); }
.vd-table__group:hover td { background: var(--vd-surface-sunken); }

.vd-terminal { background: var(--vd-surface-terminal); color: var(--vd-green-100); border-radius: var(--vd-radius-md); padding: var(--vd-space-4); font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); line-height: var(--vd-code-sm-line); }

/* ─────────────────────────────────────────────────────────────────────────
   §9 GLOBAL SHELL
   ───────────────────────────────────────────────────────────────────────── */
.vd-promo {
  height: var(--vd-promo-h);
  display: flex;
  align-items: center;
  border-bottom: var(--vd-border-hairline) solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(0, 166, 81, 0.1), transparent 34%, rgba(0, 166, 81, 0.05) 72%, transparent),
    var(--vd-green-900);
  color: var(--vd-n-0);
}
.vd-promo > .vd-container { width: 100%; }
.vd-promo__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vd-space-5);
  width: 100%;
  min-width: 0;
}
.vd-promo__offer { display: flex; align-items: center; gap: var(--vd-space-3); min-width: 0; }
.vd-promo__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--vd-space-2);
  flex: none;
  min-height: 32px;
  padding-inline: var(--vd-space-3);
  border: var(--vd-border-hairline) solid rgba(255, 255, 255, 0.18);
  border-radius: var(--vd-radius-pill);
  background: var(--vd-green-500);
  color: var(--vd-green-900);
  font-size: var(--vd-body-sm-size);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
.vd-promo__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: 0.72; }
.vd-promo__message { display: flex; align-items: center; gap: var(--vd-space-2); min-width: 0; white-space: nowrap; }
.vd-promo__message strong { color: var(--vd-n-0); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 600; white-space: nowrap; }
.vd-promo__message > span { overflow: hidden; color: var(--vd-green-200); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); text-overflow: ellipsis; white-space: nowrap; }
.vd-promo__message > span::before { content: "\2022"; margin-right: var(--vd-space-2); color: var(--vd-green-400); }
.vd-promo__timer {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--vd-space-2);
  min-height: var(--vd-touch-min);
  padding: 0 0 0 var(--vd-space-5);
  border: 0;
  background: transparent;
}
.vd-promo__timer::before { content: ""; position: absolute; left: 0; width: 1px; height: 20px; background: rgba(255, 255, 255, 0.16); }
.vd-promo__meta { font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); color: var(--vd-green-200); white-space: nowrap; }
.vd-promo__clock {
  min-width: 78px;
  padding: 0;
  background: transparent;
  color: var(--vd-n-0);
  font-family: var(--vd-font-mono);
  font-size: var(--vd-code-sm-size);
  line-height: var(--vd-code-sm-line);
  font-weight: 600;
  letter-spacing: 0.045em;
  text-align: center;
  white-space: nowrap;
}
.vd-promo__code {
  justify-content: center;
  gap: var(--vd-space-3);
  padding: 4px var(--vd-space-3);
  border: var(--vd-border-hairline) solid rgba(255, 255, 255, 0.34);
  border-radius: var(--vd-radius-md);
  background: rgba(255, 255, 255, 0.09);
  color: var(--vd-n-0);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--vd-dur-fast) var(--vd-ease-standard), border-color var(--vd-dur-fast) var(--vd-ease-standard), color var(--vd-dur-fast) var(--vd-ease-standard);
}
.vd-promo__code:hover { border-color: rgba(255, 255, 255, 0.56); background: var(--vd-btn-ghost-bg-hover-on-brand); }
.vd-promo__code:focus-visible { box-shadow: var(--vd-focus-ring-inverse); }
.vd-promo__code-label { color: var(--vd-green-200); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); }
.vd-promo__code-value { padding-left: var(--vd-space-3); border-left: var(--vd-border-hairline) dashed rgba(255, 255, 255, 0.3); font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); line-height: var(--vd-code-sm-line); font-weight: 600; letter-spacing: 0.06em; }
.vd-promo__code-mark { position: relative; flex: none; width: 15px; height: 15px; opacity: 0.78; }
.vd-promo__code-mark::before,
.vd-promo__code-mark::after { content: ""; position: absolute; width: 8px; height: 8px; border: 1.5px solid currentColor; border-radius: 2px; }
.vd-promo__code-mark::before { left: 1px; top: 1px; opacity: 0.7; }
.vd-promo__code-mark::after { right: 1px; bottom: 1px; background: var(--vd-green-900); }
.vd-promo__copy { height: var(--vd-control-sm); min-width: 96px; padding-inline: var(--vd-space-3); border: 0; border-radius: var(--vd-radius-sm); background: var(--vd-n-0); color: var(--vd-green-700); font-size: var(--vd-body-sm-size); font-weight: 500; cursor: pointer; }
.vd-promo__copy:hover { background: var(--vd-green-50); }
.vd-promo__copy.is-copied { background: var(--vd-green-500); color: var(--vd-green-900); font-weight: 700; cursor: default; }
.vd-promo__mobile { display: none; }

.vd-header { background: var(--vd-green-700); height: var(--vd-header-h); display: flex; align-items: center; position: relative; z-index: 30; }
.vd-header__inner { display: flex; align-items: center; gap: 28px; width: 100%; }
.vd-header--slim .vd-header__inner { justify-content: space-between; gap: var(--vd-space-4); }

.vd-logo { display: inline-flex; align-items: center; gap: 9px; flex: none; text-decoration: none; }
.vd-logo:hover { text-decoration: none; }
.vd-logo__mark { width: 28px; height: 28px; background: url("/themes/vcedump/img/brand/logo-mark.svg") center / contain no-repeat; }
.vd-logo__word { font-size: var(--vd-h3-size); font-weight: 700; color: var(--vd-n-0); letter-spacing: -0.01em; }

.vd-nav { display: flex; align-items: center; gap: var(--vd-space-6); }
.vd-nav__item { position: relative; height: var(--vd-header-h); display: inline-flex; align-items: center; white-space: nowrap; color: var(--vd-green-100); font-size: var(--vd-body-size); text-decoration: none; }
.vd-nav__item:hover { color: var(--vd-n-0); text-decoration: none; }
.vd-nav__item[aria-current="page"] { color: var(--vd-n-0); font-weight: 500; }
.vd-nav__item[aria-current="page"]::after { content: ""; position: absolute; inset: auto 0 -2px 0; height: 3px; background: var(--vd-green-500); }

.vd-header-search { flex: 1 1 auto; min-width: 0; width: auto; max-width: var(--vd-header-search-w); position: relative; }
.vd-header-search .vd-field-group { height: var(--vd-control-md); border-color: transparent; background: rgba(255, 255, 255, 0.1); }
.vd-header-search__icon { display: inline-flex; align-items: center; justify-content: center; flex: none; width: var(--vd-icon-md); height: var(--vd-icon-md); margin-left: var(--vd-space-3); color: var(--vd-green-200); pointer-events: none; }
.vd-header-search__icon svg { display: block; width: 100%; height: 100%; }
.vd-header-search .vd-field-group:focus-within .vd-header-search__icon { color: var(--vd-n-0); }
.vd-header-search .vd-field-group__input { padding-left: var(--vd-space-2); color: var(--vd-n-0); }
.vd-header-search .vd-field-group__input::placeholder { color: var(--vd-green-200); }

.vd-account-entry {
  display: inline-flex; align-items: center; gap: var(--vd-space-2);
  height: var(--vd-control-md); padding-inline: var(--vd-space-3); flex: none;
  border: var(--vd-border-hairline) solid var(--vd-border-on-brand);
  border-radius: var(--vd-radius-md);
  background: transparent; color: var(--vd-n-0);
  font-size: var(--vd-body-size); font-family: inherit; cursor: pointer; text-decoration: none;
}
.vd-account-entry:hover { background: var(--vd-btn-ghost-bg-hover-on-brand); color: var(--vd-n-0); text-decoration: none; }
.vd-account-entry:focus-visible { box-shadow: var(--vd-focus-ring-inverse); }
.vd-account-entry__initials { width: var(--vd-icon-lg); height: var(--vd-icon-lg); border-radius: 50%; background: var(--vd-green-500); color: var(--vd-green-900); font-size: var(--vd-caption-size); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }

.vd-dropdown { position: relative; }
.vd-dropdown__panel { position: absolute; top: calc(100% + var(--vd-space-2)); right: 0; z-index: 40; min-width: 240px; }
.vd-dropdown__panel[hidden] { display: none; }
.vd-menu-link { display: block; padding: 9px var(--vd-space-3); border-radius: var(--vd-radius-sm); color: var(--vd-text-body); font-size: var(--vd-body-size); text-decoration: none; }
.vd-menu-link:hover { background: var(--vd-n-100); color: var(--vd-text-body); text-decoration: none; }
.vd-menu-btn { display: block; width: 100%; text-align: left; padding: 9px var(--vd-space-3); border: 0; border-radius: var(--vd-radius-sm); background: transparent; color: var(--vd-text-body); font-size: var(--vd-body-size); cursor: pointer; }
.vd-menu-btn:hover { background: var(--vd-n-100); }

/* site-search suggestions */
.vd-suggest { position: absolute; top: calc(100% + var(--vd-space-2)); left: 0; right: 0; z-index: 40; background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-md); box-shadow: var(--vd-shadow-xl); overflow: hidden; }
.vd-suggest[hidden] { display: none; }
.vd-suggest__row { display: flex; align-items: center; gap: var(--vd-space-3); min-height: var(--vd-suggest-row); padding: var(--vd-space-2) var(--vd-space-4); color: var(--vd-text-body); text-decoration: none; border-left: var(--vd-rail-accent) solid transparent; }
.vd-suggest__row:hover, .vd-suggest__row.is-active { background: var(--vd-surface-selected); border-left-color: var(--vd-green-500); color: var(--vd-text-body); text-decoration: none; }
.vd-suggest__code { flex: none; width: var(--vd-suggest-code-w); font-family: var(--vd-font-mono); font-size: var(--vd-code-size); font-weight: 500; }
.vd-suggest__name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: var(--vd-body-size); }
.vd-suggest__match { background: var(--vd-green-50); }
.vd-suggest__row.is-active .vd-suggest__match { background: var(--vd-green-100); }
.vd-suggest__foot { display: flex; align-items: center; justify-content: space-between; padding: var(--vd-space-3) var(--vd-space-4); background: var(--vd-surface-sunken); font-size: var(--vd-body-size); font-weight: 500; text-decoration: none; }

/* mobile drawer */
.vd-header__burger { display: none; width: var(--vd-touch-min); height: var(--vd-touch-min); flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: var(--vd-border-hairline) solid var(--vd-border-on-brand); border-radius: var(--vd-radius-md); background: transparent; cursor: pointer; }
.vd-header__burger span { width: 18px; height: 2px; background: var(--vd-n-0); }
.vd-scrim { position: fixed; inset: 0; z-index: 50; background: var(--vd-scrim); }
.vd-scrim[hidden] { display: none; }
.vd-drawer { position: fixed; inset: 0 0 0 auto; z-index: 60; width: min(340px, 88vw); background: var(--vd-surface-card); display: flex; flex-direction: column; box-shadow: var(--vd-shadow-xl); }
.vd-drawer[hidden] { display: none; }
.vd-drawer__head { display: flex; align-items: center; justify-content: space-between; height: var(--vd-header-h); padding-inline: var(--vd-gutter-mobile); background: var(--vd-green-700); }
.vd-drawer__row { display: flex; align-items: center; height: var(--vd-drawer-row); padding-inline: var(--vd-gutter-mobile); border-bottom: var(--vd-border-hairline) solid var(--vd-border-divider-faint); color: var(--vd-text-body); font-size: var(--vd-body-size); text-decoration: none; }
.vd-drawer__row[aria-current="page"] { background: var(--vd-surface-selected); font-weight: 500; }
.vd-drawer__foot { margin-top: auto; display: flex; gap: var(--vd-space-2); padding: var(--vd-space-4) var(--vd-gutter-mobile); background: var(--vd-surface-sunken); }
.vd-drawer__foot .vd-btn { flex: 1; height: var(--vd-touch-min); }

.vd-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: var(--vd-space-2); padding-block: var(--vd-space-4); font-size: var(--vd-body-sm-size); color: var(--vd-text-secondary); }
.vd-breadcrumb a { color: var(--vd-text-secondary); }
.vd-breadcrumb a:hover { color: var(--vd-text-link); }
.vd-breadcrumb__sep { color: var(--vd-text-disabled); }
.vd-breadcrumb__current { color: var(--vd-text-heading); font-weight: 500; }

.vd-footer { background: var(--vd-n-900); color: var(--vd-n-200); padding-block: var(--vd-space-16) var(--vd-space-8); margin-top: auto; }
.vd-footer .vd-ink-secondary { color: var(--vd-n-400); }
.vd-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--vd-space-10); }
.vd-footer__group-label { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 500; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-green-200); }
.vd-footer__link { display: block; padding-block: var(--vd-space-2); color: var(--vd-n-200); font-size: var(--vd-body-size); text-decoration: none; }
.vd-footer__link:hover { color: var(--vd-n-0); text-decoration: none; }
.vd-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--vd-space-4); margin-top: var(--vd-space-12); padding-top: var(--vd-space-6); border-top: var(--vd-border-hairline) solid rgba(255, 255, 255, 0.12); font-size: var(--vd-body-sm-size); color: var(--vd-n-400); }

.vd-back-to-top {
  position: fixed; right: var(--vd-space-6); bottom: var(--vd-space-6); z-index: 20;
  width: var(--vd-back-to-top); height: var(--vd-back-to-top);
  border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: 50%;
  background: var(--vd-surface-card); box-shadow: var(--vd-shadow-lg);
  color: var(--vd-text-body); font-size: var(--vd-h4-size); cursor: pointer;
  align-items: center; justify-content: center;
  display: none;
}
.vd-back-to-top.is-visible { display: inline-flex; }

/* ─────────────────────────────────────────────────────────────────────────
   §10 CATALOG
   ───────────────────────────────────────────────────────────────────────── */
.vd-exam-list { background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); overflow: hidden; }
.vd-exam-row {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center;
  column-gap: var(--vd-space-5);
  padding: var(--vd-space-4) var(--vd-space-6);
  border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint);
  color: var(--vd-text-body); text-decoration: none;
}
.vd-exam-row:first-child { border-top: 0; }
.vd-exam-row:hover { background: var(--vd-n-50); color: var(--vd-text-body); text-decoration: none; }
.vd-exam-row__code { font-family: var(--vd-font-mono); font-size: var(--vd-code-size); line-height: var(--vd-code-line); font-weight: 500; color: var(--vd-text-heading); white-space: nowrap; }
.vd-exam-row--code-emphasis .vd-exam-row__code { position: relative; display: inline-block; padding-left: var(--vd-space-3); color: var(--vd-green-700); font-weight: 600; }
.vd-exam-row--code-emphasis .vd-exam-row__code::before { content: ""; position: absolute; left: 0; top: 50%; width: 3px; height: 20px; border-radius: var(--vd-radius-pill); background: var(--vd-green-500); transform: translateY(-50%); }
.vd-exam-row--code-emphasis:hover .vd-exam-row__code { color: var(--vd-green-600); }
.vd-exam-row__name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: var(--vd-body-size); color: var(--vd-text-heading); }
.vd-exam-row__meta { display: flex; align-items: center; gap: var(--vd-space-3); justify-self: end; font-size: var(--vd-body-sm-size); color: var(--vd-text-secondary); white-space: nowrap; }
.vd-exam-row__price { font-family: var(--vd-font-mono); font-size: var(--vd-code-size); color: var(--vd-text-heading); }
/* trailing action slot — the whole row stays the anchor, this is its visible label */
.vd-exam-row__action { display: inline-flex; align-items: center; gap: var(--vd-space-1); font-size: var(--vd-body-sm-size); font-weight: 500; color: var(--vd-green-700); white-space: nowrap; }
.vd-exam-row:hover .vd-exam-row__action { text-decoration: underline; }

.vd-logo-box {
  width: 88px; height: 64px; flex: none;
  display: flex; align-items: center; justify-content: center;
  padding: var(--vd-space-2);
  background: var(--vd-surface-sunken);
  border: var(--vd-border-hairline) solid var(--vd-border-divider-faint);
  border-radius: var(--vd-radius-md);
  font-size: var(--vd-body-size); font-weight: 700; color: var(--vd-text-heading);
  text-align: center;
}
.vd-logo-box img { object-fit: contain; max-height: 100%; }
.vd-logo-box--full { width: 100%; height: 56px; }

.vd-vendor-card {
  display: flex; flex-direction: column; align-items: center; gap: var(--vd-space-4);
  padding: var(--vd-space-5) var(--vd-space-3);
  background: transparent;
  border: var(--vd-border-hairline) solid transparent;
  border-radius: var(--vd-radius-lg);
  color: var(--vd-text-body); text-decoration: none;
  transition: background var(--vd-dur-fast) var(--vd-ease-standard), border-color var(--vd-dur-fast) var(--vd-ease-standard);
}
.vd-vendor-card:hover { background: var(--vd-surface-card); border-color: var(--vd-border-divider); box-shadow: var(--vd-shadow-md); color: var(--vd-text-body); text-decoration: none; }
.vd-vendor-card__tile {
  width: 100%; max-width: 132px; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: var(--vd-space-3);
  background: var(--vd-surface-sunken);
  border: var(--vd-border-hairline) solid var(--vd-border-divider-faint);
  border-radius: var(--vd-radius-lg);
  font-family: var(--vd-font-mono); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 600;
  color: var(--vd-text-secondary); text-align: center; overflow-wrap: anywhere;
}
.vd-vendor-card__name { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 500; color: var(--vd-text-heading); text-align: center; }
.vd-vendor-card__count { font-family: var(--vd-font-mono); font-size: var(--vd-body-sm-size); color: var(--vd-text-secondary); }

/* The full vendor index is denser than the homepage showcase: six compact
   records per desktop row, while retaining readable touch targets below. */
.vd-grid--vendors-index .vd-vendor-card { gap: var(--vd-space-2); padding: var(--vd-space-3) var(--vd-space-2); }
.vd-grid--vendors-index .vd-vendor-card__tile { max-width: 104px; padding: var(--vd-space-2); border-radius: var(--vd-radius-md); }
.vd-grid--vendors-index .vd-vendor-card__name { font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
.vd-grid--vendors-index .vd-vendor-card__count { font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); }

/* Vendor directory: one centered identification-and-filter task above the
   full-width catalog grid. It stays open on the page surface, not in a card. */
.vd-vendor-index-page { display: flex; flex-direction: column; gap: var(--vd-space-12); }
.vd-vendor-index-head { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: var(--vd-reading-max); margin-inline: auto; text-align: center; }
.vd-vendor-index-head .vd-h1 { margin-top: var(--vd-space-2); }
.vd-vendor-filter { width: min(560px, 100%); max-width: none; margin-top: var(--vd-space-6); text-align: left; }
.vd-vendor-filter__control { position: relative; width: 100%; }
.vd-vendor-filter__control .vd-input { width: 100%; padding-left: calc(var(--vd-space-4) + var(--vd-icon-md) + var(--vd-space-2)); padding-right: calc(var(--vd-control-md) + var(--vd-space-3)); }
.vd-vendor-filter__control .vd-input::placeholder { color: var(--vd-text-secondary); }
.vd-vendor-filter__control .vd-input::-webkit-search-cancel-button { appearance: none; }
.vd-vendor-filter__icon { position: absolute; top: 50%; left: var(--vd-space-4); z-index: 1; display: inline-flex; width: var(--vd-icon-md); height: var(--vd-icon-md); color: var(--vd-text-secondary); pointer-events: none; transform: translateY(-50%); }
.vd-vendor-filter__icon svg, .vd-vendor-filter__clear svg { display: block; width: 100%; height: 100%; }
.vd-vendor-filter__control:focus-within .vd-vendor-filter__icon { color: var(--vd-green-700); }
.vd-vendor-filter__clear { position: absolute; top: 50%; right: var(--vd-space-05); display: inline-flex; align-items: center; justify-content: center; width: var(--vd-touch-min); height: var(--vd-touch-min); padding: var(--vd-space-3); border: 0; border-radius: var(--vd-radius-sm); background: transparent; color: var(--vd-text-secondary); cursor: pointer; transform: translateY(-50%); }
.vd-vendor-filter__clear:hover { background: var(--vd-n-100); color: var(--vd-text-heading); }
.vd-vendor-filter__clear[hidden] { display: none; }

.vd-chip {
  display: inline-flex; align-items: center; gap: var(--vd-space-2);
  height: var(--vd-status-tab-h); padding-inline: var(--vd-space-3);
  border: var(--vd-border-hairline) solid var(--vd-border-field);
  border-radius: var(--vd-radius-pill);
  background: var(--vd-n-0); color: var(--vd-text-body);
  font-family: inherit; font-size: var(--vd-body-sm-size); cursor: pointer; white-space: nowrap;
}
.vd-chip:hover { border-color: var(--vd-border-field-hover); }
.vd-chip[aria-pressed="true"] { background: var(--vd-green-600); border-color: var(--vd-green-600); color: var(--vd-n-0); }
.vd-chip__count { font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); }

.vd-pagination { display: flex; align-items: center; gap: var(--vd-space-2); flex-wrap: wrap; }
.vd-page-btn {
  min-width: var(--vd-control-md); height: var(--vd-control-md); padding-inline: var(--vd-space-3);
  display: inline-flex; align-items: center; justify-content: center;
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  border-radius: var(--vd-radius-md);
  background: var(--vd-n-0); color: var(--vd-text-body);
  font-family: var(--vd-font-mono); font-size: var(--vd-code-size); text-decoration: none;
}
.vd-page-btn:hover { background: var(--vd-n-50); color: var(--vd-text-body); text-decoration: none; }
.vd-page-btn[aria-current="page"] { background: var(--vd-green-600); border-color: var(--vd-green-600); color: var(--vd-n-0); font-weight: 500; }
.vd-page-btn[aria-disabled="true"] { color: var(--vd-text-disabled); cursor: default; pointer-events: none; }
.vd-page-ellipsis { width: var(--vd-icon-lg); height: var(--vd-control-md); display: inline-flex; align-items: center; justify-content: center; color: var(--vd-text-disabled); }
.vd-pagination__mobile { display: none; align-items: center; gap: var(--vd-space-3); }

/* ─────────────────────────────────────────────────────────────────────────
   §11 PRODUCT DETAIL
   ───────────────────────────────────────────────────────────────────────── */
.vd-hero-band { background: var(--vd-green-500); }
.vd-purchase-rail { display: flex; flex-direction: column; gap: var(--vd-space-4); }
.vd-price { display: flex; align-items: baseline; gap: var(--vd-space-3); }
.vd-price__now { font-family: var(--vd-font-mono); font-size: var(--vd-code-lg-size); line-height: var(--vd-code-lg-line); font-weight: 500; color: var(--vd-text-heading); }
.vd-entry-card { display: flex; flex-direction: column; gap: var(--vd-space-2); padding: var(--vd-space-5); background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); color: var(--vd-text-body); text-decoration: none; }
.vd-entry-card:hover { border-color: var(--vd-green-500); color: var(--vd-text-body); text-decoration: none; }

/* ─────────────────────────────────────────────────────────────────────────
   §12 READING LINE
   ───────────────────────────────────────────────────────────────────────── */
.vd-question { padding-block: 28px; border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-question:first-child { border-top: 0; padding-top: 0; }
.vd-question__no { font-family: var(--vd-font-mono); font-size: var(--vd-code-size); font-weight: 500; color: var(--vd-text-secondary); }
.vd-question__type { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 500; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-text-secondary); }
.vd-question__stem { font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-heading); max-width: var(--vd-reading-max); }
.vd-question__options { display: flex; flex-direction: column; gap: var(--vd-space-2); max-width: var(--vd-reading-max); }
.vd-question__option { display: flex; gap: var(--vd-space-3); padding: var(--vd-space-3) var(--vd-space-4); border: var(--vd-border-hairline) solid var(--vd-border-field); border-radius: var(--vd-radius-sm); font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); }

.vd-disclosure { display: inline-flex; align-items: center; gap: var(--vd-space-2); height: var(--vd-control-md); padding-inline: var(--vd-space-4); border: var(--vd-border-hairline) solid var(--vd-green-600); border-radius: var(--vd-radius-md); background: var(--vd-n-0); color: var(--vd-green-700); font-family: inherit; font-size: var(--vd-body-size); font-weight: 500; cursor: pointer; }
.vd-disclosure:hover { background: var(--vd-green-50); }
.vd-disclosure__caret { display: inline-block; transition: transform var(--vd-dur-fast) var(--vd-ease-standard); }
.vd-disclosure[aria-expanded="true"] .vd-disclosure__caret { transform: rotate(90deg); }

.vd-answer-block { background: var(--vd-success-bg); border: var(--vd-border-strong) solid var(--vd-success); border-left-width: var(--vd-alert-rail); border-radius: var(--vd-radius-md); padding: var(--vd-space-4) var(--vd-space-5); max-width: var(--vd-reading-max); }
.vd-answer-block[hidden] { display: none; }
.vd-answer-block__label { font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 500; color: var(--vd-success-ink); }
.vd-answer-block__body { font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-body); }

.vd-exhibit { border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-md); overflow: hidden; max-width: var(--vd-reading-max); }
.vd-exhibit__frame { height: var(--vd-exhibit-h); background: var(--vd-surface-hatch); display: flex; align-items: center; justify-content: center; font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); color: var(--vd-text-muted); }
.vd-exhibit__caption { padding: var(--vd-space-2) var(--vd-space-3); background: var(--vd-surface-card); border-top: var(--vd-border-hairline) solid var(--vd-border-divider); font-size: var(--vd-caption-size); color: var(--vd-text-secondary); }

.vd-rail-nav { display: flex; flex-direction: column; gap: var(--vd-space-1); }
.vd-rail-nav__item { display: flex; align-items: center; min-height: var(--vd-nav-item-h); padding-inline: var(--vd-space-3); border-radius: var(--vd-radius-md); color: var(--vd-text-body); font-size: var(--vd-body-size); text-decoration: none; border-left: var(--vd-rail-accent) solid transparent; }
.vd-rail-nav__item:hover { background: var(--vd-n-50); color: var(--vd-text-body); text-decoration: none; }
.vd-rail-nav__item[aria-current] { background: var(--vd-surface-selected); border-left-color: var(--vd-green-500); font-weight: 500; }

/* ─────────────────────────────────────────────────────────────────────────
   §13 AUTH
   ───────────────────────────────────────────────────────────────────────── */
.vd-auth-wrap { display: flex; justify-content: center; padding-block: var(--vd-space-16); }
.vd-auth-col { width: 100%; max-width: var(--vd-auth-card-w); display: flex; flex-direction: column; gap: var(--vd-space-4); }
.vd-auth-card { background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); padding: var(--vd-space-8); display: flex; flex-direction: column; gap: var(--vd-space-5); }
.vd-auth-card .vd-caption a { text-decoration: underline; text-underline-offset: 0.16em; }
.vd-auth-alt { font-size: var(--vd-body-size); color: var(--vd-text-secondary); text-align: center; }

/* ─────────────────────────────────────────────────────────────────────────
   §14 CHECKOUT & PAYMENT
   ───────────────────────────────────────────────────────────────────────── */
.vd-pay-region { min-height: var(--vd-pay-region-min); padding: var(--vd-space-4); background: var(--vd-surface-sunken); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-md); display: flex; flex-direction: column; gap: var(--vd-space-3); justify-content: center; }
.vd-summary-line { display: flex; align-items: baseline; justify-content: space-between; gap: var(--vd-space-4); font-size: var(--vd-body-size); }
.vd-summary-line__value { font-family: var(--vd-font-mono); font-size: var(--vd-code-size); color: var(--vd-text-heading); }
.vd-summary-total { display: flex; align-items: baseline; justify-content: space-between; gap: var(--vd-space-4); }
.vd-summary-total__figure { font-family: var(--vd-font-mono); font-size: var(--vd-code-lg-size); line-height: var(--vd-code-lg-line); font-weight: 500; color: var(--vd-text-heading); }
.vd-mobile-pay-bar { display: none; position: fixed; inset: auto 0 0 0; z-index: 40; padding: var(--vd-space-3) var(--vd-gutter-mobile); background: var(--vd-surface-card); border-top: var(--vd-border-hairline) solid var(--vd-border-divider); box-shadow: 0 -2px 8px rgba(17, 22, 20, 0.08); align-items: center; gap: var(--vd-space-3); }

/* ─────────────────────────────────────────────────────────────────────────
   §15 ACCOUNT · MY EXAMS
   ───────────────────────────────────────────────────────────────────────── */
.vd-account-nav { background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); padding: var(--vd-space-2); display: flex; flex-direction: column; gap: var(--vd-space-1); }
.vd-account-nav__item { display: flex; align-items: center; height: var(--vd-nav-item-h); padding-inline: var(--vd-space-3); border-radius: var(--vd-radius-md); border-left: var(--vd-rail-accent) solid transparent; color: var(--vd-text-body); font-size: var(--vd-body-size); text-decoration: none; }
.vd-account-nav__item:hover { background: var(--vd-n-50); color: var(--vd-text-body); text-decoration: none; }
.vd-account-nav__item[aria-current="page"] { background: var(--vd-surface-selected); border-left-color: var(--vd-green-500); font-weight: 500; color: var(--vd-green-700); }
.vd-account-nav-mobile { display: none; }

.vd-identity { font-size: var(--vd-body-size); color: var(--vd-text-secondary); }
.vd-identity__email { font-family: var(--vd-font-mono); color: var(--vd-text-heading); }

.vd-order-card {
  display: flex; flex-direction: column; gap: var(--vd-space-3);
  padding: var(--vd-space-5) var(--vd-space-6);
  background: var(--vd-surface-card);
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  border-left: var(--vd-alert-rail) solid var(--vd-n-300);
  border-radius: var(--vd-radius-lg);
}
.vd-order-card--pending { border-left-style: dashed; border-left-color: var(--vd-warning); }
.vd-order-card--paid { border-left-color: var(--vd-success); }
.vd-order-card--cancelled { background: var(--vd-surface-sunken); border-left-color: var(--vd-n-300); }
.vd-order-card--refunded { border-left-color: var(--vd-info); }
.vd-order-card--expired { background: var(--vd-surface-hatch); border-left-color: var(--vd-n-300); }

.vd-status-tabs { display: flex; align-items: center; gap: var(--vd-space-2); flex-wrap: wrap; }
.vd-status-tab { height: var(--vd-status-tab-h); padding-inline: var(--vd-space-4); border: var(--vd-border-hairline) solid var(--vd-border-field); border-radius: var(--vd-radius-pill); background: var(--vd-n-0); color: var(--vd-text-body); font-family: inherit; font-size: var(--vd-body-sm-size); cursor: pointer; }
.vd-status-tab[aria-pressed="true"] { background: var(--vd-green-600); border-color: var(--vd-green-600); color: var(--vd-n-0); }

.vd-myexams-row { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: var(--vd-space-6); align-items: start; }

/* ─────────────────────────────────────────────────────────────────────────
   §16 CONTENT FAMILY
   ───────────────────────────────────────────────────────────────────────── */
.vd-prose { max-width: var(--vd-reading-max); font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-body); }
.vd-prose h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); margin-top: var(--vd-space-10); margin-bottom: var(--vd-space-3); }
.vd-prose h3 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 500; color: var(--vd-text-heading); margin-top: var(--vd-space-5); margin-bottom: var(--vd-space-2); }
.vd-prose p { margin-bottom: var(--vd-space-4); }
.vd-prose p:last-child { margin-bottom: 0; }
.vd-prose ul, .vd-prose ol { padding-left: 22px; margin-bottom: var(--vd-space-4); display: flex; flex-direction: column; gap: var(--vd-space-2); }
.vd-prose li { line-height: var(--vd-body-lg-line); }
.vd-prose strong { font-weight: 500; color: var(--vd-text-heading); }
.vd-prose em { font-style: italic; }
.vd-prose hr { height: var(--vd-border-hairline); border: 0; background: var(--vd-border-divider-faint); margin-block: var(--vd-space-8); }

.vd-accordion { display: flex; flex-direction: column; gap: var(--vd-space-3); max-width: var(--vd-reading-max); }
.vd-accordion__item { border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-md); overflow: hidden; }
.vd-accordion__btn { display: flex; align-items: center; justify-content: space-between; gap: var(--vd-space-4); width: 100%; padding: 18px var(--vd-space-5); border: 0; background: var(--vd-surface-card); color: var(--vd-text-heading); font-family: inherit; font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 500; text-align: left; cursor: pointer; }
.vd-accordion__btn:hover { background: var(--vd-n-50); }
.vd-accordion__caret { flex: none; color: var(--vd-text-secondary); transition: transform var(--vd-dur-fast) var(--vd-ease-standard); }
.vd-accordion__btn[aria-expanded="true"] { background: var(--vd-surface-sunken); }
.vd-accordion__btn[aria-expanded="true"] .vd-accordion__caret { transform: rotate(90deg); }
.vd-accordion__body { padding: 18px var(--vd-space-5); background: var(--vd-surface-sunken); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); }
.vd-accordion__body[hidden] { display: none; }

.vd-step { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: var(--vd-space-4); align-items: start; }
.vd-step__marker { width: var(--vd-step-marker); height: var(--vd-step-marker); display: inline-flex; align-items: center; justify-content: center; border: var(--vd-border-hairline) solid var(--vd-green-200); border-radius: var(--vd-radius-md); background: var(--vd-green-50); font-family: var(--vd-font-mono); font-size: var(--vd-h3-size); font-weight: 600; color: var(--vd-green-700); }
.vd-step__marker--sm { width: var(--vd-control-md); height: var(--vd-control-md); font-size: var(--vd-body-size); }

.vd-mail-action { height: var(--vd-control-lg); white-space: nowrap; flex: none; }

.vd-rating-summary { display: grid; grid-template-columns: 240px minmax(0, 1fr) 260px; gap: var(--vd-space-8); align-items: center; }
.vd-rating-bar { display: grid; grid-template-columns: 40px minmax(0, 1fr) 46px; gap: var(--vd-space-3); align-items: center; }
.vd-rating-bar__count { font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); text-align: right; color: var(--vd-text-secondary); }
.vd-stars { display: inline-flex; gap: 2px; color: var(--vd-green-600); font-size: var(--vd-h4-size); }
.vd-stars--muted { color: var(--vd-n-300); }
.vd-star-control { display: inline-flex; gap: var(--vd-space-1); padding: var(--vd-space-1); border-radius: var(--vd-radius-md); }
.vd-star-control__btn { width: var(--vd-control-md); height: var(--vd-control-md); border: 0; border-radius: var(--vd-radius-sm); background: transparent; color: var(--vd-n-300); font-size: var(--vd-h3-size); cursor: pointer; }
.vd-star-control__btn[aria-checked="true"], .vd-star-control__btn.is-on { background: var(--vd-green-50); color: var(--vd-green-600); }
.vd-star-control.is-invalid { background: var(--vd-error-bg); box-shadow: var(--vd-focus-ring-error); }
.vd-review-row { padding: var(--vd-space-5) var(--vd-space-6); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-review-row:first-child { border-top: 0; }
.vd-review-row--pending { background: var(--vd-warning-bg); border-left: var(--vd-alert-rail) solid var(--vd-warning); border-top: var(--vd-border-strong) dashed var(--vd-warning); }

.vd-diagram { background: var(--vd-surface-sunken); border: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-radius: var(--vd-radius-md); padding: var(--vd-space-3); }
.vd-textbar { height: 8px; border-radius: var(--vd-radius-pill); background: var(--vd-n-100); }

/* ─────────────────────────────────────────────────────────────────────────
   §17 PRACTICE ENGINE SKIN
   ───────────────────────────────────────────────────────────────────────── */
.vd-engine-header { background: var(--vd-green-700); height: var(--vd-header-h); display: flex; align-items: center; color: var(--vd-n-0); }
.vd-engine-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--vd-space-4); width: 100%; }
.vd-engine-timer { font-family: var(--vd-font-mono); font-size: var(--vd-code-size); font-weight: 500; background: rgba(255, 255, 255, 0.12); border-radius: var(--vd-radius-sm); padding: 6px var(--vd-space-3); }

.vd-qmap { display: grid; grid-template-columns: repeat(auto-fill, var(--vd-qmap-cell)); gap: var(--vd-space-1); }
.vd-qmap__cell {
  position: relative;
  width: var(--vd-qmap-cell); height: var(--vd-qmap-cell);
  display: inline-flex; align-items: center; justify-content: center;
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  border-radius: var(--vd-radius-sm);
  background: var(--vd-n-0);
  font-family: var(--vd-font-mono); font-size: var(--vd-caption-size); font-weight: 500;
  color: var(--vd-text-body); cursor: pointer;
}
.vd-qmap__cell--unanswered { border-style: dashed; color: var(--vd-text-muted); }
.vd-qmap__cell--answered { background: var(--vd-n-100); }
.vd-qmap__cell--marked { background: var(--vd-warning-bg); border: var(--vd-border-strong) dashed var(--vd-warning); }
.vd-qmap__cell--correct { background: var(--vd-success-bg); border-color: var(--vd-success); }
.vd-qmap__cell--incorrect { background: var(--vd-error-bg); border-color: var(--vd-error); }
.vd-qmap__cell[aria-current="true"] { box-shadow: 0 0 0 2px var(--vd-green-500); color: var(--vd-n-900); }
.vd-qmap__flag { position: absolute; top: 2px; right: 2px; width: 8px; height: 8px; }

.vd-answer-option { display: flex; align-items: flex-start; gap: var(--vd-space-3); padding: var(--vd-space-3) var(--vd-space-4); border: var(--vd-border-hairline) solid var(--vd-border-field); border-radius: var(--vd-radius-sm); background: var(--vd-n-0); width: 100%; text-align: left; font-family: inherit; font-size: var(--vd-body-size); cursor: pointer; }
.vd-answer-option:hover { border-color: var(--vd-border-field-hover); }
.vd-answer-option.is-selected { background: var(--vd-green-50); border: var(--vd-border-accent) solid var(--vd-green-600); }
.vd-answer-option--correct { background: var(--vd-success-bg); border: var(--vd-border-strong) solid var(--vd-success); border-left-width: var(--vd-alert-rail); }
.vd-answer-option--incorrect { background: var(--vd-error-bg); border: var(--vd-border-strong) solid var(--vd-error); border-left-width: var(--vd-alert-rail); }
.vd-answer-option--incorrect .vd-answer-option__text { text-decoration: line-through; }

.vd-mark-control { height: var(--vd-control-md); padding-inline: var(--vd-space-4); display: inline-flex; align-items: center; gap: var(--vd-space-2); background: var(--vd-warning-bg); border: var(--vd-border-strong) dashed var(--vd-warning); border-radius: var(--vd-radius-md); color: var(--vd-warning-ink); font-family: inherit; font-size: var(--vd-body-size); cursor: pointer; }
.vd-mark-control[aria-pressed="true"] { background: var(--vd-warning); color: var(--vd-n-0); border-style: solid; }

.vd-score-meter { position: relative; height: var(--vd-quota-meter-h); border-radius: var(--vd-radius-pill); background: var(--vd-n-200); overflow: visible; }
.vd-score-meter__fill { height: 100%; border-radius: var(--vd-radius-pill); background: var(--vd-success); }
.vd-score-meter__tick { position: absolute; top: -3px; bottom: -3px; width: 2px; background: var(--vd-n-900); }
.vd-score-meter__tick--pass { left: 72%; }

/* ─────────────────────────────────────────────────────────────────────────
   §18 UTILITIES
   ───────────────────────────────────────────────────────────────────────── */
.vd-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; }
.vd-hidden { display: none !important; }
.vd-surface-page { background: var(--vd-surface-page); }
.vd-surface-card { background: var(--vd-surface-card); }
.vd-surface-sunken { background: var(--vd-surface-sunken); }
.vd-surface-subtle { background: var(--vd-surface-subtle); }
.vd-surface-selected { background: var(--vd-surface-selected); }
.vd-surface-deep { background: var(--vd-green-900); color: var(--vd-n-0); }
.vd-only-mobile { display: none; }

/* percentage widths — meters and bars carry a class, never an inline width */
.vd-pct-0 { width: 0; }
.vd-pct-5 { width: 5%; }
.vd-pct-10 { width: 10%; }
.vd-pct-15 { width: 15%; }
.vd-pct-20 { width: 20%; }
.vd-pct-25 { width: 25%; }
.vd-pct-30 { width: 30%; }
.vd-pct-35 { width: 35%; }
.vd-pct-40 { width: 40%; }
.vd-pct-45 { width: 45%; }
.vd-pct-50 { width: 50%; }
.vd-pct-55 { width: 55%; }
.vd-pct-60 { width: 60%; }
.vd-pct-65 { width: 65%; }
.vd-pct-70 { width: 70%; }
.vd-pct-75 { width: 75%; }
.vd-pct-80 { width: 80%; }
.vd-pct-85 { width: 85%; }
.vd-pct-90 { width: 90%; }
.vd-pct-95 { width: 95%; }
.vd-pct-100 { width: 100%; }

/* ─────────────────────────────────────────────────────────────────────────
   §19 RESPONSIVE
   ───────────────────────────────────────────────────────────────────────── */
@media (min-width: 1440px) {
  .vd-container { max-width: calc(var(--vd-container-max) + var(--vd-gutter-1440) * 2); padding-inline: var(--vd-gutter-1440); }
}

/* the compact shell engages below bp-xl: the eight-item nav plus the search
   entry and both account entries only compose from 1280 up. */
@media (max-width: 1279px) {
  .vd-nav { display: none; }
  .vd-header__burger { display: flex; }
  .vd-header__inner { gap: var(--vd-space-4); }
}

@media (max-width: 1023px) {
  .vd-nav { display: none; }
  .vd-header__burger { display: flex; }
  .vd-header__inner { gap: var(--vd-space-4); }
  .vd-promo__desktop { display: none; }
  .vd-promo { height: auto; }
  .vd-promo__mobile { display: flex; flex-direction: column; gap: var(--vd-space-2); width: 100%; padding-block: 10px; }
  .vd-promo__mobile > .vd-promo__offer { justify-content: center; }
  .vd-promo__mobile .vd-promo__badge { min-height: 30px; padding-inline: var(--vd-space-3); }
  .vd-promo__mobile .vd-promo__message { display: block; }
  .vd-promo__mobile-actions { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: var(--vd-space-2); }
  .vd-promo__mobile .vd-promo__timer,
  .vd-promo__mobile .vd-promo__code { min-width: 0; padding-inline: var(--vd-space-2); }
  .vd-promo__mobile .vd-promo__timer { justify-content: center; padding-inline: 0; }
  .vd-promo__mobile .vd-promo__clock { min-width: 0; padding-inline: var(--vd-space-1); background: transparent; }
  .vd-promo__mobile .vd-promo__code { gap: var(--vd-space-2); }
  .vd-promo__mobile .vd-promo__code-value { overflow: hidden; padding-left: var(--vd-space-2); text-overflow: ellipsis; }

  .vd-split--product, .vd-split--reading, .vd-split--player, .vd-split--summary { grid-template-columns: minmax(0, 1fr); }
  .vd-rail-sticky { position: static; }
  .vd-footer__grid { grid-template-columns: repeat(2, 1fr); gap: var(--vd-space-8); }
  .vd-rating-summary { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-5); }
  .vd-grid--vendors-index { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .vd-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vd-myexams-row { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 359px) {
  .vd-promo__mobile-actions { grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); }
  .vd-promo__mobile .vd-promo__message,
  .vd-promo__mobile .vd-promo__meta,
  .vd-promo__mobile .vd-promo__code-label { display: none; }
  .vd-promo__mobile .vd-promo__code-value { padding-left: 0; border-left: 0; overflow: visible; text-overflow: clip; }
}

@media (max-width: 767px) {
  .vd-container { padding-inline: var(--vd-gutter-mobile); }
  .vd-section { padding-block: var(--vd-space-8); }

  .vd-header { height: auto; padding-block: var(--vd-space-3); }
  .vd-header__inner { flex-wrap: wrap; gap: var(--vd-space-3); }
  .vd-header__desktop-only { display: none; }
  .vd-header-search { flex: 1 1 100%; max-width: none; order: 2; }
  .vd-header-search .vd-field-group { height: var(--vd-search-h); }

  .vd-split--account { grid-template-columns: minmax(0, 1fr); }
  .vd-account-nav { display: none; }
  .vd-account-nav-mobile { display: block; }
  /* topic nav keeps one topic per row at 390 — never a two-column list */
  .vd-account-nav--topics { display: flex; }
  .vd-account-nav--topics .vd-account-nav__item { height: var(--vd-control-lg); }

  .vd-footer__grid { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-6); }

  .vd-grid--2 { grid-template-columns: minmax(0, 1fr); }
  .vd-grid--vendors, .vd-grid--vendors-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vd-vendor-index-page { gap: var(--vd-space-8); }
  .vd-vendor-filter { margin-top: var(--vd-space-5); }
  .vd-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .vd-exam-row { grid-template-columns: minmax(0, 1fr) auto; row-gap: var(--vd-space-1); padding-inline: var(--vd-gutter-mobile); }
  .vd-exam-row__code { grid-column: 1 / -1; }

  .vd-pagination__desktop { display: none; }
  .vd-pagination__mobile { display: flex; }
  .vd-pagination__mobile .vd-page-btn { min-width: var(--vd-touch-min); height: var(--vd-touch-min); }

  .vd-card--pad { padding: var(--vd-space-4); }
  .vd-card--pad-lg { padding: var(--vd-space-5); }
  .vd-auth-wrap { padding-block: var(--vd-space-8); }
  .vd-auth-card { padding: var(--vd-space-5); }
  .vd-input, .vd-select { height: var(--vd-control-lg); }
  .vd-field-reveal .vd-input { height: var(--vd-control-lg); }
  .vd-reveal-btn { height: var(--vd-touch-min); }

  .vd-btn { height: var(--vd-touch-min); }
  .vd-step { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-3); }
  .vd-step__marker { width: var(--vd-control-md); height: var(--vd-control-md); font-size: var(--vd-h4-size); }

  .vd-star-control__btn { width: var(--vd-touch-min); height: var(--vd-touch-min); }
  .vd-mobile-pay-bar { display: flex; }
  .vd-only-mobile { display: block; }
  .vd-only-desktop { display: none; }

  .vd-display { font-size: var(--vd-h1-size); line-height: var(--vd-h1-line); }
  .vd-h1 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); }
}

/* ─────────────────────────────────────────────────────────────────────────
   §20 PRINT
   ───────────────────────────────────────────────────────────────────────── */
@media print {
  :root { --vd-body-size: 11.5pt; }
  .vd-promo, .vd-header, .vd-footer, .vd-back-to-top, .vd-breadcrumb, .vd-no-print { display: none !important; }
  body { background: var(--vd-n-0); }
  .vd-question { break-inside: avoid; }
  .vd-answer-block { background: transparent; border: 0; border-left: 2pt solid var(--vd-n-800); border-radius: 0; padding-left: 10px; }
  .vd-answer-block__label { color: var(--vd-n-900); }
}

/* ─────────────────────────────────────────────────────────────────────────
   §21 STOREFRONT BINDINGS
   Components the storefront needs that have no counterpart in the static
   handoff. Token-only: no raw hex, no off-ladder radius or type size.
   ───────────────────────────────────────────────────────────────────────── */

/* skip link — keyboard entry into the main region */
.vd-skip-link {
  position: absolute; left: var(--vd-space-4); top: calc(var(--vd-space-4) * -6); z-index: 70;
  display: inline-flex; align-items: center; height: var(--vd-control-md);
  padding-inline: var(--vd-space-4);
  border-radius: var(--vd-radius-md);
  background: var(--vd-surface-card); color: var(--vd-text-link);
  font-size: var(--vd-body-size); font-weight: 500; text-decoration: none;
  box-shadow: var(--vd-shadow-lg);
}
.vd-skip-link:focus { top: var(--vd-space-4); }

/* server-rendered flash + validation summaries sit above the page content */
.vd-flash { margin-top: var(--vd-space-5); }
.vd-flash + .vd-flash { margin-top: var(--vd-space-3); }

/* the promo bar is a live offer: both controls stay a full touch target */
.vd-promo__code { display: inline-flex; align-items: center; min-height: var(--vd-touch-min); }

/* search suggestions are fetched, so the panel is appended to the form */
.vd-search-suggest { position: relative; }
.vd-suggest__list { display: flex; flex-direction: column; }
.vd-suggest__note { padding: var(--vd-space-3) var(--vd-space-4); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }
.vd-suggest__note.is-error { color: var(--vd-error); }

/* the drawer owns the viewport while it is open */
.vd-scroll-locked { overflow: hidden; }

/* back-to-top watches this marker instead of listening to scroll */
.vd-back-to-top-trigger { display: block; height: 1px; }

/* the footer carries five columns: brand plus the four link groups */
.vd-footer__grid--5 { grid-template-columns: 1.4fr repeat(4, 1fr); }
@media (max-width: 1023px) { .vd-footer__grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .vd-footer__grid--5 { grid-template-columns: minmax(0, 1fr); } }

/* catalog — breadcrumb keeps list semantics, so the list chrome is reset here */
.vd-breadcrumb__list { display: contents; list-style: none; }
.vd-breadcrumb__item { display: inline-flex; align-items: center; gap: var(--vd-space-2); }

/* catalog — the centered vendor filter stays wide enough for recognition and
   long provider names without reading like a page-wide global search. */
.vd-vendor-filter { width: min(560px, 100%); }

/* catalog — sort selects size to their content instead of filling the row */
.vd-select--auto { width: auto; min-width: 160px; }

/* catalog — facet links are chips, so they mark the current facet, not a press state */
.vd-chip[aria-current="page"] { background: var(--vd-green-600); border-color: var(--vd-green-600); color: var(--vd-n-0); }
.vd-chip[aria-current="page"]:hover { background: var(--vd-green-700); color: var(--vd-n-0); text-decoration: none; }
a.vd-chip:hover { text-decoration: none; }

/* catalog — the retired-code archive stays collapsed until asked for */
.vd-archive { border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); background: var(--vd-surface-card); }
.vd-archive__summary { display: flex; align-items: center; min-height: var(--vd-touch-min); padding: var(--vd-space-3) var(--vd-space-5); color: var(--vd-text-link); font-size: var(--vd-body-size); font-weight: 500; cursor: pointer; }
.vd-archive__summary:hover { background: var(--vd-n-50); }
.vd-archive__label--open { display: none; }
.vd-archive[open] .vd-archive__label--closed { display: none; }
.vd-archive[open] .vd-archive__label--open { display: inline; }
.vd-archive__body { padding: var(--vd-space-4) var(--vd-space-5); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }

/* catalog — the search page field sits on the page surface, not the brand bar */
.vd-search-form { max-width: var(--vd-reading-max); }

/* auth — the sign-in card keeps its companion index panel beside it */
.vd-auth-grid { display: grid; grid-template-columns: var(--vd-auth-card-w) minmax(0, 1fr); gap: var(--vd-space-8); align-items: start; }
.vd-auth-grid > .vd-auth-col { max-width: none; }
.vd-auth-aside { align-self: start; }
.vd-def-list dt { margin-bottom: var(--vd-space-05); }
@media (max-width: 1023px) {
  .vd-auth-grid { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-5); }
  .vd-auth-aside { order: -1; }
}

/* ── information pages ──────────────────────────────────────────────────────
   The CMS family keeps its own block structure (one bespoke layout per topic).
   These rules give that structure the new type scale and surfaces. Headings and
   copy inside a block are plain elements, so the block scopes their styling. */
.vd-info-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) var(--vd-rail-width); gap: var(--vd-space-10); align-items: center; }
.vd-info-hero__visual { display: flex; align-items: center; justify-content: center; padding: var(--vd-space-5); background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); }
.vd-info-hero__visual img { width: 100%; height: auto; }

.vd-hero-route, .vd-hero-record, .vd-hero-privacy, .vd-hero-library, .vd-hero-checklist, .vd-hero-mail { display: flex; flex-direction: column; gap: var(--vd-space-2); width: 100%; font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }
.vd-hero-route span, .vd-hero-checklist span, .vd-hero-mail span { display: flex; align-items: center; gap: var(--vd-space-3); padding: var(--vd-space-3) var(--vd-space-4); background: var(--vd-surface-sunken); border: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-radius: var(--vd-radius-md); }
.vd-hero-route i { width: var(--vd-icon-sm); height: var(--vd-icon-sm); flex: none; border-radius: 50%; background: var(--vd-green-500); }
.vd-hero-record { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vd-hero-record strong { grid-column: 1 / -1; font-family: var(--vd-font-mono); font-size: var(--vd-code-size); color: var(--vd-text-heading); }
.vd-hero-record span { padding: var(--vd-space-3); background: var(--vd-surface-sunken); border: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-radius: var(--vd-radius-md); }
.vd-hero-privacy { align-items: center; }
.vd-hero-privacy__shield { width: var(--vd-step-marker); height: var(--vd-step-marker); border-radius: var(--vd-radius-md) var(--vd-radius-md) var(--vd-radius-xl) var(--vd-radius-xl); background: var(--vd-green-50); border: var(--vd-border-accent) solid var(--vd-green-500); }
.vd-hero-privacy div { display: flex; gap: var(--vd-space-2); flex-wrap: wrap; justify-content: center; }
.vd-hero-privacy strong { padding: var(--vd-space-2) var(--vd-space-3); background: var(--vd-surface-sunken); border-radius: var(--vd-radius-pill); font-weight: 500; color: var(--vd-text-heading); }
.vd-hero-library { align-items: center; text-align: center; }
.vd-hero-library strong { font-family: var(--vd-font-mono); font-size: var(--vd-code-size); color: var(--vd-green-700); }
.vd-hero-library i { width: var(--vd-border-accent); height: var(--vd-space-4); background: var(--vd-border-divider); }
.vd-hero-mail strong { font-family: var(--vd-font-mono); font-size: var(--vd-code-size); color: var(--vd-text-heading); }
.vd-hero-mail i { height: var(--vd-quota-meter-h); border-radius: var(--vd-radius-pill); background: var(--vd-green-100); }

.vd-info-nav { display: flex; flex-direction: column; gap: var(--vd-space-3); }
.vd-info-content { min-width: 0; }

/* Information-page navigation is presentation-only and deliberately avoids
   the boxed account-navigation treatment. Narrow layouts use native details. */
.vd-info-family-nav--desktop { display: flex; flex-direction: column; gap: var(--vd-space-3); }
.vd-info-family-nav__links { display: flex; flex-direction: column; gap: var(--vd-space-05); }
.vd-info-family-nav__links a {
  display: flex; align-items: center; min-height: var(--vd-touch-min);
  padding-inline: var(--vd-space-3);
  border-left: var(--vd-rail-accent) solid transparent;
  color: var(--vd-text-body); font-size: var(--vd-body-size); text-decoration: none;
}
.vd-info-family-nav__links a:hover { background: var(--vd-n-50); color: var(--vd-text-heading); text-decoration: none; }
.vd-info-family-nav__links a[aria-current="page"] { border-left-color: var(--vd-green-500); background: var(--vd-surface-selected); color: var(--vd-green-700); font-weight: 500; }
.vd-info-family-nav--mobile { display: none; }

/* Scoped document pages share a reading lane, compact index, open sections,
   and unframed SVG identity. Other information pages keep their compositions. */
.vd-info-hero--pass-guarantee .vd-info-hero__visual,
.vd-info-hero--privacy .vd-info-hero__visual,
.vd-info-hero--terms-and-conditions .vd-info-hero__visual,
.vd-info-hero--payment .vd-info-hero__visual,
.vd-info-hero--contact-us .vd-info-hero__visual,
.vd-info-hero--about-us .vd-info-hero__visual,
.vd-info-hero--faqs .vd-info-hero__visual { padding: 0; background: transparent; border: 0; border-radius: 0; }
.vd-info-hero--pass-guarantee .vd-info-hero__visual img,
.vd-info-hero--privacy .vd-info-hero__visual img,
.vd-info-hero--terms-and-conditions .vd-info-hero__visual img,
.vd-info-hero--payment .vd-info-hero__visual img,
.vd-info-hero--contact-us .vd-info-hero__visual img,
.vd-info-hero--about-us .vd-info-hero__visual img,
.vd-info-hero--faqs .vd-info-hero__visual img { width: 100%; max-height: 280px; object-fit: contain; }

.vd-info-document { width: 100%; max-width: var(--vd-reading-max); gap: 0; }
.vd-info-index { display: flex; flex-direction: column; gap: var(--vd-space-2); margin-bottom: var(--vd-space-10); }
.vd-info-index__label { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 500; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-text-secondary); }
.vd-info-index__links { display: flex; flex-wrap: wrap; align-items: center; column-gap: var(--vd-space-3); row-gap: var(--vd-space-2); }
.vd-info-index__links a { display: inline-flex; align-items: center; min-height: var(--vd-touch-min); color: var(--vd-text-link); font-size: var(--vd-body-sm-size); font-weight: 500; text-decoration: underline; text-decoration-color: var(--vd-green-200); text-underline-offset: 4px; }
.vd-info-index__links a:not(:last-child)::after { content: ""; width: 3px; height: 3px; margin-left: var(--vd-space-3); border-radius: 50%; background: var(--vd-green-400); }
.vd-info-index__links a:hover { color: var(--vd-text-link-hover); text-decoration-color: currentColor; }

.vd-info-section { display: flex; flex-direction: column; scroll-margin-top: var(--vd-space-8); }
.vd-info-section + .vd-info-section { margin-top: var(--vd-space-10); padding-top: var(--vd-space-10); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-info-section > header { display: flex; flex-direction: column; gap: var(--vd-space-2); margin-bottom: var(--vd-space-4); }
.vd-info-section > header h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-info-section > header p:last-child:not(.vd-overline) { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-info-section > p { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-body); }
.vd-info-section > p + p { margin-top: var(--vd-space-3); }
.vd-info-section > .vd-info-lead { font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-heading); }
.vd-info-section--separated { margin-top: var(--vd-space-10); padding-top: var(--vd-space-10); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }

.vd-document-sections { display: flex; flex-direction: column; margin-top: var(--vd-space-10); list-style: none; counter-reset: vd-document-section; }
.vd-document-sections > li { counter-increment: vd-document-section; scroll-margin-top: var(--vd-space-8); }
.vd-document-sections > li + li { margin-top: var(--vd-space-8); padding-top: var(--vd-space-8); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-document-sections section { display: flex; flex-direction: column; gap: var(--vd-space-2); }
.vd-document-section__label { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 500; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-text-secondary); }
.vd-document-section__label::before { content: counter(vd-document-section, decimal-leading-zero) " · "; color: var(--vd-green-700); }
.vd-document-sections h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-document-sections section > p:last-child { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-body); }

.vd-info-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--vd-space-8); margin-top: var(--vd-space-6); }
.vd-info-columns > section { display: flex; flex-direction: column; gap: var(--vd-space-2); }
.vd-info-columns h3, .vd-info-steps h3 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 500; color: var(--vd-text-heading); }
.vd-info-columns p, .vd-info-steps p { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }

.vd-info-list { display: flex; flex-direction: column; gap: var(--vd-space-3); margin-top: var(--vd-space-1); list-style: none; }
.vd-info-list li { display: grid; grid-template-columns: var(--vd-icon-lg) minmax(0, 1fr); gap: var(--vd-space-3); align-items: start; font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-body); }
.vd-info-list__icon { display: inline-flex; align-items: center; justify-content: center; width: var(--vd-icon-lg); height: var(--vd-icon-lg); margin-top: 1px; border-radius: 50%; background: var(--vd-green-50); color: var(--vd-green-700); font-size: var(--vd-label-size); line-height: 1; font-weight: 700; }
.vd-info-list--excluded .vd-info-list__icon { background: var(--vd-n-100); color: var(--vd-text-secondary); }
.vd-info-footnote { margin-top: var(--vd-space-5); color: var(--vd-text-secondary) !important; font-size: var(--vd-body-sm-size) !important; }

.vd-info-steps { display: flex; flex-direction: column; gap: var(--vd-space-5); margin-top: var(--vd-space-1); list-style: none; counter-reset: vd-guarantee-step; }
.vd-info-steps li { display: grid; grid-template-columns: var(--vd-step-marker) minmax(0, 1fr); gap: var(--vd-space-4); align-items: start; }
.vd-info-steps li > div { display: flex; flex-direction: column; gap: var(--vd-space-1); padding-top: var(--vd-space-1); }
.vd-info-steps__marker { display: inline-flex; align-items: center; justify-content: center; width: var(--vd-step-marker); height: var(--vd-step-marker); border-radius: 50%; background: var(--vd-green-50); color: var(--vd-green-700); font-family: var(--vd-font-mono); font-size: var(--vd-code-size); font-weight: 600; }

.vd-info-callout { display: flex; align-items: center; justify-content: space-between; gap: var(--vd-space-6); margin-top: var(--vd-space-10); padding: var(--vd-space-6); background: var(--vd-surface-sunken); border-radius: var(--vd-radius-lg); }
.vd-info-callout > div { display: flex; flex: 1 1 auto; flex-direction: column; gap: var(--vd-space-2); min-width: 0; }
.vd-info-callout h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-info-callout p:last-child { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-info-callout .vd-btn { flex: none; }

/* Privacy Policy: a compact map, one scope summary, and three open record bands
   make the unchanged policy copy easier to scan without turning it into cards. */
.vd-info-layout--privacy .vd-info-document { max-width: 900px; }
.vd-privacy-map { display: flex; flex-direction: column; gap: var(--vd-space-3); margin-bottom: var(--vd-space-10); }
.vd-privacy-map__label { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 700; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-text-secondary); }
.vd-privacy-map__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; border-block: var(--vd-border-hairline) solid var(--vd-border-divider); background: var(--vd-surface-card); }
.vd-privacy-map__group { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: var(--vd-space-4); min-width: 0; padding: var(--vd-space-5); }
.vd-privacy-map__group + .vd-privacy-map__group { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-privacy-map__mark { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--vd-radius-md); background: var(--vd-green-50); color: var(--vd-green-700); }
.vd-privacy-map__mark svg { width: var(--vd-icon-lg); height: var(--vd-icon-lg); }
.vd-privacy-map__group > div { display: flex; flex-direction: column; min-width: 0; }
.vd-privacy-map__group h2 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-privacy-map__links { display: flex; flex-wrap: wrap; gap: 0 var(--vd-space-3); }
.vd-privacy-map__links a { display: inline-flex; align-items: center; min-height: var(--vd-touch-min); color: var(--vd-text-link); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 500; text-decoration: underline; text-decoration-color: var(--vd-green-200); text-underline-offset: 4px; }
.vd-privacy-map__links a:hover { color: var(--vd-text-link-hover); text-decoration-color: currentColor; }

.vd-privacy-scope { padding: var(--vd-space-6); scroll-margin-top: var(--vd-space-8); border-left: var(--vd-alert-rail) solid var(--vd-green-500); background: var(--vd-green-50); }
.vd-privacy-scope__intro { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: var(--vd-space-5); align-items: start; }
.vd-privacy-scope__icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: var(--vd-radius-lg); background: var(--vd-green-800); color: var(--vd-n-0); }
.vd-privacy-scope__icon svg { width: 40px; height: 40px; }
.vd-privacy-scope__intro > div { display: flex; flex-direction: column; gap: var(--vd-space-4); min-width: 0; }
.vd-privacy-scope__intro header { display: flex; flex-direction: column; gap: var(--vd-space-2); }
.vd-privacy-scope__intro h2 { max-width: 700px; font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); text-wrap: balance; }
.vd-privacy-scope__intro .vd-info-lead { max-width: 720px; font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-body); }
.vd-privacy-sources { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: var(--vd-space-6); overflow: hidden; border: var(--vd-border-hairline) solid var(--vd-green-100); border-radius: var(--vd-radius-lg); background: var(--vd-surface-card); }
.vd-privacy-sources section { display: flex; flex-direction: column; gap: var(--vd-space-2); min-width: 0; padding: var(--vd-space-5); }
.vd-privacy-sources section + section { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-privacy-sources h3 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-privacy-sources p { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }
.vd-privacy-scope__note { margin-top: var(--vd-space-5); padding-left: var(--vd-space-4); border-left: var(--vd-border-accent) solid var(--vd-green-300); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }

.vd-privacy-bands { display: flex; flex-direction: column; gap: var(--vd-space-8); margin-top: var(--vd-space-10); }
.vd-privacy-band { min-width: 0; }
.vd-privacy-band__header { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: var(--vd-space-4); align-items: center; padding: var(--vd-space-5) 0; border-top: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-privacy-band__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: var(--vd-radius-md); background: var(--vd-green-50); color: var(--vd-green-700); }
.vd-privacy-band__icon svg { width: 28px; height: 28px; }
.vd-privacy-band__header > div { display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; }
.vd-privacy-band__header .vd-overline { color: var(--vd-green-700); }
.vd-privacy-band__header h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-privacy-band__ledger { border-bottom: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-privacy-row { display: grid; grid-template-columns: minmax(150px, .4fr) minmax(0, 1.6fr); gap: var(--vd-space-6); min-width: 0; padding: var(--vd-space-6) 0; scroll-margin-top: var(--vd-space-8); }
.vd-privacy-row + .vd-privacy-row { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-privacy-row__label { padding-top: 4px; font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 700; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-green-700); }
.vd-privacy-row > div { display: flex; flex-direction: column; gap: var(--vd-space-2); min-width: 0; }
.vd-privacy-row h3 { max-width: 620px; font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-privacy-row > div > p { max-width: 650px; font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-body); }
.vd-privacy-row > div > p + p { margin-top: var(--vd-space-2); }

@media (max-width: 767px) {
  .vd-privacy-map { margin-bottom: var(--vd-space-8); }
  .vd-privacy-map__grid { grid-template-columns: minmax(0, 1fr); }
  .vd-privacy-map__group { padding: var(--vd-space-4); }
  .vd-privacy-map__group + .vd-privacy-map__group { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-left: 0; }
  .vd-privacy-scope { padding: var(--vd-space-5) var(--vd-space-4); }
  .vd-privacy-scope__intro { grid-template-columns: 48px minmax(0, 1fr); gap: var(--vd-space-4); }
  .vd-privacy-scope__icon { width: 48px; height: 48px; border-radius: var(--vd-radius-md); }
  .vd-privacy-scope__icon svg { width: 28px; height: 28px; }
  .vd-privacy-scope__intro > div { gap: var(--vd-space-3); }
  .vd-privacy-scope__intro h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); }
  .vd-privacy-scope__intro .vd-info-lead { font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
  .vd-privacy-sources { grid-template-columns: minmax(0, 1fr); margin-top: var(--vd-space-5); }
  .vd-privacy-sources section { padding: var(--vd-space-4); }
  .vd-privacy-sources section + section { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-left: 0; }
  .vd-privacy-bands { gap: var(--vd-space-6); margin-top: var(--vd-space-8); }
  .vd-privacy-band__header { grid-template-columns: 44px minmax(0, 1fr); gap: var(--vd-space-3); padding: var(--vd-space-4) 0; }
  .vd-privacy-band__icon { width: 44px; height: 44px; }
  .vd-privacy-band__icon svg { width: var(--vd-icon-lg); height: var(--vd-icon-lg); }
  .vd-privacy-band__header h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); }
  .vd-privacy-row { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-2); padding: var(--vd-space-5) 0; }
  .vd-privacy-row__label { padding-top: 0; }
}

/* Terms and Conditions: a policy register and three document chapters keep
   long-form copy visible, ordered and easy to scan without changing it. */
.vd-info-layout--terms-and-conditions .vd-info-document { max-width: 900px; }
.vd-terms-register { display: flex; flex-direction: column; gap: var(--vd-space-3); margin-bottom: var(--vd-space-10); }
.vd-terms-register__label { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 700; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-text-secondary); }
.vd-terms-register__grid { display: grid; grid-template-columns: 1.08fr 1.1fr 1fr; overflow: hidden; border-block: var(--vd-border-hairline) solid var(--vd-border-divider); background: var(--vd-surface-card); }
.vd-terms-register__group { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: var(--vd-space-3); min-width: 0; padding: var(--vd-space-5); }
.vd-terms-register__group + .vd-terms-register__group { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-terms-register__group > div { display: flex; flex-direction: column; min-width: 0; }
.vd-terms-register__number { padding-top: 1px; font-family: var(--vd-font-mono); font-size: var(--vd-code-size); line-height: var(--vd-code-line); font-weight: 600; color: var(--vd-green-700); }
.vd-terms-register__group h2 { min-height: 44px; font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-terms-register__links { display: flex; flex-wrap: wrap; gap: 0 var(--vd-space-3); }
.vd-terms-register__links a { display: inline-flex; align-items: center; min-height: var(--vd-touch-min); color: var(--vd-text-link); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 500; text-decoration: underline; text-decoration-color: var(--vd-green-200); text-underline-offset: 4px; }
.vd-terms-register__links a:hover { color: var(--vd-text-link-hover); text-decoration-color: currentColor; }

.vd-terms-scope { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: var(--vd-space-5); align-items: start; padding: var(--vd-space-6); border-left: var(--vd-alert-rail) solid var(--vd-green-500); background: var(--vd-green-50); }
.vd-terms-scope__icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: var(--vd-radius-lg); background: var(--vd-green-800); color: var(--vd-n-0); }
.vd-terms-scope__icon svg { width: 38px; height: 38px; }
.vd-terms-scope > div { display: flex; flex-direction: column; gap: var(--vd-space-4); min-width: 0; }
.vd-terms-scope header { display: flex; flex-direction: column; gap: var(--vd-space-2); }
.vd-terms-scope h2 { max-width: 700px; font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); text-wrap: balance; }
.vd-terms-scope .vd-info-lead { max-width: 720px; font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-body); }

.vd-terms-chapters { display: flex; flex-direction: column; gap: var(--vd-space-8); margin-top: var(--vd-space-10); }
.vd-terms-chapter { overflow: hidden; border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-xl); background: var(--vd-surface-card); }
.vd-terms-chapter__header { display: grid; grid-template-columns: 44px 52px minmax(0, 1fr); gap: var(--vd-space-4); align-items: center; min-height: 104px; padding: var(--vd-space-5) var(--vd-space-6); border-bottom: var(--vd-border-hairline) solid var(--vd-green-100); background: var(--vd-green-50); }
.vd-terms-chapter__number { font-family: var(--vd-font-mono); font-size: var(--vd-code-lg-size); line-height: var(--vd-code-lg-line); font-weight: 600; color: var(--vd-green-700); }
.vd-terms-chapter__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: var(--vd-radius-md); background: var(--vd-surface-card); color: var(--vd-green-700); }
.vd-terms-chapter__icon svg { width: 28px; height: 28px; }
.vd-terms-chapter__header > div { display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; }
.vd-terms-chapter__header .vd-overline { color: var(--vd-green-700); }
.vd-terms-chapter__header h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-terms-chapter__ledger { display: flex; flex-direction: column; }
.vd-terms-row { display: grid; grid-template-columns: minmax(150px, .42fr) minmax(0, 1.58fr); gap: var(--vd-space-6); min-width: 0; padding: var(--vd-space-6); scroll-margin-top: var(--vd-space-8); }
.vd-terms-row + .vd-terms-row { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-terms-row .vd-document-section__label { padding-top: 4px; color: var(--vd-green-700); font-weight: 700; }
.vd-terms-row .vd-document-section__label::before { content: none; }
.vd-terms-row > div { display: flex; flex-direction: column; gap: var(--vd-space-2); min-width: 0; }
.vd-terms-row h2 { max-width: 620px; font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-terms-row > div > p { max-width: 650px; font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-body); }
.vd-terms-row a { color: var(--vd-text-link); font-weight: 500; text-underline-offset: 3px; }
.vd-terms-row a:hover { color: var(--vd-text-link-hover); }

@media (max-width: 1023px) and (min-width: 768px) {
  .vd-terms-register__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vd-terms-register__group:nth-child(3) { grid-column: 1 / -1; border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-left: 0; }
  .vd-terms-register__group:nth-child(3) .vd-terms-register__links { column-gap: var(--vd-space-5); }
}

@media (max-width: 767px) {
  .vd-terms-register { margin-bottom: var(--vd-space-8); }
  .vd-terms-register__grid { grid-template-columns: minmax(0, 1fr); }
  .vd-terms-register__group { padding: var(--vd-space-4); }
  .vd-terms-register__group + .vd-terms-register__group { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-left: 0; }
  .vd-terms-register__group h2 { min-height: 0; padding-bottom: var(--vd-space-1); }
  .vd-terms-scope { grid-template-columns: 48px minmax(0, 1fr); gap: var(--vd-space-4); padding: var(--vd-space-5) var(--vd-space-4); }
  .vd-terms-scope__icon { width: 48px; height: 48px; border-radius: var(--vd-radius-md); }
  .vd-terms-scope__icon svg { width: 28px; height: 28px; }
  .vd-terms-scope > div { gap: var(--vd-space-3); }
  .vd-terms-scope h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); }
  .vd-terms-scope .vd-info-lead { font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
  .vd-terms-chapters { gap: var(--vd-space-6); margin-top: var(--vd-space-8); }
  .vd-terms-chapter { border-radius: var(--vd-radius-lg); }
  .vd-terms-chapter__header { grid-template-columns: 34px 44px minmax(0, 1fr); gap: var(--vd-space-3); min-height: 88px; padding: var(--vd-space-4); }
  .vd-terms-chapter__number { font-size: var(--vd-code-size); line-height: var(--vd-code-line); }
  .vd-terms-chapter__icon { width: 44px; height: 44px; }
  .vd-terms-chapter__icon svg { width: var(--vd-icon-lg); height: var(--vd-icon-lg); }
  .vd-terms-chapter__header h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); }
  .vd-terms-row { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-2); padding: var(--vd-space-5) var(--vd-space-4); }
  .vd-terms-row .vd-document-section__label { padding-top: 0; }
}

/* Copyright policy: one intake record, one review path, and one response route.
   Icons support scanning; every action and responsibility remains explicit text. */
.vd-copyright-scope { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: var(--vd-space-4); align-items: start; margin-top: var(--vd-space-6); padding: var(--vd-space-5); border-left: var(--vd-rail-accent) solid var(--vd-green-500); background: var(--vd-green-50); }
.vd-copyright-scope__icon, .vd-copyright-response__icon, .vd-copyright-contact__icon { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 64px; height: 64px; border-radius: var(--vd-radius-lg); background: var(--vd-surface-card); color: var(--vd-green-700); }
.vd-copyright-scope__icon svg, .vd-copyright-response__icon svg, .vd-copyright-contact__icon svg { width: 34px; height: 34px; }
.vd-copyright-scope > div { display: flex; flex-direction: column; gap: var(--vd-space-2); min-width: 0; }
.vd-copyright-scope h3 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-copyright-scope p:last-child { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }
.vd-copyright-requirements { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: var(--vd-space-5); overflow: hidden; border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); background: var(--vd-surface-card); list-style: none; }
.vd-copyright-requirements li { display: grid; grid-template-columns: var(--vd-step-marker) minmax(0, 1fr); gap: var(--vd-space-3); align-items: start; min-width: 0; padding: var(--vd-space-5); }
.vd-copyright-requirements li:nth-child(even) { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-copyright-requirements li:nth-child(n + 3) { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-copyright-requirements li > span { display: inline-flex; align-items: center; justify-content: center; width: var(--vd-step-marker); height: var(--vd-step-marker); border-radius: 50%; background: var(--vd-green-50); color: var(--vd-green-700); font-family: var(--vd-font-mono); font-size: var(--vd-code-size); font-weight: 600; }
.vd-copyright-requirements li > div { display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; padding-top: var(--vd-space-1); }
.vd-copyright-requirements h3 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-copyright-requirements p { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }
.vd-copyright-response { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: var(--vd-space-5); align-items: start; padding: var(--vd-space-6); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-xl); background: var(--vd-surface-sunken); }
.vd-copyright-response__icon { background: var(--vd-green-50); }
.vd-copyright-response > div { display: flex; flex-direction: column; gap: var(--vd-space-4); min-width: 0; }
.vd-copyright-response > div > p { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-body); }
.vd-copyright-contact { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: var(--vd-space-5); align-items: start; margin-top: var(--vd-space-10); padding: var(--vd-space-6); scroll-margin-top: var(--vd-space-8); border-radius: var(--vd-radius-xl); background: var(--vd-green-900); color: var(--vd-n-0); }
.vd-copyright-contact__icon { background: rgba(255,255,255,.12); color: var(--vd-green-100); }
.vd-copyright-contact > div { display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-2); min-width: 0; }
.vd-copyright-contact .vd-overline, .vd-copyright-contact p { color: var(--vd-green-100); }
.vd-copyright-contact h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); color: var(--vd-n-0); }
.vd-copyright-contact p { font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
.vd-copyright-contact a { color: var(--vd-n-0); font-weight: 700; text-decoration: underline; text-decoration-color: var(--vd-green-300); text-underline-offset: 4px; }

/* Guarantee policy: the production policy is kept as one readable document,
   while system facts, eligibility, exclusions and the manual review path use
   distinct visual rhythms. Icons are explanatory, never decorative claims. */
.vd-guarantee-icon {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: var(--vd-step-marker); height: var(--vd-step-marker);
  border-radius: var(--vd-radius-md); background: var(--vd-green-50); color: var(--vd-green-700);
}
.vd-guarantee-icon svg { width: var(--vd-icon-lg); height: var(--vd-icon-lg); }
.vd-guarantee-icon--large { width: 56px; height: 56px; border-radius: var(--vd-radius-lg); }
.vd-guarantee-icon--large svg { width: 28px; height: 28px; }
.vd-guarantee-ledger { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: var(--vd-space-6) 0 var(--vd-space-8); overflow: hidden; border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); background: var(--vd-surface-card); }
.vd-guarantee-ledger > div { display: grid; grid-template-columns: var(--vd-step-marker) minmax(0, 1fr); gap: var(--vd-space-3); min-width: 0; padding: var(--vd-space-5); }
.vd-guarantee-ledger > div + div { border-left: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-guarantee-ledger > div > div { display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; }
.vd-guarantee-ledger dt { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 700; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-text-secondary); }
.vd-guarantee-ledger dd { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-guarantee-ledger p { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }
.vd-guarantee-record-note { padding-left: var(--vd-space-4); border-left: var(--vd-border-accent) solid var(--vd-green-500); color: var(--vd-text-secondary) !important; font-size: var(--vd-body-sm-size) !important; }
.vd-guarantee-record-note strong { color: var(--vd-text-heading); font-weight: 700; }
.vd-guarantee-panel { margin-top: var(--vd-space-10); padding: var(--vd-space-8); border: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-radius: var(--vd-radius-xl); background: var(--vd-surface-sunken); }
.vd-info-section + .vd-guarantee-panel { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-guarantee-list--columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--vd-space-8); row-gap: var(--vd-space-4); }
.vd-guarantee-access-flow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: var(--vd-space-2); border-block: var(--vd-border-hairline) solid var(--vd-border-divider); list-style: none; }
.vd-guarantee-access-flow li { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: var(--vd-space-3); min-width: 0; padding: var(--vd-space-5) var(--vd-space-4); }
.vd-guarantee-access-flow li + li { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-guarantee-access-flow li > span { padding-top: 2px; font-family: var(--vd-font-mono); font-size: var(--vd-code-size); line-height: var(--vd-code-line); font-weight: 600; color: var(--vd-green-700); }
.vd-guarantee-access-flow li > div { display: flex; flex-direction: column; gap: var(--vd-space-1); }
.vd-guarantee-access-flow strong, .vd-guarantee-access-record h3, .vd-guarantee-caution h3, .vd-guarantee-sync h3 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-guarantee-access-flow p, .vd-guarantee-access-record p, .vd-guarantee-caution p, .vd-guarantee-sync p { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }
.vd-guarantee-access-record { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: var(--vd-space-4); align-items: start; margin-top: var(--vd-space-6); }
.vd-guarantee-access-record > div, .vd-guarantee-caution > div, .vd-guarantee-sync section > div { display: flex; flex-direction: column; gap: var(--vd-space-2); min-width: 0; }
.vd-guarantee-caution { display: grid; grid-template-columns: var(--vd-step-marker) minmax(0, 1fr); gap: var(--vd-space-4); align-items: start; margin-top: var(--vd-space-5); padding: var(--vd-space-5); border-left: var(--vd-alert-rail) solid var(--vd-n-400); background: var(--vd-surface-sunken); }
.vd-guarantee-caution__mark { display: inline-flex; align-items: center; justify-content: center; width: var(--vd-step-marker); height: var(--vd-step-marker); border: var(--vd-border-hairline) solid var(--vd-n-300); border-radius: 50%; color: var(--vd-text-heading); font-family: var(--vd-font-mono); font-size: var(--vd-code-size); font-weight: 700; }
.vd-guarantee-sync { display: grid; grid-template-columns: minmax(0, 1fr) 176px minmax(0, 1fr); align-items: stretch; overflow: hidden; border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); background: var(--vd-surface-card); }
.vd-guarantee-sync section { display: grid; grid-template-columns: var(--vd-step-marker) minmax(0, 1fr); gap: var(--vd-space-4); align-items: start; min-width: 0; padding: var(--vd-space-5); }
.vd-guarantee-sync__bridge { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: var(--vd-space-1); padding: var(--vd-space-4); border-inline: var(--vd-border-hairline) solid var(--vd-border-divider); background: var(--vd-surface-selected); text-align: center; color: var(--vd-green-700); }
.vd-guarantee-sync__bridge span { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 700; letter-spacing: var(--vd-overline-track); text-transform: uppercase; }
.vd-guarantee-sync__bridge strong { font-family: var(--vd-font-mono); font-size: var(--vd-code-lg-size); line-height: var(--vd-code-lg-line); color: var(--vd-text-heading); }
.vd-guarantee-sync__bridge svg { width: 68px; height: 18px; margin-top: var(--vd-space-1); }
.vd-guarantee-exclusions { padding-left: var(--vd-space-6); border-left: var(--vd-rail-accent) solid var(--vd-n-300); }
.vd-guarantee-exclusions .vd-info-list__icon { font-size: var(--vd-body-size); }
.vd-guarantee-apply { margin-top: var(--vd-space-10); padding: var(--vd-space-8); border: 0 !important; border-radius: var(--vd-radius-xl); background: var(--vd-green-900); color: var(--vd-n-0); }
.vd-guarantee-apply > header h2, .vd-guarantee-apply .vd-info-steps h3 { color: var(--vd-n-0); }
.vd-guarantee-apply > header p, .vd-guarantee-apply .vd-info-steps p, .vd-guarantee-apply .vd-overline { color: var(--vd-green-100) !important; }
.vd-guarantee-apply .vd-guarantee-claim-path { display: flex; flex-direction: column; gap: 0; margin-block: var(--vd-space-2) var(--vd-space-6); }
.vd-guarantee-apply .vd-guarantee-claim-path li { position: relative; padding-bottom: var(--vd-space-5); }
.vd-guarantee-apply .vd-guarantee-claim-path li:last-child { padding-bottom: 0; }
.vd-guarantee-apply .vd-guarantee-claim-path li:not(:last-child)::after { content: ""; position: absolute; top: var(--vd-step-marker); bottom: 0; left: calc(var(--vd-step-marker) / 2); width: var(--vd-border-accent); transform: translateX(-50%); background: rgba(199,242,219,.35); }
.vd-guarantee-apply .vd-info-steps__marker { background: var(--vd-green-50); }

@media (max-width: 1023px) and (min-width: 768px) {
  .vd-info-layout { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-6); }
  .vd-info-layout > .vd-rail-sticky { position: static; }
  .vd-info-family-nav--desktop { gap: var(--vd-space-2); }
  .vd-info-family-nav__links { flex-direction: row; flex-wrap: wrap; gap: var(--vd-space-1) var(--vd-space-2); }
  .vd-info-family-nav__links a { min-height: var(--vd-control-md); padding-inline: var(--vd-space-2); border-left: 0; border-bottom: var(--vd-border-accent) solid transparent; }
  .vd-info-family-nav__links a[aria-current="page"] { border-bottom-color: var(--vd-green-500); }
}

@media (max-width: 767px) {
  .vd-info-family-nav--desktop { display: none; }
  .vd-info-family-nav--mobile { display: block; border-block: var(--vd-border-hairline) solid var(--vd-border-divider); }
  .vd-info-family-nav--mobile summary { display: grid; grid-template-columns: minmax(0, 1fr) auto var(--vd-icon-sm); align-items: center; gap: var(--vd-space-2); min-height: var(--vd-touch-min); padding-block: var(--vd-space-2); color: var(--vd-text-heading); cursor: pointer; list-style: none; }
  .vd-info-family-nav--mobile summary::-webkit-details-marker { display: none; }
  .vd-info-family-nav--mobile summary::after { content: ""; width: 7px; height: 7px; border-right: var(--vd-border-accent) solid var(--vd-text-secondary); border-bottom: var(--vd-border-accent) solid var(--vd-text-secondary); transform: rotate(45deg) translateY(-2px); transition: transform var(--vd-dur-fast) var(--vd-ease-standard); }
  .vd-info-family-nav--mobile[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
  .vd-info-family-nav--mobile summary span { font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 500; }
  .vd-info-family-nav--mobile summary small { color: var(--vd-text-secondary); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); }
  .vd-info-family-nav--mobile nav { display: flex; flex-direction: column; padding-block: var(--vd-space-2); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
  .vd-info-family-nav--mobile nav a { display: flex; align-items: center; min-height: var(--vd-touch-min); padding-inline: var(--vd-space-3); color: var(--vd-text-body); text-decoration: none; }
  .vd-info-family-nav--mobile nav a[aria-current="page"] { background: var(--vd-surface-selected); color: var(--vd-green-700); font-weight: 500; }
  .vd-info-hero--pass-guarantee .vd-info-hero__visual img,
  .vd-info-hero--privacy .vd-info-hero__visual img,
  .vd-info-hero--terms-and-conditions .vd-info-hero__visual img,
  .vd-info-hero--payment .vd-info-hero__visual img,
  .vd-info-hero--contact-us .vd-info-hero__visual img,
  .vd-info-hero--about-us .vd-info-hero__visual img,
  .vd-info-hero--faqs .vd-info-hero__visual img { max-height: 210px; }
  .vd-info-columns { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-5); }
  .vd-info-callout { align-items: flex-start; flex-direction: column; padding: var(--vd-space-5); }
  .vd-copyright-requirements { grid-template-columns: minmax(0, 1fr); }
  .vd-copyright-requirements li:nth-child(even) { border-left: 0; }
  .vd-copyright-requirements li + li { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
  .vd-copyright-scope, .vd-copyright-response, .vd-copyright-contact { grid-template-columns: 48px minmax(0, 1fr); gap: var(--vd-space-4); padding: var(--vd-space-5); border-radius: var(--vd-radius-lg); }
  .vd-copyright-scope__icon, .vd-copyright-response__icon, .vd-copyright-contact__icon { width: 48px; height: 48px; }
  .vd-copyright-scope__icon svg, .vd-copyright-response__icon svg, .vd-copyright-contact__icon svg { width: 26px; height: 26px; }
  .vd-guarantee-ledger, .vd-guarantee-list--columns, .vd-guarantee-access-flow, .vd-guarantee-sync { grid-template-columns: minmax(0, 1fr); }
  .vd-guarantee-ledger > div + div, .vd-guarantee-access-flow li + li { border-left: 0; border-top: var(--vd-border-hairline) solid var(--vd-border-divider); }
  .vd-guarantee-sync__bridge { padding-block: var(--vd-space-4); border-inline: 0; border-block: var(--vd-border-hairline) solid var(--vd-border-divider); }
  .vd-guarantee-panel, .vd-guarantee-apply { padding: var(--vd-space-5); border-radius: var(--vd-radius-lg); }
  .vd-guarantee-exclusions { padding-left: var(--vd-space-4); }
}

/* shared information-page blocks */
.vd-guide-intro, .vd-info-next, .vd-about-model, .vd-about-independence { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--vd-space-8); flex-wrap: wrap; }
.vd-guide-intro > div, .vd-info-next > div, .vd-about-model__statement { display: flex; flex: 1 1 auto; flex-direction: column; gap: var(--vd-space-2); min-width: 0; }
.vd-about-independence { flex-direction: column; gap: var(--vd-space-2); padding: var(--vd-space-6); background: var(--vd-surface-sunken); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); }
.vd-guide-intro h2, .vd-info-next h2, .vd-about-model h2, .vd-about-independence h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-guide-intro p, .vd-info-next p, .vd-about-model p, .vd-about-independence p { width: 100%; font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-secondary); }

.vd-process-grid, .vd-service-map, .vd-privacy-flow, .vd-terms-board, .vd-principle-grid, .vd-contact-notes, .vd-guide-pair { display: grid; gap: var(--vd-space-4); }
.vd-process-grid, .vd-service-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vd-privacy-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vd-terms-board, .vd-principle-grid, .vd-contact-notes, .vd-guide-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vd-process-grid > *, .vd-service-map > *, .vd-privacy-flow > *, .vd-terms-board > *, .vd-principle-grid > *, .vd-contact-notes > *, .vd-guide-pair > * {
  display: flex; flex-direction: column; gap: var(--vd-space-2);
  padding: var(--vd-space-5) var(--vd-space-6);
  background: var(--vd-surface-card);
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  border-radius: var(--vd-radius-lg);
}
.vd-process-grid h2, .vd-service-map h2, .vd-privacy-flow h2, .vd-terms-board h2, .vd-principle-grid h2, .vd-contact-notes h2, .vd-guide-pair h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 500; color: var(--vd-text-heading); }
.vd-process-grid p, .vd-service-map p, .vd-privacy-flow p, .vd-terms-board p, .vd-principle-grid p, .vd-contact-notes p, .vd-guide-pair p { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-process-grid > * > span, .vd-privacy-flow > * > span, .vd-terms-board > * > span { align-self: flex-start; font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 500; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-green-700); }

.vd-contact-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--vd-space-4); }
.vd-contact-board > section { display: flex; flex-direction: column; gap: var(--vd-space-3); padding: var(--vd-space-5) var(--vd-space-6); background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); }
.vd-contact-board__email { border-left: var(--vd-alert-rail) solid var(--vd-green-500); }
.vd-contact-board h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 500; color: var(--vd-text-heading); }
.vd-contact-board p { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-contact-board__email > a { font-family: var(--vd-font-mono); font-size: var(--vd-code-lg-size); line-height: var(--vd-code-lg-line); }
.vd-contact-board__checklist ul { display: flex; flex-direction: column; gap: var(--vd-space-3); list-style: none; }
.vd-contact-board__checklist li { display: flex; flex-direction: column; gap: var(--vd-space-05); padding-left: var(--vd-space-4); border-left: var(--vd-border-accent) solid var(--vd-border-divider); }
.vd-contact-board__checklist strong { font-size: var(--vd-label-size); font-weight: 500; color: var(--vd-text-heading); }
.vd-contact-board__checklist span { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }

/* Payment follows one reading direction instead of four equal feature cards. */
.vd-info-layout--payment .vd-info-content { max-width: var(--vd-reading-max); }
.vd-payment-intro { display: flex; flex-direction: column; gap: var(--vd-space-2); }
.vd-payment-intro h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-payment-intro > p:last-child { width: 100%; font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-secondary); }
.vd-process-lane { display: flex; flex-direction: column; list-style: none; counter-reset: none; }
.vd-process-lane li { position: relative; display: grid; grid-template-columns: var(--vd-step-marker) minmax(0, 1fr); gap: var(--vd-space-4); padding-block: var(--vd-space-5); }
.vd-process-lane li + li { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-process-lane li:not(:last-child)::after { content: ""; position: absolute; top: calc(var(--vd-space-5) + var(--vd-step-marker)); bottom: calc(-1 * var(--vd-space-5)); left: calc(var(--vd-step-marker) / 2); width: var(--vd-border-accent); transform: translateX(-50%); background: var(--vd-green-100); }
.vd-process-lane__marker { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: var(--vd-step-marker); height: var(--vd-step-marker); border-radius: 50%; background: var(--vd-green-700); color: var(--vd-n-0); font-family: var(--vd-font-mono); font-size: var(--vd-code-size); font-weight: 700; }
.vd-process-lane li > div { display: flex; flex-direction: column; gap: var(--vd-space-1); }
.vd-process-lane__label { font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 500; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-green-700); }
.vd-process-lane h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-process-lane p { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-payment-facts { display: flex; flex-direction: column; gap: var(--vd-space-4); }
.vd-payment-facts > header { display: flex; flex-direction: column; gap: var(--vd-space-1); }
.vd-payment-facts > header h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-payment-facts__list { display: flex; flex-direction: column; overflow: hidden; border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); background: var(--vd-surface-sunken); }
.vd-payment-facts article { display: grid; grid-template-columns: var(--vd-control-md) minmax(180px, .72fr) minmax(0, 1.28fr); gap: var(--vd-space-4); align-items: center; min-width: 0; padding: var(--vd-space-4) var(--vd-space-5); }
.vd-payment-facts article + article { border-top: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-payment-fact__icon { display: inline-flex; align-items: center; justify-content: center; width: var(--vd-control-md); height: var(--vd-control-md); border-radius: var(--vd-radius-md); background: var(--vd-green-50); color: var(--vd-green-700); }
.vd-payment-fact__icon svg { width: var(--vd-icon-lg); height: var(--vd-icon-lg); }
.vd-payment-fact__heading { display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; }
.vd-payment-facts article h3 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-payment-fact__copy { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-payment-security { display: grid; grid-template-columns: 112px minmax(0, 1fr); overflow: hidden; border: var(--vd-border-hairline) solid var(--vd-green-100); border-radius: var(--vd-radius-xl); background: var(--vd-green-50); }
.vd-payment-security__visual { display: grid; place-items: center; min-height: 220px; padding: var(--vd-space-5); background: var(--vd-green-700); color: var(--vd-n-0); }
.vd-payment-security__visual svg { width: 64px; height: 64px; }
.vd-payment-security__content { display: flex; flex-direction: column; gap: var(--vd-space-2); min-width: 0; padding: var(--vd-space-6); }
.vd-payment-security__content > .vd-overline { color: var(--vd-green-700); }
.vd-payment-security h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-payment-security__body { max-width: 64ch; font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-payment-security__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--vd-space-3); margin-top: var(--vd-space-2); padding-top: var(--vd-space-4); border-top: var(--vd-border-hairline) solid var(--vd-green-200); list-style: none; }
.vd-payment-security__facts li { display: flex; align-items: flex-start; gap: var(--vd-space-2); min-width: 0; font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 500; color: var(--vd-text-heading); }
.vd-payment-security__facts li > span { display: inline-flex; align-items: center; justify-content: center; flex: none; width: var(--vd-icon-md); height: var(--vd-icon-md); margin-top: 1px; border-radius: 50%; background: var(--vd-green-700); color: var(--vd-n-0); font-size: var(--vd-caption-size); line-height: 1; }

/* Contact is one support path: a compact address, one checklist, then notes. */
.vd-info-layout--contact-us .vd-info-content { max-width: var(--vd-reading-max); }
.vd-contact-flow { display: flex; flex-direction: column; gap: var(--vd-space-8); }
.vd-contact-email { display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-2); width: 100%; padding-left: var(--vd-space-5); border-left: var(--vd-alert-rail) solid var(--vd-green-500); }
.vd-contact-email h2, .vd-contact-checklist h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-contact-email > a { font-family: var(--vd-font-mono); font-size: var(--vd-code-lg-size); line-height: var(--vd-code-lg-line); overflow-wrap: anywhere; }
.vd-contact-email p:last-child { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-contact-checklist { display: flex; flex-direction: column; gap: var(--vd-space-3); }
.vd-contact-checklist ul { display: flex; flex-direction: column; gap: 0; margin-top: var(--vd-space-1); list-style: none; }
.vd-contact-checklist li { display: grid; grid-template-columns: minmax(12rem, .7fr) minmax(0, 1.3fr); gap: var(--vd-space-5); padding-block: var(--vd-space-4); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-contact-checklist strong { font-size: var(--vd-label-size); line-height: var(--vd-label-line); color: var(--vd-text-heading); }
.vd-contact-checklist span { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-contact-guidance { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--vd-space-8); }
.vd-contact-guidance > section { display: flex; flex-direction: column; gap: var(--vd-space-2); padding-top: var(--vd-space-4); border-top: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-contact-guidance h2 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-contact-guidance p { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }

/* About keeps the introduction and its next action together, then uses open
   principle statements instead of a matrix of equal-height cards. */
.vd-info-layout--about-us .vd-info-content { max-width: var(--vd-reading-max); }
.vd-about-story { display: flex; flex-direction: column; gap: var(--vd-space-8); }
.vd-about-story__intro, .vd-about-story__start { display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-2); width: 100%; }
.vd-about-story h2, .vd-about-record > header h2, .vd-about-support h2, .vd-about-independence--open h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-about-story p:not(.vd-overline), .vd-about-record > header p:last-child, .vd-about-independence--open p:last-child { font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-secondary); }
.vd-about-story__start { padding-left: var(--vd-space-5); border-left: var(--vd-alert-rail) solid var(--vd-green-500); }
.vd-about-story__start .vd-btn { margin-top: var(--vd-space-2); }
.vd-about-record { display: flex; flex-direction: column; gap: var(--vd-space-5); }
.vd-about-record > header { display: flex; flex-direction: column; gap: var(--vd-space-2); }
.vd-about-record dl { display: flex; flex-direction: column; border-block: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-about-record dl > div { display: grid; grid-template-columns: minmax(5rem, .22fr) minmax(0, 1.78fr); gap: var(--vd-space-5); padding-block: var(--vd-space-5); }
.vd-about-record dl > div + div { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-about-record dt { padding-top: 2px; font-family: var(--vd-font-mono); font-size: var(--vd-code-size); color: var(--vd-green-700); }
.vd-about-record dd { display: flex; flex-direction: column; gap: var(--vd-space-1); }
.vd-about-record dd strong { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); color: var(--vd-text-heading); }
.vd-about-record dd span { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-about-support { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--vd-space-8); padding: var(--vd-space-8); background: var(--vd-surface-sunken); border-radius: var(--vd-radius-xl); }
.vd-about-support > div { display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-2); }
.vd-about-support > div + div { padding-left: var(--vd-space-8); border-left: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-about-support h2 { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); }
.vd-about-support p:last-of-type { font-size: var(--vd-body-size); line-height: var(--vd-body-line); color: var(--vd-text-secondary); }
.vd-about-support .vd-btn { margin-top: var(--vd-space-2); }
.vd-about-independence--open { padding: var(--vd-space-6) 0 0; background: transparent; border: 0; border-top: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: 0; }
.vd-about-independence--open p:last-child { width: 100%; max-width: none; }

@media (max-width: 1023px) {
  .vd-info-hero__grid { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-6); }
  .vd-privacy-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .vd-process-grid, .vd-service-map, .vd-privacy-flow, .vd-terms-board, .vd-principle-grid, .vd-contact-notes, .vd-guide-pair, .vd-contact-board { grid-template-columns: minmax(0, 1fr); }
  .vd-contact-guidance, .vd-about-support { grid-template-columns: minmax(0, 1fr); }
  .vd-payment-facts article { grid-template-columns: var(--vd-control-md) minmax(0, 1fr); align-items: start; padding: var(--vd-space-4); }
  .vd-payment-fact__copy { grid-column: 2; }
  .vd-payment-security { grid-template-columns: 72px minmax(0, 1fr); border-radius: var(--vd-radius-lg); }
  .vd-payment-security__visual { min-height: 100%; padding: var(--vd-space-4); }
  .vd-payment-security__visual svg { width: 42px; height: 42px; }
  .vd-payment-security__content { padding: var(--vd-space-5) var(--vd-space-4); }
  .vd-payment-security__facts { grid-template-columns: minmax(0, 1fr); }
  .vd-about-support { padding: var(--vd-space-6); }
  .vd-about-support > div + div { padding: var(--vd-space-5) 0 0; border-top: var(--vd-border-hairline) solid var(--vd-border-divider); border-left: 0; }
  .vd-about-record dl > div { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-1); }
  .vd-contact-checklist li { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-1); }
  .vd-process-lane li { grid-template-columns: var(--vd-control-md) minmax(0, 1fr); gap: var(--vd-space-3); }
  .vd-process-lane__marker { width: var(--vd-control-md); height: var(--vd-control-md); }
  .vd-process-lane li:not(:last-child)::after { left: calc(var(--vd-control-md) / 2); top: calc(var(--vd-space-5) + var(--vd-control-md)); }
}

/* ── FAQ page ───────────────────────────────────────────────────────────────
   The disclosures stay native <details>/<summary>: the interaction layer only
   mirrors their open state into ARIA, so the markup must not become buttons. */
.vd-faq-jump { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: var(--vd-space-3); }
.vd-faq-jump a { display: flex; flex-direction: column; gap: var(--vd-space-05); padding: var(--vd-space-3) var(--vd-space-4); background: var(--vd-surface-card); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-md); color: var(--vd-text-body); text-decoration: none; }
.vd-faq-jump a:hover { border-color: var(--vd-green-500); color: var(--vd-text-body); text-decoration: none; }
.vd-faq-jump span { font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 500; color: var(--vd-text-heading); }
.vd-faq-jump small { font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); color: var(--vd-text-secondary); }
.vd-info-index--faq { max-width: var(--vd-reading-max); margin-bottom: 0; }

.vd-faq-section { display: flex; flex-direction: column; gap: var(--vd-space-4); scroll-margin-top: var(--vd-space-8); }
.vd-faq-section > header { display: flex; flex-direction: column; gap: var(--vd-space-2); }
.vd-faq-section > header h2 { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); font-weight: 700; color: var(--vd-text-heading); }
.vd-faq-section > header p:last-child { width: 100%; font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-secondary); }

.vd-faq-list { display: flex; flex-direction: column; gap: var(--vd-space-3); max-width: var(--vd-reading-max); }
.vd-faq-list details { border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-md); background: var(--vd-surface-card); overflow: hidden; }
.vd-faq-list summary { display: flex; align-items: center; gap: var(--vd-space-3); min-height: var(--vd-touch-min); padding: var(--vd-space-4) var(--vd-space-5); font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 500; color: var(--vd-text-heading); cursor: pointer; list-style: none; }
.vd-faq-list summary::-webkit-details-marker { display: none; }
.vd-faq-list summary::before { content: ""; flex: none; width: 0; height: 0; border-left: 6px solid var(--vd-text-secondary); border-top: 5px solid transparent; border-bottom: 5px solid transparent; transition: transform var(--vd-dur-fast) var(--vd-ease-standard); }
.vd-faq-list details[open] summary { background: var(--vd-surface-sunken); }
.vd-faq-list details[open] summary::before { transform: rotate(90deg); }
.vd-faq-list summary:hover { background: var(--vd-n-50); }
.vd-faq-list details > p { padding: var(--vd-space-4) var(--vd-space-5); background: var(--vd-surface-sunken); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); color: var(--vd-text-body); }

/* ── How to buy ─────────────────────────────────────────────────────────── */
.vd-buy-hero { padding-bottom: var(--vd-space-8); border-bottom: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-buy-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); align-items: center; gap: var(--vd-space-10); min-height: 300px; }
.vd-buy-hero__copy { min-width: 0; max-width: 720px; }
.vd-buy-hero__copy .vd-h1 { text-wrap: balance; }
.vd-buy-hero__copy .vd-body-lg { max-width: 64ch; }
.vd-buy-hero__visual { display: flex; align-items: center; justify-content: flex-end; min-width: 0; min-height: 240px; }
.vd-buy-hero__visual img { display: block; width: min(100%, 460px); max-height: 250px; object-fit: contain; }

.vd-buy-guide { padding-block: var(--vd-space-10) var(--vd-space-12); }
.vd-buy-guide__shell { display: grid; grid-template-columns: 288px minmax(0, 1fr); align-items: start; gap: var(--vd-space-10); }
.vd-buy-summary { position: sticky; top: var(--vd-space-6); padding: var(--vd-space-6); border-top: var(--vd-border-accent) solid var(--vd-green-500); border-radius: 0 0 var(--vd-radius-lg) var(--vd-radius-lg); background: var(--vd-surface-sunken); }
.vd-buy-summary > .vd-h4 { color: var(--vd-text-heading); font-weight: 700; }
.vd-buy-guide__body { min-width: 0; max-width: 860px; }

.vd-step-list { list-style: none; }
.vd-buy-flow { display: flex; flex-direction: column; }
.vd-buy-flow .vd-step { position: relative; grid-template-columns: 56px minmax(0, 1fr); gap: var(--vd-space-5); padding-bottom: var(--vd-space-10); }
.vd-buy-flow .vd-step + .vd-step { padding-top: var(--vd-space-10); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-buy-flow .vd-step:not(:last-child)::after { content: ""; position: absolute; top: calc(var(--vd-step-marker) + var(--vd-space-2)); bottom: calc(-1 * var(--vd-space-10)); left: calc(var(--vd-step-marker) / 2); width: var(--vd-border-accent); transform: translateX(-50%); background: var(--vd-green-100); }
.vd-buy-flow .vd-step + .vd-step:not(:last-child)::after { top: calc(var(--vd-space-10) + var(--vd-step-marker) + var(--vd-space-2)); }
.vd-buy-flow .vd-step__marker { position: relative; z-index: 1; border-radius: 50%; background: var(--vd-green-700); border-color: var(--vd-green-700); color: var(--vd-n-0); }
.vd-buy-flow .vd-step > div { min-width: 0; }
.vd-buy-flow .vd-step .vd-body-lg { max-width: 68ch; font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
.vd-buy-flow .vd-link-arrow { align-self: flex-start; margin-top: var(--vd-space-1); }

.vd-buy-note { max-width: none; margin-top: var(--vd-space-2); padding: var(--vd-space-5); border: 0; border-left: var(--vd-alert-rail) solid var(--vd-green-500); border-radius: 0 var(--vd-radius-md) var(--vd-radius-md) 0; background: var(--vd-green-50); }
.vd-buy-note .vd-glyph { background: var(--vd-green-700); color: var(--vd-n-0); }
.vd-buy-note .vd-alert__title { color: var(--vd-text-heading); }
.vd-buy-note .vd-alert__text { color: var(--vd-text-secondary); }

.vd-buy-terms { display: flex; flex-direction: column; margin-top: var(--vd-space-4); border-top: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-buy-terms > div { display: flex; flex-direction: column; gap: var(--vd-space-05); padding-block: var(--vd-space-3); border-bottom: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-buy-terms dt { font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); color: var(--vd-text-secondary); }
.vd-buy-terms dd { font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 500; color: var(--vd-text-heading); }

.vd-buy-checklist { max-width: none; margin-top: var(--vd-space-10); padding: var(--vd-space-8); border: 0; border-radius: var(--vd-radius-xl); background: var(--vd-surface-sunken); }
.vd-buy-checklist .vd-h2 { max-width: 22ch; }
.vd-check-list { display: flex; flex-direction: column; gap: var(--vd-space-3); list-style: none; }
.vd-buy-checklist .vd-check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--vd-space-8); row-gap: 0; }
.vd-check-list li { display: flex; align-items: center; gap: var(--vd-space-3); font-size: var(--vd-body-lg-size); line-height: var(--vd-body-lg-line); }
.vd-buy-checklist .vd-check-list li { min-height: var(--vd-touch-min); padding-block: var(--vd-space-3); border-top: var(--vd-border-hairline) solid var(--vd-border-divider); font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
.vd-check-list strong { font-weight: 400; color: var(--vd-text-body); }

@media (max-width: 959px) {
  .vd-buy-guide__shell { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-8); }
  .vd-buy-summary { position: static; }
  .vd-buy-summary .vd-buy-terms { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vd-buy-summary .vd-buy-terms > div { padding: var(--vd-space-3) var(--vd-space-4); }
  .vd-buy-summary .vd-buy-terms > div + div { border-left: var(--vd-border-hairline) solid var(--vd-border-divider); }
  .vd-buy-guide__body { max-width: none; }
}
@media (max-width: 899px) {
  .vd-buy-hero__grid { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-4); min-height: 0; }
  .vd-buy-hero__visual { justify-content: center; min-height: 210px; }
  .vd-buy-hero__visual img { width: min(100%, 430px); max-height: 220px; }
}
@media (max-width: 599px) {
  .vd-buy-hero { padding-bottom: var(--vd-space-6); }
  .vd-buy-hero__grid { gap: var(--vd-space-5); }
  .vd-buy-hero__visual { min-height: 175px; }
  .vd-buy-hero__visual img { max-height: 180px; }
  .vd-buy-guide { padding-block: var(--vd-space-8) var(--vd-space-10); }
  .vd-buy-guide__shell { gap: var(--vd-space-7); }
  .vd-buy-summary { padding: var(--vd-space-5); }
  .vd-buy-summary .vd-buy-terms { display: flex; }
  .vd-buy-summary .vd-buy-terms > div { padding: var(--vd-space-3) 0; }
  .vd-buy-summary .vd-buy-terms > div + div { border-left: 0; }
  .vd-buy-flow .vd-step { grid-template-columns: var(--vd-control-md) minmax(0, 1fr); gap: var(--vd-space-3); padding-bottom: var(--vd-space-8); }
  .vd-buy-flow .vd-step + .vd-step { padding-top: var(--vd-space-8); }
  .vd-buy-flow .vd-step:not(:last-child)::after { left: calc(var(--vd-control-md) / 2); bottom: calc(-1 * var(--vd-space-8)); }
  .vd-buy-flow .vd-step + .vd-step:not(:last-child)::after { top: calc(var(--vd-space-8) + var(--vd-control-md) + var(--vd-space-2)); }
  .vd-buy-flow .vd-step__marker { width: var(--vd-control-md); height: var(--vd-control-md); }
  .vd-buy-note { margin-top: 0; padding: var(--vd-space-4); }
  .vd-buy-checklist { margin-top: var(--vd-space-8); padding: var(--vd-space-5); }
  .vd-buy-checklist .vd-check-list { grid-template-columns: minmax(0, 1fr); }
}

/* ── account · orders · checkout ─────────────────────────────────────────────
   The account rail, the order filters and the checkout shell are server
   rendered, so their state arrives as links and page attributes rather than
   the pressed buttons the static handoff uses. */

/* the storefront rail has no duplicate mobile select to fall back to, so the
   list itself stays on small screens */
@media (max-width: 767px) {
  .vd-account-nav--rail { display: flex; }
  .vd-account-nav--rail .vd-account-nav__item { height: var(--vd-control-lg); }
}

/* order status filters are links: the active filter is the current page */
a.vd-status-tab { display: inline-flex; align-items: center; gap: var(--vd-space-2); text-decoration: none; }
a.vd-status-tab:hover { background: var(--vd-n-50); color: var(--vd-text-body); text-decoration: none; }
.vd-status-tab[aria-current="page"] { background: var(--vd-green-600); border-color: var(--vd-green-600); color: var(--vd-n-0); }
.vd-status-tab[aria-current="page"]:hover { background: var(--vd-green-700); color: var(--vd-n-0); }
.vd-status-tab__count { font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); }

/* the confirm-password hint is rewritten live by the page script */
.vd-field__hint.is-valid { color: var(--vd-success); }
.vd-field__hint.is-invalid { color: var(--vd-error); }

/* checkout runs on the focus layout, so the slim header carries the progress */
.vd-checkout-steps { display: flex; align-items: center; flex-wrap: wrap; gap: var(--vd-space-4); list-style: none; font-size: var(--vd-body-sm-size); color: var(--vd-green-200); }
.vd-checkout-steps__item { display: inline-flex; align-items: center; gap: var(--vd-space-4); white-space: nowrap; }
.vd-checkout-steps__item + .vd-checkout-steps__item::before { content: ""; width: var(--vd-space-4); height: var(--vd-border-hairline); background: var(--vd-border-on-brand); }
.vd-checkout-steps__item.is-complete { color: var(--vd-n-0); }
.vd-checkout-steps__item[aria-current="step"] { color: var(--vd-n-0); font-weight: 500; }
.vd-checkout-steps__secure { flex: none; font-size: var(--vd-body-sm-size); color: var(--vd-green-200); white-space: nowrap; }

/* the summary notes are a plain list under the order total */
.vd-checkout-notes { list-style: none; }

/* Payment result is a concise digital receipt, not a full-viewport marketing
   card. State, purchase evidence and next actions stay in one reading path. */
.vd-payment-result-page { min-height: calc(100vh - var(--vd-header-h)); padding-block: var(--vd-space-10) var(--vd-space-16); }
.vd-payment-result__container { max-width: 980px; }
.vd-payment-result { position: relative; overflow: hidden; border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-xl); background: var(--vd-surface-card); box-shadow: var(--vd-shadow-sm); }
.vd-payment-result::before { position: absolute; inset: 0 0 auto; height: var(--vd-alert-rail); background: var(--vd-green-500); content: ""; }
.vd-payment-result--pending::before { background: var(--vd-warning); }
.vd-payment-result--incomplete::before { background: var(--vd-n-500); }

.vd-payment-result__hero { display: grid; grid-template-columns: 56px minmax(0, 1fr); align-items: start; gap: var(--vd-space-5); padding: var(--vd-space-8); background: var(--vd-green-50); border-bottom: var(--vd-border-hairline) solid var(--vd-green-100); }
.vd-payment-result--pending .vd-payment-result__hero { background: var(--vd-warning-bg); border-bottom-color: var(--vd-warning-border); }
.vd-payment-result--incomplete .vd-payment-result__hero { background: var(--vd-surface-sunken); border-bottom-color: var(--vd-border-divider); }
.vd-payment-result__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--vd-surface-card); color: var(--vd-success); box-shadow: inset 0 0 0 var(--vd-border-hairline) var(--vd-green-200); }
.vd-payment-result--pending .vd-payment-result__icon { color: var(--vd-warning); box-shadow: inset 0 0 0 var(--vd-border-hairline) var(--vd-warning-border); }
.vd-payment-result--incomplete .vd-payment-result__icon { color: var(--vd-text-secondary); box-shadow: inset 0 0 0 var(--vd-border-hairline) var(--vd-border-divider); }
.vd-payment-result__icon svg { width: 44px; height: 44px; }
.vd-payment-result__headline { min-width: 0; }
.vd-payment-result__headline .vd-overline { display: block; margin-bottom: var(--vd-space-2); color: var(--vd-green-700); }
.vd-payment-result--pending .vd-payment-result__headline .vd-overline { color: var(--vd-warning); }
.vd-payment-result--incomplete .vd-payment-result__headline .vd-overline { color: var(--vd-text-secondary); }
.vd-payment-result__headline .vd-h1 { margin: 0; max-width: none; font-size: clamp(32px, 4vw, 44px); line-height: 1.1; }
.vd-payment-result__headline .vd-body-lg { max-width: 68ch; margin: var(--vd-space-3) 0 0; color: var(--vd-text-secondary); }

.vd-payment-result__body { display: flex; flex-direction: column; gap: var(--vd-space-6); padding: var(--vd-space-6) var(--vd-space-8); }
.vd-payment-result__section-title { margin: 0 0 var(--vd-space-3); font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 700; letter-spacing: var(--vd-overline-track); text-transform: uppercase; color: var(--vd-text-secondary); }
.vd-payment-result__facts { display: grid; grid-template-columns: 1.1fr 1fr .8fr; border-block: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-payment-result__facts > div { min-width: 0; padding: var(--vd-space-4) var(--vd-space-5); }
.vd-payment-result__facts > div:first-child { padding-left: 0; }
.vd-payment-result__facts > div + div { border-left: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-payment-result__facts dt { margin-bottom: var(--vd-space-1); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); color: var(--vd-text-secondary); }
.vd-payment-result__facts dd { overflow-wrap: anywhere; color: var(--vd-text-heading); font-size: var(--vd-body-size); font-weight: 600; }
.vd-payment-result__amount { font-family: var(--vd-font-mono); font-size: var(--vd-code-size) !important; }
.vd-payment-result__amount small { font: inherit; color: var(--vd-text-secondary); }
.vd-payment-result__status { display: inline-flex; align-items: center; gap: var(--vd-space-2); min-height: 28px; padding: 2px var(--vd-space-3); border: var(--vd-border-hairline) solid var(--vd-green-200); border-radius: var(--vd-radius-pill); background: var(--vd-green-50); color: var(--vd-green-700); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }
.vd-payment-result--pending .vd-payment-result__status { border-color: var(--vd-warning-border); background: var(--vd-warning-bg); color: var(--vd-warning); }
.vd-payment-result--incomplete .vd-payment-result__status { border-color: var(--vd-border-divider); background: var(--vd-surface-sunken); color: var(--vd-text-secondary); }

.vd-payment-result__items { min-width: 0; }
.vd-payment-result__item-list { display: flex; flex-direction: column; gap: var(--vd-space-3); }
.vd-payment-result__item { display: grid; grid-template-columns: minmax(0, 1fr) max-content; align-items: center; gap: var(--vd-space-6); padding: var(--vd-space-5); border: var(--vd-border-hairline) solid var(--vd-border-divider); border-radius: var(--vd-radius-lg); background: var(--vd-surface-sunken); }
.vd-payment-result__item-identity { display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; }
.vd-payment-result__item-identity .vd-code { color: var(--vd-green-700); }
.vd-payment-result__item-identity h3 { margin: 0; overflow-wrap: anywhere; color: var(--vd-text-heading); font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 600; }
.vd-payment-result__item-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: var(--vd-space-4); }
.vd-payment-result__item-meta > div { display: flex; flex-direction: column; gap: 1px; min-width: 112px; }
.vd-payment-result__item-meta dt { font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); color: var(--vd-text-secondary); }
.vd-payment-result__item-meta dd { color: var(--vd-text-heading); font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 600; }

.vd-payment-result__actions { display: flex; flex-wrap: wrap; gap: var(--vd-space-3); padding: var(--vd-space-5) var(--vd-space-8); border-top: var(--vd-border-hairline) solid var(--vd-border-divider); background: var(--vd-surface-sunken); }
.vd-payment-result__actions .vd-btn { min-width: 170px; }

@media (max-width: 767px) {
  .vd-payment-result-page { padding-block: var(--vd-space-6) var(--vd-space-10); }
  .vd-payment-result__hero { grid-template-columns: 44px minmax(0, 1fr); gap: var(--vd-space-3); padding: var(--vd-space-5); }
  .vd-payment-result__icon { width: 42px; height: 42px; }
  .vd-payment-result__icon svg { width: 36px; height: 36px; }
  .vd-payment-result__headline .vd-h1 { font-size: 30px; }
  .vd-payment-result__headline .vd-body-lg { font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
  .vd-payment-result__body { gap: var(--vd-space-6); padding: var(--vd-space-5); }
  .vd-payment-result__facts { grid-template-columns: minmax(0, 1fr); }
  .vd-payment-result__facts > div { display: grid; grid-template-columns: minmax(90px, .65fr) minmax(0, 1fr); align-items: baseline; gap: var(--vd-space-3); padding: var(--vd-space-3) 0; }
  .vd-payment-result__facts > div + div { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-left: 0; }
  .vd-payment-result__facts dt { margin: 0; }
  .vd-payment-result__facts dd { text-align: right; }
  .vd-payment-result__status { justify-self: end; }
  .vd-payment-result__item { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-4); padding: var(--vd-space-4); }
  .vd-payment-result__item-meta { justify-content: flex-start; }
  .vd-payment-result__actions { flex-direction: column; padding: var(--vd-space-4) var(--vd-space-5) var(--vd-space-5); }
  .vd-payment-result__actions .vd-btn { width: 100%; min-width: 0; }
}

/* ── product detail · compare plans · reviews ───────────────────────────────
   The storefront product family keeps three bespoke blocks that the static
   handoff has no counterpart for: the fact list under the H1, the access
   summary list, and the plan chooser rows in the purchase rail. Everything
   else on those pages is assembled from the components above. */

/* Product identity spans the page before the content/plan split. The larger
   vendor mark anchors the left edge; all product copy shares one right column. */
.vd-product-identity { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; gap: var(--vd-space-6); width: 100%; }
.vd-product-identity.has-logo { grid-template-columns: 160px minmax(0, 1fr); }
.vd-product-identity__logo { width: 160px; height: 132px; padding: var(--vd-space-4); border-radius: var(--vd-radius-lg); background: var(--vd-surface-card); }
.vd-product-identity__logo img { display: block; width: 100%; height: 100%; max-height: none; object-fit: contain; }
.vd-product-identity__content { display: flex; flex-direction: column; gap: var(--vd-space-4); min-width: 0; }
.vd-product-identity__name { width: 100%; max-width: none; }

/* product head — the fact list is a definition list, not a metadata row */
.vd-product-facts { display: flex; flex-wrap: wrap; gap: var(--vd-space-3) var(--vd-space-8); }
.vd-product-facts > div { display: flex; flex-direction: column; gap: var(--vd-space-05); }
.vd-product-facts dt { font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); color: var(--vd-text-secondary); }
.vd-product-facts dd { font-family: var(--vd-font-mono); font-size: var(--vd-code-size); line-height: var(--vd-code-line); font-weight: 500; color: var(--vd-text-heading); }

/* Free demos are the primary evidence before purchase. A single evergreen
   stage breaks the report-like page rhythm, while both formats keep equal
   visual and interaction weight. */
.vd-demo-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-6);
  padding: var(--vd-space-8);
  border: var(--vd-border-hairline) solid rgba(255, 255, 255, 0.14);
  border-radius: var(--vd-radius-xl);
  background-color: var(--vd-green-800);
  background-image:
    linear-gradient(rgba(95, 199, 150, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 199, 150, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 84% 18%, rgba(34, 182, 113, 0.24), transparent 36%);
  background-size: 64px 64px, 64px 64px, auto;
  box-shadow: var(--vd-shadow-lg);
}
.vd-demo-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -72px;
  bottom: -112px;
  width: 260px;
  height: 260px;
  border: var(--vd-border-hairline) solid rgba(151, 219, 187, 0.18);
  border-radius: 50%;
}
.vd-demo-showcase__intro { display: flex; flex-direction: column; gap: var(--vd-space-2); width: 100%; }
.vd-demo-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: var(--vd-space-2);
  color: var(--vd-green-200);
  font-family: var(--vd-font-mono);
  font-size: var(--vd-code-sm-size);
  line-height: var(--vd-code-sm-line);
  font-weight: 700;
  letter-spacing: var(--vd-overline-track);
  text-transform: uppercase;
}
.vd-demo-showcase__eyebrow svg { width: var(--vd-icon-md); height: var(--vd-icon-md); color: var(--vd-green-300); }
.vd-demo-showcase__intro .vd-h2 { color: var(--vd-text-inverse); font-size: clamp(1.65rem, 3.2vw, 2rem); line-height: 1.2; }
.vd-demo-showcase__intro p { color: var(--vd-green-100); }
.vd-demo-showcase__options { display: flex; flex-direction: column; gap: var(--vd-space-3); }
.vd-demo-showcase__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--vd-space-4); }
a.vd-demo-option {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-5);
  min-width: 0;
  min-height: 246px;
  padding: var(--vd-space-5);
  border: var(--vd-border-hairline) solid rgba(255, 255, 255, 0.55);
  border-radius: var(--vd-radius-lg);
  background: rgba(250, 251, 250, 0.98);
  color: var(--vd-text-body);
  text-decoration: none;
  box-shadow: var(--vd-shadow-sm);
  transition: transform var(--vd-dur-fast) var(--vd-ease-standard), box-shadow var(--vd-dur-fast) var(--vd-ease-standard), border-color var(--vd-dur-fast) var(--vd-ease-standard);
}
a.vd-demo-option:hover {
  border-color: var(--vd-green-200);
  color: var(--vd-text-body);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--vd-shadow-lg);
}
a.vd-demo-option:focus-visible { outline: 0; box-shadow: var(--vd-focus-ring-inverse), var(--vd-shadow-lg); }
.vd-demo-option__content { display: grid; grid-template-columns: 64px minmax(0, 1fr); align-items: start; gap: var(--vd-space-4); }
.vd-demo-option__icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: var(--vd-radius-md);
  background: var(--vd-green-50);
  color: var(--vd-green-700);
  box-shadow: inset 0 0 0 var(--vd-border-hairline) var(--vd-green-100);
}
.vd-demo-option__icon svg { width: 34px; height: 34px; }
.vd-demo-option__body { display: flex; flex-direction: column; gap: var(--vd-space-2); min-width: 0; }
.vd-demo-option__label {
  color: var(--vd-green-700);
  font-family: var(--vd-font-mono);
  font-size: var(--vd-code-sm-size);
  line-height: var(--vd-code-sm-line);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vd-demo-option__body strong { color: var(--vd-text-heading); font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 700; }
.vd-demo-option__body > span:last-child { color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }
.vd-demo-option__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vd-space-3);
  min-height: var(--vd-control-lg);
  margin-top: auto;
  padding-inline: var(--vd-space-4);
  border-radius: var(--vd-radius-md);
  background: var(--vd-green-600);
  color: var(--vd-text-on-brand);
  font-size: var(--vd-body-size);
  line-height: var(--vd-body-line);
  font-weight: 700;
  transition: background-color var(--vd-dur-fast) var(--vd-ease-standard);
}
.vd-demo-option__cta svg { width: var(--vd-icon-md); height: var(--vd-icon-md); flex: none; transition: transform var(--vd-dur-fast) var(--vd-ease-standard); }
a.vd-demo-option:hover .vd-demo-option__cta { background: var(--vd-green-700); }
a.vd-demo-option:hover .vd-demo-option__cta svg { transform: translateX(3px); }
.vd-online-question-link {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) var(--vd-icon-md);
  align-items: center;
  gap: var(--vd-space-3);
  min-height: var(--vd-touch-min);
  padding: var(--vd-space-2) var(--vd-space-4);
  border: var(--vd-border-hairline) solid rgba(255, 255, 255, 0.18);
  border-radius: var(--vd-radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--vd-green-100);
  font-size: var(--vd-body-sm-size);
  line-height: var(--vd-body-sm-line);
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--vd-dur-fast) var(--vd-ease-standard), border-color var(--vd-dur-fast) var(--vd-ease-standard), color var(--vd-dur-fast) var(--vd-ease-standard);
}
.vd-online-question-link:hover { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.1); color: var(--vd-text-inverse); text-decoration: none; }
.vd-online-question-link:focus-visible { outline: 0; box-shadow: var(--vd-focus-ring-inverse); }
.vd-online-question-link__icon { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: var(--vd-green-200); }
.vd-online-question-link__icon svg { width: var(--vd-icon-md); height: var(--vd-icon-md); }
.vd-online-question-link__copy { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.vd-online-question-link__copy strong { color: inherit; font: inherit; }
.vd-online-question-link__copy small { color: rgba(220, 252, 231, 0.72); font-size: 12px; line-height: 1.35; font-weight: 400; }
.vd-online-question-link__arrow { width: var(--vd-icon-md); height: var(--vd-icon-md); }

/* A compact confidence signal beneath the purchase card. It stays subordinate
   to format, term and price while reinforcing the decision at the right time. */
.vd-guarantee-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: var(--vd-space-4);
  padding: var(--vd-space-4);
  border: var(--vd-border-hairline) solid var(--vd-green-100);
  border-left: var(--vd-rail-accent) solid var(--vd-green-500);
  border-radius: var(--vd-radius-lg);
  background: linear-gradient(120deg, var(--vd-green-50), var(--vd-surface-card) 82%);
}
.vd-guarantee-card__seal {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--vd-green-700);
}
.vd-guarantee-card__seal svg { display: block; width: 100%; height: 100%; }
.vd-guarantee-card__copy { display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; }
.vd-guarantee-card__copy .vd-h4 { color: var(--vd-green-800); font-weight: 700; }
.vd-guarantee-card__copy p { width: 100%; }

/* Purchase assurances absorb the useful production-page promises into one
   qualified fact surface instead of repeating unverified marketing metrics. */
.vd-purchase-assurance { display: flex; flex-direction: column; gap: var(--vd-space-6); padding: var(--vd-space-6); border-radius: var(--vd-radius-lg); background: var(--vd-surface-sunken); }
.vd-purchase-assurance__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--vd-space-5) var(--vd-space-8); list-style: none; }
.vd-purchase-assurance__grid li { display: grid; grid-template-columns: var(--vd-control-lg) minmax(0, 1fr); align-items: start; gap: var(--vd-space-3); }
.vd-purchase-assurance__icon { display: inline-flex; align-items: center; justify-content: center; width: var(--vd-control-lg); height: var(--vd-control-lg); border-radius: var(--vd-radius-md); background: var(--vd-surface-card); color: var(--vd-green-700); box-shadow: inset 0 0 0 var(--vd-border-hairline) var(--vd-border-divider-faint); }
.vd-purchase-assurance__icon svg { display: block; width: var(--vd-icon-lg); height: var(--vd-icon-lg); }
.vd-purchase-assurance__grid li > span:last-child { display: flex; flex-direction: column; gap: var(--vd-space-1); padding-top: var(--vd-space-05); }
.vd-purchase-assurance__grid strong { font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 500; color: var(--vd-text-heading); }
.vd-purchase-assurance__grid small { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }
.vd-purchase-assurance__grid a { color: var(--vd-text-link); text-decoration: underline; text-underline-offset: 3px; }

/* The production preparation copy remains one supporting narrative. One
   editorial card keeps it readable without competing with plans or turning
   every paragraph into an independent feature card. */
.vd-exam-preparation__card {
  overflow: hidden;
  padding: var(--vd-space-10);
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  border-left: var(--vd-alert-rail) solid var(--vd-green-500);
  border-radius: var(--vd-radius-xl);
  background: var(--vd-surface-card);
  box-shadow: var(--vd-shadow-sm);
}
.vd-exam-preparation__intro {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-4);
  max-width: 960px;
  padding-bottom: var(--vd-space-8);
}
.vd-exam-preparation__intro .vd-h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.18;
  color: var(--vd-text-heading);
}
.vd-exam-preparation p {
  color: var(--vd-text-secondary);
  font-size: var(--vd-body-lg-size);
  line-height: var(--vd-body-lg-line);
}
.vd-exam-preparation__intro p { max-width: 78ch; }
.vd-exam-preparation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--vd-space-8);
}
.vd-exam-preparation__grid article {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-3);
  min-width: 0;
  padding-block: var(--vd-space-6);
  border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint);
}
.vd-exam-preparation__grid article:nth-child(even) {
  padding-left: var(--vd-space-8);
  border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint);
}
.vd-exam-preparation__grid .vd-h3 {
  color: var(--vd-text-heading);
  font-weight: 700;
}

/* Web TestEngine formats are shown as one focused practice workspace rather
   than a matrix of generic feature cards. The visual and explanation share a
   single surface so the example remains useful inside the product main rail. */
.vd-type-gallery {
  position: relative;
  overflow: hidden;
  padding: var(--vd-space-6);
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  border-left: var(--vd-rail-accent) solid var(--vd-green-500);
  border-radius: var(--vd-radius-lg);
  background: linear-gradient(135deg, var(--vd-green-50) 0, var(--vd-surface-card) 38%);
}
.vd-type-gallery__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "heading controls" "lede lede";
  align-items: start;
  gap: var(--vd-space-3) var(--vd-space-5);
}
.vd-type-gallery__heading { grid-area: heading; display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; }
.vd-type-gallery__lede { grid-area: lede; width: 100%; }
.vd-type-gallery__controls { grid-area: controls; display: flex; gap: var(--vd-space-2); flex: none; }
.vd-type-gallery__controls button {
  width: var(--vd-touch-min);
  height: var(--vd-touch-min);
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: var(--vd-border-hairline) solid var(--vd-border-field);
  border-radius: var(--vd-radius-md);
  background: rgba(255, 255, 255, 0.82);
  color: var(--vd-green-700);
  cursor: pointer;
  transition: background-color var(--vd-dur-fast) var(--vd-ease-standard), border-color var(--vd-dur-fast) var(--vd-ease-standard), transform var(--vd-dur-fast) var(--vd-ease-standard);
}
.vd-type-gallery__controls button:hover { border-color: var(--vd-green-300); background: var(--vd-green-50); transform: translateY(-1px); }
.vd-type-gallery__controls button:focus-visible { outline: 0; box-shadow: var(--vd-focus-ring); }
.vd-type-gallery__controls button svg { width: var(--vd-icon-md); height: var(--vd-icon-md); }
.vd-type-gallery__viewport {
  margin-top: var(--vd-space-5);
  overflow: hidden;
  border-radius: var(--vd-radius-md);
  background: var(--vd-surface-card);
  box-shadow: inset 0 0 0 var(--vd-border-hairline) var(--vd-border-divider-faint);
  touch-action: pan-y;
}
.vd-type-gallery__viewport:focus-visible { outline: 0; box-shadow: var(--vd-focus-ring); }
.vd-type-gallery__track { display: flex; transition: transform var(--vd-dur-slow) var(--vd-ease-standard); }
.vd-type-slide { flex: 0 0 100%; min-width: 0; display: grid; grid-template-columns: minmax(0, 3fr) minmax(220px, 2fr); align-items: stretch; }
.vd-type-slide__visual { min-width: 0; padding: var(--vd-space-4); display: grid; place-items: center; background: var(--vd-surface-sunken); }
.vd-type-slide__visual img { display: block; width: 100%; height: auto; max-height: 300px; object-fit: contain; }
.vd-type-slide__copy { min-width: 0; padding: var(--vd-space-6); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: var(--vd-space-2); border-left: var(--vd-border-accent) solid var(--vd-green-100); }
.vd-type-slide__meta { width: 100%; margin-bottom: auto; display: flex; align-items: center; justify-content: space-between; gap: var(--vd-space-2); }
.vd-type-slide__index { font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); line-height: var(--vd-code-sm-line); font-weight: 600; color: var(--vd-green-700); }
.vd-type-slide__badge { padding: 5px 7px; border-radius: var(--vd-radius-pill); background: var(--vd-green-50); font-family: var(--vd-font-mono); font-size: 10px; line-height: 14px; font-weight: 600; letter-spacing: .05em; color: var(--vd-green-700); text-transform: uppercase; }
.vd-type-slide__copy .vd-h3 { margin-top: var(--vd-space-1); font-weight: 700; color: var(--vd-text-heading); }
.vd-type-slide__copy p { width: 100%; }
.vd-type-gallery__footer { display: flex; align-items: center; justify-content: space-between; gap: var(--vd-space-4); margin-top: var(--vd-space-3); color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }
.vd-type-gallery__footer p { margin: 0; }
.vd-type-gallery__footer > span { flex: none; font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); font-weight: 500; color: var(--vd-green-700); }
.vd-type-gallery__footer strong { font-weight: 700; }

/* Format comparison starts with a useful choice, then gives detail on demand.
   The two study paths are the visual anchor; the table supports that decision
   without framing either product through a wall of negative status labels. */
.vd-format-chooser__frame {
  overflow: hidden;
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  border-radius: var(--vd-radius-xl);
  background: var(--vd-surface-card);
  box-shadow: var(--vd-shadow-sm);
}
.vd-format-chooser__hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-6);
  padding: var(--vd-space-8);
  background:
    radial-gradient(circle at 94% 10%, rgba(95, 199, 150, 0.22), transparent 29%),
    linear-gradient(120deg, var(--vd-green-50), var(--vd-surface-card) 67%);
}
.vd-format-chooser__hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: var(--vd-alert-rail);
  background: var(--vd-green-500);
}
.vd-format-chooser__intro { display: flex; flex-direction: column; gap: var(--vd-space-2); width: 100%; }
.vd-format-chooser__eyebrow {
  color: var(--vd-green-700);
  font-family: var(--vd-font-mono);
  font-size: var(--vd-code-sm-size);
  line-height: var(--vd-code-sm-line);
  font-weight: 700;
  letter-spacing: var(--vd-overline-track);
  text-transform: uppercase;
}
.vd-format-chooser__intro .vd-h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); line-height: 1.15; color: var(--vd-text-heading); }
.vd-format-chooser__intro p { width: 100%; max-width: none; }
.vd-format-chooser__paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--vd-space-4); }
.vd-format-path {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: var(--vd-space-4);
  padding: var(--vd-space-5);
  border: var(--vd-border-hairline) solid var(--vd-green-100);
  border-radius: var(--vd-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--vd-shadow-md);
}
.vd-format-path__icon {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--vd-radius-lg);
  background: var(--vd-green-50);
  color: var(--vd-green-700);
  box-shadow: inset 0 0 0 var(--vd-border-hairline) var(--vd-green-100);
}
.vd-format-path__icon svg { width: 40px; height: 40px; }
.vd-format-path__copy { min-width: 0; display: flex; flex-direction: column; gap: var(--vd-space-1); }
.vd-format-path__label {
  color: var(--vd-green-700);
  font-family: var(--vd-font-mono);
  font-size: var(--vd-code-sm-size);
  line-height: var(--vd-code-sm-line);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vd-format-path__copy strong { color: var(--vd-text-heading); font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); font-weight: 700; }
.vd-format-path__copy small { color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }

.vd-format-chooser__details { border-top: var(--vd-border-hairline) solid var(--vd-border-divider); background: var(--vd-surface-card); }
.vd-format-chooser__details > summary {
  min-height: 76px;
  padding: var(--vd-space-4) var(--vd-space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vd-space-5);
  color: var(--vd-text-heading);
  background: var(--vd-surface-sunken);
  cursor: pointer;
  list-style: none;
}
.vd-format-chooser__details > summary::-webkit-details-marker { display: none; }
.vd-format-chooser__details > summary:hover { background: var(--vd-green-50); }
.vd-format-chooser__details > summary:focus-visible { outline: 0; box-shadow: inset var(--vd-focus-ring); }
.vd-format-chooser__details > summary > span:first-child { min-width: 0; display: flex; flex-direction: column; gap: var(--vd-space-1); }
.vd-format-chooser__details > summary strong { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; }
.vd-format-chooser__details > summary small { color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }
.vd-format-chooser__toggle { flex: none; display: inline-flex; align-items: center; gap: var(--vd-space-2); color: var(--vd-green-700); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 700; }
.vd-format-chooser__toggle svg { width: var(--vd-icon-md); height: var(--vd-icon-md); transition: transform var(--vd-dur-fast) var(--vd-ease-standard); }
.vd-format-chooser__details:not([open]) .vd-format-chooser__toggle span { font-size: 0; }
.vd-format-chooser__details:not([open]) .vd-format-chooser__toggle span::after { content: "Show details"; font-size: var(--vd-body-sm-size); }
.vd-format-chooser__details:not([open]) .vd-format-chooser__toggle svg { transform: rotate(-90deg); }

.vd-format-chooser__body { border-top: var(--vd-border-hairline) solid var(--vd-border-divider); }
.vd-format-chooser__table-wrap { overflow: hidden; }
.vd-format-chooser__table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.vd-format-chooser__table col:first-child { width: 54%; }
.vd-format-chooser__table col:not(:first-child) { width: 23%; }
.vd-format-chooser__table thead { color: var(--vd-text-inverse); background: var(--vd-green-800); }
.vd-format-chooser__table thead th { padding: var(--vd-space-4) var(--vd-space-5); border-bottom: 0; color: inherit; font-size: var(--vd-label-size); line-height: var(--vd-label-line); text-align: left; }
.vd-format-chooser__table thead th:not(:first-child) { border-left: var(--vd-border-hairline) solid rgba(255, 255, 255, .16); }
.vd-format-chooser__column { display: flex; align-items: center; gap: var(--vd-space-3); }
.vd-format-chooser__column > svg { flex: none; width: var(--vd-icon-lg); height: var(--vd-icon-lg); color: var(--vd-green-200); }
.vd-format-chooser__column > span { min-width: 0; display: flex; flex-direction: column; gap: var(--vd-space-05); }
.vd-format-chooser__column strong { color: var(--vd-text-inverse); font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 700; }
.vd-format-chooser__column small { color: var(--vd-green-200); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); font-weight: 400; }
.vd-format-chooser__table tbody tr { border-bottom: var(--vd-border-hairline) solid var(--vd-border-divider-faint); transition: background-color var(--vd-dur-fast) var(--vd-ease-standard); }
.vd-format-chooser__table tbody tr:last-child { border-bottom: 0; }
.vd-format-chooser__table tbody tr:hover { background: var(--vd-green-50); }
.vd-format-chooser__table tbody th,
.vd-format-chooser__table tbody td { padding: var(--vd-space-4) var(--vd-space-5); text-align: left; vertical-align: middle; }
.vd-format-chooser__table tbody th { display: grid; grid-template-columns: var(--vd-control-lg) minmax(0, 1fr); align-items: center; gap: var(--vd-space-3); font-weight: 400; }
.vd-format-chooser__table tbody td { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-format-chooser__feature-icon {
  width: var(--vd-control-lg);
  height: var(--vd-control-lg);
  display: inline-grid;
  place-items: center;
  border-radius: var(--vd-radius-md);
  background: var(--vd-green-50);
  color: var(--vd-green-700);
}
.vd-format-chooser__feature-icon svg { width: var(--vd-icon-lg); height: var(--vd-icon-lg); }
.vd-format-chooser__feature-copy { min-width: 0; display: flex; flex-direction: column; gap: var(--vd-space-05); }
.vd-format-chooser__feature-copy strong { color: var(--vd-text-heading); font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 700; }
.vd-format-chooser__feature-copy small { color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 400; }
.vd-format-chooser__status { min-height: var(--vd-control-sm); display: inline-flex; align-items: center; gap: var(--vd-space-2); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 700; }
.vd-format-chooser__status.is-included { color: var(--vd-green-700); }
.vd-format-chooser__status.is-included svg { flex: none; width: var(--vd-icon-lg); height: var(--vd-icon-lg); }
.vd-format-chooser__status.is-unavailable { min-width: var(--vd-icon-lg); justify-content: center; color: var(--vd-n-300); font-family: var(--vd-font-mono); font-size: var(--vd-code-lg-size); font-weight: 400; }

.vd-format-chooser__shared {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: var(--vd-space-6);
  padding: var(--vd-space-4) var(--vd-space-8);
  border-top: var(--vd-border-hairline) solid var(--vd-border-divider);
  background: var(--vd-surface-sunken);
}
.vd-format-chooser__shared > strong { color: var(--vd-text-heading); font-size: var(--vd-label-size); line-height: var(--vd-label-line); }
.vd-format-chooser__shared ul { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: var(--vd-space-3) var(--vd-space-6); list-style: none; }
.vd-format-chooser__shared li { display: inline-flex; align-items: center; gap: var(--vd-space-2); color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }
.vd-format-chooser__shared li span { width: var(--vd-icon-md); height: var(--vd-icon-md); display: inline-grid; place-items: center; border-radius: 50%; background: var(--vd-green-100); color: var(--vd-green-700); font-size: 12px; font-weight: 700; }

.vd-format-chooser__bundle {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: var(--vd-space-4);
  padding: var(--vd-space-5) var(--vd-space-8);
  border-top: var(--vd-border-hairline) solid var(--vd-green-100);
  background: linear-gradient(105deg, var(--vd-green-50), var(--vd-surface-card) 74%);
}
.vd-format-chooser__bundle-icon { width: 64px; height: 64px; display: inline-grid; place-items: center; border-radius: var(--vd-radius-lg); background: var(--vd-green-100); color: var(--vd-green-700); }
.vd-format-chooser__bundle-icon svg { width: 44px; height: 44px; }
.vd-format-chooser__bundle-copy { min-width: 0; display: flex; flex-direction: column; gap: var(--vd-space-1); }
.vd-format-chooser__bundle-copy strong { color: var(--vd-text-heading); font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 700; }
.vd-format-chooser__bundle-copy small { color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }

/* Purchase rail — a compact decision docket. Access term appears once, each
   format row keeps only identity and price, and the entire row is the action. */
.vd-plan-picker {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-4);
  padding: var(--vd-space-5);
}
.vd-plan-picker__header { display: flex; align-items: center; min-width: 0; }
.vd-plan-picker__header .vd-h3 { font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); }
.vd-plan-picker > .vd-segmented {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(264px, 100%);
}
.vd-plan-picker > .vd-segmented .vd-segmented__item { width: 100%; padding-inline: var(--vd-space-3); }
.vd-plan-term-static {
  align-self: center;
  min-height: var(--vd-control-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--vd-space-5);
  border-radius: var(--vd-radius-md);
  background: var(--vd-n-50);
  color: var(--vd-text-heading);
  font-size: var(--vd-body-size);
  line-height: var(--vd-body-line);
  font-weight: 500;
}
.vd-plan-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--vd-space-3);
  width: 100%;
  min-height: 72px;
  padding: var(--vd-space-3) var(--vd-space-4);
  border: var(--vd-border-hairline) solid var(--vd-border-field);
  border-radius: var(--vd-radius-md);
  background: var(--vd-surface-card);
  color: var(--vd-text-body);
  font-family: inherit; font-size: var(--vd-body-size);
  text-align: left; text-decoration: none; cursor: pointer;
  box-shadow: var(--vd-shadow-sm);
  transition: transform var(--vd-dur-fast) var(--vd-ease-standard), box-shadow var(--vd-dur-fast) var(--vd-ease-standard), border-color var(--vd-dur-fast) var(--vd-ease-standard), background-color var(--vd-dur-fast) var(--vd-ease-standard);
}
.vd-plan-card.is-recommended { border-color: var(--vd-green-200); background: var(--vd-green-50); }
.vd-plan-card.is-selected { border: var(--vd-border-accent) solid var(--vd-green-600); background: var(--vd-surface-selected); }
.vd-plan-card__top { min-width: 0; display: grid; grid-template-columns: var(--vd-control-md) minmax(0, 1fr); align-items: center; gap: var(--vd-space-3); }
.vd-plan-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--vd-control-md); height: var(--vd-control-md);
  border-radius: var(--vd-radius-sm);
  background: var(--vd-surface-subtle);
  color: var(--vd-text-secondary);
  font-family: var(--vd-font-mono); font-size: var(--vd-code-sm-size); font-weight: 500;
  transition: background-color var(--vd-dur-fast) var(--vd-ease-standard), color var(--vd-dur-fast) var(--vd-ease-standard);
}
.vd-plan-card.is-recommended .vd-plan-card__icon, .vd-plan-card.is-selected .vd-plan-card__icon { background: var(--vd-green-100); color: var(--vd-green-700); }
.vd-plan-card__identity { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-05); }
.vd-plan-card__name { font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 500; color: var(--vd-text-heading); }
.vd-plan-card__tag { color: var(--vd-green-700); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); font-weight: 700; }
.vd-plan-card__price { flex: none; display: flex; flex-direction: column; align-items: flex-end; gap: 0; }
.vd-plan-card__price .vd-price { flex-direction: column; align-items: flex-end; gap: 0; }
.vd-plan-card__price .vd-price__now { font-size: var(--vd-h3-size); line-height: var(--vd-h3-line); }
.vd-plan-card__price .vd-price-strike { color: var(--vd-text-secondary); }
.vd-plan-picker__compare { align-self: center; }
.vd-plan-assurance { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--vd-space-2) var(--vd-space-3); list-style: none; }
.vd-plan-assurance li { display: inline-flex; align-items: center; gap: var(--vd-space-1); color: var(--vd-text-secondary); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); white-space: nowrap; }
.vd-plan-assurance li > span { display: inline-grid; place-items: center; width: var(--vd-icon-sm); height: var(--vd-icon-sm); border-radius: 50%; background: var(--vd-green-700); color: var(--vd-text-on-brand); font-size: 10px; font-weight: 700; }

@media (hover: hover) and (pointer: fine) {
  .vd-plan-card:hover {
    transform: translateY(-2px);
    border-color: var(--vd-green-500);
    background: var(--vd-surface-card);
    color: var(--vd-text-body);
    text-decoration: none;
    box-shadow: var(--vd-shadow-lg);
  }
  .vd-plan-card.is-recommended:hover { background: var(--vd-green-50); }
  .vd-plan-card:hover .vd-plan-card__icon { background: var(--vd-green-100); color: var(--vd-green-700); }
}
.vd-plan-card:focus-visible { border-color: var(--vd-green-600); box-shadow: var(--vd-focus-ring), var(--vd-shadow-md); }

/* retired · coming-soon rail — the mast icon is a tile, not an inline glyph */
.vd-status-docket__icon {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: var(--vd-step-marker); height: var(--vd-step-marker);
  border-radius: var(--vd-radius-md);
  background: var(--vd-surface-sunken);
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  color: var(--vd-text-secondary);
}

@media (max-width: 899px) {
  .vd-exam-preparation__grid { grid-template-columns: minmax(0, 1fr); }
  .vd-exam-preparation__grid article { padding-block: var(--vd-space-5); }
  .vd-exam-preparation__grid article:nth-child(even) { padding-left: 0; border-left: 0; }
}

@media (max-width: 767px) {
  .vd-product-identity { gap: var(--vd-space-4); }
  .vd-product-identity.has-logo { grid-template-columns: 112px minmax(0, 1fr); align-items: start; }
  .vd-product-identity__logo { width: 112px; height: 96px; padding: var(--vd-space-3); }
  .vd-product-identity__content { gap: var(--vd-space-3); }
  .vd-purchase-assurance { padding: var(--vd-space-5); }
  .vd-demo-showcase { gap: var(--vd-space-5); padding: var(--vd-space-5); border-radius: var(--vd-radius-lg); background-size: 48px 48px, 48px 48px, auto; }
  .vd-demo-showcase__grid { grid-template-columns: minmax(0, 1fr); }
  a.vd-demo-option { min-height: 0; }
  .vd-purchase-assurance__grid { grid-template-columns: minmax(0, 1fr); }
  .vd-exam-preparation__card { padding: var(--vd-space-6); border-radius: var(--vd-radius-lg); }
  .vd-exam-preparation__intro { padding-bottom: var(--vd-space-6); }
  .vd-type-gallery { padding: var(--vd-space-5); }
  .vd-type-gallery__header { grid-template-columns: minmax(0, 1fr); grid-template-areas: "heading" "lede" "controls"; }
  .vd-type-gallery__controls { justify-self: end; }
  .vd-type-slide { grid-template-columns: minmax(0, 1fr); }
  .vd-type-slide__visual { padding: var(--vd-space-3); }
  .vd-type-slide__visual img { max-height: none; }
  .vd-type-slide__copy { min-height: 176px; padding: var(--vd-space-5); border-top: var(--vd-border-accent) solid var(--vd-green-100); border-left: 0; }
  .vd-type-slide__meta { margin-bottom: var(--vd-space-3); }
  .vd-format-chooser__hero { padding: var(--vd-space-6); }
  .vd-format-chooser__paths { grid-template-columns: minmax(0, 1fr); }
  .vd-format-chooser__details > summary { padding-inline: var(--vd-space-6); }
  .vd-format-chooser__table-wrap { padding: var(--vd-space-4); background: var(--vd-surface-sunken); }
  .vd-format-chooser__table,
  .vd-format-chooser__table tbody { display: block; }
  .vd-format-chooser__table colgroup,
  .vd-format-chooser__table thead { display: none; }
  .vd-format-chooser__table tbody { display: grid; gap: var(--vd-space-3); }
  .vd-format-chooser__table tbody tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: var(--vd-border-hairline) solid var(--vd-border-divider);
    border-radius: var(--vd-radius-md);
    background: var(--vd-surface-card);
  }
  .vd-format-chooser__table tbody tr:hover { background: var(--vd-surface-card); }
  .vd-format-chooser__table tbody th { grid-column: 1 / -1; padding: var(--vd-space-4); border-bottom: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
  .vd-format-chooser__table tbody td { display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-2); min-width: 0; padding: var(--vd-space-3) var(--vd-space-4); border-left: 0; }
  .vd-format-chooser__table tbody td + td { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
  .vd-format-chooser__table tbody td::before { content: attr(data-format); color: var(--vd-text-muted); font-family: var(--vd-font-mono); font-size: 10px; line-height: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
  .vd-format-chooser__shared { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-3); padding-inline: var(--vd-space-6); }
  .vd-format-chooser__shared ul { justify-content: flex-start; }
  .vd-format-chooser__bundle { grid-template-columns: 56px minmax(0, 1fr); padding-inline: var(--vd-space-6); }
  .vd-format-chooser__bundle-icon { width: 56px; height: 56px; }
}

@media (max-width: 479px) {
  .vd-demo-showcase { padding: var(--vd-space-4); }
  .vd-exam-preparation__card { padding: var(--vd-space-5) var(--vd-space-4); }
  a.vd-demo-option { padding: var(--vd-space-4); }
  .vd-demo-option__content { grid-template-columns: 56px minmax(0, 1fr); gap: var(--vd-space-3); }
  .vd-demo-option__icon { width: 56px; height: 56px; }
  .vd-demo-option__icon svg { width: 30px; height: 30px; }
  .vd-guarantee-card { grid-template-columns: 64px minmax(0, 1fr); gap: var(--vd-space-3); }
  .vd-guarantee-card__seal { width: 64px; height: 64px; }
  .vd-type-gallery { padding: var(--vd-space-4); }
  .vd-type-gallery__controls { display: grid; grid-template-columns: repeat(3, var(--vd-touch-min)); justify-content: end; }
  .vd-type-gallery__footer { align-items: flex-start; }
  .vd-type-gallery__footer p { min-width: 0; }
  .vd-format-chooser__frame { border-radius: var(--vd-radius-lg); }
  .vd-format-chooser__hero { padding: var(--vd-space-5) var(--vd-space-4); }
  .vd-format-path { grid-template-columns: 56px minmax(0, 1fr); padding: var(--vd-space-4); }
  .vd-format-path__icon { width: 56px; height: 56px; }
  .vd-format-path__icon svg { width: 32px; height: 32px; }
  .vd-format-chooser__details > summary { min-height: 68px; padding: var(--vd-space-4); }
  .vd-format-chooser__toggle > span { display: none; }
  .vd-format-chooser__table-wrap { padding: var(--vd-space-3); }
  .vd-format-chooser__table tbody th { grid-template-columns: var(--vd-control-md) minmax(0, 1fr); }
  .vd-format-chooser__feature-icon { width: var(--vd-control-md); height: var(--vd-control-md); }
  .vd-format-chooser__feature-icon svg { width: var(--vd-icon-md); height: var(--vd-icon-md); }
  .vd-format-chooser__table tbody td { padding: var(--vd-space-3); }
  .vd-format-chooser__status { font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); }
  .vd-format-chooser__shared { padding: var(--vd-space-4); }
  .vd-format-chooser__shared ul { flex-direction: column; gap: var(--vd-space-2); }
  .vd-format-chooser__bundle { grid-template-columns: minmax(0, 1fr); padding: var(--vd-space-4); }
  .vd-format-chooser__bundle-icon { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  a.vd-demo-option:hover { transform: none; }
  a.vd-demo-option:hover .vd-demo-option__cta svg { transform: none; }
  .vd-plan-card:hover { transform: none; }
  .vd-type-gallery__track { transition: none; }
  .vd-type-gallery__controls button:hover { transform: none; }
}

/* ── 首页 Hero（20260808）───────────────────────────────────────────────────
   左侧完成考试发现，右侧用备考场景说明 PDF + Web TestEngine 的使用语境。
   不在首页制造具体商品、库存或购买状态，避免与产品页职责混淆。 */
.vd-home-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 570px;
  padding-block: var(--vd-space-12) var(--vd-space-8);
  background: var(--vd-green-800);
  color: var(--vd-text-on-brand);
}
.vd-home-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(151, 219, 187, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 219, 187, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, 0.35) 48%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 8%, rgba(0, 0, 0, 0.35) 48%, #000 100%);
}
.vd-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: var(--vd-space-8);
  align-items: center;
  min-height: 410px;
}
.vd-home-hero__content { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.vd-home-hero__eyebrow { margin-bottom: var(--vd-space-4); color: var(--vd-green-200); }
.vd-home-hero__title {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0;
  color: var(--vd-n-0);
  font-size: clamp(44px, 3.35vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.vd-home-hero__lede { max-width: 650px; margin-top: var(--vd-space-5); color: var(--vd-green-100); }
.vd-home-hero__count { color: var(--vd-n-0); font-family: var(--vd-font-mono); font-weight: 600; }
.vd-home-hero__search-wrap { width: 100%; max-width: 680px; margin-top: var(--vd-space-6); }
.vd-home-hero__search-label { display: inline-block; margin-bottom: var(--vd-space-2); color: var(--vd-n-0); }
.vd-home-hero__search { width: 100%; }
.vd-home-hero__search .vd-field-group { height: 56px; background: rgba(255, 255, 255, 0.13); border-color: rgba(255, 255, 255, 0.52); box-shadow: var(--vd-shadow-sm); }
.vd-home-hero__search .vd-field-group:focus-within { border-color: var(--vd-n-0); box-shadow: var(--vd-focus-ring-inverse); }
.vd-home-hero__search .vd-field-group__input { color: var(--vd-n-0); font-size: var(--vd-body-lg-size); }
.vd-home-hero__search .vd-field-group__input::placeholder { color: var(--vd-green-200); }
.vd-home-hero__search .vd-field-group__btn { min-width: 136px; padding-inline: var(--vd-space-6); background: var(--vd-green-500); font-size: var(--vd-body-size); font-weight: 700; }
.vd-home-hero__search .vd-field-group__btn:hover { background: var(--vd-green-400); }
.vd-home-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  min-height: 390px;
  margin: 0;
}
.vd-home-hero__visual-frame {
  position: absolute;
  inset: 8% 1% 6% 10%;
  border: var(--vd-border-hairline) solid rgba(255, 255, 255, 0.18);
  border-radius: 48% 44% 20% 32%;
  background: rgba(255, 255, 255, 0.065);
  transform: rotate(-2deg);
}
.vd-home-hero__visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 64%;
  aspect-ratio: 1;
  right: 5%;
  top: 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 219, 187, 0.22), transparent 68%);
}
.vd-home-hero__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 590px);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 46, 21, 0.22));
  transform: translateX(3%);
}
.vd-home-hero__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--vd-space-5);
  margin-top: var(--vd-space-5);
  padding-top: var(--vd-space-5);
  border-top: var(--vd-border-hairline) solid rgba(255, 255, 255, 0.2);
}
.vd-home-hero__proof-item { display: flex; align-items: center; gap: var(--vd-space-3); min-width: 0; }
.vd-home-hero__proof-item > span:last-child { display: flex; flex-direction: column; gap: var(--vd-space-05); min-width: 0; }
.vd-home-hero__proof-item strong { color: var(--vd-n-0); font-size: var(--vd-label-size); line-height: var(--vd-label-line); font-weight: 500; }
.vd-home-hero__proof-item small { color: var(--vd-green-200); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); }
.vd-home-hero__proof-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: var(--vd-control-sm);
  height: var(--vd-control-sm);
  border: 0;
  border-radius: var(--vd-radius-md);
  background: rgba(255, 255, 255, 0.09);
  color: var(--vd-green-100);
}
.vd-home-hero__proof-mark svg { display: block; width: 18px; height: 18px; }

@media (max-width: 1023px) {
  .vd-home-hero { padding-block: var(--vd-space-10) var(--vd-space-8); }
  .vd-home-hero__grid { grid-template-columns: minmax(0, 1fr) 380px; gap: var(--vd-space-5); }
  .vd-home-hero__title { font-size: clamp(40px, 5vw, 50px); }
  .vd-home-hero__visual { min-height: 340px; }
  .vd-home-hero__visual img { transform: none; }
}

@media (max-width: 899px) {
  .vd-home-hero { min-height: 0; }
  .vd-home-hero__grid { grid-template-columns: minmax(0, 1fr); gap: var(--vd-space-8); }
  .vd-home-hero__content { max-width: 680px; }
  .vd-home-hero__visual { justify-content: center; min-height: 310px; }
  .vd-home-hero__visual-frame { inset: 6% 8% 5%; }
  .vd-home-hero__visual img { width: min(100%, 560px); }
  .vd-home-hero__proof { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: var(--vd-space-4); }
}

@media (max-width: 599px) {
  .vd-home-hero { padding-block: var(--vd-space-8) var(--vd-space-6); }
  .vd-home-hero::before { opacity: 0.2; background-size: 36px 36px; }
  .vd-home-hero__grid { gap: var(--vd-space-6); }
  .vd-home-hero__eyebrow { margin-bottom: var(--vd-space-3); }
  .vd-home-hero__title { font-size: clamp(34px, 10.5vw, 42px); line-height: 1.1; letter-spacing: -0.03em; }
  .vd-home-hero__lede { margin-top: var(--vd-space-4); font-size: var(--vd-body-size); line-height: var(--vd-body-line); }
  .vd-home-hero__search-wrap { margin-top: var(--vd-space-5); }
  .vd-home-hero__search .vd-field-group { height: 52px; }
  .vd-home-hero__search .vd-field-group__input { padding-inline: var(--vd-space-3); font-size: var(--vd-body-size); }
  .vd-home-hero__search .vd-field-group__btn { min-width: 118px; padding-inline: var(--vd-space-3); }
  .vd-home-hero__visual { min-height: 245px; }
  .vd-home-hero__visual-frame { inset: 7% 2% 4%; }
  .vd-home-hero__visual img { width: min(108%, 480px); }
  .vd-home-hero__proof { gap: var(--vd-space-4) var(--vd-space-3); margin-top: var(--vd-space-4); padding-top: var(--vd-space-4); }
  .vd-home-hero__proof-item { align-items: flex-start; }
  .vd-home-hero__proof-item small { line-height: 16px; }
}

@media (max-width: 379px) {
  .vd-home-hero__search .vd-field-group { height: auto; flex-direction: column; gap: var(--vd-space-2); overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .vd-home-hero__search .vd-field-group:focus-within { border: 0; box-shadow: none; }
  .vd-home-hero__search .vd-field-group__input { flex: none; width: 100%; height: 52px; border: var(--vd-border-hairline) solid var(--vd-border-on-brand); border-radius: var(--vd-radius-md); background: rgba(255, 255, 255, 0.13); }
  .vd-home-hero__search .vd-field-group__input:focus-visible { box-shadow: var(--vd-focus-ring-inverse); }
  .vd-home-hero__search .vd-field-group__btn { width: 100%; height: 52px; border-radius: var(--vd-radius-md); }
  .vd-home-hero__proof { grid-template-columns: minmax(0, 1fr); }
}

/* 复制成功后，复制图标变成对勾，3 秒后由脚本还原。 */
.vd-promo__code.is-copied { background: var(--vd-green-500); border-style: solid; border-color: var(--vd-green-500); color: var(--vd-green-900); font-weight: 700; }
.vd-promo__code.is-copied .vd-promo__code-label { color: var(--vd-green-900); opacity: 0.72; }
.vd-promo__code.is-copied .vd-promo__code-value { border-left-color: rgba(0, 46, 21, 0.24); }
.vd-promo__code.is-copied .vd-promo__code-mark { width: 7px; height: 12px; border: solid currentColor; border-width: 0 2px 2px 0; opacity: 1; transform: rotate(45deg) translate(-2px, -1px); }
.vd-promo__code.is-copied .vd-promo__code-mark::before,
.vd-promo__code.is-copied .vd-promo__code-mark::after { display: none; }

/* 实时搜索建议此前被锁死在输入框宽度内，标题被 ellipsis 截断；放宽并允许换行 */
.vd-suggest { min-width: min(560px, calc(100vw - var(--vd-space-8))); }
.vd-header-search .vd-suggest { left: auto; right: 0; }
.vd-suggest__row { align-items: flex-start; padding-block: var(--vd-space-3); }
.vd-suggest__code { padding-top: 2px; }
.vd-suggest__name { white-space: normal; overflow: visible; text-overflow: clip; line-height: var(--vd-body-line); }

/* 厂商区：6 列 x 4 行 = 24 家。logo 之前被 width/height 属性压成 2:1，
   这里让它铺满方形展示区并按原比例内缩。 */
.vd-grid--vendors-home { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.vd-grid--vendors-home .vd-vendor-card { gap: var(--vd-space-3); padding: var(--vd-space-4) var(--vd-space-2); }
.vd-grid--vendors-home .vd-vendor-card__tile { max-width: none; padding: var(--vd-space-4); background: var(--vd-surface-card); border-color: var(--vd-border-divider); }
.vd-vendor-card__tile img { width: 100%; height: 100%; object-fit: contain; }
.vd-grid--vendors-home .vd-vendor-card__name { font-size: var(--vd-body-size); line-height: var(--vd-body-line); }

/* 统计带：四项并排，图标 + 数值 + 名称 */
.vd-figure-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--vd-space-6); }
.vd-figure-band__item { display: flex; flex-direction: column; align-items: center; gap: var(--vd-space-2); text-align: center; }
.vd-figure-band__item + .vd-figure-band__item { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-figure-band__icon { display: grid; place-items: center; width: calc(var(--vd-control-lg) + var(--vd-space-2)); height: calc(var(--vd-control-lg) + var(--vd-space-2)); border-radius: 50%; background: var(--vd-green-50); color: var(--vd-green-700); }
.vd-figure-band__icon svg { width: var(--vd-icon-lg); height: var(--vd-icon-lg); }
.vd-figure-band__value { font-family: var(--vd-font-mono); font-size: var(--vd-h1-size); line-height: var(--vd-h1-line); font-weight: 700; color: var(--vd-green-700); }
.vd-figure-band__label { font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); color: var(--vd-text-secondary); }

/* Every purchase includes：以一个完整权益面板取代四张同质卡片。 */
.vd-includes { display: grid; grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2.5fr); overflow: hidden; border: var(--vd-border-hairline) solid var(--vd-green-100); border-radius: var(--vd-radius-lg); background: var(--vd-surface-card); box-shadow: var(--vd-shadow-sm); }
.vd-includes__intro { position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: center; gap: var(--vd-space-2); min-height: 340px; padding: var(--vd-space-8); overflow: hidden; background: var(--vd-green-800); }
.vd-includes__intro::after { content: ""; position: absolute; z-index: -1; width: 220px; height: 220px; right: -110px; bottom: -125px; border: 32px solid rgba(151, 219, 187, 0.11); border-radius: 50%; }
.vd-includes__eyebrow { color: var(--vd-green-200); }
.vd-includes__title { max-width: 220px; color: var(--vd-n-0); }
.vd-includes__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vd-includes__item { display: grid; grid-template-columns: 56px minmax(0, 1fr); align-content: center; gap: var(--vd-space-4); min-height: 170px; padding: var(--vd-space-6); }
.vd-includes__item:nth-child(even) { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-includes__item:nth-child(n + 3) { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-includes__content { display: flex; flex-direction: column; align-self: center; gap: var(--vd-space-2); min-width: 0; }
.vd-includes__content p { color: var(--vd-text-secondary); }
.vd-feature-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: var(--vd-radius-md); background: var(--vd-green-50); color: var(--vd-green-700); }
.vd-feature-icon svg { width: 28px; height: 28px; }

/* 精选评论卡 */
.vd-quote-card { height: 100%; }
.vd-quote-card__body { flex: 1; }
.vd-quote-card__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--vd-space-3); padding-top: var(--vd-space-3); border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-quote-card__exam { color: var(--vd-green-700); text-decoration: none; }

@media (max-width: 1279px) {
  .vd-grid--vendors-home { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1023px) {
  .vd-figure-band { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--vd-space-5); }
  .vd-figure-band__item:nth-child(odd) { border-left: 0; }
  .vd-includes { grid-template-columns: minmax(0, 1fr); }
  .vd-includes__intro { min-height: 0; padding: var(--vd-space-6); }
  .vd-includes__title { max-width: none; }
}
@media (max-width: 899px) {
  .vd-grid--vendors-home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 599px) {
  .vd-grid--vendors-home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vd-figure-band__item { border-left: 0; }
  .vd-includes__grid { grid-template-columns: minmax(0, 1fr); }
  .vd-includes__item { min-height: 0; padding: var(--vd-space-5); }
  .vd-includes__item:nth-child(even) { border-left: 0; }
  .vd-includes__item:nth-child(n + 2) { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
}

/* Account orders: a compact purchase ledger with stable scanning positions. */
.vd-orders-page .vd-split--account { max-width: var(--vd-container-max); margin-inline: auto; }
.vd-orders-main { min-width: 0; }
.vd-orders-intro { display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-3); }
.vd-orders-intro__copy { max-width: 680px; }
.vd-orders-intro .vd-identity { max-width: 680px; overflow-wrap: anywhere; font-size: var(--vd-body-sm-size); }
.vd-orders-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--vd-space-8);
  min-width: 0;
  padding: var(--vd-space-3) var(--vd-space-4);
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  border-radius: var(--vd-radius-lg);
  background: var(--vd-surface-sunken);
}
.vd-orders-toolbar__heading { display: flex; flex-direction: column; flex: none; gap: var(--vd-space-05); }
.vd-orders-toolbar .vd-status-tabs { min-width: 0; justify-content: flex-start; }
.vd-order-ledger { display: flex; flex-direction: column; gap: var(--vd-space-4); }
.vd-orders-page .vd-order-card {
  display: grid;
  grid-template-columns: minmax(176px, 0.24fr) minmax(0, 1fr) minmax(172px, 0.22fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--vd-shadow-sm);
}
.vd-orders-page .vd-order-card--paid { border-left-color: var(--vd-green-500); }
.vd-order-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--vd-space-3);
  min-width: 0;
  padding: var(--vd-space-5);
  border-right: var(--vd-border-hairline) solid var(--vd-border-divider-faint);
}
.vd-order-card__number { overflow-wrap: anywhere; }
.vd-order-card__product { display: flex; flex-direction: column; justify-content: center; gap: var(--vd-space-3); min-width: 0; padding: var(--vd-space-5); }
.vd-order-card__product-name { display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--vd-space-2); min-width: 0; color: var(--vd-text-heading); font-size: var(--vd-h4-size); line-height: var(--vd-h4-line); font-weight: 500; }
.vd-order-card__product-name > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.vd-order-card__meta { display: flex; flex-wrap: wrap; gap: var(--vd-space-2) var(--vd-space-5); margin: 0; }
.vd-order-card__meta > div { display: flex; align-items: baseline; gap: var(--vd-space-2); min-width: 0; }
.vd-order-card__meta dt { color: var(--vd-text-secondary); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); text-transform: uppercase; letter-spacing: 0.06em; }
.vd-order-card__meta dd { color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }
.vd-order-card__summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--vd-space-4);
  min-width: 0;
  padding: var(--vd-space-5);
  border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint);
  background: var(--vd-surface-sunken);
}
.vd-order-card__total { display: flex; flex-direction: column; align-items: flex-end; gap: var(--vd-space-1); margin: 0; text-align: right; }
.vd-order-card__total dt { color: var(--vd-text-secondary); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); text-transform: uppercase; letter-spacing: 0.06em; }
.vd-order-card__total dd { display: flex; align-items: baseline; justify-content: flex-end; gap: var(--vd-space-2); color: var(--vd-text-heading); font-family: var(--vd-font-mono); font-size: var(--vd-code-lg-size); line-height: var(--vd-code-lg-line); font-weight: 500; }
.vd-order-card__total small { color: var(--vd-text-secondary); font-size: var(--vd-code-sm-size); font-weight: 400; }
.vd-order-card__actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: var(--vd-space-2); }
.vd-orders-empty { min-height: 260px; }

@media (max-width: 1023px) {
  .vd-orders-page .vd-split--account { grid-template-columns: minmax(0, 1fr); }
  .vd-orders-page .vd-split--account > aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: var(--vd-space-2);
    min-width: 0;
  }
  .vd-orders-page .vd-split--account > aside > .vd-overline { display: none; }
  .vd-orders-page .vd-account-nav--rail {
    flex-direction: row;
    min-width: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .vd-orders-page .vd-account-nav--rail::-webkit-scrollbar { display: none; }
  .vd-orders-page .vd-account-nav--rail .vd-account-nav__item {
    flex: none;
    height: var(--vd-touch-min);
    border-left: 0;
    border-bottom: var(--vd-rail-accent) solid transparent;
    white-space: nowrap;
  }
  .vd-orders-page .vd-account-nav--rail .vd-account-nav__item[aria-current="page"] { border-bottom-color: var(--vd-green-500); }
  .vd-orders-page .vd-split--account > aside > form { width: auto; }
  .vd-orders-page .vd-split--account > aside > form .vd-btn { width: auto; min-height: var(--vd-touch-min); white-space: nowrap; }
}

@media (max-width: 767px) {
  .vd-orders-toolbar { align-items: flex-start; flex-direction: column; gap: var(--vd-space-3); }
  .vd-orders-toolbar .vd-status-tabs { justify-content: flex-start; width: 100%; }
  .vd-orders-toolbar { padding: var(--vd-space-3); }
  .vd-orders-toolbar .vd-status-tabs { flex-wrap: nowrap; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .vd-orders-toolbar .vd-status-tabs::-webkit-scrollbar { display: none; }
  .vd-orders-toolbar .vd-status-tab { flex: none; min-height: var(--vd-touch-min); }
}

@media (max-width: 899px) {
  .vd-orders-page .vd-order-card { grid-template-columns: minmax(176px, 0.26fr) minmax(0, 1fr); }
  .vd-order-card__summary {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-end;
    padding: var(--vd-space-4) var(--vd-space-5);
    border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint);
    border-left: 0;
  }
}

@media (max-width: 599px) {
  .vd-orders-page .vd-order-card { grid-template-columns: minmax(0, 1fr); }
  .vd-order-card__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: var(--vd-space-4);
    border-right: 0;
    border-bottom: var(--vd-border-hairline) solid var(--vd-border-divider-faint);
  }
  .vd-order-card__product { padding: var(--vd-space-4); }
  .vd-order-card__product-name { flex-direction: column; align-items: flex-start; gap: var(--vd-space-1); }
  .vd-order-card__meta { flex-direction: column; gap: var(--vd-space-2); }
  .vd-order-card__summary { align-items: stretch; flex-direction: column; padding: var(--vd-space-4); }
  .vd-order-card__total { align-items: flex-start; text-align: left; }
  .vd-order-card__total dd { justify-content: flex-start; }
  .vd-order-card__actions { align-items: stretch; flex-direction: column; }
  .vd-order-card__actions .vd-btn { width: 100%; min-height: var(--vd-touch-min); }
}

@media (max-width: 479px) {
  .vd-orders-page .vd-split--account > aside { grid-template-columns: minmax(0, 1fr); }
  .vd-orders-page .vd-split--account > aside > form .vd-btn { width: 100%; }
}

/* Account order detail: one compact purchase record with format recovery kept
   beside the item it belongs to. Business state remains server-owned. */
.vd-order-detail-page .vd-split--account { max-width: var(--vd-container-max); margin-inline: auto; }
.vd-order-detail-main { min-width: 0; }
.vd-order-detail__intro { display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-3); }
.vd-order-detail__back { display: inline-flex; align-items: center; gap: var(--vd-space-1); color: var(--vd-green-700); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); font-weight: 500; text-decoration: none; }
.vd-order-detail__back:hover { color: var(--vd-green-600); text-decoration: underline; }
.vd-order-detail__back svg { width: var(--vd-icon-sm); height: var(--vd-icon-sm); flex: none; }
.vd-order-detail__title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--vd-space-4); width: 100%; }
.vd-order-detail__title { min-width: 0; overflow-wrap: anywhere; }
.vd-order-detail__number { font-family: var(--vd-font-mono); letter-spacing: -0.02em; }
.vd-order-detail__intro .vd-identity { max-width: 680px; overflow-wrap: anywhere; font-size: var(--vd-body-sm-size); }

.vd-order-record {
  overflow: hidden;
  background: var(--vd-surface-card);
  border: var(--vd-border-hairline) solid var(--vd-border-divider);
  border-left: var(--vd-alert-rail) solid var(--vd-green-500);
  border-radius: var(--vd-radius-lg);
  box-shadow: var(--vd-shadow-sm);
}
.vd-order-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); background: var(--vd-surface-sunken); border-bottom: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-order-fact { display: flex; flex-direction: column; gap: var(--vd-space-1); min-width: 0; padding: var(--vd-space-4) var(--vd-space-5); }
.vd-order-fact + .vd-order-fact { border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-order-fact dt { color: var(--vd-text-secondary); font-size: var(--vd-overline-size); line-height: var(--vd-overline-line); font-weight: 500; letter-spacing: var(--vd-overline-track); text-transform: uppercase; }
.vd-order-fact dd { color: var(--vd-text-heading); font-size: var(--vd-body-size); line-height: var(--vd-body-line); font-weight: 500; overflow-wrap: anywhere; }

.vd-order-record__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(210px, 0.28fr); align-items: stretch; }
.vd-order-items { display: flex; flex-direction: column; gap: var(--vd-space-4); min-width: 0; padding: var(--vd-space-6); }
.vd-order-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--vd-space-4); }
.vd-order-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--vd-space-5); align-items: center; min-width: 0; padding: var(--vd-space-5); border: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-radius: var(--vd-radius-md); background: var(--vd-surface-card); }
.vd-order-item__identity { display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-2); min-width: 0; }
.vd-order-item__sku { display: inline-flex; align-items: center; min-height: 28px; padding-inline: var(--vd-space-2); border: var(--vd-border-hairline) solid var(--vd-green-200); border-radius: var(--vd-radius-xs); background: var(--vd-green-50); color: var(--vd-green-700); }
.vd-order-item__name { max-width: 62ch; overflow-wrap: anywhere; }
.vd-order-item__meta { display: flex; flex-wrap: wrap; gap: var(--vd-space-2) var(--vd-space-5); margin: 0; }
.vd-order-item__meta > div { display: flex; align-items: baseline; gap: var(--vd-space-2); min-width: 0; }
.vd-order-item__meta dt { color: var(--vd-text-secondary); font-size: var(--vd-caption-size); line-height: var(--vd-caption-line); text-transform: uppercase; letter-spacing: 0.06em; }
.vd-order-item__meta dd { color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); overflow-wrap: anywhere; }
.vd-order-item__access { display: flex; flex-direction: column; align-items: flex-start; gap: var(--vd-space-2); min-width: 0; padding-left: var(--vd-space-5); border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); }
.vd-order-item__actions { display: flex; flex-direction: column; align-items: stretch; gap: var(--vd-space-2); }
.vd-order-format-action { min-width: 184px; min-height: var(--vd-touch-min); justify-content: flex-start; }
.vd-order-format-action svg { width: var(--vd-icon-md); height: var(--vd-icon-md); flex: none; }

.vd-order-totals { display: flex; flex-direction: column; gap: var(--vd-space-2); min-width: 0; padding: var(--vd-space-6); border-left: var(--vd-border-hairline) solid var(--vd-border-divider-faint); background: var(--vd-surface-sunken); }
.vd-order-totals__list { display: flex; flex-direction: column; gap: var(--vd-space-3); margin-top: var(--vd-space-3); }
.vd-order-totals__list > div { display: flex; align-items: baseline; justify-content: space-between; gap: var(--vd-space-4); min-width: 0; color: var(--vd-text-secondary); font-size: var(--vd-body-sm-size); line-height: var(--vd-body-sm-line); }
.vd-order-totals__list dd { flex: none; color: var(--vd-text-heading); font-family: var(--vd-font-mono); }
.vd-order-totals__total { margin-top: var(--vd-space-1); padding-top: var(--vd-space-4); border-top: var(--vd-border-hairline) solid var(--vd-border-divider); color: var(--vd-text-heading) !important; font-weight: 500; }
.vd-order-totals__total dd { font-size: var(--vd-code-lg-size); line-height: var(--vd-code-lg-line); }

@media (max-width: 1023px) {
  .vd-order-detail-page .vd-split--account { grid-template-columns: minmax(0, 1fr); }
  .vd-order-detail-page .vd-split--account > aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: var(--vd-space-2);
    min-width: 0;
  }
  .vd-order-detail-page .vd-split--account > aside > .vd-overline { display: none; }
  .vd-order-detail-page .vd-account-nav--rail { flex-direction: row; min-width: 0; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .vd-order-detail-page .vd-account-nav--rail::-webkit-scrollbar { display: none; }
  .vd-order-detail-page .vd-account-nav--rail .vd-account-nav__item { flex: none; height: var(--vd-touch-min); border-left: 0; border-bottom: var(--vd-rail-accent) solid transparent; white-space: nowrap; }
  .vd-order-detail-page .vd-account-nav--rail .vd-account-nav__item[aria-current="page"] { border-bottom-color: var(--vd-green-500); }
  .vd-order-detail-page .vd-split--account > aside > form { width: auto; }
  .vd-order-detail-page .vd-split--account > aside > form .vd-btn { width: auto; min-height: var(--vd-touch-min); white-space: nowrap; }
}

@media (max-width: 899px) {
  .vd-order-record__body { grid-template-columns: minmax(0, 1fr); }
  .vd-order-totals { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-left: 0; }
  .vd-order-totals__list { max-width: 360px; }
}

@media (max-width: 699px) {
  .vd-order-detail__title-row { align-items: flex-start; }
  .vd-order-item { grid-template-columns: minmax(0, 1fr); }
  .vd-order-item__access { padding-top: var(--vd-space-4); padding-left: 0; border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-left: 0; }
  .vd-order-item__actions { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .vd-order-format-action { flex: 1 1 190px; }
}

@media (max-width: 479px) {
  .vd-order-detail-page .vd-split--account > aside { grid-template-columns: minmax(0, 1fr); }
  .vd-order-detail-page .vd-split--account > aside > form .vd-btn { width: 100%; }
  .vd-order-detail__title-row { flex-direction: column; gap: var(--vd-space-3); }
  .vd-order-detail__title { font-size: var(--vd-h2-size); line-height: var(--vd-h2-line); }
  .vd-order-facts { grid-template-columns: minmax(0, 1fr); }
  .vd-order-fact + .vd-order-fact { border-top: var(--vd-border-hairline) solid var(--vd-border-divider-faint); border-left: 0; }
  .vd-order-items, .vd-order-totals { padding: var(--vd-space-4); }
  .vd-order-section-heading { align-items: flex-start; flex-direction: column; gap: var(--vd-space-2); }
  .vd-order-item { padding: var(--vd-space-4); }
  .vd-order-item__meta { flex-direction: column; gap: var(--vd-space-1); }
  .vd-order-item__actions { flex-direction: column; }
  .vd-order-format-action { width: 100%; min-width: 0; flex: none; }
  .vd-order-totals__list { max-width: none; }
}

/* The indexed legacy reader is rendered by the shared OEMS view. Keep its
   long, image-heavy question list inexpensive without changing that flow. */
.legacy-exam__question {
  content-visibility: auto;
  contain-intrinsic-block-size: auto 620px;
}

.vd-pdf-reader .vd-pdf-question {
  content-visibility: auto;
  contain-intrinsic-block-size: auto 720px;
}

@media print {
  .legacy-exam__question,
  .vd-pdf-reader .vd-pdf-question {
    content-visibility: visible;
    contain-intrinsic-block-size: none;
  }
}
