/* =====================================================
   WorldCupStream.us — Main Stylesheet
   2026 FIFA World Cup Streaming
   ===================================================== */

/* ── Variables ─────────────────────────────────────── */
:root {
  --bg:          hsl(148, 45%, 4%);
  --bg-alt:      hsl(148, 40%, 7%);
  --bg-card:     hsl(148, 35%, 9%);
  --bg-glass:    hsl(148 40% 8% / 0.75);

  --gold:        hsl(45, 100%, 55%);
  --gold-dark:   hsl(43, 95%, 40%);
  --gold-pale:   hsl(45, 100%, 78%);

  --green:       hsl(133, 65%, 42%);
  --green-bright:hsl(133, 65%, 55%);
  --green-dim:   hsl(133, 40%, 28%);

  --red:         hsl(0, 80%, 55%);

  --foreground:  hsl(0, 0%, 97%);
  --muted:       hsl(148, 14%, 58%);
  --border:      hsl(148, 28%, 15%);

  --font-display:'Bebas Neue', 'Oswald', sans-serif;
  --font-heading:'Oswald', 'Inter', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --container:   1180px;

  --shadow-gold: 0 0 50px hsl(45 100% 55% / 0.25);
  --shadow-green:0 0 50px hsl(133 65% 42% / 0.2);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg {
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Container ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Background Field Grid ─────────────────────────── */
.bg-field {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsl(133 65% 30% / 0.07) 1px, transparent 1px),
    linear-gradient(90deg, hsl(133 65% 30% / 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ── Announcement Bar ──────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: hsl(148, 45%, 4%);
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.announce-bar strong { font-weight: 900; }

/* ── Header ───────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(148 45% 4% / 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
#site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-dim), var(--green));
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 16px hsl(45 100% 55% / 0.3);
}
.logo-stream { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--foreground); }

/* ── Buttons ───────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: hsl(148, 45%, 4%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 24px hsl(45 100% 55% / 0.4);
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px hsl(45 100% 55% / 0.55);
}
.btn-gold-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--green-bright);
  border: 1.5px solid var(--green);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: hsl(133 65% 42% / 0.12);
  border-color: var(--green-bright);
  transform: translateY(-2px);
}
#mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.4rem;
}
#mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
  gap: 0.25rem;
}
#mobile-menu a {
  padding: 0.65rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
#mobile-menu a:hover { color: var(--foreground); }
#mobile-menu.open { display: flex; }

/* ── Hero ─────────────────────────────────────────── */
#hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-glow-top {
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse, hsl(45 100% 55% / 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-left {
  position: absolute;
  top: 20%;
  left: -350px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, hsl(133 65% 42% / 0.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-right {
  position: absolute;
  bottom: -100px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(45 100% 55% / 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(45 100% 55% / 0.08);
  border: 1px solid hsl(45 100% 55% / 0.28);
  color: var(--gold);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseDot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 hsl(0 80% 55% / 0.4); }
  50% { opacity: 0.6; transform: scale(0.75); box-shadow: 0 0 0 4px hsl(0 80% 55% / 0); }
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9.5vw, 7.5rem);
  line-height: 0.93;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
}
.line-white { color: var(--foreground); }
.line-gold  { color: var(--gold); }
.line-green { color: var(--green-bright); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-sub strong { color: var(--foreground); font-weight: 600; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ── Countdown ─────────────────────────────────────── */
.countdown-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 0.6rem;
  background: hsl(148 40% 7% / 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2.75rem;
  backdrop-filter: blur(10px);
  max-width: 480px;
}
.countdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.countdown-timer {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
  color: var(--foreground);
  min-width: 2ch;
  text-align: center;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  padding-bottom: 0.25rem;
}
.countdown-unit-text {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}
.trust-check { color: var(--green-bright); }

/* ── Section Utilities ─────────────────────────────── */
.section-pad { padding: 5rem 0; position: relative; overflow: hidden; }
.bg-alt-section { background: var(--bg-alt); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.accent-gold  { color: var(--gold); }
.accent-green { color: var(--green-bright); }
.section-desc { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(45 100% 55% / 0.3), transparent);
}

/* ── Comparison Table ──────────────────────────────── */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 620px;
}
.comparison-table thead th {
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th.col-us {
  background: linear-gradient(135deg, hsl(45 100% 55% / 0.1), hsl(133 65% 42% / 0.06));
  color: var(--gold);
  border-left: 2px solid hsl(45 100% 55% / 0.4);
  border-right: 2px solid hsl(45 100% 55% / 0.4);
}
.comparison-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: hsl(148 35% 9% / 0.6); }
.comparison-table tbody td {
  padding: 0.9rem 1.25rem;
  text-align: center;
  color: var(--muted);
}
.comparison-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--foreground); }
.comparison-table tbody td.col-us {
  background: hsl(45 100% 55% / 0.04);
  color: var(--foreground);
  font-weight: 700;
  border-left: 2px solid hsl(45 100% 55% / 0.2);
  border-right: 2px solid hsl(45 100% 55% / 0.2);
}
.price-gold { font-family: var(--font-heading); font-size: 1.05rem; color: var(--gold); }
.price-cross { text-decoration: line-through; color: hsl(0 80% 55% / 0.75); }
.ico-yes  { color: var(--green-bright); font-weight: 700; }
.ico-no   { color: hsl(0 80% 55% / 0.65); }
.ico-part { color: var(--gold); font-size: 0.75rem; font-weight: 700; }

/* ── Features Grid ─────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}
.feature-card:hover { border-color: hsl(45 100% 55% / 0.35); transform: translateY(-4px); }
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--green));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::after { opacity: 1; }
.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: hsl(45 100% 55% / 0.08);
  border: 1px solid hsl(45 100% 55% / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.feature-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}
.feature-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ── Pricing ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.3s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.plan-badge-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: hsl(148, 45%, 4%);
  text-align: center;
  padding: 0.4rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.plan-body { padding: 1.75rem 1.5rem; }
.plan-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.plan-tagline { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.25rem; }
.plan-price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--foreground);
}
.plan-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.plan-save {
  display: inline-block;
  background: hsl(133 65% 42% / 0.13);
  color: var(--green-bright);
  border: 1px solid hsl(133 65% 42% / 0.3);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: block;
  width: fit-content;
}
.plan-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.plan-feat-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.plan-feat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.plan-feat svg { color: var(--green-bright); flex-shrink: 0; }
.plan-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: hsl(148, 45%, 4%);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.85rem;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px hsl(45 100% 55% / 0.28);
}
.plan-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px hsl(45 100% 55% / 0.45); }
.plan-cta.green-cta {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green-bright);
  box-shadow: none;
}
.plan-cta.green-cta:hover { background: hsl(133 65% 42% / 0.1); box-shadow: 0 4px 20px hsl(133 65% 42% / 0.2); }

/* ── How to Watch Steps ────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  position: relative;
}
.step-card { text-align: center; }
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: hsl(148, 45%, 4%);
  font-family: var(--font-display);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 24px hsl(45 100% 55% / 0.35);
}
.step-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.step-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }

/* ── Device Cards ──────────────────────────────────── */
.devices-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.device-card:hover { border-color: hsl(45 100% 55% / 0.4); transform: translateY(-3px); }
.device-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.device-name {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: hsl(45 100% 55% / 0.3); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.faq-plus::before { width: 9px; height: 1.5px; }
.faq-plus::after  { width: 1.5px; height: 9px; }
.faq-item[open] .faq-plus { background: var(--gold); border-color: var(--gold); }
.faq-item[open] .faq-plus::before,
.faq-item[open] .faq-plus::after { background: hsl(148, 45%, 4%); }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq-body strong { color: var(--foreground); }

/* ── Footer ───────────────────────────────────────── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-desc { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-top: 0.75rem; max-width: 280px; }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: var(--muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.65;
  opacity: 0.65;
  text-align: center;
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatBall {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(180deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.anim-up   { animation: fadeUp 0.65s ease both; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.text-shimmer-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-pale), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 2.8s linear infinite;
}
.ball-float { animation: floatBall 6s ease-in-out infinite; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  #mobile-toggle { display: block; }
  #hero { min-height: auto; padding: 3.5rem 0 3rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-desc  { max-width: none; }
  .steps-grid   { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(2.6rem, 14vw, 3.5rem); }
  .countdown-timer { gap: 0.4rem; }
  .countdown-num { font-size: 1.7rem; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── Sub-page Hero ──────────────────────────────── */
.page-hero { position: relative; padding: 7rem 0 4rem; overflow: hidden; }
.bg-field-sub { position: absolute; inset: 0; opacity: 0.4; }

.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.85rem;
}
.page-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 400; text-transform: uppercase;
  line-height: 1.05; letter-spacing: 0.02em; margin-bottom: 1.1rem;
}
.page-hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 620px; line-height: 1.75; margin-bottom: 2rem; }

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb { position: relative; z-index: 2; display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--muted); margin-bottom: 2rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: hsl(148 28% 22%); }

/* ── Prose / Article ─────────────────────────────── */
.article-wrap { max-width: 820px; margin: 0 auto; }
.prose { font-size: 1rem; line-height: 1.8; color: hsl(0 0% 85%); }
.prose h2 { font-family: var(--font-heading); font-size: clamp(1.3rem, 3vw, 1.75rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--foreground); margin: 2.5rem 0 0.75rem; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.prose h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold); margin: 1.75rem 0 0.5rem; }
.prose p { margin-bottom: 1.1rem; }
.prose strong { color: var(--foreground); font-weight: 600; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-pale); }
.prose ul, .prose ol { margin: 0.75rem 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.prose ul { list-style: disc; } .prose ol { list-style: decimal; }
.prose li { color: hsl(0 0% 80%); } .prose li strong { color: var(--foreground); }
.prose blockquote { border-left: 3px solid var(--gold); margin: 1.5rem 0; padding: 0.75rem 1.25rem; background: hsl(45 100% 55% / 0.05); border-radius: 0 var(--radius) var(--radius) 0; color: var(--muted); font-style: italic; }

/* ── Inline Compare Box ──────────────────────────── */
.compare-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow-x: auto; margin: 2rem 0; }
.compare-box table { width: 100%; border-collapse: collapse; min-width: 500px; font-size: 0.88rem; }
.compare-box th { padding: 0.85rem 1rem; background: hsl(148 35% 8%); font-family: var(--font-heading); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); text-align: left; border-bottom: 1px solid var(--border); }
.compare-box th.hl { color: var(--gold); }
.compare-box td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--muted); vertical-align: middle; }
.compare-box tr:last-child td { border-bottom: none; }
.compare-box td:first-child { font-weight: 600; color: var(--foreground); }
.compare-box td.hl { color: var(--foreground); font-weight: 700; background: hsl(45 100% 55% / 0.04); }
.chk-g { color: var(--green-bright); font-weight: 700; }
.chk-r { color: hsl(0 80% 55% / 0.7); }
.chk-y { color: var(--gold); font-size: 0.8rem; font-weight: 700; }

/* ── Step List ───────────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0 2rem; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; transition: border-color 0.2s; }
.step-item:hover { border-color: hsl(45 100% 55% / 0.3); }
.step-num-badge { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: hsl(148 45% 4%); font-family: var(--font-display); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 12px hsl(45 100% 55% / 0.3); }
.step-item-body h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.3rem; }
.step-item-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Info Cards ─────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin: 1.5rem 0 2rem; }
.info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color 0.2s, transform 0.2s; }
.info-card:hover { border-color: hsl(45 100% 55% / 0.3); transform: translateY(-2px); }
.info-card-icon { font-size: 1.75rem; margin-bottom: 0.6rem; }
.info-card-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.35rem; }
.info-card-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── Schedule Table ─────────────────────────────── */
.schedule-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin: 1.5rem 0; }
.schedule-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 480px; }
.schedule-table thead th { background: hsl(148 35% 8%); padding: 0.8rem 1rem; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); text-align: left; border-bottom: 1px solid var(--border); }
.schedule-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: hsl(148 35% 9% / 0.6); }
.schedule-table tbody td { padding: 0.75rem 1rem; color: var(--muted); }
.schedule-table tbody td:first-child { color: var(--foreground); font-weight: 600; }
.phase-final td { color: var(--gold) !important; font-weight: 700; }
.phase-semi  td { color: var(--green-bright) !important; }

/* ── Blog Cards ─────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.3s, transform 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: hsl(45 100% 55% / 0.35); transform: translateY(-4px); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-badge { padding: 0.3rem 0.7rem; font-family: var(--font-heading); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; background: hsl(45 100% 55% / 0.1); color: var(--gold); border: 1px solid hsl(45 100% 55% / 0.2); border-radius: 4px; width: fit-content; margin-bottom: 0.75rem; }
.blog-card-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.3; margin-bottom: 0.6rem; color: var(--foreground); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.75rem; color: hsl(148 14% 45%); margin-bottom: 1rem; }
.blog-card-link { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gold); display: flex; align-items: center; gap: 0.35rem; transition: gap 0.2s; }
.blog-card:hover .blog-card-link { gap: 0.6rem; }

/* ── CTA Inline ──────────────────────────────────── */
.cta-inline { background: linear-gradient(135deg, hsl(45 100% 55% / 0.07), hsl(133 65% 42% / 0.05)); border: 1px solid hsl(45 100% 55% / 0.25); border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin: 2.5rem 0; }
.cta-inline-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.cta-inline-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ── Responsive sub-pages ───────────────────────── */
@media (max-width: 768px) {
  .page-hero { padding: 2.5rem 0 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
  .step-item { flex-direction: column; }
}
