/* EzyShield — Watchtower theme (light / professional aesthetic) */

:root {
  /* Background layers */
  --bg:        oklch(0.985 0.006 75);
  --bg2:       oklch(0.972 0.008 75);
  --card:      oklch(1 0 0);
  --soft:      oklch(0.962 0.009 75);

  /* Borders */
  --line:      oklch(0.915 0.008 75);
  --line-soft: oklch(0.945 0.008 75);

  /* Text */
  --ink:       oklch(0.27 0.012 60);
  --text:      oklch(0.30 0.012 60);
  --dim:       oklch(0.47 0.012 60);
  --faint:     oklch(0.54 0.012 60); /* WCAG AA: ≥4.5:1 on bg/soft/card for small text */

  /* Accent palette */
  --coral:      oklch(0.66 0.15 36);
  --coral-soft: oklch(0.93 0.045 40);
  --sage:       oklch(0.60 0.10 150);
  --sage-soft:  oklch(0.93 0.04 150);
  --amber:      oklch(0.72 0.12 70);
  --amber-soft: oklch(0.94 0.05 75);
  --blue:       oklch(0.62 0.11 245);
  --green:      oklch(0.60 0.10 150); /* alias → sage, for shared inline styles */

  /* Typography */
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw:   1180px;
  --gutter: 28px;
  --radius: 12px;
}

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--coral-soft); color: var(--coral); }

/* ===== Focus (keyboard) ===== */
:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; border-radius: 4px; }

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--coral);
  border-radius: 7px;
  padding: 9px 14px;
  font-family: var(--mono);
  font-size: 13px;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* ===== Layout helpers ===== */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== Typography atoms ===== */
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}

.section-num {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--coral);
  font-weight: 600;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.08;
  color: var(--ink);
}

/* ===== Shield icon ===== */
.shield {
  width: 16px;
  height: 19px;
  background: var(--coral);
  clip-path: polygon(50% 0, 100% 22%, 100% 60%, 50% 100%, 0 60%, 0 22%);
  flex-shrink: 0;
  display: inline-block;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 18px -8px var(--coral);
}
.btn-primary:hover { background: oklch(0.62 0.16 36); }

.btn-ghost {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

/* ===== Tags / badges ===== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid var(--line);
  color: var(--dim);
  background: var(--card);
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--sage);
  flex-shrink: 0;
}

/* ===== Navigation ===== */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.985 0.006 75 / 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dim);
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.lang-toggle button.active {
  background: var(--coral);
  color: #fff;
}
.lang-toggle button:hover:not(.active) { color: var(--dim); }

/* GitHub button */
.ghub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 5px 10px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
  background: var(--card);
}
.ghub:hover { color: var(--ink); border-color: var(--coral); }

/* Theme switcher link */
.theme-switch {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 6px 10px;
  background: var(--card);
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.theme-switch:hover { color: var(--dim); border-color: var(--coral); }

/* Intermediate widths: tighten the nav so the larger brand wordmark + links
   stay on one line; collapse the verbose GitHub label to just the star. */
@media (max-width: 1240px) {
  .nav-inner { gap: 18px; }
  .nav-links { gap: 16px; }
  .nav-links a { white-space: nowrap; }
  .ghub span:last-child { display: none; }
}

/* Mobile nav + hero stack */
@media (max-width: 768px) {
  .nav-inner { gap: 12px; }
  .nav-links {
    margin-left: 0;
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-width: 0;
    flex: 1;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { white-space: nowrap; }
  .ghub span:last-child { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1   { max-width: none; }
  .hero .sub { font-size: 16px; }
}

/* Hide the secondary nav links on very narrow screens where they'd crowd
   the theme/lang/GitHub controls — footer still provides full navigation. */
@media (max-width: 540px) {
  .nav-links { display: none; }
  /* Keep the header tight on phones so the larger logo never overflows */
  .nav-inner { gap: 10px; }
  .brand { gap: 8px; }
  .brand-icon { height: 34px; width: 34px; }
  .brand-wordmark { font-size: 21px; }
  .theme-switch-label { display: none; }
  .theme-switch { padding: 6px 8px; }
}

/* Smallest phones (iPhone SE ~320px): shrink the wordmark a touch more */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .nav-inner { gap: 8px; }
  .brand { gap: 7px; }
  .brand-icon { height: 30px; width: 30px; }
  .brand-wordmark { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ===== Sections ===== */
.band {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.sec-head h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 12px 0; }
.lead { color: var(--dim); font-size: 17px; margin: 0; }

/* ===== Copy command block ===== */
.cmd {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--mono);
  font-size: 13.5px;
  overflow: hidden;
}
.cmd .prompt { color: var(--coral); flex-shrink: 0; }
.cmd code {
  flex: 1;
  overflow-x: auto;
  white-space: nowrap;
  background: none;
  padding: 0;
  color: var(--ink);
}
.cmd .copy {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 9px;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
}
.cmd .copy:hover { color: var(--coral); border-color: var(--coral); }
.cmd .copy.copied { color: var(--sage); border-color: var(--sage); background: var(--sage-soft); }

/* ===== Brand (header: shield icon + HTML wordmark) ===== */
/* Wordmark mirrors .foot-wordmark so the header matches the footer. */
.brand-icon {
  display: block;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
}
.brand-wordmark {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}
.hero .wrap { position: relative; z-index: 1; }

.gridbg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(oklch(0.78 0.04 60 / 0.5) 1.1px, transparent 1.1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 0%, #000 20%, transparent 70%);
          mask-image: radial-gradient(ellipse 85% 65% at 50% 0%, #000 20%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.7rem);
  margin: 18px 0 22px;
  max-width: 15ch;
}

.hero .sub {
  font-size: 18px;
  color: var(--dim);
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 6px 0 16px;
}

.hero-note {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--faint);
  margin: 0;
}

/* ===== Status card (Watchtower hero visual) ===== */
.statuscard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 30px 70px -34px oklch(0.5 0.04 60 / 0.4);
}

.sc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.sc-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sc-sub {
  font-size: 14px;
  color: var(--dim);
  margin-top: 4px;
}

.sc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sage);
  background: var(--sage-soft);
  border-radius: 99px;
  padding: 7px 13px;
  white-space: nowrap;
}

/* Escalation ladder (sample) */
.sc-escalation {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.esc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--soft);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--sage);
  border-radius: 12px;
  padding: 12px 16px;
}

/* Severity ramps with each strike: sage → amber → coral */
.sc-escalation .esc-row:nth-child(2) { border-left-color: var(--sage); }
.sc-escalation .esc-row:nth-child(3) { border-left-color: var(--amber); }
.sc-escalation .esc-row:nth-child(4) { border-left-color: var(--amber); }
.sc-escalation .esc-row.esc-perm {
  border-left-color: var(--coral);
  background: var(--coral-soft);
  border-color: var(--coral-soft);
}

.esc-strike {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.esc-dur {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dim);
}

.esc-perm .esc-strike,
.esc-perm .esc-dur { color: var(--coral); }

.sc-foot {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--faint);
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}

/* ===== Scroll reveal ===== */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.js-anim .reveal.in { opacity: 1; transform: none; }

/* ===== How it works — steps ===== */
.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px -8px oklch(0.5 0.04 60 / 0.10);
}

.step-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 12px;
}

.step p {
  color: var(--dim);
  font-size: 15px;
  margin: 0;
  line-height: 1.65;
  flex: 1;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--faint);
  font-size: 22px;
  flex-shrink: 0;
  user-select: none;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }
  .step-connector {
    padding: 8px 0;
    align-self: center;
    display: block;
    transform: rotate(90deg);
    font-size: 18px;
  }
}

/* ===== Features grid ===== */
.band.alt {
  background: var(--soft);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px -4px oklch(0.5 0.04 60 / 0.08);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.feat-card:hover {
  border-color: var(--coral);
  box-shadow: 0 6px 24px -8px oklch(0.5 0.04 60 / 0.14);
}

.feat-ic {
  font-size: 24px;
  line-height: 1;
  color: var(--coral);
}
.feat-ic svg {
  display: block;
  width: 26px;
  height: 26px;
}

.feat-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0;
}

.feat-card p {
  color: var(--dim);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
}

/* ===== Integrations grid ===== */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.integ-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: 0 2px 12px -4px oklch(0.5 0.04 60 / 0.06);
  transition: border-color .2s, box-shadow .2s;
}

.integ-col:hover {
  border-color: var(--coral);
  box-shadow: 0 6px 24px -8px oklch(0.5 0.04 60 / 0.10);
}

.integ-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 14px;
}

.integ-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.integ-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dim);
  background: var(--soft);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 8px 11px;
  transition: border-color .15s, color .15s;
}

.integ-chip:hover { border-color: var(--coral); color: var(--ink); }

.integ-sq {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.integ-badge {
  font-family: var(--mono);
  font-size: 9.5px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--faint);
  margin-left: auto;
}

/* "soon" — secondary label on planned integrations */
.integ-soon {
  font-family: var(--mono);
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--faint);
  background: var(--soft);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .integ-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .integ-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .integ-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 40px;
  color: var(--faint);
  font-size: 13px;
  font-family: var(--mono);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 24px;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.foot-logo img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.foot-wordmark {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.foot-brand p {
  margin: 0;
  line-height: 1.65;
  max-width: 280px;
}
.foot-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dim);
  margin: 0 0 14px;
  font-weight: 500;
}
.foot-col a {
  display: block;
  color: var(--faint);
  margin-bottom: 10px;
  transition: color .15s;
}
.foot-col a:hover { color: var(--coral); }
.foot-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ===== Quick start steps ===== */
.qs-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qs-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 12px -4px oklch(0.5 0.04 60 / 0.08);
  transition: border-color .2s, box-shadow .2s;
}

.qs-step:hover {
  border-color: var(--coral);
  box-shadow: 0 6px 24px -8px oklch(0.5 0.04 60 / 0.12);
}

.qs-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--coral);
  padding-top: 3px;
  flex-shrink: 0;
  min-width: 28px;
}

.qs-body { flex: 1; min-width: 0; }

.qs-body h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 8px;
}

.qs-body > p {
  color: var(--dim);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .qs-step { flex-direction: column; gap: 14px; }
}

/* ===== FAQ accordion ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px -4px oklch(0.5 0.04 60 / 0.06);
  transition: border-color .2s, box-shadow .2s;
}

.faq-item.open {
  border-color: var(--coral);
  box-shadow: 0 4px 18px -6px oklch(0.5 0.04 60 / 0.12);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color .15s;
}

.faq-q:hover { color: var(--coral); }
.faq-item.open .faq-q { color: var(--coral); }

.faq-q::after {
  content: '+';
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform .3s ease;
  line-height: 1;
  display: inline-block;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

/* No-JS fallback: answers visible */
.faq-a-inner p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.7;
}

/* JS-enhanced accordion */
.js-faq .faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}

.js-faq .faq-item.open .faq-a { grid-template-rows: 1fr; }

.js-faq .faq-a-inner {
  overflow: hidden;
  min-height: 0;
}

@media (prefers-reduced-motion: reduce) {
  .js-faq .faq-a { transition: none; }
  .faq-q::after { transition: none; }
}
