:root {
  color-scheme: dark;
  --ink: #fffaf0;
  --muted: #c9d4d1;
  --soft: rgba(255, 250, 240, 0.74);
  --night: #111317;
  --panel: #191d21;
  --panel-2: #20262b;
  --line: rgba(255, 250, 240, 0.16);
  --pink: #ff5b8a;
  --sun: #ffd166;
  --mint: #5ee0b7;
  --sky: #7cc7ff;
  --red: #ff5f57;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 91, 138, 0.13), transparent 34%),
    linear-gradient(225deg, rgba(94, 224, 183, 0.11), transparent 38%),
    radial-gradient(circle at 52% 8%, rgba(255, 209, 102, 0.14), transparent 28%),
    #111317;
  z-index: -2;
}

a {
  color: inherit;
}

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

.skip-link {
  background: var(--sun);
  color: #151515;
  left: 1rem;
  padding: 0.65rem 0.9rem;
  position: fixed;
  top: -4rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(17, 19, 23, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 72px;
  padding: 0 1.25rem;
}

.brand {
  align-items: baseline;
  display: inline-flex;
  gap: 0.45rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand strong {
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand span {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: none;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  justify-content: flex-end;
}

.nav a {
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 0.68rem;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  border-color: var(--pink);
  color: var(--ink);
}

.hero {
  isolation: isolate;
  min-height: 76vh;
  overflow: hidden;
  position: relative;
}

.hero.short {
  min-height: 52vh;
}

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

.hero-media img {
  filter: saturate(1.08) contrast(1.08);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.94) 0%, rgba(17, 19, 23, 0.65) 52%, rgba(17, 19, 23, 0.2) 100%),
    linear-gradient(0deg, #111317 0%, rgba(17, 19, 23, 0.08) 34%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-inner,
.section,
.footer-inner {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 1.25rem;
}

.hero-inner {
  align-items: center;
  display: grid;
  min-height: inherit;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 9vw, 7.8rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 1.25rem;
  max-width: 9ch;
  text-transform: uppercase;
}

.hero.short h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  max-width: 12ch;
}

.lead {
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 660px;
}

.hero-facts,
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.hero .actions {
  margin-top: 1.45rem;
}

.pill {
  align-items: center;
  background: rgba(255, 250, 240, 0.09);
  border: 1px solid var(--line);
  display: inline-flex;
  font-weight: 800;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 0.78rem;
}

.pill b {
  color: var(--sun);
}

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

.button {
  align-items: center;
  background: var(--pink);
  color: #151515;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1rem;
  text-decoration: none;
}

.button.alt {
  background: var(--sun);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.section {
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  margin-bottom: 1.8rem;
}

.section-heading h2,
.article h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading p,
.article p,
.article li {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.source-card,
.store-card,
.faq-item,
.article-card {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
  padding: 1rem;
}

.priority-card {
  border-color: rgba(255, 209, 102, 0.4);
}

.walkthrough-card p + p {
  margin-top: 0.7rem;
}

.walkthrough-card strong {
  color: var(--sun);
}

.trust-strip {
  align-items: center;
  background: #f3efe1;
  border-radius: 8px;
  color: #161616;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(180px, 0.35fr) 1fr auto;
  padding: 1rem;
}

.trust-strip h2,
.trust-strip p {
  margin-bottom: 0;
}

.trust-strip .meta {
  color: #9b2f58;
}

.trust-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip p {
  color: #333;
}

.trust-strip .button.ghost {
  border-color: rgba(22, 22, 22, 0.32);
  color: #161616;
}

.article-card,
.store-card,
.source-card {
  color: inherit;
  text-decoration: none;
}

.article-card:hover,
.store-card:hover,
.source-card:hover {
  border-color: rgba(255, 91, 138, 0.7);
}

.card h3,
.store-card h3,
.article-card h3,
.faq-item h3 {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.card p,
.store-card p,
.article-card p,
.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.meta {
  color: var(--sun);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.feature-band {
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-panel {
  background: #f3efe1;
  border-radius: 8px;
  color: #161616;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.feature-panel h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-panel p {
  color: #333;
}

.feature-panel .button.ghost {
  border-color: rgba(22, 22, 22, 0.32);
  color: #161616;
}

.feature-image {
  border-radius: 8px;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  width: 100%;
}

.timeline {
  border-left: 2px solid var(--line);
  display: grid;
  gap: 1rem;
  margin-left: 0.65rem;
  padding-left: 1.3rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  background: var(--mint);
  border: 4px solid var(--night);
  content: "";
  height: 14px;
  left: -1.75rem;
  position: absolute;
  top: 0.2rem;
  width: 14px;
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery a {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  overflow: hidden;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

.gallery a:hover img {
  transform: scale(1.035);
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

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

th {
  background: rgba(255, 250, 240, 0.08);
  color: var(--sun);
  font-size: 0.78rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.article {
  display: grid;
  gap: 1.25rem;
  margin: 0 auto;
  max-width: 860px;
}

.article h2 {
  margin-top: 2rem;
}

.article h3 {
  color: var(--ink);
  font-size: 1.35rem;
  margin-top: 1rem;
}

.article ul,
.article ol {
  padding-left: 1.3rem;
}

.callout {
  background: rgba(94, 224, 183, 0.12);
  border: 1px solid rgba(94, 224, 183, 0.4);
  border-radius: 8px;
  color: var(--ink);
  padding: 1rem;
}

.callout p:last-child {
  margin-bottom: 0;
}

.breadcrumbs {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--ink);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.review-meter {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: 180px 1fr;
  padding: 1rem;
}

.score {
  align-items: center;
  aspect-ratio: 1;
  background: var(--sun);
  color: #151515;
  display: flex;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 950;
  justify-content: center;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(10, 11, 13, 0.72);
}

.footer-inner {
  align-items: start;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr auto;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.disclaimer,
.small {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    background: rgba(17, 19, 23, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 0.75rem 1.25rem 1rem;
    position: absolute;
    top: 72px;
    width: 100%;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
  }

  .section-heading,
  .feature-band,
  .trust-strip,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .footer-inner,
  .review-meter {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .header-inner,
  .hero-inner,
  .section,
  .footer-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    min-height: 72vh;
  }

  .actions,
  .hero-facts,
  .quick-facts {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .pill {
    width: 100%;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .score {
    max-width: 180px;
  }
}
