/* =====================================================================
   GTA6Online.co.uk
   Palette:  --midnight #150A26   --dusk #3B1856   --sunset-pink #FF3E8E
             --sunset-orange #FF8A3D   --neon-teal #1FE6C4
             --paper #FBF3FF   --muted #B9A6D1
   Type: Anton (display) / Work Sans (body) / IBM Plex Mono (labels, data)
   ===================================================================== */

:root {
  --midnight: #150a26;
  --dusk: #2c1444;
  --sunset-pink: #ff3e8e;
  --sunset-orange: #ff8a3d;
  --neon-teal: #1fe6c4;
  --paper: #fbf3ff;
  --muted: #b9a6d1;
  --line: rgba(251, 243, 255, 0.14);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --radius: 14px;
  --max-w: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--midnight);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-teal);
}

/* ---------- Disclosure ribbon ---------- */
.disclosure-ribbon {
  background: #0a0513;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 8px 16px;
}

.disclosure-ribbon strong {
  color: var(--sunset-orange);
  font-weight: 600;
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(21, 10, 38, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo span {
  color: var(--sunset-pink);
}

.logo small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  opacity: 0.85;
}

.nav-links a:hover { opacity: 1; color: var(--neon-teal); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  padding: 8px 10px;
  font-size: 18px;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--midnight);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
  }
  .nav-links.is-open { max-height: 320px; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-top: 1px solid var(--line);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 64px;
  background:
    radial-gradient(60% 55% at 50% 0%, rgba(255, 62, 142, 0.35), transparent 70%),
    radial-gradient(50% 50% at 85% 15%, rgba(31, 230, 196, 0.18), transparent 70%),
    linear-gradient(180deg, var(--dusk) 0%, var(--midnight) 70%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(251, 243, 255, 0.035) 0px,
    rgba(251, 243, 255, 0.035) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 74px);
  margin: 18px 0 20px;
  background: linear-gradient(100deg, var(--paper) 30%, var(--sunset-orange) 70%, var(--sunset-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(100deg, var(--sunset-pink), var(--sunset-orange));
  color: #180a0a;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--paper);
  background: transparent;
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-unit {
  background: rgba(251, 243, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  min-width: 78px;
  text-align: center;
}

.countdown-unit .num {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--neon-teal);
}

.countdown-unit .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.countdown-live {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--neon-teal);
}

/* ---------- Horizon divider (signature element) ---------- */
.horizon {
  position: relative;
  height: 90px;
  background: linear-gradient(180deg, var(--midnight), #0a0513);
  overflow: hidden;
}

.horizon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, var(--sunset-orange) 0%, var(--sunset-pink) 55%, transparent 75%);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(1px);
}

.horizon::after {
  content: "";
  position: absolute;
  inset: 0;
  top: 46px;
  background: repeating-linear-gradient(
    to right,
    var(--midnight) 0 40px,
    #0a0513 40px 42px
  );
  clip-path: polygon(
    0 100%, 0 60%, 4% 40%, 9% 55%, 15% 30%, 22% 58%, 30% 20%, 38% 50%,
    46% 35%, 55% 60%, 63% 25%, 71% 52%, 79% 38%, 87% 58%, 94% 32%, 100% 55%, 100% 100%
  );
}

/* ---------- Section shell ---------- */
section { padding: 72px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 10px 0 14px;
  color: var(--paper);
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* ---------- Platform cards ---------- */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.platform-card {
  background: linear-gradient(180deg, rgba(251, 243, 255, 0.05), rgba(251, 243, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-card.is-tba {
  opacity: 0.7;
}

.platform-card h3 {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tba-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(251, 243, 255, 0.08);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.edition-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.edition-row:first-of-type { border-top: none; }

.edition-name {
  font-weight: 600;
  font-size: 14px;
}

.edition-price {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.buy-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  border: 1px solid transparent;
}

.buy-btn--live {
  background: var(--neon-teal);
  color: #062621;
  font-weight: 700;
}

.buy-btn--pending {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

.affiliate-note {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Editions table ---------- */
.editions-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.editions-table th, .editions-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.editions-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-teal);
  background: rgba(251, 243, 255, 0.04);
}

.editions-table tr:last-child td { border-bottom: none; }

.table-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--sunset-orange);
  flex-shrink: 0;
}

.faq-item.is-open .faq-question::after { content: "\2212"; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding-bottom: 18px;
}

/* ---------- Legal / disclaimer ---------- */
.legal {
  background: #0a0513;
  border-top: 1px solid var(--line);
}

.legal h2 { font-size: 26px; margin-bottom: 20px; }

.legal-block {
  margin-bottom: 26px;
}

.legal-block h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon-teal);
  margin-bottom: 8px;
}

.legal-block p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 720px;
}

.contact-form {
  max-width: 720px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 78, 195, 0.08), transparent 45%),
    rgba(251, 243, 255, 0.025);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 5, 19, 0.8);
  color: var(--paper);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field select {
  color-scheme: dark;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(251, 243, 255, 0.28);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--neon-teal);
  background: #0a0513;
  box-shadow: 0 0 0 3px rgba(63, 255, 206, 0.14);
}

.contact-form__footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-form__submit {
  border: 0;
  cursor: pointer;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.legal-block .contact-form__status {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.legal-block .contact-form__status.is-success {
  color: var(--neon-teal);
}

.legal-block .contact-form__status.is-error {
  color: var(--sunset-orange);
}

@media (max-width: 620px) {
  .contact-form {
    padding: 18px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__submit {
    width: 100%;
  }
}

/* ---------- Footer ---------- */
.site-ad {
  width: min(calc(100% - 40px), 320px);
  min-height: 280px;
  margin: 56px auto;
  overflow: hidden;
}

footer {
  padding: 32px 0 48px;
  text-align: center;
}

footer p {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 8px;
  line-height: 1.7;
}

footer a { color: var(--neon-teal); text-decoration: none; }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ---------- Search-focused homepage ---------- */
.hero--split {
  padding-top: 72px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 52px;
  margin-bottom: 48px;
}

.hero-copy h1 {
  font-size: clamp(42px, 6.4vw, 76px);
  margin: 16px 0 22px;
}

.mobile-affiliate-links {
  display: none;
}

.hero-copy .lead {
  max-width: 660px;
  margin: 0 0 28px;
}

.hero-copy .hero-ctas {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.hero-visual {
  position: relative;
  transform: rotate(1.5deg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -5% -8% 10%;
  background: rgba(255, 62, 142, 0.24);
  filter: blur(42px);
}

.hero-visual img {
  position: relative;
  border: 1px solid rgba(251, 243, 255, 0.24);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(7, 2, 14, 0.55);
}

.checked-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-teal);
  box-shadow: 0 0 0 5px rgba(31, 230, 196, 0.12);
}

.trust-strip {
  padding: 0;
  background: #0a0513;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 22px;
  padding-bottom: 22px;
}

.trust-grid div {
  padding: 4px 22px;
  border-left: 1px solid var(--line);
}

.trust-grid div:first-child { border-left: 0; }

.trust-grid span,
.trust-grid strong {
  display: block;
}

.trust-grid span {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid strong { font-size: 14px; }

.section-head--wide { max-width: 760px; }

.section-alt {
  background:
    linear-gradient(135deg, rgba(255, 62, 142, 0.07), transparent 40%),
    #0f0820;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 243, 255, 0.025);
}

.price-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
}

.price-table th {
  color: var(--neon-teal);
  background: rgba(251, 243, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: rgba(251, 243, 255, 0.03); }

.tag {
  display: inline-block;
  margin-left: 5px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 138, 61, 0.4);
  border-radius: 999px;
  color: var(--sunset-orange);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-link-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
  gap: 20px;
  margin-top: 42px;
}

.content-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(251, 243, 255, 0.065), rgba(251, 243, 255, 0.015));
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.content-card:nth-child(2) { transform: translateY(22px); }
.content-card:hover { transform: translateY(-5px); border-color: rgba(31, 230, 196, 0.55); }
.content-card:nth-child(2):hover { transform: translateY(17px); }

.content-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  border: 34px solid rgba(255, 62, 142, 0.08);
  border-radius: 50%;
}

.card-kicker,
.edition-label {
  color: var(--neon-teal);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.content-card h3,
.edition-summary h3,
.source-panel h3 {
  margin: 14px 0 12px;
  font-size: 25px;
}

.content-card p,
.edition-summary p,
.source-panel p {
  color: var(--muted);
  font-size: 14px;
}

.text-link,
.edition-summary a {
  color: var(--sunset-orange);
  font-weight: 700;
  text-decoration: none;
}

.edition-summary-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.edition-summary {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 243, 255, 0.03);
}

.edition-summary--featured {
  border-color: rgba(255, 62, 142, 0.55);
  background: linear-gradient(145deg, rgba(255, 62, 142, 0.13), rgba(251, 243, 255, 0.03));
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 58px;
  align-items: start;
}

.editorial-main h2 {
  margin: 12px 0 20px;
  font-size: clamp(34px, 4.5vw, 54px);
}

.editorial-main p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.editorial-main .btn { margin-top: 16px; }

.source-panel {
  padding: 26px;
  border-top: 4px solid var(--sunset-orange);
  background: #0a0513;
}

.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--neon-teal);
}

.faq-list { max-width: 780px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-top: 12px;
  padding-bottom: 30px;
  text-align: left;
}

.footer-grid p { margin: 16px 0 0; }

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid nav strong {
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid nav a { color: var(--muted); font-size: 13px; }

.footer-small {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.footer-small p { margin: 0; }

/* ---------- Search landing pages ---------- */
.page-hero {
  padding: 64px 0 48px;
  background:
    radial-gradient(55% 90% at 100% 0%, rgba(255, 62, 142, 0.2), transparent 70%),
    linear-gradient(180deg, var(--dusk), var(--midnight));
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a { color: var(--neon-teal); text-decoration: none; }

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: 60px;
  align-items: end;
}

.page-hero h1 {
  margin: 14px 0 20px;
  max-width: 850px;
  font-size: clamp(42px, 7vw, 76px);
  background: linear-gradient(100deg, var(--paper), var(--sunset-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero .lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.fact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 5, 19, 0.7);
}

.fact-card dl { margin: 0; }
.fact-card div { padding: 13px 0; border-top: 1px solid var(--line); }
.fact-card div:first-child { padding-top: 0; border-top: 0; }
.fact-card dt { color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.fact-card dd { margin: 3px 0 0; font-weight: 700; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 70px;
  align-items: start;
}

.article-content { max-width: 760px; }
.article-content h2 { margin: 50px 0 16px; font-size: clamp(28px, 4vw, 40px); }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { margin: 30px 0 12px; font-size: 23px; }
.article-content p, .article-content li { color: var(--muted); font-size: 16px; }
.article-content strong { color: var(--paper); }
.article-content a { color: var(--neon-teal); }

.article-nav {
  position: sticky;
  top: 100px;
  padding: 22px;
  border-left: 3px solid var(--sunset-pink);
  background: rgba(251, 243, 255, 0.03);
}

.article-nav strong { display: block; margin-bottom: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.article-nav a { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; text-decoration: none; }
.article-nav a:hover { color: var(--neon-teal); }

.callout {
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid rgba(31, 230, 196, 0.32);
  border-radius: 10px;
  background: rgba(31, 230, 196, 0.055);
}

.callout p { margin: 0; }

.related-guides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-guides a {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--paper);
  text-decoration: none;
}

.related-guides a:hover { border-color: var(--neon-teal); }
.related-guides span { display: block; margin-bottom: 8px; color: var(--neon-teal); font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero-layout,
  .page-hero-grid,
  .editorial-grid,
  .article-layout { grid-template-columns: 1fr; }
  .hero-visual { max-width: 680px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(3) { border-left: 0; }
  .platform-link-grid { grid-template-columns: 1fr 1fr; }
  .platform-link-grid .content-card:last-child { grid-column: 1 / -1; }
  .article-nav { position: static; }
}

@media (max-width: 680px) {
  .hero--split { padding-top: 52px; }
  .hero-layout { gap: 30px; }
  .hero-copy h1 { margin-bottom: 16px; }
  .mobile-affiliate-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-bottom: 22px;
  }
  .mobile-affiliate-links .buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 11px 8px;
    white-space: normal;
    line-height: 1.35;
    background: linear-gradient(100deg, var(--sunset-pink), var(--sunset-orange));
    color: #180a0a;
    font-weight: 700;
  }
  .mobile-affiliate-links small {
    grid-column: 1 / -1;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
  }
  .hero-copy .hero-ctas { display: none; }
  .trust-grid,
  .platform-link-grid,
  .edition-summary-grid,
  .footer-grid,
  .related-guides { grid-template-columns: 1fr; }
  .trust-grid div { border-left: 0; border-top: 1px solid var(--line); padding: 14px 0; }
  .trust-grid div:first-child { border-top: 0; }
  .content-card:nth-child(2),
  .content-card:nth-child(2):hover { transform: none; }
  .platform-link-grid .content-card:last-child { grid-column: auto; }
  .footer-small { flex-direction: column; }
  .page-hero { padding-top: 44px; }
}
