:root {
  --ink: #f8f0dc;
  --ink-strong: #fffaf0;
  --muted: #b8b5b0;
  --graphite: #101315;
  --surface: #181d20;
  --surface-2: #22292d;
  --line: rgba(248, 240, 220, 0.16);
  --cyan: #3ee7e0;
  --cyan-dark: #063b3d;
  --magenta: #ff4fa0;
  --amber: #ffc857;
  --danger: #ff896f;
  --max: 1180px;
  --reading: 740px;
  --radius: 22px;
  --shadow: 0 22px 65px rgba(0, 0, 0, 0.28);
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

* { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 3%, rgba(255, 79, 160, .09), transparent 26rem),
    radial-gradient(circle at 8% 22%, rgba(62, 231, 224, .08), transparent 30rem),
    var(--graphite);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: 1rem;
  padding: .7rem 1rem;
  background: var(--ink-strong);
  color: var(--graphite);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.reading { width: min(100%, var(--reading)); }
.center { margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 19, 21, .9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink-strong);
  text-decoration: none;
  font-family: var(--font-display);
  font-stretch: condensed;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px var(--graphite);
  background: linear-gradient(135deg, var(--magenta) 0 48%, var(--cyan) 49% 100%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 3px;
  right: -8px;
  bottom: 2px;
  border-radius: 999px;
  background: var(--amber);
  transform: rotate(-35deg);
}

.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav ul { display: flex; align-items: center; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.site-nav a {
  display: inline-flex;
  padding: .7rem .85rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 750;
  letter-spacing: .02em;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { background: var(--surface-2); color: var(--ink-strong); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }

h1, h2, h3 {
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-stretch: condensed;
  line-height: .98;
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 8.8vw, 7.3rem);
  font-weight: 950;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero h1 em,
.page-hero h1 em { color: var(--magenta); font-style: normal; }

h2 { margin: 0 0 1rem; font-size: clamp(2.1rem, 5vw, 4rem); letter-spacing: -.035em; }
h3 { margin: 0 0 .65rem; font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.08; letter-spacing: -.02em; }

p { margin: 0 0 1.15rem; }
.lead { max-width: 690px; color: #d8d2c8; font-size: clamp(1.08rem, 2vw, 1.32rem); line-height: 1.62; }

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--cyan);
  color: #071719;
  font-size: .91rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(62, 231, 224, .18); }
.button.secondary { border-color: var(--line); background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--surface-2); box-shadow: none; }

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px 25% 28% -18px;
  border: 1px solid var(--magenta);
  border-radius: 46% 54% 64% 36% / 42% 40% 60% 58%;
  transform: rotate(-8deg);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 42% 42% 18px 18px;
  box-shadow: var(--shadow);
  filter: saturate(.82) contrast(1.06);
}

.media-note {
  position: absolute;
  right: -18px;
  bottom: 22px;
  width: min(250px, 72%);
  padding: 1rem;
  border: 1px solid rgba(62, 231, 224, .45);
  background: rgba(16, 19, 21, .92);
  border-radius: 14px;
  box-shadow: var(--shadow);
  color: #d7d3cc;
  font-size: .82rem;
}
.media-note strong { display: block; margin-bottom: .25rem; color: var(--cyan); }

.signal-strip {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-item { padding: 1.35rem 1.4rem; border-right: 1px solid var(--line); }
.signal-item:last-child { border-right: 0; }
.signal-item b { display: block; margin-bottom: .12rem; color: var(--amber); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.signal-item span { color: #ddd7cc; font-size: .9rem; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section.compact { padding: clamp(3rem, 6vw, 5rem) 0; }
.section.alt { border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.section-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.section-heading p { max-width: 640px; margin: 0; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  position: relative;
  min-width: 0;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  top: 0;
  left: 1.45rem;
  background: var(--cyan);
}
.card.pink::after { background: var(--magenta); }
.card.amber::after { background: var(--amber); }
.card p { color: var(--muted); font-size: .94rem; }
.card a.more { color: var(--cyan); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.card .tag { margin-bottom: 1.15rem; }

.tag {
  display: inline-flex;
  padding: .28rem .55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c9c5be;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr); gap: clamp(2.2rem, 7vw, 6rem); align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.caption { margin-top: .55rem; color: #989794; font-size: .73rem; line-height: 1.45; }

.checklist { margin: 1.4rem 0 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: .8rem 0 .8rem 2.2rem; border-top: 1px solid var(--line); }
.checklist li::before { content: "✓"; position: absolute; left: .25rem; color: var(--cyan); font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: steps; }
.step { counter-increment: steps; padding: 1.6rem; border-top: 1px solid var(--line); background: var(--surface); }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 1.2rem; color: var(--magenta); font-family: var(--font-display); font-size: 1.9rem; font-weight: 900; }

.notice {
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 200, 87, .35);
  border-left: 5px solid var(--amber);
  border-radius: 12px;
  background: rgba(255, 200, 87, .06);
  color: #e7decc;
}
.notice strong { color: var(--amber); }

.page-hero { padding: clamp(3.8rem, 8vw, 7rem) 0 3.3rem; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 980px; font-size: clamp(2.8rem, 7.5vw, 6rem); }
.page-hero .lead { margin-top: 1.2rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.3rem; padding: 0; list-style: none; color: #9e9d9a; font-size: .82rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .5rem; color: var(--magenta); }
.breadcrumbs a { text-underline-offset: 3px; }

.article-shell { display: grid; grid-template-columns: minmax(0, var(--reading)) minmax(220px, 300px); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.article-shell > *,
.article-body { min-width: 0; }
.article-body > p:first-child { color: #e2ddd4; font-size: 1.15rem; }
.article-body h2 { margin-top: 3.4rem; font-size: clamp(2rem, 4vw, 3.25rem); }
.article-body h3 { margin-top: 2.2rem; }
.article-body a { color: var(--cyan); text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 1.3rem; }
.article-body li { margin-bottom: .55rem; }
.article-body blockquote { margin: 2rem 0; padding: 1.2rem 1.4rem; border-left: 4px solid var(--magenta); background: var(--surface); font-size: 1.08rem; }

.article-figure { margin: 2rem 0; }
.article-figure img { width: 100%; border-radius: 18px; }
.article-figure figcaption { margin-top: .55rem; color: #999894; font-size: .75rem; }

.article-aside { position: sticky; top: 105px; }
.aside-box { padding: 1.25rem; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.aside-box + .aside-box { margin-top: 1rem; }
.aside-box h2 { font-size: 1.25rem; line-height: 1.15; }
.aside-box p, .aside-box li { color: var(--muted); font-size: .83rem; }
.aside-box ul { margin: 0; padding-left: 1rem; }

.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.6rem 0; }
.verdict { padding: 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.verdict h3 { font-size: 1.25rem; }
.verdict.good h3 { color: var(--cyan); }
.verdict.watch h3 { color: var(--amber); }

.comparison-wrap { display: block; width: 100%; max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--surface); }
.comparison-table th, .comparison-table td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table th { background: var(--surface-2); color: var(--cyan); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.comparison-table td { color: #d0ccc5; font-size: .88rem; }
.comparison-table tr:last-child td { border-bottom: 0; }

.review-list { display: grid; gap: 1rem; }
.review-row { display: grid; grid-template-columns: 160px 1fr auto; gap: 1.5rem; align-items: center; padding: 1.25rem; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.review-row h2 { margin: 0; font-size: 1.65rem; }
.review-row p { margin: .35rem 0 0; color: var(--muted); font-size: .9rem; }
.review-row .button { white-space: nowrap; }

.source-list { display: grid; gap: 1rem; }
.source-item { padding: 1.25rem; border-left: 3px solid var(--cyan); background: var(--surface); }
.source-item h2 { font-size: 1.35rem; }
.source-item p { margin-bottom: .65rem; color: var(--muted); }
.source-item a { color: var(--cyan); overflow-wrap: anywhere; }

.prose { width: min(100%, var(--reading)); }
.prose h2 { margin-top: 3rem; font-size: clamp(1.8rem, 4vw, 3rem); }
.prose a { color: var(--cyan); }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.6rem, 5vw, 3.5rem);
  border: 1px solid rgba(62, 231, 224, .38);
  border-radius: 28px;
  background:
    linear-gradient(125deg, rgba(62, 231, 224, .1), transparent 52%),
    var(--surface);
}
.cta-panel h2 { margin-bottom: .6rem; }
.cta-panel p { max-width: 670px; margin: 0; color: var(--muted); }

.site-footer { padding: 4rem 0 2rem; border-top: 1px solid var(--line); background: #0b0d0e; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr; gap: 3rem; }
.footer-grid h2 { font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-grid p { max-width: 480px; color: #979694; font-size: .85rem; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li + li { margin-top: .45rem; }
.footer-grid a { color: #bebbb5; font-size: .86rem; text-decoration: none; }
.footer-grid a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line); color: #797977; font-size: .75rem; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    inset: 78px 1rem auto;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #14181a;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { align-items: stretch; flex-direction: column; }
  .site-nav a { display: flex; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-media { width: min(100%, 620px); margin-inline: auto; }
  .hero-media img { aspect-ratio: 16 / 11; border-radius: 150px 150px 18px 18px; }
  .split.reverse > :first-child { order: 0; }
  .section-heading { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .article-shell { grid-template-columns: minmax(0, 1fr); }
  .article-aside { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .aside-box + .aside-box { margin-top: 0; }
}

@media (max-width: 680px) {
  body { font-size: .96rem; }
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .nav-shell { min-height: 68px; }
  .brand { font-size: .92rem; }
  .brand-mark { width: 34px; height: 34px; }
  .site-nav { inset: 68px .65rem auto; }
  .hero { padding-top: 3.5rem; }
  .hero-grid { gap: 3rem; }
  .hero-media img { aspect-ratio: 4 / 3; border-radius: 80px 80px 16px 16px; }
  .media-note { right: 8px; bottom: -25px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-item:nth-child(2) { border-right: 0; }
  .signal-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .article-aside { grid-template-columns: 1fr; }
  .review-row { grid-template-columns: 1fr; gap: .8rem; }
  .review-row .button { justify-self: start; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
