/* ============================================================
   VETos AU — Marketing site stylesheet
   Built on the SupaHuman / VETos design tokens (_ds).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
:root {
  /* Warm accent family (peach -> pink) for tasteful "pops" against the blue brand */
  --accent: #FF5C8A;
  --accent-2: #FF9E6D;
  --accent-warm: linear-gradient(120deg, #FF9E6D 0%, #FB4C8E 100%);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg-2);
  /* Soft, gently tinted canvas (cool top-right, a warm pink whisper top-left)
     instead of a flat near-white — softer than hard white blocks. */
  background:
    radial-gradient(1100px 620px at 100% -6%, rgba(74,87,251,0.07) 0%, transparent 55%),
    radial-gradient(900px 560px at -8% 4%, rgba(255,92,138,0.05) 0%, transparent 55%),
    linear-gradient(180deg, #FBFBFE 0%, #F5F7FC 100%);
  background-attachment: fixed;
  font-synthesis: weight;
  overflow-x: hidden;
}
/* width/height attributes (added for CLS) act as presentational hints; force
   both axes to auto so a single-axis CSS rule (e.g. height only) keeps the
   image's aspect ratio instead of letting the other attribute leak through.
   The attributes still supply the aspect-ratio that reserves layout space. */
img { max-width: 100%; width: auto; height: auto; display: block; }
button { font-family: inherit; }
a { color: inherit; }
::selection { background: rgba(74,87,251,0.22); }

:root { scroll-padding-top: 88px; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.wrap-narrow { max-width: 920px; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-tight { padding: 56px 0; }

@media (max-width: 760px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .section { padding: 68px 0; }
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-primary);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px; border-radius: 2px;
  background: var(--accent-warm);
  display: inline-block;
}
.eyebrow.on-dark { color: #8FB4FF; }
.eyebrow.on-dark::before { background: var(--accent-warm); }
.eyebrow.center { justify-content: center; }
.eyebrow.no-rule::before { display: none; }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--fg-1); font-weight: 400; letter-spacing: -0.02em; line-height: 1.04; margin: 0; }
.display { font-size: clamp(40px, 6.4vw, 78px); line-height: 0.98; letter-spacing: -0.03em; }
.h-xl { font-size: clamp(32px, 4.6vw, 56px); line-height: 1.02; }
.h-lg { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; }
.h-md { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.1; }
.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--fg-2); }
.muted { color: var(--fg-3); }
.gradient-text {
  background: var(--vetos-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark .lead, .on-dark p { color: rgba(232,236,247,0.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: 15.5px; font-weight: 600; line-height: 1;
  padding: 14px 22px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--vetos-gradient); color: #fff; box-shadow: 0 8px 22px -8px rgba(74,87,251,0.7); }
.btn-primary:hover { box-shadow: 0 12px 30px -8px rgba(74,87,251,0.85); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 14px -8px rgba(74,87,251,0.7); }
.btn-dark { background: var(--vetos-navy-800); color: #fff; }
.btn-dark:hover { background: #060c22; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--fg-1); border-color: var(--border-default); }
.btn-ghost:hover { border-color: var(--vetos-indigo); color: var(--vetos-indigo); background: rgba(74,87,251,0.04); }
.btn-on-dark { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.18); backdrop-filter: blur(6px); }
.btn-on-dark:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.34); }
.btn-white { background: #fff; color: var(--vetos-navy-800); }
.btn-white:hover { background: #eef1f8; transform: translateY(-1px); }
.btn-lg { padding: 17px 28px; font-size: 16.5px; border-radius: 12px; }
.btn-sm { padding: 10px 16px; font-size: 14px; min-height: 44px; }
.btn-block { width: 100%; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(74,87,251,0.08); color: var(--vetos-indigo);
  border: 1px solid rgba(74,87,251,0.16);
}
.pill svg { width: 14px; height: 14px; }
.pill.on-dark { background: rgba(255,255,255,0.06); color: #cdd6f5; border-color: rgba(255,255,255,0.14); }
.pill.success { background: rgba(16,185,129,0.1); color: #0c8f63; border-color: rgba(16,185,129,0.2); }
.pill.ghost { background: transparent; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo .mark { width: 30px; height: 30px; }
.nav-logo-img { height: 30px; width: auto; display: block; }
@media (max-width: 760px) { .nav-logo-img { height: 26px; } }
.nav-logo .wm { font-family: var(--font-heading); font-size: 25px; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.nav-logo .wm .os { background: var(--vetos-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-endorse { display: inline-flex; align-items: center; gap: 8px; padding-left: 13px; margin-left: 1px; border-left: 1px solid rgba(255,255,255,0.22); }
.nav-endorse .by { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.62); letter-spacing: 0.01em; }
.nav-endorse .endorse-img { height: 18px; width: auto; display: block; opacity: 1; }
.nav.light .nav-endorse { border-left-color: rgba(15,26,54,0.18); }
.nav.light .nav-endorse .by { color: var(--muted-100); }
/* Mobile: keep the SupaHuman lockup visible but compact (drop the "by" word);
   only hide on the very narrowest screens where the burger would collide. */
@media (max-width: 760px) {
  .nav-endorse { padding-left: 9px; gap: 6px; }
  .nav-endorse .by { display: none; }
  .nav-endorse .endorse-img { height: 15px; }
}
@media (max-width: 360px) { .nav-endorse { display: none; } }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.78); text-decoration: none;
  padding: 9px 14px; border-radius: 8px; transition: color var(--transition-fast), background var(--transition-fast);
}
/* keep top-level nav labels on one line, but let dropdown descriptions wrap
   (white-space inherits, so nowrap must NOT reach the .dd-* text) */
.nav-links > a, .nav-links > .nav-dd > a { white-space: nowrap; }
.dd-item, .dd-t, .dd-d { white-space: normal; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links a.active { color: #fff; }
/* dropdown */
.nav-dd { position: relative; }
.nav-dd > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-dd .caret { display: inline-flex; transition: transform var(--transition-fast); opacity: 0.7; }
.nav-dd:hover .caret { transform: rotate(180deg); }
.dd-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  opacity: 0; pointer-events: none; transition: opacity var(--transition-base), transform var(--transition-base);
  padding-top: 8px;
}
.nav-dd:hover .dd-panel { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dd-inner { background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 10px; width: 340px; overflow: hidden; }
.dd-item { display: flex !important; gap: 13px; padding: 12px !important; border-radius: 10px; text-decoration: none; }
.dd-item:hover { background: var(--bg-surface-sunken) !important; }
.dd-ic { width: 38px; height: 38px; border-radius: 9px; background: rgba(74,87,251,0.1); color: var(--vetos-indigo); display: grid; place-items: center; flex-shrink: 0; }
/* let the text column shrink so descriptions wrap inside the panel */
.dd-item > span:not(.dd-ic) { min-width: 0; }
.dd-t { display: block; font-weight: 600; font-size: 14.5px; color: var(--fg-1); }
.dd-d { display: block; font-size: 12.5px; color: var(--fg-3); margin-top: 3px; line-height: 1.4; overflow-wrap: anywhere; }

.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-cta .link-quiet { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.82); text-decoration: none; padding: 9px 6px; white-space: nowrap; }
.nav-cta .link-quiet:hover { color: #fff; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; color: #fff; }
.nav-burger svg { width: 26px; height: 26px; }

/* region toggle */
.region-toggle { display: inline-flex; gap: 2px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 3px; }
.region-toggle button { border: 0; background: transparent; color: rgba(255,255,255,0.7); font-family: var(--font-body); font-weight: 600; font-size: 12.5px; letter-spacing: 0.03em; padding: 6px 13px; border-radius: 999px; cursor: pointer; transition: all var(--transition-fast); }
.region-toggle button.on { background: #fff; color: var(--vetos-navy-800); }
.nav.light .region-toggle { background: rgba(15,26,54,0.05); border-color: var(--border-default); }
.nav.light .region-toggle button { color: var(--body-100); }
.nav.light .region-toggle button.on { background: var(--vetos-navy-800); color: #fff; }
#regionToggleM { align-self: flex-start; }

/* scrolled state — solid */
.nav.scrolled { background: rgba(11,18,44,0.97); backdrop-filter: blur(14px); border-bottom-color: rgba(255,255,255,0.08); }

/* light page variant (nav over light hero) */
.nav.light .nav-logo .wm { color: var(--vetos-navy-800); }
.nav.light .nav-links a { color: var(--body-100); }
.nav.light .nav-links a:hover { background: rgba(15,26,54,0.05); color: var(--fg-1); }
.nav.light .nav-cta .link-quiet { color: var(--body-100); }
.nav.light .nav-burger { color: var(--vetos-navy-800); }
.nav.light.scrolled { background: rgba(255,255,255,0.97); border-bottom-color: var(--border-subtle); }

@media (max-width: 980px) {
  .nav-links, .nav-cta .link-quiet { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { margin-left: auto; }
  .nav-cta .btn { display: none; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--vetos-navy-900);
  background-image: var(--vetos-dotgrid); background-size: 38px 38px;
  display: flex; flex-direction: column; padding: 92px 28px 28px;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition-base);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { color: #fff; text-decoration: none; font-family: var(--font-heading); font-size: 26px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a.mm-sub { font-size: 18px; padding: 12px 0 12px 18px; color: rgba(255,255,255,0.7); }
.mobile-menu .mm-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mm-endorse { display: flex; align-items: center; gap: 9px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu .mm-endorse span { font-size: 13px; color: rgba(255,255,255,0.55); }
.mobile-menu .mm-endorse img { height: 18px; width: auto; opacity: 0.95; }

/* ---------- Hero / dark field ---------- */
.field {
  position: relative; color: #fff;
  background-color: #0B1430;
  background-image: var(--vetos-dotgrid), var(--vetos-bg);
  background-size: 38px 38px, auto, auto, auto;
  overflow: hidden;
}
.field::after { /* top glow — feathered so it never leaves a hard edge */
  content: ""; position: absolute; left: -10%; top: -30%; width: 80%; height: 150%;
  background: var(--vetos-glow); pointer-events: none; opacity: 0.9;
  -webkit-mask-image: radial-gradient(60% 55% at 38% 38%, #000 0%, rgba(0,0,0,0.6) 55%, transparent 80%);
  mask-image: radial-gradient(60% 55% at 38% 38%, #000 0%, rgba(0,0,0,0.6) 55%, transparent 80%);
}
.field-light {
  position: relative;
  background:
    radial-gradient(1100px 520px at 8% -10%, #E6F0FF 0%, transparent 55%),
    radial-gradient(900px 520px at 100% 0%, #F2E9FF 0%, transparent 58%),
    linear-gradient(180deg, #FBFBFE 0%, #F6F8FD 100%);
}

/* Soft hairline divider between consecutive LIGHT sections, to break up the
   stacked blocks (never applies after a dark .field section). */
.section + .section, .section + .section-sm, .section + .section-tight, .section + .field-light,
.section-sm + .section, .section-sm + .field-light, .section-tight + .section, .section-tight + .field-light,
.field-light + .section, .field-light + .section-sm, .field-light + .field-light {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent 8%, rgba(15,26,54,0.10) 50%, transparent 92%) 1;
}

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%); border: 1px solid rgba(15,26,54,0.06); border-radius: 16px;
  padding: 30px; box-shadow: 0 1px 2px rgba(15,26,54,0.04), 0 12px 30px -18px rgba(15,26,54,0.16);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.card.hover:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(15,26,54,0.22); border-color: rgba(74,87,251,0.28); }
.card-dark { background: var(--vetos-navy-700); border: 1px solid var(--vetos-navy-500); border-radius: 16px; padding: 30px; color: #fff; }

.icon-tile {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(74,87,251,0.1); color: var(--vetos-indigo); margin-bottom: 20px;
}
.icon-tile svg { width: 24px; height: 24px; }
.icon-tile.dark { background: rgba(255,255,255,0.07); color: #9db4ff; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stat-num { font-family: var(--font-heading); font-size: clamp(36px, 4vw, 52px); line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 14.5px; color: var(--fg-3); margin-top: 8px; }
.on-dark .stat-label { color: rgba(232,236,247,0.6); }

/* ---------- Section header ---------- */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .lead { margin-top: 20px; }

/* ---------- Footer ---------- */
.footer { background: var(--vetos-navy-900); color: #fff; padding: 80px 0 36px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.footer h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: rgba(232,236,247,0.74); text-decoration: none; font-size: 15px; }
.footer ul a:hover { color: #fff; }
.footer-bottom { margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; font-size: 14px; color: rgba(232,236,247,0.55); }
.footer-bottom a { color: rgba(232,236,247,0.66); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer .f-brand .wm { font-family: var(--font-heading); font-size: 26px; color: #fff; letter-spacing: -0.02em; }
.footer .f-brand .wm .os { background: var(--vetos-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer .f-logo { height: 72px; width: auto; }
.footer .f-logo-lockup { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.footer .f-logo-lockup .wm { font-family: var(--font-heading); font-size: 30px; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.footer .f-logo-lockup .wm .os { background: var(--vetos-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer .f-endorse { display: inline-flex; align-items: center; gap: 8px; padding-left: 13px; border-left: 1px solid rgba(255,255,255,0.2); }
.footer .f-endorse .by { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.55); }
.footer .f-endorse img { height: 15px; width: auto; display: block; opacity: 0.92; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer .f-brand { grid-column: 1 / -1; } }

/* ---------- Whitepaper modal ---------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 200; background: rgba(10,18,44,0.55); backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition-base);
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; border-radius: 20px; width: 100%; max-width: 920px; overflow: hidden;
  box-shadow: var(--shadow-xl); display: grid; grid-template-columns: 0.85fr 1fr;
  transform: translateY(14px) scale(0.99); transition: transform var(--transition-slow);
}
.modal-scrim.open .modal { transform: none; }
.modal-aside { background-color: #0B1430; background-image: var(--vetos-dotgrid), var(--vetos-bg); background-size: 32px 32px, auto, auto, auto; color: #fff; padding: 38px 34px; position: relative; overflow: hidden; }
.modal-body { padding: 38px 36px; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; background: rgba(15,26,54,0.06); border: 0; border-radius: 999px; width: 38px; height: 38px; display: grid; place-items: center; cursor: pointer; color: var(--fg-2); z-index: 3; }
.modal-close:hover { background: rgba(15,26,54,0.12); }
@media (max-width: 720px) { .modal { grid-template-columns: 1fr; } .modal-aside { display: none; } }
.modal.modal-sm { grid-template-columns: 1fr; max-width: 460px; }
.sf-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.sf-list li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--fg-1); font-weight: 500; }
.sf-list .sf-ic { width: 30px; height: 30px; border-radius: 8px; background: rgba(74,87,251,0.1); color: var(--vetos-indigo); display: grid; place-items: center; flex-shrink: 0; }

/* ---------- Forms ---------- */
.field-row { display: grid; gap: 16px; }
.field-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .field-row.two { grid-template-columns: 1fr; } }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--fg-1); margin-bottom: 7px; }
.input, .select, .textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--fg-1);
  padding: 13px 15px; border-radius: 10px; border: 1px solid var(--border-default);
  background: #fff; transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.input::placeholder, .textarea::placeholder { color: var(--fg-4); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--vetos-indigo); box-shadow: 0 0 0 3px rgba(74,87,251,0.16); }
.input.err { border-color: var(--pink-100); box-shadow: 0 0 0 3px rgba(251,0,136,0.12); }
.field-msg { font-size: 12.5px; color: var(--pink-100); margin-top: 6px; min-height: 1px; }
.textarea { resize: vertical; min-height: 120px; }
.checkrow { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }
.checkrow input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--vetos-indigo); flex-shrink: 0; }

/* ---------- Browser frame (product shots) ---------- */
.browser { border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.12); }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #11193c; border-bottom: 1px solid rgba(255,255,255,0.06); }
.browser-bar .dot { width: 11px; height: 11px; border-radius: 999px; background: rgba(255,255,255,0.22); }
.browser-bar .addr { margin-left: 14px; font-size: 12.5px; color: rgba(255,255,255,0.4); font-family: var(--font-mono); }
.browser img { width: 100%; display: block; }

/* ---------- Reveal animation ---------- */
/* Base state is VISIBLE — content always shows even if JS/observer fails.
   We only hide as an animation start-point once JS marks the page ready. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.2,0.7,0.2,1), transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }
  html.js-reveal .reveal.in { opacity: 1; transform: none; }
  html.js-reveal .reveal.d1 { transition-delay: 0.08s; }
  html.js-reveal .reveal.d2 { transition-delay: 0.16s; }
  html.js-reveal .reveal.d3 { transition-delay: 0.24s; }
  html.js-reveal .reveal.d4 { transition-delay: 0.32s; }
}

/* ---------- Misc ---------- */
.divider-rule { height: 1px; background: var(--border-subtle); border: 0; margin: 0; }
.kicker-num { font-family: var(--font-mono); font-size: 13px; color: var(--vetos-indigo); letter-spacing: 0.02em; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.flow > * + * { margin-top: 18px; }
.text-center { text-align: center; }
.maxw-560 { max-width: 560px; }
.maxw-640 { max-width: 640px; }

/* ============================================================
   Page-level components (interior pages)
   ============================================================ */

/* Interior hero on navy field */
.page-hero { padding: 158px 0 96px; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { color: #fff; }
.page-hero .lead { margin-top: 22px; max-width: 600px; color: rgba(232,236,247,0.8); }
.page-hero .hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* Split feature row (alternating) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.rev .split-media { order: 0; } }
.split-media .browser, .split-media .panel { width: 100%; }
.panel { background: #fff; border: 1px solid var(--border-subtle); border-radius: 16px; box-shadow: var(--shadow-md); padding: 28px; }

/* Numbered problem/answer rows */
.qa { border-top: 1px solid var(--border-subtle); padding: 40px 0; display: grid; grid-template-columns: 64px 1fr; gap: 28px; }
.qa:last-child { border-bottom: 1px solid var(--border-subtle); }
.qa .qn { font-family: var(--font-heading); font-size: 30px; color: var(--vetos-indigo); letter-spacing: -0.02em; }
.qa .quote { font-family: var(--font-heading); font-size: clamp(22px,2.4vw,30px); line-height: 1.15; color: var(--fg-1); letter-spacing: -0.02em; }
.qa .ans { margin-top: 16px; font-size: 17px; line-height: 1.6; color: var(--fg-2); max-width: 720px; }
.qa .metric { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 600; color: var(--vetos-indigo); font-size: 15px; }
@media (max-width: 640px) { .qa { grid-template-columns: 1fr; gap: 14px; } }

/* Logo marquee */
.logos { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: center; }
.logo-chip { height: 38px; padding: 0 22px; border-radius: 10px; background: var(--bg-surface); border: 1px solid var(--border-subtle); display: flex; align-items: center; gap: 10px; color: var(--fg-3); font-family: var(--font-heading); font-size: 17px; letter-spacing: -0.01em; }
.logo-chip .dot { width: 9px; height: 9px; border-radius: 999px; background: var(--vetos-indigo); opacity: 0.55; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
@media (max-width: 940px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-card { background: #fff; border: 1px solid var(--border-subtle); border-radius: 18px; padding: 34px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); position: relative; }
.price-card.featured { border-color: transparent; box-shadow: 0 24px 60px -22px rgba(74,87,251,0.5); background: var(--vetos-navy-800); color: #fff; }
.price-card.featured h3, .price-card.featured .price-amt { color: #fff; }
.price-card .plan-name { font-family: var(--font-heading); font-size: 22px; letter-spacing: -0.01em; }
.price-card .plan-desc { font-size: 14px; color: var(--fg-3); margin: 8px 0 22px; min-height: 40px; }
.price-card.featured .plan-desc { color: rgba(232,236,247,0.7); }
.price-amt { font-family: var(--font-heading); font-size: 46px; letter-spacing: -0.03em; line-height: 1; }
.price-amt .per { font-family: var(--font-body); font-size: 15px; color: var(--fg-3); font-weight: 500; }
.price-card.featured .price-amt .per { color: rgba(232,236,247,0.6); }
.price-feats { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 13px; }
.price-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.45; }
.price-feats .pc { width: 20px; height: 20px; border-radius: 6px; background: rgba(16,185,129,0.12); color: #0c8f63; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.price-card.featured .price-feats .pc { background: rgba(255,255,255,0.12); color: #7ee5bb; }
.price-feats .pc svg { width: 13px; height: 13px; }
.price-card .btn { margin-top: auto; }
.featured-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--vetos-gradient); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px; letter-spacing: 0.02em; }

.billing-toggle { display: inline-flex; align-items: center; gap: 4px; background: var(--bg-surface-sunken); border-radius: 999px; padding: 5px; margin-top: 10px; }
.billing-toggle button { border: 0; background: transparent; padding: 9px 18px; border-radius: 999px; font-family: var(--font-body); font-size: 14.5px; font-weight: 600; color: var(--fg-3); cursor: pointer; transition: all var(--transition-fast); }
.billing-toggle button.on { background: #fff; color: var(--fg-1); box-shadow: var(--shadow-sm); }
.save-badge { font-size: 12px; color: #0c8f63; font-weight: 600; margin-left: 7px; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-heading); font-size: 20px; letter-spacing: -0.01em; color: var(--fg-1); }
.faq-q .fq-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 999px; background: var(--bg-surface-sunken); display: grid; place-items: center; transition: transform var(--transition-base); color: var(--fg-2); }
.faq-item.open .fq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-a p { padding: 0 0 24px; margin: 0; color: var(--fg-2); font-size: 16px; line-height: 1.6; max-width: 760px; }

/* Stepper (signup) */
.stepper { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.stepper .st { display: flex; align-items: center; gap: 11px; color: var(--fg-3); font-size: 14px; font-weight: 500; }
.stepper .st .sc { width: 30px; height: 30px; border-radius: 999px; border: 1.5px solid var(--border-default); display: grid; place-items: center; font-size: 13px; font-weight: 600; flex-shrink: 0; transition: all var(--transition-base); }
.stepper .st.active .sc { background: var(--vetos-gradient); border-color: transparent; color: #fff; }
.stepper .st.active { color: var(--fg-1); }
.stepper .st.done .sc { background: #0c8f63; border-color: transparent; color: #fff; }
.stepper .st.done { color: var(--fg-1); }
.stepper .ln { flex: 1; height: 1.5px; background: var(--border-default); margin: 0 14px; min-width: 16px; }
.stepper .ln.done { background: #0c8f63; }
@media (max-width: 680px) { .stepper .st span.lbl { display: none; } }

.plan-pick { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 760px) { .plan-pick { grid-template-columns: 1fr; } }
.plan-opt { border: 1.5px solid var(--border-default); border-radius: 14px; padding: 20px; cursor: pointer; transition: all var(--transition-base); position: relative; }
.plan-opt:hover { border-color: var(--vetos-indigo); }
.plan-opt.sel { border-color: var(--vetos-indigo); box-shadow: 0 0 0 3px rgba(74,87,251,0.14); background: rgba(74,87,251,0.03); }
.plan-opt .po-name { font-family: var(--font-heading); font-size: 19px; }
.plan-opt .po-price { font-family: var(--font-heading); font-size: 26px; margin: 8px 0 2px; letter-spacing: -0.02em; }
.plan-opt .po-price .per { font-family: var(--font-body); font-size: 13px; color: var(--fg-3); font-weight: 500; }
.plan-opt .po-desc { font-size: 13px; color: var(--fg-3); line-height: 1.45; }

/* Testimonial */
.testi { background: var(--vetos-navy-700); border: 1px solid var(--vetos-navy-500); border-radius: 18px; padding: 40px; color: #fff; }
.testi .quote-mark { color: var(--vetos-indigo); margin-bottom: 18px; }
.testi blockquote { font-family: var(--font-heading); font-size: clamp(20px,2.2vw,27px); line-height: 1.32; letter-spacing: -0.015em; margin: 0; color: #fff; }
.testi .by { margin-top: 24px; display: flex; align-items: center; gap: 13px; }
.testi .by .av { width: 44px; height: 44px; border-radius: 999px; background: var(--vetos-gradient); display: grid; place-items: center; font-family: var(--font-heading); font-size: 17px; }
.testi .by .nm { font-weight: 600; font-size: 15px; }
.testi .by .rl { font-size: 13px; color: rgba(232,236,247,0.6); }

/* Two-up CTA buttons on dark */
.note-disclaimer { font-size: 12.5px; color: var(--fg-4); margin-top: 14px; }

/* contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-method { display: flex; gap: 15px; align-items: flex-start; padding: 18px 0; }
.contact-method .cm-ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(74,87,251,0.1); color: var(--vetos-indigo); display: grid; place-items: center; flex-shrink: 0; }

/* Industry partner logos */
.partner-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; justify-content: center; }
.partner-tile { flex: 1 1 200px; max-width: 250px; min-height: 96px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; box-shadow: var(--shadow-xs); display: grid; place-items: center; padding: 22px 28px; transition: box-shadow var(--transition-base), transform var(--transition-base); }
.partner-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.partner-tile img { max-height: 46px; max-width: 100%; width: auto; object-fit: contain; }
.partner-tile.dark { background: var(--vetos-navy-800); border-color: var(--vetos-navy-500); }
.logos-nz { display: none; }
html[data-region="nz"] .logos-au { display: none; }
html[data-region="nz"] .logos-nz { display: flex; }

/* logo carousel */
.marquee { overflow: hidden; margin-top: 30px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee.logos-nz { display: none; }
html[data-region="nz"] .marquee.logos-au { display: none; }
html[data-region="nz"] .marquee.logos-nz { display: block; }
.marquee-track { display: flex; align-items: center; gap: 18px; width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.m-item { flex: 0 0 auto; height: 88px; min-width: 190px; padding: 0 28px; background: #fff; border: 1px solid var(--border-subtle); border-radius: 14px; box-shadow: var(--shadow-xs); display: grid; place-items: center; }
.m-item.dark { background: var(--vetos-navy-800); border-color: var(--vetos-navy-500); }
.m-item img { max-height: 44px; max-width: 150px; width: auto; object-fit: contain; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
@media (max-width: 640px) { .partner-row { gap: 14px; } .partner-tile { flex: 1 1 42%; min-height: 80px; padding: 16px; } .partner-tile img { max-height: 36px; } }

/* ---- Region-gated content ---- */
/* AU-only content (e.g. the whitepaper — no NZ edition yet) disappears on NZ. */
[data-region="nz"] .au-only { display: none !important; }
/* NZ-only content is hidden by default (AU baseline) and revealed on NZ. */
.nz-only { display: none; }
[data-region="nz"] .nz-only { display: block; }

/* ---- YouTube click-to-play facade (shared; wired by site.js) ---- */
.video-frame { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-xl); background-color: #0B1430; background-image: var(--vetos-dotgrid), var(--vetos-bg); background-size: 26px 26px, auto, auto, auto; border: 1px solid var(--vetos-navy-500); cursor: pointer; }
.video-frame::before { content: ""; display: block; padding-top: 56.25%; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame .yt-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-frame .yt-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,20,48,.15), rgba(11,20,48,.5)); }
.video-frame .yt-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 88px; height: 88px; border-radius: 999px; border: 0; cursor: pointer; background: var(--vetos-gradient); display: grid; place-items: center; box-shadow: 0 16px 44px -8px rgba(74,87,251,.85); transition: transform var(--transition-base); z-index: 2; }
.video-frame:hover .yt-play { transform: translate(-50%,-50%) scale(1.07); }
.video-frame .yt-play svg { width: 34px; height: 34px; fill: #fff; margin-left: 5px; }
.video-frame.playing .yt-thumb, .video-frame.playing .yt-shade, .video-frame.playing .yt-play { display: none; }
.video-frame:focus-visible { outline: 3px solid var(--vetos-indigo); outline-offset: 3px; }
/* Fullscreen toggle — injected once a film is playing (see initFilmFacades). */
.film-fs { position: absolute; right: 14px; bottom: 14px; z-index: 3; width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border-radius: 10px; border: 1px solid rgba(248,249,252,.22); background: rgba(11,20,48,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; cursor: pointer; opacity: 0; transform: translateY(4px); transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-base); }
.video-frame.playing .film-fs { opacity: .62; transform: none; }
.video-frame.playing:hover .film-fs, .film-fs:focus-visible { opacity: 1; }
.film-fs:hover { background: rgba(11,20,48,.85); }
.film-fs svg { width: 20px; height: 20px; }
.film-fs .ic-compress { display: none; }
.video-frame:fullscreen { border-radius: 0; border: 0; background: #000; }
.video-frame:fullscreen .film-fs { right: 22px; bottom: 22px; }
.video-frame:fullscreen .film-fs .ic-expand { display: none; }
.video-frame:fullscreen .film-fs .ic-compress { display: block; }

/* ---- Legal pages (/legals/*, shared with /privacy) ---- */
.legal { max-width: 800px; margin: 0 auto; }
.legal .updated { font-size: 13.5px; color: var(--fg-3); margin: 0 0 28px; }
.legal h2 { font-size: 22px; margin: 46px 0 6px; scroll-margin-top: 96px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 17px; margin: 24px 0 6px; color: var(--fg-1); }
.legal p { color: var(--fg-2); line-height: 1.72; margin: 0 0 13px; font-size: 15.5px; }
.legal strong { color: var(--fg-1); font-weight: 600; }
.legal a { color: var(--vetos-indigo); font-weight: 600; word-break: break-word; }
.legal ul.lettered, .legal ul.bul { padding-left: 20px; margin: 0 0 14px; color: var(--fg-2); line-height: 1.7; font-size: 15.5px; }
.legal ul.lettered { list-style: none; padding-left: 8px; }
.legal ul.lettered > li, .legal ul.bul > li { margin-bottom: 8px; }
.legal .toc { margin: 0 0 38px; padding: 20px 24px; border: 1px solid var(--border-subtle); border-radius: 14px; background: var(--bg-surface-sunken); }
.legal .toc h2 { font-size: 14px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--vetos-indigo); margin: 0 0 12px; }
.legal .toc ol { list-style: none; margin: 0; padding-left: 0; columns: 2; column-gap: 28px; font-size: 14.5px; line-height: 1.9; }
.legal .toc a { font-weight: 500; color: var(--fg-2); }
.legal .toc a:hover { color: var(--vetos-indigo); }
@media (max-width: 560px) { .legal .toc ol { columns: 1; } }
.legal .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px 0; }
.legal table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--border-subtle); vertical-align: top; }
.legal th { background: var(--bg-surface-sunken); font-weight: 600; color: var(--fg-1); }
@media (max-width: 600px) { .legal table { min-width: 520px; } }
.legal .sig { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border-subtle); font-size: 13.5px; color: var(--fg-3); }
.legal .tbc { color: var(--vetos-indigo); background: var(--bg-surface-sunken); border: 1px dashed var(--vetos-indigo); border-radius: 4px; padding: 0 5px; font-style: italic; font-weight: 600; }
.legals-list { display: grid; gap: 12px; margin: 8px 0; }
.legals-item { display: block; padding: 18px 20px; border: 1px solid var(--border-subtle); border-radius: 14px; text-decoration: none; transition: border-color var(--transition-base), background var(--transition-base); }
.legals-item:hover { border-color: var(--vetos-indigo); background: var(--bg-surface-sunken); }
.legals-item .li-t { display: block; font-family: var(--font-heading); font-size: 17px; color: var(--fg-1); font-weight: 600; }
.legals-item .li-d { display: block; margin-top: 4px; font-size: 14px; color: var(--fg-3); font-weight: 400; line-height: 1.5; }

/* ---- NZ path chooser (VETos vs AI Studio) ---- */
.path-chooser { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 24px; background: rgba(5,9,22,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); animation: pcFade .3s ease; }
@keyframes pcFade { from { opacity: 0; } to { opacity: 1; } }
.path-chooser .pc-card { position: relative; width: min(940px, 100%); background: var(--vetos-navy-700, #0F1A36); border: 1px solid rgba(168,213,255,.16); border-radius: 22px; box-shadow: 0 50px 130px -40px rgba(0,0,0,.8); padding: 44px 40px 34px; max-height: 92vh; overflow: auto; }
.path-chooser .pc-close { position: absolute; top: 16px; right: 18px; background: none; border: 0; color: rgba(232,236,247,.6); cursor: pointer; font-size: 12.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border-radius: 8px; }
.path-chooser .pc-close:hover { color: #fff; }
.path-chooser .pc-close svg { width: 14px; height: 14px; }
.path-chooser .pc-head { text-align: center; margin-bottom: 28px; }
.path-chooser .pc-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #9db4ff; margin-bottom: 12px; }
.path-chooser h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); line-height: 1.05; letter-spacing: -.02em; margin: 0; }
.path-chooser .pc-sub { color: rgba(232,236,247,.74); margin: 14px auto 0; max-width: 54ch; font-size: 16px; line-height: 1.6; }
.path-chooser .pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 680px) { .path-chooser .pc-grid { grid-template-columns: 1fr; } .path-chooser .pc-card { padding: 40px 22px 26px; } }
.path-chooser .pc-opt { display: flex; flex-direction: column; text-align: left; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 26px 24px; cursor: pointer; color: #fff; text-decoration: none; transition: transform .18s, border-color .18s, background .18s; }
.path-chooser .pc-opt:hover { transform: translateY(-3px); border-color: rgba(157,180,255,.6); background: rgba(255,255,255,.07); }
.path-chooser .pc-opt:focus-visible { outline: 3px solid #9db4ff; outline-offset: 3px; }
.path-chooser .pc-badge { font-family: var(--font-heading); font-size: 26px; letter-spacing: -.02em; line-height: 1; margin-bottom: 8px; }
.path-chooser .pc-badge .os { background: var(--vetos-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.path-chooser .pc-tag { font-size: 14px; font-weight: 600; color: #cdd7f5; margin-bottom: 12px; line-height: 1.35; }
.path-chooser .pc-desc { font-size: 14px; color: rgba(232,236,247,.7); line-height: 1.6; flex: 1; }
.path-chooser .pc-go { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; font-size: 14.5px; color: #9db4ff; }
.path-chooser .pc-go svg { width: 16px; height: 16px; }
.path-chooser .pc-foot { text-align: center; margin-top: 22px; font-size: 13px; color: rgba(232,236,247,.55); }
@media (prefers-reduced-motion: reduce) { .path-chooser { animation: none; } .path-chooser .pc-opt:hover { transform: none; } }

/* Cross-brand hand-off overlay (VETos → AI Studio). Mirrors the apex chooser transition. */
.sh-xfer { position: fixed; inset: 0; z-index: 100000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 24px; color: #fff; background: linear-gradient(155deg, #0a1024 0%, #141e42 100%); animation: shXferIn .35s ease both; }
.sh-xfer__mark { font-family: var(--font-heading, "IBM Plex Sans", system-ui, sans-serif); font-weight: 600; font-size: clamp(30px, 5vw, 48px); letter-spacing: -0.02em; }
.sh-xfer__msg { font-size: 15px; letter-spacing: .02em; color: rgba(255,255,255,.7); }
.sh-xfer__bar { width: 220px; max-width: 60vw; height: 3px; border-radius: 3px; background: rgba(255,255,255,.14); overflow: hidden; margin-top: 6px; }
.sh-xfer__bar span { display: block; height: 100%; width: 38%; border-radius: 3px; background: linear-gradient(90deg, #1890FF, #7423F9); animation: shXferSweep .8s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes shXferIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shXferSweep { from { transform: translateX(-120%); } to { transform: translateX(385%); } }
@media (prefers-reduced-motion: reduce) { .sh-xfer, .sh-xfer__bar span { animation: none; } }
