:root {
  --site-max: 1200px;
  --site-gutter: 24px;
}

.shell {
  width: min(var(--site-max), calc(100% - (var(--site-gutter) * 2)));
}

.section {
  padding: 96px 0;
}

.hero {
  min-height: auto;
  padding: 64px 0 24px;
}

.hero .lede {
  max-width: 60ch;
}

.hero-card {
  width: min(1020px, 100%);
  margin: 28px auto 0;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.hero-note {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 18px;
}

.hero-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  max-width: none;
}

.hero-points li {
  list-style: none;
  margin: 0 0 10px;
  padding-left: 16px;
  position: relative;
}

.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.72em;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(116, 240, 212, 0.7);
}

.card-grid,
.related-grid,
.lane-grid,
.store-grid,
.compare-grid,
.preset-grid,
.tier-row,
.pricing-row,
.hero-grid {
  margin-top: 28px;
  gap: 18px;
}

.card,
.store-card,
.lane-card,
.compare-card,
.related-card,
.preset-card,
.tier,
.pricing-card,
.cta-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
}

.faq-item summary {
  margin: 0;
}

.faq-item__body {
  margin-top: 12px;
}

.store-meta {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.store-meta__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.store-meta__item strong,
.store-meta__item span {
  line-height: 1.3;
}

.guide-article {
  width: min(860px, 100%);
  margin: 36px auto 96px;
}

.guide-article h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.guide-article .lede {
  margin-top: 0;
  margin-bottom: 28px;
  max-width: 62ch;
}

.guide-article h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.08;
  margin-top: 34px;
  margin-bottom: 10px;
  max-width: none;
}

/* Base Card Content Adjustments */
.card h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 16px;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
}

.guide-article p {
  margin: 0;
}

.guide-article .lede + p {
  margin-top: 12px;
}

.guide-article ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.guide-article li {
  list-style: none;
  position: relative;
  padding-left: 16px;
}

.guide-article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.guide-article .callout {
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(116, 240, 212, 0.25);
  background: rgba(116, 240, 212, 0.08);
  color: var(--muted-strong);
}

.guide-article .footer-links {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .hero-card,
  .hero-grid,
  .card-grid,
  .related-grid,
  .lane-grid,
  .store-grid,
  .compare-grid,
  .preset-grid,
  .tier-row,
  .pricing-row {
    grid-template-columns: 1fr;
  }

  .hero-note {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: calc(100% - 24px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .guide-article {
    margin-top: 24px;
    margin-bottom: 64px;
  }

  .guide-article .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-article .footer-links .button {
    width: 100%;
  }

  .card,
  .store-card,
  .lane-card,
  .compare-card,
  .related-card,
  .preset-card,
  .tier,
  .pricing-card,
  .cta-card,
  .faq-item {
    padding: 22px;
  }
}

/* ─── Premium Direction (Global Overrides) ───────────────────────────── */
:root {
  --bg: #04070d;
  --bg-elev: rgba(10, 14, 22, 0.84);
  --panel: rgba(10, 13, 21, 0.9);
  --panel-strong: rgba(7, 10, 17, 0.96);
  --panel-soft: rgba(255, 255, 255, 0.02);
  --panel-border: rgba(255, 255, 255, 0.14);
  --panel-border-strong: rgba(143, 214, 255, 0.24);
  --text: #f7f9fd;
  --muted: #a4b0c6;
  --muted-strong: #c8d2e3;
  --accent: #8fd6ff;
  --accent-dim: rgba(143, 214, 255, 0.14);
  --blue: #9bc8ff;
  --amber: #ffd089;
  --grid: rgba(255, 255, 255, 0.04);
  --shadow: 0 38px 96px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 20px 56px rgba(0, 0, 0, 0.34);
}

body {
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 0%, rgba(155, 200, 255, 0.14), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(143, 214, 255, 0.1), transparent 30%),
    radial-gradient(circle at 52% 32%, rgba(119, 148, 208, 0.1), transparent 42%),
    linear-gradient(180deg, #060a12 0%, #04070d 44%, #03050a 100%);
}

body::before {
  opacity: 0.65;
}

body::after {
  content: "";
  position: fixed;
  inset: -20% -10% auto;
  height: 55vh;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

h1,
h2 {
  text-wrap: balance;
}

.topbar {
  margin-top: 16px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015) 42%),
    rgba(6, 10, 17, 0.78);
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.42);
}

.brand {
  letter-spacing: 0.012em;
}

.topbar__nav {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.02);
}

.topbar__nav a {
  color: #aeb8cc;
}

.topbar__nav a:hover,
.topbar__nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.button {
  letter-spacing: 0.01em;
}

.button--primary {
  background: linear-gradient(128deg, #eef5ff 0%, #9ad6ff 54%, #78b9ff 100%);
  color: #050a14;
  box-shadow:
    0 16px 40px rgba(120, 185, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero {
  padding-top: 96px;
}

.hero .reveal {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 44px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015) 52%),
    radial-gradient(circle at top center, rgba(155, 200, 255, 0.16), transparent 62%),
    rgba(7, 11, 19, 0.72);
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero .kicker {
  color: #b7deff;
  letter-spacing: 0.16em;
}

.hero .lede {
  color: var(--muted-strong);
}

.hero__postscript {
  margin-top: 22px;
  color: rgba(205, 215, 233, 0.88);
}

.stat-strip {
  padding: 30px 28px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(6, 10, 18, 0.8);
}

.showcase__frame {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.showcase__frame img {
  transform: scale(1.01);
}

.card,
.store-card,
.lane-card,
.compare-card,
.related-card,
.preset-card,
.tier,
.price-card,
.benefit-card,
.step,
.tour-card,
.faq-item {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012) 58%),
    rgba(7, 10, 17, 0.74);
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.price-card--featured {
  transform: translateY(-6px);
  border-color: rgba(143, 214, 255, 0.32);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(143, 214, 255, 0.12) inset;
}

.price-card__amount {
  font-variant-numeric: tabular-nums;
}

.faq-item summary {
  color: var(--text);
}

.final-cta {
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 88%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.legal-row {
  border-top-color: rgba(255, 255, 255, 0.12);
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }

  .card:hover,
  .store-card:hover,
  .compare-card:hover,
  .lane-card:hover,
  .preset-card:hover,
  .related-card:hover,
  .benefit-card:hover,
  .price-card:hover,
  .tour-card:hover {
    transform: translateY(-6px);
    border-color: rgba(143, 214, 255, 0.28);
    box-shadow: 0 34px 84px rgba(0, 0, 0, 0.42);
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 68px;
  }

  .hero .reveal {
    padding: 36px 28px;
    border-radius: 30px;
  }

  .price-card--featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  body::after {
    display: none;
  }

  .topbar {
    padding: 14px;
  }

  .hero .reveal {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .stat-strip {
    border-radius: 20px;
    padding: 20px;
  }
}
