/* Long-form article layout: neon sunset / Leonida palette.
   Scoped to body.article-page so it never leaks into the rest of the site. */

body.article-page {
  --ink: #f3f0ff;
  --ink-soft: #b8b2d6;
  --ink-faint: #7d769c;
  --night: #07060f;
  --night-2: #0d0a1c;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);

  --pink: #ff2e93;
  --magenta: #e0219c;
  --orange: #ff8a3d;
  --gold: #ffd166;
  --cyan: #22d3ee;
  --violet: #8b5cf6;

  --flare: linear-gradient(100deg, #ff2e93 0%, #ff5c7a 32%, #ff8a3d 66%, #ffd166 100%);
  --chill: linear-gradient(120deg, #22d3ee 0%, #8b5cf6 100%);

  --shell: min(1180px, 100% - 2.5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --display: "Segoe UI Variable Display", "Segoe UI", Inter, system-ui, -apple-system,
    "Helvetica Neue", Arial, sans-serif;
  --text: "Segoe UI", Inter, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  font-family: var(--text);
  color: var(--ink);
  background: var(--night);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Base template ships a 44rem serif column. The article takes the whole page.
   Direct children only, so nested <footer>/<header> inside blocks keep their own rules. */
body.article-page > main,
body.article-page > header,
body.article-page > footer {
  max-width: none;
  margin: 0;
  padding: 0;
}

body.article-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(90rem 45rem at 80% -10%, rgba(255, 46, 147, 0.16), transparent 60%),
    radial-gradient(70rem 40rem at 5% 8%, rgba(139, 92, 246, 0.14), transparent 62%),
    radial-gradient(60rem 40rem at 50% 110%, rgba(34, 211, 238, 0.1), transparent 60%);
}

body.article-page > * {
  position: relative;
  z-index: 1;
}

.article-shell {
  width: var(--shell);
  max-width: 100%;
  /* The hero is a flex container: without this the column refuses to shrink
     below its min-content width and pushes the whole page sideways. */
  min-width: 0;
  margin-inline: auto;
}

/* ---------- site header ---------- */

body.article-page > header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem max(1.25rem, calc((100% - var(--shell)) / 2));
  background: rgba(7, 6, 15, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

body.article-page > header > a:first-child {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  background: var(--flare);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.article-page > header nav {
  margin-left: auto;
  gap: 1.25rem;
  font-size: 0.85rem;
}

body.article-page > header nav a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.18s ease;
}

body.article-page > header nav a:hover {
  color: var(--ink);
}

/* ---------- reading progress ---------- */

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}

.reading-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--flare);
  box-shadow: 0 0 14px rgba(255, 46, 147, 0.7);
  transition: width 0.08s linear;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 3.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.15) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 6, 15, 0.86) 0%, rgba(7, 6, 15, 0.28) 32%, rgba(7, 6, 15, 0.94) 88%),
    linear-gradient(90deg, rgba(7, 6, 15, 0.8) 0%, transparent 55%);
}

.hero-grid {
  position: absolute;
  left: 50%;
  bottom: -12%;
  width: 200%;
  height: 46%;
  z-index: -1;
  transform: translateX(-50%) perspective(320px) rotateX(62deg);
  background-image:
    linear-gradient(rgba(255, 46, 147, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.28) 1px, transparent 1px);
  background-size: 62px 46px, 62px 46px;
  mask-image: linear-gradient(to top, #000 5%, transparent 78%);
  opacity: 0.55;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 46, 147, 0.45);
  background: rgba(255, 46, 147, 0.12);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffc7e2;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: blip 2s infinite;
}

@keyframes blip {
  50% {
    opacity: 0.25;
  }
}

.hero-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.94;
  font-size: clamp(2.6rem, 7.4vw, 6.2rem);
  text-transform: uppercase;
  margin: 1.2rem 0 0;
  max-width: 16ch;
  overflow-wrap: break-word;
  background: var(--flare);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 60px rgba(255, 46, 147, 0.22);
}

.hero-eyebrow {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
  max-width: 46ch;
}

.hero-intro {
  margin-top: 1rem;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.hero-intro p {
  margin: 0 0 0.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.btn-flare {
  border-color: transparent;
  background: var(--flare);
  color: #1a0512;
  box-shadow: 0 12px 34px rgba(255, 46, 147, 0.34);
}

.btn-flare:hover {
  box-shadow: 0 18px 48px rgba(255, 46, 147, 0.46);
}

/* ---------- countdown ---------- */

.countdown {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.7rem;
}

.countdown-label {
  width: 100%;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.2rem;
}

.count-unit {
  flex: 0 1 auto;
  min-width: 5.4rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(13, 10, 28, 0.72);
  backdrop-filter: blur(8px);
  text-align: center;
}

.count-unit b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: var(--flare);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.count-unit span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.count-done {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- table of contents ---------- */

.toc {
  position: sticky;
  top: 3.4rem;
  z-index: 30;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 6, 15, 0.82);
  backdrop-filter: blur(14px);
}

.toc-inner {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.6rem 0;
  scrollbar-width: none;
}

.toc-inner::-webkit-scrollbar {
  display: none;
}

.toc a {
  flex: 0 0 auto;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.toc a:hover {
  color: var(--ink);
}

.toc a.active {
  color: #ffd6e9;
  background: rgba(255, 46, 147, 0.14);
  border-color: rgba(255, 46, 147, 0.4);
}

/* ---------- body flow ---------- */

.article-body {
  width: var(--shell);
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.article-body > * {
  margin: 0;
}

.prose {
  max-width: 68ch;
  font-size: 1.06rem;
  color: #ded9f2;
}

.prose p {
  margin: 0 0 1.05rem;
}

.prose a {
  color: #ff8fc4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong {
  color: #fff;
}

.prose h2,
.prose h3 {
  font-family: var(--display);
  letter-spacing: -0.01em;
  color: #fff;
  margin: 1.8rem 0 0.7rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.05rem;
  padding-left: 1.15rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

/* ---------- section heading ---------- */

.section-heading {
  scroll-margin-top: 7rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: end;
  gap: 1rem 3.5rem;
}

.section-heading .eyebrow {
  display: block;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.7rem;
}

.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.06;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 0.9rem;
  border-radius: 3px;
  background: var(--flare);
}

.section-heading .subtitle {
  margin: 0;
  padding-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 44ch;
}

@media (max-width: 900px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .section-heading .subtitle {
    padding-bottom: 0;
  }
}

/* ---------- card shell ---------- */

.panel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), rgba(255, 255, 255, 0.015));
  padding: 1.4rem;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--flare);
  opacity: 0.85;
}

/* ---------- stat grid ---------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.stat {
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 46, 147, 0.1), rgba(255, 255, 255, 0.02) 55%);
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
}

.stat span {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
}

.stat em {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* ---------- feature grid ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.feature {
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 46, 147, 0.42);
  background: var(--surface-2);
}

.feature .tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.1);
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ceaf7;
}

.feature h3 {
  font-family: var(--display);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: #fff;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ---------- timeline ---------- */

.timeline {
  position: relative;
  padding-left: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--pink), var(--violet), rgba(34, 211, 238, 0.25));
}

.timeline li {
  position: relative;
  list-style: none;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background: var(--night);
  box-shadow: 0 0 14px rgba(255, 46, 147, 0.6);
}

.timeline li.next::before {
  border-color: var(--cyan);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.6);
  animation: blip 1.8s infinite;
}

.timeline .when {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}

.timeline li.next .when {
  color: var(--cyan);
}

.timeline h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin: 0.3rem 0 0.35rem;
  color: #fff;
}

.timeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  max-width: 62ch;
}

/* ---------- video facade ---------- */

.video {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #05040c;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  display: block;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  background: #05040c;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.video-frame:hover img {
  transform: scale(1.04);
  opacity: 0.78;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 0.9rem;
  align-content: center;
  pointer-events: none;
}

.video-play span {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--flare);
  box-shadow: 0 16px 44px rgba(255, 46, 147, 0.5);
  transition: transform 0.2s ease;
}

.video-frame:hover .video-play span {
  transform: scale(1.08);
}

.video-play svg {
  width: 30px;
  height: 30px;
  fill: #1a0512;
  margin-left: 4px;
}

.video-play b {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.video figcaption {
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.gallery figcaption em {
  display: block;
  margin-top: 0.25rem;
  font-style: normal;
  font-size: 0.76rem;
  color: var(--ink-faint);
}

.gallery-note {
  font-size: 0.86rem;
  color: var(--ink-faint);
  margin-bottom: 0.9rem;
}

.media-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.media-figure img {
  width: 100%;
  display: block;
}

.media-figure figcaption {
  padding: 0.8rem 1.1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: var(--surface);
}

/* ---------- spec sheet ---------- */

.spec {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}

.spec table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.spec caption {
  text-align: left;
  padding: 1rem 1.2rem;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(255, 46, 147, 0.08);
}

.spec th,
.spec td {
  padding: 0.85rem 1.2rem;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec th {
  width: 38%;
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.spec td {
  color: #fff;
}

.spec tr:hover td,
.spec tr:hover th {
  background: rgba(255, 46, 147, 0.05);
}

/* ---------- pull quote ---------- */

.pull-quote {
  margin: 0;
  padding: 1.8rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 4px solid var(--pink);
  background: linear-gradient(120deg, rgba(255, 46, 147, 0.12), transparent 65%);
  max-width: 74ch;
}

.pull-quote p::before {
  content: "“";
  color: var(--pink);
  margin-right: 0.1em;
}

.pull-quote p::after {
  content: "”";
  color: var(--pink);
}

.pull-quote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #fff;
}

.pull-quote footer {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  font-family: var(--display);
  font-weight: 700;
}

/* ---------- callout ---------- */

.callout {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  border-left: 4px solid var(--cyan);
  max-width: 78ch;
}

.callout.warn {
  border-left-color: var(--gold);
  background: rgba(255, 209, 102, 0.07);
}

.callout.hot {
  border-left-color: var(--pink);
  background: rgba(255, 46, 147, 0.08);
}

.callout h3 {
  font-family: var(--display);
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: #fff;
  letter-spacing: 0.01em;
}

.callout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ---------- faq / pros-cons overrides ---------- */

body.article-page .faq {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* The article already announces the section with its own heading; keep the
   block's title for assistive tech only. */
body.article-page .faq > h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

body.article-page .faq details {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.9rem 1.2rem;
  transition: border-color 0.2s ease;
}

body.article-page .faq details[open] {
  border-color: rgba(255, 46, 147, 0.4);
  background: var(--surface-2);
}

body.article-page .faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  list-style: none;
}

body.article-page .faq summary::-webkit-details-marker {
  display: none;
}

body.article-page .faq summary::before {
  content: "+";
  display: inline-block;
  width: 1.4rem;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--pink);
  font-weight: 800;
}

body.article-page .faq details[open] summary::before {
  content: "–";
}

body.article-page .faq details > div,
body.article-page .faq details > p {
  margin: 0.7rem 0 0 1.2rem;
  color: var(--ink-soft);
}

body.article-page .pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

body.article-page .pros-cons ul {
  margin: 0;
  padding: 1.2rem 1.2rem 1.2rem 2.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
}

/* ---------- article footer ---------- */

.article-end {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(255, 46, 147, 0.06));
}

.article-end .article-shell {
  padding: 2.6rem 0 3.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
}

.disclaimer {
  max-width: 62ch;
  font-size: 0.82rem;
  color: var(--ink-faint);
  line-height: 1.6;
}

.updated {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

body.article-page .breadcrumbs {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
}

body.article-page .breadcrumbs a {
  color: var(--ink-faint);
  text-decoration: none;
}

body.article-page .breadcrumbs a:hover {
  color: var(--pink);
}

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 720px) {
  body.article-page {
    --shell: calc(100% - 2rem);
  }

  .hero {
    min-height: auto;
    padding: 5rem 0 2.5rem;
  }

  .hero-title {
    max-width: none;
  }

  .count-unit {
    min-width: 4.4rem;
    padding: 0.55rem 0.6rem;
  }

  .article-body {
    gap: 2rem;
    padding: 2.5rem 0 3.5rem;
  }

  .pull-quote {
    padding: 1.3rem 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.article-page *,
  body.article-page *::before,
  body.article-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
