/* ════════════════════════════════════════════════════════════
   XERGY — static business-card version
   Ported 1:1 from the original Next.js/Tailwind build.
   Design tokens & typography identical to app/globals.css.
   ════════════════════════════════════════════════════════════ */

:root {
  --color-bg: #eef2f7;
  --color-bg-2: #ffffff;
  --color-fg: #0f1d2f;
  --color-muted: #5d6d7e;
  --color-soft: #1B3A5C;
  --color-accent: #2E75B6;
  --color-accent-2: #1B3A5C;
  --color-amber: #e8882b;
  --color-amber-2: #d4a017;
  --color-line: rgba(15, 29, 47, 0.08);
  --color-line-strong: rgba(15, 29, 47, 0.18);

  /* safe-area zones so header + switcher never overlap content */
  --zone-top: 4.5rem;
  --zone-bottom: 7.5rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

/* Mobile: lift the switcher further off the browser chrome */
@media (max-width: 767px) {
  :root { --zone-bottom: 9.5rem; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
}

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(46, 117, 182, 0.22); color: #0f1d2f; }

.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;
}

/* ── hairlines / cards ─────────────────────────────────────── */
.hairline { box-shadow: inset 0 0 0 1px var(--color-line); }
.hairline-strong { box-shadow: inset 0 0 0 1px var(--color-line-strong); }

.card-solid {
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px var(--color-line),
    0 4px 14px -8px rgba(15, 29, 47, 0.18);
}
.card-glassy {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 0 1px var(--color-line),
    0 4px 14px -8px rgba(15,29,47,0.18);
}

/* ── typography ────────────────────────────────────────────── */
.display-xl {
  font-size: clamp(2.25rem, 5.6vw, 4.5rem);
  line-height: 1.02; letter-spacing: -0.035em; font-weight: 600;
  color: var(--color-accent-2);
}
.display-lg {
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  line-height: 1.05; letter-spacing: -0.028em; font-weight: 600;
  color: var(--color-accent-2);
}
.display-md {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.1; letter-spacing: -0.02em; font-weight: 600;
  color: var(--color-accent-2);
  margin-top: 1rem;
}

.eyebrow {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--color-accent); font-weight: 600;
}
.eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }
.eyebrow-line { display: inline-block; height: 1px; width: 1.5rem; background: var(--color-accent); }
.eyebrow-line-lg { width: 1.75rem; }

.grad-text {
  background: linear-gradient(90deg, #0f1d2f 0%, #1B3A5C 55%, #2E75B6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.amber-grad-text {
  background: linear-gradient(90deg, #1B3A5C 0%, #e8882b 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── icons ─────────────────────────────────────────────────── */
.ic {
  width: 1rem; height: 1rem; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.ic-sm { width: 0.875rem; height: 0.875rem; }
.ic-xs { width: 0.75rem; height: 0.75rem; }
.ic-navy { color: var(--color-accent-2); }
.ic-blue { color: var(--color-accent); }
.ic-amber { color: var(--color-amber); }

.amber-dot {
  display: inline-block; height: 0.25rem; width: 0.25rem; border-radius: 999px;
  background: var(--color-amber);
  box-shadow: 0 0 6px rgba(232, 136, 43, 0.7);
}
@keyframes soft-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.9); }
}
.soft-pulse { animation: soft-pulse 3s ease-in-out infinite; }

/* ════ STAGE ════════════════════════════════════════════════ */
.stage {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
  background: var(--color-bg);
}
.stage, .stage * { scrollbar-width: none; }
.stage *::-webkit-scrollbar { display: none; }

/* ── backgrounds ───────────────────────────────────────────── */
.bgs { position: absolute; inset: 0; z-index: 0; }
.bg {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-out;
}
.bg.is-on { opacity: 1; }
.bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* per-slide crops — mobile keeps the hero subject centred */
@media (max-width: 767px) {
  .bg-s1 { object-position: 65% center; }
  .bg-s2 { object-position: 22% center; }
  .bg-s4 { object-position: 30% center; }
}
/* slide 3 artwork is mirrored so the factory sits under the text column */
.bg-s3 { transform: scaleX(-1); }

/* readability wash — mobile: strong top/bottom, middle breathes */
.wash { position: absolute; inset: 0; pointer-events: none; }
.wash-mobile {
  background: linear-gradient(180deg,
    rgba(244,247,251,0.97) 0%, rgba(244,247,251,0.78) 18%,
    rgba(244,247,251,0.22) 50%, rgba(244,247,251,0.62) 82%,
    rgba(244,247,251,0.96) 100%);
}
.wash-desktop { display: none; }
@media (min-width: 768px) {
  .wash-mobile { display: none; }
  .wash-desktop { display: block; }
  .stage[data-focal="right"] .wash-desktop {
    background: linear-gradient(90deg, rgba(244,247,251,0.96) 0%, rgba(244,247,251,0.82) 35%, rgba(244,247,251,0.22) 62%, rgba(244,247,251,0.02) 80%);
  }
  .stage[data-focal="left"] .wash-desktop {
    background: linear-gradient(270deg, rgba(244,247,251,0.96) 0%, rgba(244,247,251,0.82) 35%, rgba(244,247,251,0.22) 62%, rgba(244,247,251,0.02) 80%);
  }
  .stage[data-focal="center"] .wash-desktop {
    background: linear-gradient(180deg, rgba(244,247,251,0.72) 0%, rgba(244,247,251,0.1) 100%);
  }
}

/* ════ TOP ZONE — header ════════════════════════════════════ */
.top {
  position: absolute; left: 0; right: 0; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--zone-top);
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--color-line);
  background: rgba(238, 242, 247, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (min-width: 768px) {
  .top {
    padding: 0 3.5rem;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-sm { gap: 0.625rem; }
.wordmark {
  font-size: 13px; font-weight: 600; letter-spacing: 0.32em;
  color: var(--color-accent-2);
}
.wordmark-sm { font-size: 11px; letter-spacing: 0.35em; }

.logo { display: block; transition: transform 0.7s var(--ease-out); }
.logo-animated { animation: logo-in 0.7s var(--ease-out); }
.logo-animated:hover { transform: rotate(45deg); }
@keyframes logo-in {
  from { opacity: 0; transform: rotate(-20deg) scale(0.7); }
  to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

.header-meta { display: none; align-items: center; gap: 1.25rem; }
.meta-line {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 10px; letter-spacing: 0.28em; color: var(--color-muted);
}
.hline { display: inline-block; height: 1px; width: 1rem; background: var(--color-line-strong); }

.pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  border-radius: 999px; background: rgba(255,255,255,0.85);
  padding: 0.375rem 0.875rem;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--color-accent-2);
  box-shadow: inset 0 0 0 1px var(--color-line-strong);
  transition: background 0.2s, color 0.2s;
}
.pill:hover { background: #fff; }
.pill-cta:hover .amber-dot { transform: scale(1.25); }
.pill-cta .amber-dot { transition: transform 0.2s; }
.pill-back { display: none; font-weight: 500; letter-spacing: 0.14em; color: var(--color-muted); gap: 0.5rem; }
.pill-back:hover { color: var(--color-accent-2); }

@media (min-width: 768px) {
  .header-meta { display: flex; }
  .stage[data-active="3"] .header-meta { display: none; }
  .stage[data-active="3"] .pill-back { display: inline-flex; }
}

/* ════ MIDDLE ZONE — slides ═════════════════════════════════ */
.zone {
  position: absolute; left: 0; right: 0; z-index: 10;
  top: var(--zone-top); bottom: var(--zone-bottom);
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .zone { padding: 0 3.5rem; } }

.zone-inner {
  position: relative;
  margin: 0 auto; height: 100%; width: 100%; max-width: 1400px;
}

.slide {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  overflow-y: auto;
}
.slide.is-active { display: flex; animation: slide-in 0.5s var(--ease-out) both; }
.slide.is-leaving { display: flex; animation: slide-out 0.28s ease-in both; }
.slide > * { width: 100%; }

@keyframes slide-in  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slide-out { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-8px); } }

/* staggered children — replicates motion stagger (0.05s / delay 0.06s) */
.slide.is-active .anim {
  animation: item-in 0.55s var(--ease-out) both;
  animation-delay: calc(0.06s + var(--i, 0) * 0.05s);
}
@keyframes item-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* the gradient rule draws itself in (intro slide) */
.grad-rule {
  height: 1px; width: 9rem; transform-origin: left;
  background: linear-gradient(90deg, var(--color-accent), var(--color-amber), transparent);
}
.slide.is-active .anim-rule { animation: rule-in 0.9s var(--ease-out) 0.4s both; }
@keyframes rule-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* mobile: access slide anchors to the top so the collapsible form can grow down */
@media (max-width: 767px) {
  .slide-access { align-items: flex-start; padding-top: 0.75rem; }
}

/* ── shared slide layout ───────────────────────────────────── */
.grid12 { display: grid; grid-template-columns: repeat(12, 1fr); row-gap: 1.25rem; width: 100%; }

.lead {
  max-width: 34rem;
  font-size: 15px; line-height: 1.625;
  color: var(--color-muted);
}
.lead-sm { font-size: 14px; }
/* mobile: text sits on a soft glass card for readability */
@media (max-width: 767px) {
  .lead {
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.7);
    padding: 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: inset 0 0 0 1px var(--color-line);
  }
}

/* ── slide 1 · intro ───────────────────────────────────────── */
.intro-col { display: flex; flex-direction: column; gap: 1.25rem; max-width: 38rem; }

.cta-row { margin-top: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.625rem 1.25rem;
  font-size: 13px; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.btn .ic { width: 0.875rem; height: 0.875rem; transition: transform 0.2s; }
.btn:hover .ic { transform: translateX(2px); }
.btn-primary { background: var(--color-accent-2); color: #fff; }
.btn-primary:hover { background: var(--color-accent); }
.btn-ghost {
  background: rgba(255,255,255,0.9); color: var(--color-accent-2); font-weight: 500;
  box-shadow: inset 0 0 0 1px var(--color-line-strong);
}
.btn-ghost:hover { background: #fff; }
.btn-ghost:hover .ic { transform: none; }

/* ── slide 2 · principle ───────────────────────────────────── */
.principle-col {
  grid-column: span 12;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 768px) { .principle-col { grid-column: 6 / span 7; } }

.acc-list { margin-top: 0.25rem; display: flex; flex-direction: column; gap: 0.5rem; }

.acc { overflow: hidden; border-radius: 0.75rem; }
.acc-toggle {
  display: flex; width: 100%; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; text-align: left;
  transition: background 0.2s;
}
.acc-toggle:hover { background: rgba(27, 58, 92, 0.03); }
.acc-toggle-sm { gap: 0.75rem; padding: 0.75rem 1rem; }

.acc-num { font-size: 10px; font-weight: 600; letter-spacing: 0.28em; color: var(--color-muted); }
.acc-ic {
  display: flex; height: 2rem; width: 2rem; flex-shrink: 0;
  align-items: center; justify-content: center;
  border-radius: 0.375rem; background: rgba(27, 58, 92, 0.06);
  color: var(--color-accent-2);
}
.acc-ic-sm { height: 1.75rem; width: 1.75rem; }
.acc-title { flex: 1; font-size: 14px; font-weight: 600; color: var(--color-accent-2); }
.acc-title-sm { font-size: 13px; }
.acc-plus {
  display: flex; height: 1.75rem; width: 1.75rem; flex-shrink: 0;
  align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(27, 58, 92, 0.06);
  color: var(--color-accent-2);
  transition: transform 0.25s var(--ease-out);
}
.acc-plus-sm { height: 1.5rem; width: 1.5rem; }
.acc.open .acc-plus { transform: rotate(45deg); }

.acc-body {
  display: grid; grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}
.acc.open .acc-body { grid-template-rows: 1fr; opacity: 1; }
.acc-clip { overflow: hidden; }
.acc-text {
  padding: 0 1.25rem 1rem 4.25rem;
  font-size: 12.5px; line-height: 1.6; color: var(--color-muted);
}
.acc-text-sm { padding: 0 1rem 0.75rem 3.9rem; font-size: 12px; line-height: 1.55; }

/* ── slide 3 · scale ───────────────────────────────────────── */
.scale-col {
  grid-column: span 12;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 768px) { .scale-col { grid-column: span 7; } }

.acc-list-mobile { grid-column: span 12; }
.sector-grid { display: none; }

@media (min-width: 768px) {
  .acc-list-mobile { display: none; }
  .sector-grid {
    grid-column: span 10;
    margin-top: 0.5rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  }
}
.sector-card {
  border-radius: 0.75rem; background: rgba(255,255,255,0.7); padding: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 0 0 1px var(--color-line), 0 4px 14px -8px rgba(15,29,47,0.18);
}
.sector-head { margin-bottom: 0.75rem; display: flex; align-items: center; justify-content: space-between; }
.sector-card h3 { font-size: 14px; font-weight: 600; color: var(--color-accent-2); }
.sector-card p { margin-top: 0.25rem; font-size: 12px; line-height: 1.375; color: var(--color-muted); }

/* ── slide 4 · access ──────────────────────────────────────── */
.access-grid {
  margin: 0 auto; width: 100%; max-width: 980px;
  display: grid; grid-template-columns: 1fr; align-items: center; gap: 0.75rem;
}
@media (min-width: 768px) { .access-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

.access-card {
  width: 100%; border-radius: 1rem; background: #fff; padding: 1rem;
  box-shadow:
    inset 0 0 0 1px var(--color-line-strong),
    0 22px 60px -30px rgba(15, 29, 47, 0.30);
}
@media (min-width: 768px) { .access-card { padding: 1.75rem; } }

.access-brandrow {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 0.75rem;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 0.75rem; text-align: left;
}
@media (min-width: 768px) {
  .access-brandrow { pointer-events: none; cursor: default; padding-bottom: 1rem; }
}
.secure-tag {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 10px; letter-spacing: 0.22em; color: var(--color-muted);
}
.secure-desktop { display: none; }
@media (min-width: 640px) { .secure-desktop { display: inline; } .secure-mobile { display: none; } }
.chevron { transition: transform 0.3s; }
.access-card.open .chevron { transform: rotate(180deg); }
@media (min-width: 768px) { .chevron { display: none; } }

/* collapsible form body — mobile only; desktop always open */
.access-collapse {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows 0.4s ease-out, opacity 0.4s ease-out;
}
.access-card.open .access-collapse { grid-template-rows: 1fr; opacity: 1; }
@media (min-width: 768px) { .access-collapse { grid-template-rows: 1fr !important; opacity: 1 !important; } }
.access-clip { overflow: hidden; }

.access-title { margin-top: 1.25rem; font-size: 15px; font-weight: 600; color: var(--color-accent-2); }
.access-sub { margin-top: 0.25rem; font-size: 12px; line-height: 1.375; color: var(--color-muted); }

.field-stack { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.field { position: relative; display: block; }
.field-ic {
  position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%);
  color: var(--color-muted); pointer-events: none;
}
.field input {
  height: 2.75rem; width: 100%; border-radius: 0.5rem;
  border: 1px solid var(--color-line-strong); background: #fff;
  padding: 0 2.5rem; font-size: 13px; color: var(--color-accent-2);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(46, 117, 182, 0.1);
}
.field input::placeholder { color: var(--color-muted); opacity: 0.8; }

.btn-submit {
  margin-top: 1.25rem; height: 2.75rem; width: 100%;
  border-radius: 0.5rem; background: var(--color-accent-2); color: #fff;
  letter-spacing: 0.025em;
}
.btn-submit:hover { background: var(--color-accent); }

.access-footrow {
  margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--color-line); padding-top: 1rem;
  font-size: 11px; color: var(--color-muted);
}
.access-link { font-weight: 600; color: var(--color-accent); transition: color 0.2s; }
.access-link:hover { color: var(--color-accent-2); }

.nda-note { margin-top: 1rem; font-size: 10px; line-height: 1.625; color: var(--color-muted); }

.access-panel { position: relative; width: 100%; }
.panel-inner {
  position: relative; overflow: hidden; border-radius: 1rem; background: #fff;
  padding: 1.25rem;
  box-shadow:
    inset 0 0 0 1px var(--color-line-strong),
    0 22px 60px -30px rgba(15, 29, 47, 0.25);
}
@media (min-width: 768px) { .panel-inner { padding: 2.5rem; } }
.panel-strip {
  pointer-events: none; position: absolute; left: 0; top: 0;
  height: 100%; width: 3px;
  background: linear-gradient(180deg, var(--color-amber), var(--color-accent), var(--color-accent-2));
}
.panel-lead { margin-top: 1rem; max-width: 32rem; font-size: 13px; line-height: 1.625; color: var(--color-muted); }
.panel-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.panel-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 12.5px; line-height: 1.375; color: var(--color-accent-2); }
.panel-list strong { font-weight: 600; }
.panel-sub { display: block; color: var(--color-muted); }
.panel-ic {
  margin-top: 0.125rem; display: flex; height: 1.75rem; width: 1.75rem; flex-shrink: 0;
  align-items: center; justify-content: center; border-radius: 0.375rem;
}
.panel-ic-amber { background: rgba(232, 136, 43, 0.10); }
.panel-ic-blue  { background: rgba(46, 117, 182, 0.10); }
.panel-ic-navy  { background: rgba(27, 58, 92, 0.10); }

/* ════ BOTTOM ZONE — switcher ═══════════════════════════════ */
.bottom {
  position: absolute; left: 0; right: 0; z-index: 30;
  bottom: max(0px, env(safe-area-inset-bottom, 0px));
  display: flex; height: var(--zone-bottom); align-items: center; justify-content: center;
}

.switcher {
  display: flex; align-items: center; gap: 0.25rem;
  border-radius: 999px; background: rgba(255,255,255,0.9);
  padding: 0.5rem;
  box-shadow:
    inset 0 0 0 1px var(--color-line-strong),
    0 10px 30px -14px rgba(15, 29, 47, 0.25);
}
.sw-arrow {
  display: flex; height: 2.25rem; width: 2.25rem;
  align-items: center; justify-content: center; border-radius: 999px;
  color: rgba(27, 58, 92, 0.7);
  transition: background 0.2s, color 0.2s;
}
.sw-arrow:hover { background: rgba(27, 58, 92, 0.05); color: var(--color-accent-2); }
.sw-arrow .ic { transition: transform 0.2s; }
#swPrev:hover .ic { transform: translateX(-2px); }
#swNext:hover .ic { transform: translateX(2px); }

.sw-div { margin: 0 0.25rem; height: 1.5rem; width: 1px; background: var(--color-line-strong); }

.sw-tabs { position: relative; display: flex; align-items: center; }
.sw-pill {
  position: absolute; top: 0; left: 0; height: 2.25rem;
  border-radius: 999px; background: var(--color-accent-2);
  transition: transform 0.45s cubic-bezier(0.3, 1.3, 0.4, 1), width 0.45s cubic-bezier(0.3, 1.3, 0.4, 1);
  will-change: transform, width;
}
.sw-tab {
  position: relative; z-index: 1;
  display: flex; height: 2.25rem; align-items: center; gap: 0.5rem;
  border-radius: 999px; padding: 0 0.75rem;
  font-size: 11px; letter-spacing: 0.22em; color: var(--color-muted);
  transition: color 0.25s;
}
.sw-tab:hover { color: var(--color-accent-2); }
.sw-num { font-weight: 600; }
.sw-label { display: none; text-transform: uppercase; }
@media (min-width: 768px) { .sw-label { display: inline; } }
.sw-tab.is-active { color: #fff; }
.sw-tab.is-active:hover { color: #fff; }

/* ── reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}
