/* ═══════════════════════════════════════════════
   antiSTRAVA — page-home.css
   Hero · Manifesto · Stats · Roast Cards
   ═══════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 90px 16px 44px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,77,0,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(255,210,0,0.05) 0%, transparent 60%);
  transition: transform 0.1s linear;
}
[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,68,0,0.08) 0%, transparent 70%);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(74px, 23vw, 130px);
  line-height: 0.88; letter-spacing: -1px;
  margin-bottom: 6px; position: relative; z-index: 1;
}
.hero-title .anti  { color: var(--orange); display: block; }
.hero-title .strava {
  color: var(--text-3); position: relative; display: block;
}
.hero-title .strava::after {
  content: '';
  position: absolute; left: -4px; right: -4px; top: 50%;
  height: 5px; background: var(--orange);
  transform: translateY(-50%) rotate(-0.8deg);
}
.hero-sub {
  font-size: calc(13px * var(--fs-scale));
  color: var(--text-2); line-height: 1.8;
  max-width: 340px; margin-top: 20px;
  font-style: italic; position: relative; z-index: 1;
}
.hero-sub strong { color: var(--text); font-style: normal; }
.hero-scroll {
  margin-top: 36px; position: relative; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  font-size: calc(10px * var(--fs-scale));
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-3); animation: pulse 2.5s infinite;
}
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--orange), transparent); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── MANIFESTO ── */
.manifesto { background: var(--bg-2); border-top: 1px solid var(--border); }
.manifesto-letter {
  font-size: calc(13px * var(--fs-scale));
  line-height: 2; color: var(--text-2);
  border-left: 2px solid var(--orange); padding-left: 18px;
}
.manifesto-letter p { margin-bottom: 18px; }
.manifesto-letter strong { color: var(--text); }
.manifesto-letter .hl { color: var(--orange); font-weight: 600; }
.manifesto-sig {
  margin-top: 28px;
  font-size: calc(11px * var(--fs-scale));
  color: var(--text-3); font-style: italic;
}
.manifesto-sig strong { color: var(--green); font-style: normal; }

.pull-quote {
  border-left: 3px solid var(--orange);
  padding: 14px 16px;
  background: var(--orange-glow);
  margin: 22px 0; border-radius: 0 4px 4px 0;
}
.pull-quote p {
  font-size: calc(14px * var(--fs-scale));
  line-height: 1.7; color: var(--text); font-style: italic;
}
.pull-quote cite {
  display: block; margin-top: 8px;
  font-size: calc(9px * var(--fs-scale));
  color: var(--orange); letter-spacing: 2px;
  text-transform: uppercase; font-style: normal;
}

/* ── STATS TABLE ── */
.stats-table {
  width: 100%; border-collapse: collapse;
  font-size: calc(11px * var(--fs-scale));
}
.stats-table thead tr { border-bottom: 2px solid var(--orange); }
.stats-table thead th {
  padding: 10px 8px; text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: calc(15px * var(--fs-scale)); letter-spacing: 2px;
}
.stats-table thead th:first-child { color: var(--text-3); width: 80px; }
.stats-table thead th:nth-child(2) { color: var(--text-3); }
.stats-table thead th:last-child  { color: var(--orange); }
.stats-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.stats-table tbody tr:hover { background: var(--bg-3); }
.stats-table td { padding: 13px 8px; vertical-align: top; line-height: 1.6; color: var(--text-2); }
.stats-table td:last-child { color: var(--text); }
.stats-table td.cat {
  font-size: calc(9px * var(--fs-scale));
  letter-spacing: 1px; text-transform: uppercase; color: var(--text-3);
}

/* ── ROAST CARDS ── */
.roast-list { display: flex; flex-direction: column; gap: 10px; }
.roast-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 4px; padding: 18px 16px;
  position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.roast-card:hover { border-color: var(--orange); transform: translateX(3px); }
.roast-card::before {
  content: '"'; position: absolute;
  top: -12px; left: 10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 72px;
  color: var(--orange); opacity: 0.1; line-height: 1; pointer-events: none;
}
.roast-card.featured {
  background: var(--orange); border-color: var(--orange);
}
.roast-card.featured .roast-text  { color: #000; font-weight: 600; }
.roast-card.featured .roast-tag   { color: rgba(0,0,0,0.45); }
.roast-card.featured::before      { color: #000; opacity: 0.07; }
.roast-text {
  font-size: calc(13px * var(--fs-scale));
  line-height: 1.8; color: var(--text); position: relative; z-index: 1;
}
.roast-tag {
  margin-top: 10px;
  font-size: calc(9px * var(--fs-scale));
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); opacity: 0.7;
}

/* ── SCIENCE CARDS ── */
.science-list { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.science-item {
  background: var(--bg-3); padding: 18px 16px;
  border-bottom: 1px solid var(--border);
}
.science-item:last-child { border-bottom: none; }
.science-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px;
  color: var(--orange); opacity: 0.25; line-height: 1; margin-bottom: 6px;
}
.science-text { font-size: calc(12px * var(--fs-scale)); color: var(--text-2); line-height: 1.8; }
.science-text strong { color: var(--text); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
