/* ============================================================
   SULCARA LISTICLE — EDITORIAL LANDING PAGE
   Navy + cream. Serif-led. NYT Magazine / The Atlantic / ProPublica.
   ============================================================ */

:root {
  --navy:        #0E2240;
  --navy-deep:   #081834;
  --cream:       #F6F1E6;
  --cream-soft:  #FBF7EE;
  --ink:         #14181F;
  --ink-soft:    #4A5161;
  --rule:        #D9CFB8;
  --rule-soft:   #E7DFCB;
  --accent:      #B0341E;

  --serif-display: "Fraunces", Georgia, "Times New Roman", serif;
  --serif-body:    "Source Serif 4", Georgia, serif;
  --sans:          "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 680px;
  --pad-x: 24px;
  --pad-x-lg: 32px;

  --space-item: 72px;
  --space-item-lg: 112px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; }

::selection { background: var(--navy); color: var(--cream); }

/* ------------------------------------------------------------
   READING PROGRESS BAR
   ------------------------------------------------------------ */
.progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}
.progress__bar {
  height: 100%;
  width: 0%;
  background: var(--navy);
  transition: width 0.08s linear;
}
@media (max-width: 767px) {
  .progress { display: none; }
}

/* ------------------------------------------------------------
   CONTAINER
   ------------------------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--pad-x-lg); }
}

/* ------------------------------------------------------------
   MASTHEAD
   ------------------------------------------------------------ */
.masthead {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 22px var(--pad-x) 18px;
}
.masthead__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.masthead__rule {
  height: 1px;
  background: var(--rule);
  width: 100%;
  display: none;
}
.masthead__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 10px;
}
.masthead__meta {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}
.masthead__byline {
  color: var(--navy);
}
@media (min-width: 768px) {
  .masthead { padding: 28px 32px 22px; }
  .masthead__title { font-size: 12px; margin-bottom: 14px; }
  .masthead__meta { font-size: 11px; gap: 24px; }
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  padding: 56px 0 0;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}
.eyebrow__sep { color: var(--rule); margin: 0 6px; }

.hero__headline {
  font-family: var(--serif-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(34px, 6.8vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  font-variation-settings: "opsz" 144;
}
.hero__headline-soft {
  display: block;
  font-weight: 700;
  font-style: normal;
  color: var(--accent);
  font-size: clamp(21px, 3.1vw, 30px);
  line-height: 1.22;
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.hero__deck {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 620px;
}
.hero__readtime {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 56px;
}
.hero__readtime .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.hero__image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 0 var(--pad-x);
}
@media (min-width: 768px) {
  .hero { padding-top: 72px; }
  .hero__image { padding: 0 32px; margin-bottom: 40px; }
}

/* ------------------------------------------------------------
   FIGURE (real images)
   ------------------------------------------------------------ */
.figure {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  margin: 0 0 36px;
  background: var(--cream-soft);
}
@media (min-width: 768px) {
  .figure { margin-bottom: 48px; }
}

.figure--hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 3px;
}

.figure--product {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------
   PLACEHOLDER (image stand-ins)
   ------------------------------------------------------------ */
.placeholder {
  width: 100%;
  border: 1.5px dashed var(--rule);
  background:
    repeating-linear-gradient(
      135deg,
      var(--cream-soft) 0,
      var(--cream-soft) 14px,
      var(--cream) 14px,
      var(--cream) 28px
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  border-radius: 2px;
  padding: 24px;
}
.placeholder__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}
.placeholder__ratio {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
  opacity: 0.75;
}

.placeholder--hero      { aspect-ratio: 4 / 3; }
.placeholder--portrait  { aspect-ratio: 4 / 5; max-width: 520px; margin: 0 auto; }
.placeholder--landscape { aspect-ratio: 16 / 10; }
.placeholder--square    { aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; }
.placeholder--cta       { aspect-ratio: 16 / 10; max-width: 720px; margin: 0 auto 32px; }

@media (min-width: 768px) {
  .placeholder--hero { aspect-ratio: 21 / 9; }
}

/* CTA placeholder uses inverted color treatment on navy bg */
.cta .placeholder--cta {
  border-color: rgba(246, 241, 230, 0.35);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 14px,
      rgba(255,255,255,0.06) 14px,
      rgba(255,255,255,0.06) 28px
    );
}
.cta .placeholder__label { color: var(--cream); }
.cta .placeholder__ratio { color: rgba(246, 241, 230, 0.6); }

/* ------------------------------------------------------------
   ITEM (numbered section)
   ------------------------------------------------------------ */
.article { padding: 0 0 80px; }

.item {
  padding: var(--space-item) 0;
}
@media (min-width: 768px) {
  .item { padding: var(--space-item-lg) 0; }
}
.article > .item:first-of-type { padding-top: 32px; }
@media (min-width: 768px) {
  .article > .item:first-of-type { padding-top: 48px; }
}

/* Numeral block */
.numeral {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 24px;
  gap: 4px;
}
.numeral__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.numeral__digits {
  font-family: var(--serif-display);
  font-weight: 300;
  color: var(--navy);
  font-size: clamp(86px, 14vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
}
.numeral__rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--navy);
  margin-top: 18px;
}

.item__headline {
  font-family: var(--serif-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.018em;
  margin: 0 0 36px;
  font-variation-settings: "opsz" 96;
}

.item .placeholder {
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .item .placeholder { margin-bottom: 48px; }
}

/* Prose */
.prose p {
  font-family: var(--serif-body);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.05em;
}
.prose p:last-child { margin-bottom: 0; }

.prose strong { color: var(--navy); font-weight: 600; }
.prose em { font-style: italic; }

.prose--lead {
  font-size: clamp(18.5px, 1.55vw, 21px) !important;
  line-height: 1.55 !important;
  color: var(--ink) !important;
}

.prose--standout {
  font-family: var(--serif-display) !important;
  font-style: italic;
  font-size: clamp(28px, 4vw, 38px) !important;
  line-height: 1.1 !important;
  color: var(--navy) !important;
  margin: 8px 0 28px !important;
  font-weight: 400;
}

/* Drop cap */
.dropcap {
  font-family: var(--serif-display);
  font-weight: 600;
  color: var(--navy);
  float: left;
  font-size: 5.4em;
  line-height: 0.86;
  margin: 0.06em 0.08em 0 -0.04em;
  padding-right: 0.04em;
  font-variation-settings: "opsz" 144;
}

/* Pull quote */
.pullquote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.28;
  color: var(--navy);
  margin: 36px 0 8px;
  padding: 6px 0 6px 24px;
  border-left: 3px solid var(--accent);
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .pullquote {
    margin: 48px -24px 16px;
    padding: 10px 0 10px 28px;
  }
}

/* ------------------------------------------------------------
   ORNAMENTS / RULES BETWEEN ITEMS
   ------------------------------------------------------------ */
.rule {
  max-width: var(--container);
  margin: 0 auto;
  height: 1px;
  background: var(--rule);
  opacity: 0.85;
}
.ornament {
  display: flex;
  justify-content: center;
  padding: 0;
}
.ornament span {
  font-family: var(--serif-display);
  color: var(--navy);
  font-size: 22px;
  letter-spacing: 0.6em;
  opacity: 0.55;
  padding-left: 0.6em;
}

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */
.cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(176, 52, 30, 0.08), transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 56px var(--pad-x) 72px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Soft transition from cream article into navy CTA */
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--rule) 20%, var(--rule) 80%, transparent 100%);
  opacity: 0.4;
}

/* Editorial divider with label */
.cta__topdivider {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 540px;
  margin: 0 auto 48px;
  padding: 0 8px;
}
.cta__topdivider-line {
  flex: 1;
  height: 1px;
  background: rgba(246, 241, 230, 0.3);
}
.cta__topdivider-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.85);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .cta__topdivider { margin-bottom: 64px; }
  .cta__topdivider-label { font-size: 12px; }
}

.cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Product image card — cream-framed on navy for visual pop */
.cta__product {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 40px;
  position: relative;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 60px rgba(176, 52, 30, 0.12));
}
.cta__product img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .cta__product { max-width: 320px; margin-bottom: 48px; }
}

.cta__headline {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.018em;
  color: var(--cream);
  margin: 0 auto 22px;
  font-variation-settings: "opsz" 144;
  max-width: 640px;
}
.cta__sub {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: rgba(246, 241, 230, 0.82);
  margin: 0 auto 40px;
  max-width: 560px;
}

/* Price callout */
.cta__price {
  margin: 0 auto 40px;
  padding: 28px 24px 24px;
  background: rgba(246, 241, 230, 0.04);
  border: 1px solid rgba(246, 241, 230, 0.18);
  border-radius: 3px;
  max-width: 380px;
  text-align: center;
  position: relative;
}
.cta__price::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}
.cta__price-deal {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.cta__price-amount {
  font-family: var(--serif-display);
  font-size: clamp(54px, 9vw, 72px);
  font-weight: 500;
  color: var(--cream);
  line-height: 0.95;
  margin: 0 0 6px;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta__price-unit {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.7);
}
.cta__price-daily {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(246, 241, 230, 0.7);
  margin: 8px 0 0;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 38px;
  border: 2px solid var(--cream);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible {
  background: var(--navy);
  color: var(--cream);
  outline: none;
  transform: translateY(-2px);
}
.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(176, 52, 30, 0.6);
}
.btn:active { transform: translateY(0); }
.btn__arrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  transition: transform 0.2s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

@media (min-width: 768px) {
  .btn { font-size: 16px; padding: 24px 44px; }
}

/* CTA-specific button — bigger, with subtle glow */
.btn--cta {
  font-size: 16px;
  padding: 24px 44px;
  box-shadow:
    0 14px 36px -10px rgba(0, 0, 0, 0.5),
    0 0 0 0 rgba(246, 241, 230, 0.4);
  animation: ctaPulse 2.6s ease-in-out infinite;
  max-width: 100%;
}

/* Narrow mobile: full-width block button so the label can't clip */
@media (max-width: 479px) {
  .btn,
  .btn--cta {
    width: 100%;
    max-width: 380px;
    padding: 20px 18px;
    font-size: 14.5px;
    letter-spacing: 0.08em;
    gap: 10px;
    white-space: normal;
    text-align: center;
    justify-content: center;
    line-height: 1.2;
  }
  .btn__arrow { font-size: 16px; }
}

@media (min-width: 768px) {
  .btn--cta { font-size: 18px; padding: 28px 56px; letter-spacing: 0.16em; }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 14px 36px -10px rgba(0,0,0,0.5), 0 0 0 0 rgba(246,241,230,0.35); }
  50%      { box-shadow: 0 14px 36px -10px rgba(0,0,0,0.5), 0 0 0 14px rgba(246,241,230,0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn--cta { animation: none; }
}

/* Guarantee badge under button */
.cta__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 32px auto 0;
  padding: 16px 22px;
  max-width: 520px;
  background: rgba(246, 241, 230, 0.05);
  border: 1px solid rgba(246, 241, 230, 0.16);
  border-radius: 3px;
  text-align: left;
}
.cta__guarantee-seal {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(176, 52, 30, 0.12);
  color: var(--cream);
  font-family: var(--serif-display);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cta__guarantee-seal small {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 3px;
  color: var(--accent);
}
.cta__guarantee-copy {
  font-family: var(--serif-body);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(246, 241, 230, 0.92);
}
.cta__guarantee-copy strong {
  color: var(--cream);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .cta__guarantee {
    padding: 20px 28px;
    gap: 20px;
  }
  .cta__guarantee-seal { width: 68px; height: 68px; font-size: 24px; }
  .cta__guarantee-copy { font-size: 15px; }
}

/* Trust list — bigger, bolder, checkmarked */
.cta__trust {
  list-style: none;
  margin: 32px auto 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  text-align: left;
}
.cta__trust li {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: rgba(246, 241, 230, 0.95);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cta__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
  box-shadow: 0 0 0 4px rgba(176, 52, 30, 0.14);
}
@media (min-width: 768px) {
  .cta__trust { gap: 16px; }
  .cta__trust li { font-size: 16px; gap: 16px; }
  .cta__check { width: 26px; height: 26px; font-size: 13px; }
}

/* Urgency line */
.cta__urgency {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 14.5px;
  color: rgba(246, 241, 230, 0.9);
  margin: 28px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta__urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(176, 52, 30, 0.18);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

@media (min-width: 768px) {
  .cta { padding: 80px var(--pad-x-lg) 96px; }
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 48px 0 64px;
}
.footer p {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 720px;
}
.footer__legal {
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 11px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 28px !important;
  opacity: 0.7;
}

/* ------------------------------------------------------------
   STICKY MOBILE CTA
   ------------------------------------------------------------ */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--navy);
  color: var(--cream);
  padding: 14px 16px 14px 18px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(8, 24, 52, 0.28);
  transform: translateY(140%);
  transition: transform 0.32s ease;
  z-index: 50;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__btn {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  flex: 1;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}
@media (max-width: 359px) {
  .sticky-cta__btn { font-size: 12px; letter-spacing: 0.08em; }
}
.sticky-cta__close {
  background: transparent;
  border: 1px solid rgba(246, 241, 230, 0.35);
  color: var(--cream);
  font-size: 16px;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.sticky-cta__close:hover { background: rgba(246, 241, 230, 0.12); }

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ------------------------------------------------------------
   ACCESSIBILITY / FOCUS
   ------------------------------------------------------------ */
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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