:root {
  --bg: #07070a;
  --bg-2: #0c0c12;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f7;
  --muted: #9b9bae;
  --accent: #ff5a87;
  --accent-2: #7c5cff;
  --accent-3: #ffd166;
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --shadow: 0 30px 80px -30px rgba(124, 92, 255, 0.35),
    0 10px 30px -10px rgba(255, 90, 135, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1200px 800px at 50% -10%, #16101f 0%, var(--bg) 55%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--accent); color: #0b0a10; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5; mix-blend-mode: overlay;
}

.glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.55;
  border-radius: 50%;
}
.glow--a {
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, var(--accent), transparent 70%);
  top: -160px; left: -120px;
}
.glow--b {
  width: 620px; height: 620px;
  background: radial-gradient(closest-side, var(--accent-2), transparent 70%);
  top: 60px; right: -200px;
}

/* ─── Nav ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  background: rgba(7, 7, 10, 0.55);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.01em;
}
.brand__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: conic-gradient(from 220deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  box-shadow: 0 0 18px rgba(255, 90, 135, 0.6);
}
.brand__name { font-size: 15px; }
.brand__suffix { color: var(--muted); font-weight: 500; }

.nav__links {
  display: flex; align-items: center; gap: 22px;
  font-size: 14px; color: var(--muted);
}
.nav__links a { transition: color 0.2s ease; }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--text); color: #0b0a10 !important;
  font-weight: 600; font-size: 13px;
  transition: transform 0.15s ease, background 0.2s ease;
}
.nav__cta:hover { transform: translateY(-1px); background: #fff; }

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ─── Hero ────────────────────────────────────────── */
main { position: relative; z-index: 1; }
.hero {
  max-width: var(--maxw);
  margin: clamp(48px, 9vw, 110px) auto 60px;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}
.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel);
}
.hero__title {
  font-family: "Instrument Serif", "Inter", serif;
  font-weight: 400;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 22px auto 18px;
  max-width: 14ch;
}
.hero__title span { display: block; color: var(--text); }
.hero__title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  max-width: 58ch;
  margin: 0 auto 36px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--muted);
}

/* aggregate score */
.score {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 18px 28px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px clamp(20px, 3vw, 28px);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}
.score__big {
  display: flex; align-items: baseline; gap: 6px;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}
.score__num { font-size: 64px; line-height: 1; letter-spacing: -0.02em; }
.score__den { font-size: 22px; color: var(--muted); }
.score__meta p {
  margin: 8px 0 0; font-size: 14px; color: var(--muted); line-height: 1.5;
}
.score__chips {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chip {
  font-size: 12.5px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
}
.chip strong { color: var(--text); margin-right: 4px; }

.stars {
  position: relative;
  display: inline-block;
  width: 130px; height: 22px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12) 0 100%);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='130' height='22' viewBox='0 0 130 22'><g fill='black'><polygon points='11,1 13.5,8 21,8 15,12.5 17.5,20 11,15.5 4.5,20 7,12.5 1,8 8.5,8'/><polygon points='37,1 39.5,8 47,8 41,12.5 43.5,20 37,15.5 30.5,20 33,12.5 27,8 34.5,8'/><polygon points='63,1 65.5,8 73,8 67,12.5 69.5,20 63,15.5 56.5,20 59,12.5 53,8 60.5,8'/><polygon points='89,1 91.5,8 99,8 93,12.5 95.5,20 89,15.5 82.5,20 85,12.5 79,8 86.5,8'/><polygon points='115,1 117.5,8 125,8 119,12.5 121.5,20 115,15.5 108.5,20 111,12.5 105,8 112.5,8'/></g></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='130' height='22' viewBox='0 0 130 22'><g fill='black'><polygon points='11,1 13.5,8 21,8 15,12.5 17.5,20 11,15.5 4.5,20 7,12.5 1,8 8.5,8'/><polygon points='37,1 39.5,8 47,8 41,12.5 43.5,20 37,15.5 30.5,20 33,12.5 27,8 34.5,8'/><polygon points='63,1 65.5,8 73,8 67,12.5 69.5,20 63,15.5 56.5,20 59,12.5 53,8 60.5,8'/><polygon points='89,1 91.5,8 99,8 93,12.5 95.5,20 89,15.5 82.5,20 85,12.5 79,8 86.5,8'/><polygon points='115,1 117.5,8 125,8 119,12.5 121.5,20 115,15.5 108.5,20 111,12.5 105,8 112.5,8'/></g></svg>") center/contain no-repeat;
}
.stars__fill {
  display: block; height: 100%; width: var(--w, 100%);
  background: linear-gradient(90deg, var(--accent-3), var(--accent));
}

@media (max-width: 620px) {
  .score { grid-template-columns: 1fr; text-align: center; padding: 22px 18px; }
  .score__big { justify-content: center; }
  .score__chips { justify-content: center; }
}

/* ─── About / quick facts ─────────────────────────── */
.about {
  max-width: var(--maxw);
  margin: 70px auto 30px;
  padding: 0 clamp(20px, 4vw, 48px);
}
.about__head h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.about__lede {
  font-size: clamp(15.5px, 1.4vw, 18px);
  line-height: 1.6;
  color: #d8d8e0;
  max-width: 70ch;
  margin: 0 0 28px;
}
.about__lede strong { color: var(--text); font-weight: 700; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}
.facts > div {
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.facts dt {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
  font-weight: 600;
}
.facts dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
}
.facts dd a { border-bottom: 1px solid var(--border-strong); }

/* ─── FAQ ─────────────────────────────────────────── */
.faq {
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.faq__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 18px;
}
.faq__item {
  padding: 22px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq__item h3 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.faq__item p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #d6d6e0;
}
.faq__item p strong { color: var(--text); font-weight: 700; }

/* ─── Press marquee ───────────────────────────────── */
.marquee {
  position: relative;
  margin: 30px 0 70px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.marquee__track {
  display: flex; gap: 36px;
  width: max-content;
  white-space: nowrap;
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  color: var(--text);
  opacity: 0.7;
  animation: marquee 38s linear infinite;
}
.marquee__track span[aria-hidden] { color: var(--muted); font-family: "Inter", sans-serif; font-size: 14px; align-self: center; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─── Featured quote ──────────────────────────────── */
.featured {
  max-width: var(--maxw);
  margin: 0 auto 90px;
  padding: 0 clamp(20px, 4vw, 48px);
}
.featured figure {
  position: relative;
  margin: 0;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(900px 280px at 100% 0%, rgba(124, 92, 255, 0.18), transparent 60%),
    radial-gradient(800px 240px at 0% 100%, rgba(255, 90, 135, 0.16), transparent 60%),
    linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.featured blockquote {
  margin: 0 0 28px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.featured blockquote p { margin: 0; }
.featured .quote {
  display: inline-block;
  font-size: 1.6em;
  line-height: 0.6;
  margin-right: 6px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  vertical-align: -0.2em;
}
.featured figcaption {
  display: flex; align-items: center; gap: 14px;
  font-size: 14.5px;
}
.featured figcaption strong { display: block; font-weight: 700; }
.featured figcaption span { color: var(--muted); }

.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px; color: #0b0a10;
}
.avatar::after { content: attr(data-initials); }

/* ─── Sections ────────────────────────────────────── */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px clamp(20px, 4vw, 48px);
}
.section.soft {
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.section__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 18px; margin-bottom: 36px;
}
.section__head h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 48px);
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
}
.section__head p {
  color: var(--muted); margin: 0;
  font-size: 14.5px;
}

/* filters */
.filters {
  flex-basis: 100%;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 6px;
}
.filter {
  appearance: none;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--muted);
  font: inherit; font-size: 13px;
  padding: 8px 14px; border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter:hover { color: var(--text); border-color: var(--border-strong); }
.filter.is-active {
  background: var(--text); color: #0b0a10;
  border-color: var(--text);
}

/* ─── Review grid ─────────────────────────────────── */
.reviews {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.review {
  position: relative;
  display: flex; flex-direction: column;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  opacity: 0; transform: translateY(12px);
}
.review.is-visible { opacity: 1; transform: none; }
.review:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 50px -30px rgba(124, 92, 255, 0.45);
}
.review.is-hidden { display: none; }

.review header {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px; margin-bottom: 14px;
}
.review__source { display: flex; align-items: center; gap: 10px; }
.source-mark {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  padding: 6px 10px 6px 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
}
.source-mark::before {
  content: attr(data-tag);
  display: inline-grid; place-items: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  font-size: 10.5px; font-weight: 800; color: #0b0a10;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.review h3 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.review p {
  margin: 0; flex: 1;
  font-size: 14.5px; line-height: 1.55;
  color: #d6d6e0;
}
.review footer {
  margin-top: 18px;
  display: flex; gap: 6px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted);
}

/* stars in cards a bit smaller */
.review .stars { width: 96px; height: 16px; }
.review .stars,
.review .stars__fill {
  -webkit-mask-size: contain;
          mask-size: contain;
}

/* ─── Creators block ──────────────────────────────── */
.creators {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.creators li {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.creators li p {
  font-family: "Instrument Serif", serif;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.creators li footer {
  font-size: 13px; color: var(--muted);
  display: flex; flex-direction: column;
}
.creators li footer strong { color: var(--text); font-weight: 700; }

/* ─── CTA ─────────────────────────────────────────── */
.cta {
  max-width: 800px;
  margin: 80px auto;
  padding: 60px clamp(20px, 4vw, 48px);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 62px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.cta p { color: var(--muted); margin: 0 0 26px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0a10 !important;
  box-shadow: 0 14px 30px -10px rgba(255, 90, 135, 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -14px rgba(124, 92, 255, 0.6);
}
.cta__fineprint { margin-top: 18px !important; font-size: 12.5px; }

/* ─── Footer ──────────────────────────────────────── */
.foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px clamp(20px, 4vw, 48px) 50px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
  font-size: 13px; color: var(--muted);
  border-top: 1px solid var(--border);
}
.foot a { color: var(--text); border-bottom: 1px solid var(--border-strong); }
.foot__legal { text-align: right; }
.foot__legal p { margin: 0; }
.foot p { margin: 8px 0 0; }

@media (max-width: 620px) {
  .foot { flex-direction: column; }
  .foot__legal { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .review { opacity: 1; transform: none; }
}
