@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --red: #ff0000;
  --pink: #ff006e;
  --dark: #1a1a2e;
  --darker: #0d0d1a;
  --cyan: #00ffff;
  --purple: #7b2fff;
  --ink: #1a1a2e;
  --glass-bg: rgba(255, 0, 110, 0.07);
  --glass-border: rgba(255, 0, 110, 0.3);
  --text-main: #e8e8f0;
  --text-muted: #9090b0;
  --aside-width: 260px;
  --header-h: 64px;
  --font-pixel: 'Press Start 2P', monospace;
  --font-vt: 'VT323', monospace;
  --font-system: var(--font-vt);
  --glow-red: 0 0 8px #ff0000, 0 0 20px rgba(255,0,0,0.4);
  --glow-pink: 0 0 8px #ff006e, 0 0 20px rgba(255,0,110,0.4);
  --glow-cyan: 0 0 8px #00ffff, 0 0 20px rgba(0,255,255,0.4);
  --radius: 10px;
  --transition: 0.18s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 18px;
  scroll-behavior: smooth;
  background: var(--darker);
  color: var(--text-main);
}

body {
  font-family: var(--font-system);
  font-size: 1.1rem;
  line-height: 1.65;
  background: var(--darker);
  min-height: 100vh;
  overflow-x: hidden;
}

/* CRT scanline overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.12) 0px,
    rgba(0,0,0,0.12) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 9999;
}

a { color: var(--pink); text-decoration: underline; transition: color var(--transition); }
a:hover { color: var(--cyan); text-shadow: var(--glow-cyan); }

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

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-pixel);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(1rem, 3vw, 1.5rem); color: var(--red); text-shadow: var(--glow-red); }
h2 { font-size: clamp(0.85rem, 2vw, 1.1rem); color: var(--pink); margin-bottom: 1rem; }
h3 { font-size: clamp(0.75rem, 1.8vw, 0.95rem); color: var(--cyan); }
h4 { font-size: 0.8rem; color: var(--text-main); }

p { margin-bottom: 1rem; font-size: 1.15rem; }

/* =============================================
   LAYOUT STRUCTURE
   ============================================= */
.page-wrap {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* Aside (left vertical rail) */
.site-aside {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--aside-width);
  height: 100vh;
  background: rgba(26, 26, 46, 0.97);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  z-index: 200;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.aside-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--red);
  text-shadow: var(--glow-red);
  line-height: 1.4;
  display: block;
}

.site-aside nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-aside nav ul li a {
  display: block;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  color: var(--text-main);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  line-height: 1.6;
}

.site-aside nav ul li a:hover,
.site-aside nav ul li a[aria-current="page"] {
  color: var(--cyan);
  border-color: var(--glass-border);
  background: var(--glass-bg);
  text-shadow: var(--glow-cyan);
}

.aside-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--glass-border);
}

.aside-related {
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.aside-related h3 {
  font-size: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--pink);
}

.aside-related ul { display: flex; flex-direction: column; gap: 0.25rem; }
.aside-related ul li a {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.aside-related ul li a:hover {
  color: var(--cyan);
  border-left-color: var(--cyan);
}

/* Header (mobile top bar) */
.site-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(13, 13, 26, 0.97);
  border-bottom: 1px solid var(--glass-border);
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 300;
  backdrop-filter: blur(10px);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--red);
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  text-shadow: var(--glow-red);
  max-width: 130px;
  line-height: 1.3;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* CTA Buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 0.85rem;
  font-family: var(--font-pixel);
  font-size: 0.42rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.3;
}

.cta-signup {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  box-shadow: var(--glow-red);
}

.cta-signup:hover {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
  color: #fff;
  text-shadow: none;
}

.cta-login {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.cta-login:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--glow-pink);
  text-shadow: none;
}

/* Menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  cursor: pointer;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pink);
  border-radius: 1px;
  transition: all var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay nav (fullscreen) */
.overlay-nav {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 26, 0.98);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(12px);
}

.overlay-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-nav nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.overlay-nav nav ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  color: var(--text-main);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  min-height: 44px;
  line-height: 1.6;
}

.overlay-nav nav ul li a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--pink);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
}

.overlay-close:hover {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}

.overlay-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Main content area */
.site-main {
  margin-left: var(--aside-width);
  flex: 1;
  min-height: 100vh;
  padding: 2rem 2rem 3rem;
  max-width: 100%;
}

.page-article {
  max-width: 820px;
}

/* =============================================
   HERO SECTIONS
   ============================================= */
.hero-section,
.page-hero {
  padding: 2.5rem 0 2rem;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 2.5rem;
}

.home-main .hero-section {
  min-height: 45vh;
}

.page-eyebrow {
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  color: var(--pink);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-left: 3px solid var(--pink);
  padding-left: 0.75rem;
}

.hero-copy { display: flex; flex-direction: column; gap: 0.75rem; }

.hero-media {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.hero-img {
  width: 100%;
  display: block;
}

/* =============================================
   GLITCH EFFECT
   ============================================= */
@keyframes glitch {
  0%   { text-shadow: var(--glow-red); }
  10%  { text-shadow: -2px 0 var(--cyan), 2px 0 var(--pink); transform: skewX(-1deg); }
  20%  { text-shadow: var(--glow-red); transform: none; }
  80%  { text-shadow: var(--glow-red); }
  90%  { text-shadow: 2px 0 var(--cyan), -2px 0 var(--pink); transform: skewX(1deg); }
  100% { text-shadow: var(--glow-red); transform: none; }
}

.glitch {
  animation: glitch 5s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .glitch { animation: none; }
  body::before { display: none; }
}

/* =============================================
   BYLINE
   ============================================= */
.byline {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.byline strong { color: var(--cyan); }

.byline time { color: var(--text-muted); }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.breadcrumb a { color: var(--text-muted); }

/* =============================================
   BODY CONTENT
   ============================================= */
.body-section { margin-bottom: 2.5rem; }

.content-prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--glass-border);
}

.content-prose h3 { margin-top: 1.5rem; margin-bottom: 0.6rem; }
.content-prose h4 { margin-top: 1.25rem; margin-bottom: 0.5rem; }

.content-prose ul,
.content-prose ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-prose ol { list-style: decimal; }

.content-prose li { margin-bottom: 0.4rem; font-size: 1.1rem; }

.content-prose a {
  color: var(--cyan);
  text-decoration: underline;
}

.content-prose a:hover { color: var(--pink); }

.content-prose blockquote {
  border-left: 3px solid var(--pink);
  padding-left: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 1rem 0;
}

.content-prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.content-prose th,
.content-prose td {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--glass-border);
  text-align: left;
}

.content-prose th {
  background: rgba(255, 0, 110, 0.12);
  color: var(--pink);
  font-family: var(--font-pixel);
  font-size: 0.5rem;
}

/* =============================================
   GLASS CARDS
   ============================================= */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition), transform var(--transition);
}

.glass:hover {
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card h3 { margin-bottom: 0; }
.card h3 a { color: var(--cyan); text-decoration: none; }
.card h3 a:hover { color: var(--pink); }
.card p { font-size: 1rem; color: var(--text-muted); flex: 1; margin-bottom: 0; }
.card time { font-size: 0.85rem; color: var(--text-muted); }

.read-more {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--pink);
  text-decoration: none;
  padding: 0.4rem 0;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
  transition: color var(--transition);
}

.read-more:hover { color: var(--cyan); }

/* =============================================
   RANKING TABLE
   ============================================= */
.ranking-table-section { margin-bottom: 2.5rem; }

.rank-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.rank-table thead tr {
  background: rgba(255, 0, 0, 0.15);
  border-bottom: 2px solid var(--red);
}

.rank-table th {
  padding: 0.75rem 1rem;
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--red);
  text-align: left;
  letter-spacing: 0.05em;
}

.rank-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  vertical-align: middle;
}

.rank-table tbody tr { transition: background var(--transition); }

.rank-table tbody tr:hover {
  background: var(--glass-bg);
}

.rank-num {
  font-family: var(--font-pixel);
  font-size: 0.8rem;
  color: var(--pink);
  text-shadow: var(--glow-pink);
  width: 2.5rem;
  text-align: center;
}

.rank-name a {
  color: var(--cyan);
  font-weight: bold;
  text-decoration: none;
}

.rank-name a:hover { color: var(--pink); }

.rank-desc { color: var(--text-muted); font-size: 1rem; }

.rank-link a {
  color: var(--pink);
  text-decoration: none;
  font-family: var(--font-pixel);
  font-size: 0.42rem;
  white-space: nowrap;
}

.rank-link a:hover { color: var(--cyan); }

/* =============================================
   COMPARE
   ============================================= */
.compare-grid-section { margin-bottom: 2rem; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.compare-col {
  padding: 1.5rem 1rem;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-label {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--text-muted);
}

.compare-vs {
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--red);
  text-shadow: var(--glow-red);
  text-align: center;
}

/* =============================================
   FAQ
   ============================================= */
.faq-toc-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.faq-toc-section h2 { margin-bottom: 0.5rem; }
.faq-toc-section p { font-size: 1.05rem; margin-bottom: 0.75rem; }

.faq-jump { display: flex; flex-direction: column; gap: 0.35rem; }
.faq-jump li a {
  color: var(--cyan);
  text-decoration: underline;
  font-size: 1.05rem;
  padding: 0.25rem 0;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

.faq-prose details {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-prose summary {
  padding: 1rem;
  cursor: pointer;
  font-family: var(--font-pixel);
  font-size: 0.5rem;
  color: var(--pink);
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.faq-prose summary::-webkit-details-marker { display: none; }

.faq-prose details[open] summary {
  border-bottom: 1px solid var(--glass-border);
  color: var(--cyan);
}

.faq-prose details p {
  padding: 1rem;
  margin-bottom: 0;
  font-size: 1.05rem;
}

/* =============================================
   ABOUT / AUTHOR
   ============================================= */
.author-section {
  padding: 1.75rem;
  margin: 2rem 0;
}

.author-section h2 { margin-bottom: 1rem; }

.author-card { display: flex; gap: 1.5rem; align-items: flex-start; }

.author-info { display: flex; flex-direction: column; gap: 0.5rem; }

.author-info h3 {
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 0;
}

.author-credentials {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.author-bio { font-size: 1.05rem; color: var(--text-main); }

/* =============================================
   TRUST / LEGAL LINKS
   ============================================= */
.trust-section {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.trust-section h2 { margin-bottom: 0.75rem; }

.trust-links { display: flex; flex-direction: column; gap: 0.25rem; }

.trust-links li a {
  color: var(--cyan);
  text-decoration: underline;
  font-size: 1.05rem;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

.trust-links li a:hover { color: var(--pink); }

/* =============================================
   HEADING DECORATION — h2 > span
   ============================================= */
h2 > span, h3 > span {
  display: inline-block;
  position: relative;
}

h2 > span::after {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), transparent);
  margin-top: 4px;
  width: 100%;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  margin-left: var(--aside-width);
  background: rgba(13, 13, 26, 0.98);
  border-top: 1px solid var(--glass-border);
  padding: 2rem 2rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand-name {
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  color: var(--red);
  text-shadow: var(--glow-red);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-desc { font-size: 1rem; color: var(--text-muted); }

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-nav ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
  transition: color var(--transition);
}

.footer-nav ul li a:hover { color: var(--cyan); }

.footer-contact {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.footer-rg {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-left: 3px solid var(--pink);
  padding-left: 0.75rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-family: var(--font-pixel);
  font-size: 0.4rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-bar a {
  color: var(--text-muted);
  text-decoration: none;
  min-height: 44px;
  line-height: 44px;
}

.footer-bar a:hover { color: var(--cyan); }

/* =============================================
   CHILD CARDS SECTION
   ============================================= */
.child-cards { margin-top: 2.5rem; }
.child-cards h2 { margin-bottom: 1rem; }

/* =============================================
   PARALLAX / HOVER MICRO INTERACTIONS
   ============================================= */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.card:hover { animation: float 2s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .card:hover { animation: none; transform: none; }
  .glass:hover { transform: none; }
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  :root { --aside-width: 220px; }
  .site-main { padding: 1.5rem; }
  .cards-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
  /* Hide desktop aside */
  .site-aside { display: none; }

  /* Show mobile header */
  .site-header { display: flex; }
  .menu-toggle { display: flex; }

  /* Push content below header */
  .site-main {
    margin-left: 0;
    padding: 1rem 1rem 2rem;
    margin-top: var(--header-h);
  }

  .site-footer {
    margin-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Hero */
  .hero-section,
  .page-hero {
    min-height: auto;
    padding: 1.5rem 0 1.25rem;
  }

  .home-main .hero-section { min-height: auto; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* Compare */
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-vs {
    text-align: center;
    padding: 0.5rem 0;
  }

  /* Ranking table — allow horizontal scroll on small screens */
  .ranking-table-section { overflow-x: auto; }
  .rank-table { min-width: 520px; }

  /* Nav links collapse by default — overlay handles them */
  .site-main { max-width: 100%; }

  /* Ensure no horizontal overflow */
  body, html { overflow-x: hidden; }

  h1 { font-size: clamp(0.8rem, 5vw, 1.1rem); }
  h2 { font-size: clamp(0.7rem, 4vw, 0.9rem); }

  .cta {
    padding: 0 0.6rem;
    font-size: 0.38rem;
    min-height: 44px;
  }

  .header-actions {
    gap: 0.4rem;
  }

  /* Author card */
  .author-card { flex-direction: column; }
}

/* =============================================
   NEON BORDERS FOR GEOMETRIC ACCENT
   ============================================= */
.page-article::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--pink), var(--cyan), transparent);
  margin-bottom: 0;
  border-radius: 2px;
}

/* =============================================
   LEGAL PROSE
   ============================================= */
.legal-prose h2 { font-size: 0.75rem; }
.legal-prose h3 { font-size: 0.65rem; }
.legal-prose p, .legal-prose li { font-size: 1.05rem; }

a[data-cta],button[aria-controls]{min-height:44px;min-width:44px;box-sizing:border-box}main p a{text-decoration:underline}