/* ==========================================================
   Side Hustle Summit 2026 shared stylesheet
   Brand: near-black + logo green, condensed display type
   ========================================================== */

:root {
  --bg: #050806;
  --bg-alt: #0a120c;
  --panel: #0d1810;
  --line: rgba(0, 194, 92, 0.2);
  --green: #00c25c;
  --green-hot: #05e462;
  --green-deep: #008745;
  --ink: #eef5ef;
  --ink-dim: #a8bcad;
  --warn: #ffc857;
  --font-display: "Anton", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(0, 194, 92, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

main,
.site-header,
.site-footer,
.marquee {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--green-hot);
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.narrow {
  width: min(820px, 92vw);
  margin-inline: auto;
}

/* ---------------- typography ---------------- */

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

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin: 0.5rem 0 1.2rem;
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

.prose p + p,
.prose ul,
.prose ol,
.prose h2,
.prose h3 {
  margin-top: 1.2rem;
}

.prose h2 {
  margin-top: 2.8rem;
}

.prose h3 {
  margin-top: 2rem;
  color: var(--green-hot);
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
  color: var(--ink-dim);
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose li::marker {
  color: var(--green);
}

.accent {
  color: var(--green-hot);
  text-shadow: 0 0 28px rgba(5, 228, 98, 0.45);
}

strong {
  color: var(--ink);
}

.lead {
  font-size: 1.18rem;
  color: var(--ink-dim);
  max-width: 40rem;
}

.section-sub {
  color: var(--ink-dim);
  max-width: 46rem;
  margin-bottom: 2.4rem;
}

.muted {
  color: var(--ink-dim);
}

/* ---------------- header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 6, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 140px;
}

.site-header nav {
  display: flex;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.site-header nav a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--green-hot);
}

/* ---------------- buttons ---------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-small {
  background: transparent;
  color: var(--green-hot);
  border: 1.5px solid var(--green);
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.btn-small:hover {
  background: rgba(0, 194, 92, 0.12);
}

.btn-primary {
  background: linear-gradient(115deg, var(--green) 0%, var(--green-hot) 100%);
  color: #04140a;
  padding: 1.05rem 2.1rem;
  font-size: 1.02rem;
  box-shadow: 0 0 34px rgba(5, 228, 98, 0.35), 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 55px rgba(5, 228, 98, 0.55), 0 10px 26px rgba(0, 0, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--green-hot);
  border: 1.5px solid var(--green);
  padding: 1rem 2rem;
  font-size: 0.98rem;
}

.btn-outline:hover {
  background: rgba(0, 194, 92, 0.12);
}

.btn-link {
  color: var(--green-hot);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin: 1.6rem 0;
}

.cta-center {
  margin-top: 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.cta-note {
  color: var(--ink-dim);
  font-size: 0.88rem;
}

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  padding: 4.2rem 0 3rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(0, 173, 90, 0.3) 0%, transparent 62%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  background: rgba(13, 24, 16, 0.8);
  color: var(--green-hot);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-hot);
  box-shadow: 0 0 0 0 rgba(5, 228, 98, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(5, 228, 98, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(5, 228, 98, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 228, 98, 0); }
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% 0 -6%;
  background: radial-gradient(ellipse at 50% 60%, rgba(0, 194, 92, 0.55) 0%, rgba(0, 173, 90, 0.28) 45%, transparent 72%);
  filter: blur(14px);
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.6));
  animation: float-in 0.9s ease both;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 74%, transparent 98%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 74%, transparent 98%);
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  flex-wrap: wrap;
}

.hero-stats dt {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

.hero-stats dd {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--green-hot);
}

/* page hero (inner pages) */

.page-hero {
  padding: 3.2rem 0 1rem;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 40vw;
  max-width: 900px;
  background: radial-gradient(circle, rgba(0, 173, 90, 0.16) 0%, transparent 65%);
  pointer-events: none;
}

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.breadcrumbs a {
  color: var(--ink-dim);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--green-hot);
}

.updated {
  font-size: 0.82rem;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 2.4rem;
}

/* ---------------- countdown ---------------- */

.countdown-wrap {
  margin: 1.8rem 0 0.4rem;
}

.countdown {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.countdown-tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0;
  width: 84px;
  text-align: center;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 1.95rem;
  color: var(--green-hot);
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.countdown-caption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
}

.countdown-open {
  display: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-hot);
}

/* ---------------- marquee ---------------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 0.8rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 36s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--green-deep);
}

.marquee-track span {
  padding-right: 2rem;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------- sections ---------------- */

.section {
  padding: 4.6rem 0;
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.2rem;
  align-items: center;
}

.about-figure img {
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.about-figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
  text-align: center;
}

/* ---------------- verdict box ---------------- */

.verdict {
  background: linear-gradient(180deg, rgba(0, 194, 92, 0.14) 0%, rgba(13, 24, 16, 0.6) 100%);
  border: 1px solid rgba(5, 228, 98, 0.4);
  border-top: 3px solid var(--green-hot);
  border-radius: 16px;
  padding: 2.2rem;
  margin: 2rem 0;
}

.verdict-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-hot);
}

.verdict h2,
.verdict h3 {
  margin: 0.4rem 0 0.8rem;
}

.verdict p {
  color: var(--ink-dim);
}

/* ---------------- fact table ---------------- */

.facts {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
  font-size: 0.98rem;
}

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

.facts th {
  color: var(--ink-dim);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  width: 38%;
}

.facts td {
  color: var(--ink);
}

.table-scroll {
  overflow-x: auto;
}

/* status pills */

.pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pill-ok {
  background: rgba(0, 194, 92, 0.16);
  color: var(--green-hot);
  border: 1px solid rgba(5, 228, 98, 0.4);
}

.pill-wait {
  background: rgba(255, 200, 87, 0.12);
  color: var(--warn);
  border: 1px solid rgba(255, 200, 87, 0.35);
}

/* ---------------- cards grid ---------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.8rem;
}

.card h3 {
  margin: 0.7rem 0 0.8rem;
  color: var(--ink);
}

.card p {
  color: var(--ink-dim);
  font-size: 0.98rem;
}

.card-step {
  font-family: var(--font-display);
  color: var(--green-hot);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* link cards (internal linking) */

.link-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.link-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.link-card:hover {
  border-color: rgba(5, 228, 98, 0.5);
  transform: translateY(-3px);
}

.link-card h3 {
  font-size: 1.1rem;
  color: var(--green-hot);
  margin-bottom: 0.4rem;
}

.link-card p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ---------------- hosts ---------------- */

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.host-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.2rem;
  transition: border-color 0.25s, transform 0.25s;
}

.host-card:hover {
  border-color: rgba(5, 228, 98, 0.5);
  transform: translateY(-4px);
}

.host-card img {
  display: block;
  margin-inline: auto;
  border-radius: 12px;
  margin-bottom: 1.4rem;
  width: 340px;
}

.host-card h3 {
  font-size: 1.7rem;
  color: var(--green-hot);
}

.host-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  margin: 0.3rem 0 1rem;
}

.host-card p {
  color: var(--ink-dim);
}

/* portrait for inner pages */

.portrait {
  float: right;
  width: 260px;
  margin: 0 0 1.5rem 2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
}

/* ---------------- pros / cons ---------------- */

.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin: 2rem 0;
}

.proscons > div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem;
}

.proscons h3 {
  margin-bottom: 1rem;
}

.proscons ul {
  list-style: none;
  padding: 0;
}

.proscons li {
  color: var(--ink-dim);
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 0.98rem;
}

.pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--green-hot);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
}

.cons li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--warn);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
}

/* ---------------- timeline ---------------- */

.timeline {
  list-style: none;
  margin-top: 2.2rem;
  position: relative;
  padding-left: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.6rem;
  padding: 0 0 2.2rem 0;
  position: relative;
}

.timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 152px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--green), transparent);
  opacity: 0.35;
}

.timeline time {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-hot);
  text-align: right;
  padding-top: 0.1rem;
}

.timeline li > div {
  padding-left: 2.4rem;
  position: relative;
}

.timeline li > div::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-hot);
  box-shadow: 0 0 14px rgba(5, 228, 98, 0.8);
}

.timeline h3 {
  margin-bottom: 0.4rem;
}

.timeline p {
  color: var(--ink-dim);
  font-size: 0.98rem;
}

/* ---------------- steps ---------------- */

.steps {
  counter-reset: step;
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1.3rem;
  padding: 0;
}

.steps li {
  counter-increment: step;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.8rem 1.5rem 4.6rem;
  position: relative;
  color: var(--ink-dim);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-hot);
  width: 2.2rem;
  text-align: center;
}

/* ---------------- earnings / offers (affiliates) ---------------- */

.earnings-banner {
  margin: 2.4rem 0 1.6rem;
  padding: 2.2rem 1.6rem;
  text-align: center;
  border: 1px solid rgba(5, 228, 98, 0.4);
  border-top: 3px solid var(--green-hot);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 194, 92, 0.16) 0%, rgba(13, 24, 16, 0.6) 100%);
}

.earnings-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-hot);
}

.earnings-amount {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.1;
  margin: 0.3rem 0;
}

.earnings-note {
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 34rem;
  margin-inline: auto;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.offer-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.6rem 1rem;
  text-align: center;
}

.offer-name {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}

.offer-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin: 0.3rem 0 0.1rem;
}

.offer-sub {
  font-size: 0.8rem;
  color: var(--ink-dim);
}

/* contests */

.contests-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.8rem;
}

.contest + .contest {
  border-left: 1px solid var(--line);
  padding-left: 3rem;
}

.contest-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-hot);
}

.contest h3 {
  font-size: 1.9rem;
  margin: 0.3rem 0 0.4rem;
}

.contest-desc {
  color: var(--ink-dim);
  font-size: 0.95rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.prize-rows {
  list-style: none;
  padding: 0;
}

.prize-rows li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.prize-rows li:last-child {
  border-bottom: none;
}

.medal {
  font-size: 1.9rem;
  line-height: 1;
  flex-shrink: 0;
}

.place {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
}

.prize-rows strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.15;
}

/* ---------------- faq ---------------- */

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1.6rem;
  transition: border-color 0.2s;
}

.faq-list details[open] {
  border-color: rgba(5, 228, 98, 0.5);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-hot);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list summary h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0;
  color: var(--ink);
}

.faq-list details p {
  margin-top: 1rem;
  color: var(--ink-dim);
}

/* ---------------- footer ---------------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 3.2rem 0 2.6rem;
}

.site-footer img {
  width: 120px;
  margin-bottom: 1.4rem;
}

.footer-nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.footer-nav a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--green-hot);
}

.disclosure {
  color: var(--ink-dim);
  font-size: 0.9rem;
  max-width: 58rem;
  margin-bottom: 1rem;
}

.fineprint {
  color: rgba(168, 188, 173, 0.55);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.fineprint a {
  color: var(--ink-dim);
}

/* ---------------- modal ---------------- */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 4, 0.8);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1.5rem;
}

.modal {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid rgba(5, 228, 98, 0.45);
  border-top: 3px solid var(--green-hot);
  border-radius: 16px;
  max-width: 30rem;
  padding: 2.4rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(5, 228, 98, 0.15);
  animation: float-in 0.25s ease both;
}

.modal h3 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0.4rem 0 0.8rem;
}

.modal p {
  color: var(--ink-dim);
}

.modal-kicker {
  color: var(--green-hot);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.modal-alt {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--ink-dim);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--green-hot);
}

/* ---------------- responsive ---------------- */

@media (max-width: 980px) {
  .cards,
  .link-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .hosts-grid,
  .proscons,
  .contests-panel,
  .cards,
  .cards-2,
  .link-cards {
    grid-template-columns: 1fr;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }

  .countdown-tile {
    width: 72px;
  }

  .contests-panel {
    padding: 2rem;
    gap: 2rem;
  }

  .contest + .contest {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
  }

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

  .timeline li {
    grid-template-columns: 84px 1fr;
  }

  .timeline li:not(:last-child)::before {
    left: 126px;
  }

  .timeline time {
    font-size: 1rem;
  }

  .portrait {
    float: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 1.5rem;
    display: block;
  }
}

/* ==========================================================
   Answer-engine blocks: TL;DR, quick facts, comparison table,
   author box. Same markup as the review pages, dressed in the
   dark brand palette.
   ========================================================== */

.tldr {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-hot);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
}

.tldr-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-hot);
  margin-bottom: 0.35rem;
}

.tldr p:last-child {
  color: var(--ink);
  font-size: 1.02rem;
  margin: 0;
}

.quick-facts {
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.quick-facts > div {
  display: grid;
  grid-template-columns: minmax(110px, 28%) 1fr;
  gap: 1rem;
  padding: 0.7rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

.quick-facts > div:last-child {
  border-bottom: none;
}

.quick-facts > div:nth-child(odd) {
  background: var(--bg-alt);
}

.quick-facts dt {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.88rem;
}

.quick-facts dd {
  color: var(--ink-dim);
  font-size: 0.96rem;
}

/* ---- comparison table ---- */

.compare-wrap {
  overflow-x: auto;
  margin: 1.6rem 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 0.95rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table thead th {
  background: var(--bg-alt);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.compare-table tbody th {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.86rem;
  white-space: nowrap;
}

.compare-table td {
  color: var(--ink-dim);
}

.compare-table .is-current {
  background: rgba(0, 194, 92, 0.07);
}

.compare-table thead .is-current {
  box-shadow: inset 0 3px 0 var(--green-hot);
  color: var(--green-hot);
}

.here-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-hot);
  margin-top: 0.2rem;
}

/* ---- author box ---- */

.author-box {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
}

.author-avatar {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-hot) 0%, var(--green-deep) 100%);
  color: #04180c;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
}

.author-box .author-label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--green-hot);
}

.author-box h3 {
  margin: 0.15rem 0 0.55rem;
}

.author-box p {
  font-size: 0.96rem;
  color: var(--ink-dim);
}

.author-box p + p {
  margin-top: 0.7rem;
}

.author-box .author-disclaimer {
  margin-top: 0.9rem;
  font-size: 0.81rem;
  color: var(--ink-dim);
  opacity: 0.75;
  font-style: italic;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .quick-facts > div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .author-box {
    flex-direction: column;
    gap: 0.9rem;
  }
}

/* Entity disambiguation note: which of the similarly named things this
   page is actually about. */
.disambig {
  margin-top: 1.1rem;
  padding: 0.85rem 1.1rem;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--ink-dim);
  font-size: 0.88rem;
  line-height: 1.6;
}

.disambig strong {
  color: var(--ink);
}
