/* ===== VARIABLES ===== */
:root {
  --ink: #1A1612;
  --ink-deep: #12100D;
  --accent: #E8611A;
  --accent-light: #F07B3A;
  --ice: #E8E2DA;
  --slate: #7A7168;
  --font-heading: 'Clash Display', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --font-mono: 'Azeret Mono', monospace;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--ice);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== SCANLINE OVERLAY ===== */
.scanline {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.015) 2px,
    rgba(255, 255, 255, 0.015) 3px
  );
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10000;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  height: 56px;
  background: rgba(26, 22, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 97, 26, 0.1);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}
.nav-ca {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  cursor: pointer;
  transition: color 0.2s;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-ca:hover { color: var(--ice); }
.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-links a {
  color: var(--ice);
  display: flex;
  align-items: center;
  transition: filter 0.2s, color 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(232, 97, 26, 0.5));
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('static/hero.png') center/cover no-repeat;
  z-index: -2;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 22, 18, 0.55) 0%,
    rgba(26, 22, 18, 0.72) 50%,
    var(--ink) 100%
  );
}
.hero-content {
  text-align: center;
  padding: 0 1.5rem;
  z-index: 1;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 700;
  color: var(--ice);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 2.5rem;
}
.cta-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 0.7rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}
.btn-primary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(232, 97, 26, 0.3);
}
.btn-primary:hover {
  background: rgba(232, 97, 26, 0.08);
  border-color: var(--accent);
  text-shadow: 0 0 8px rgba(232, 97, 26, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--ice);
  border: 1px solid rgba(232, 226, 218, 0.15);
}
.btn-outline:hover {
  border-color: rgba(232, 97, 26, 0.3);
  color: var(--accent);
  background: rgba(232, 97, 26, 0.04);
}

/* CA Strip */
.ca-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(232, 97, 26, 0.04);
  border-top: 1px solid rgba(232, 97, 26, 0.08);
  border-bottom: 1px solid rgba(232, 97, 26, 0.08);
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 1;
  transition: background 0.2s;
}
.ca-strip:hover { background: rgba(232, 97, 26, 0.07); }
.ca-strip-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ice);
}
.ca-copy-icon {
  color: var(--slate);
  flex-shrink: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  animation: pulse-hint 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes pulse-hint {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ===== VERDICT SECTION ===== */
.verdict {
  position: relative;
}
.block {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.spacer { height: 60px; }

/* Tweet embed */
.block-tweet {
  padding-bottom: 0;
}
.tweet-embed {
  width: 100%;
}
.tweet-embed .twitter-tweet {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 100% !important;
}
.tweet-embed iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* Block A — THEY ALL SAID */
.block-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.accusations li {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--ice);
  padding: 0.75rem 0;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.accusations li.visible {
  opacity: 1;
  transform: translateX(0);
}
.accusations li::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 2.5px;
  width: 0;
  background: var(--accent);
  pointer-events: none;
}
.accusations li.visible::after {
  animation: strikethrough 0.6s ease forwards;
  animation-delay: 0.4s;
}
@keyframes strikethrough {
  from { width: 0; }
  to { width: 100%; }
}

/* Block B — IMPACT */
.block-b {
  text-align: center;
  padding: 6rem 1.5rem;
}
.impact-text {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 0.95;
  text-shadow: 0 0 40px rgba(232, 97, 26, 0.3);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.impact-text.visible {
  opacity: 1;
  transform: scale(1);
}
.impact-line {
  width: 120px;
  height: 2px;
  background: var(--accent);
  margin: 2.5rem auto 0;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.impact-text.visible ~ .impact-line { opacity: 1; }

/* Block C — PROOF POINTS */
.block-title-cyan {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(232, 97, 26, 0.3);
  margin-bottom: 0.75rem;
}
.block-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 3rem;
}
.proof-points li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(232, 97, 26, 0.08);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.proof-points li:first-child { border-top: 1px solid rgba(232, 97, 26, 0.08); }
.proof-points li.visible {
  opacity: 1;
  transform: translateX(0);
}
.proof-points li:nth-child(1) { transition-delay: 0s; }
.proof-points li:nth-child(2) { transition-delay: 0.15s; }
.proof-points li:nth-child(3) { transition-delay: 0.3s; }
.proof-points li:nth-child(4) { transition-delay: 0.45s; }
.proof-points li:nth-child(5) { transition-delay: 0.6s; }
.proof-num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(232, 97, 26, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}
.proof-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.25rem;
}
.proof-content strong {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--ice);
}
.proof-content span {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.5;
}

/* Block D — THE MOMENT */
.block-d {
  text-align: center;
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom, rgba(232, 97, 26, 0.04), transparent);
  max-width: 100%;
}
.cascade-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 600;
  color: var(--ice);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  border: none;
}
.cascade-quote .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cascade-quote .word.visible {
  opacity: 1;
  transform: translateY(0);
}
.cascade-quote .word.coral {
  color: var(--accent);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
}
.cascade-follow {
  margin-top: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cascade-follow.visible { opacity: 1; }
.follow-text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--accent-light);
  text-shadow: 0 0 20px rgba(240, 123, 58, 0.3);
}

/* Block E — BUY STEPS */
.block-title-ice {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--ice);
  margin-bottom: 2.5rem;
  text-align: center;
}
.buy-steps li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(232, 97, 26, 0.06);
  transition: background 0.2s, opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
  transform: translateX(-20px);
}
.buy-steps li.visible {
  opacity: 1;
  transform: translateX(0);
}
.buy-steps li:first-child { border-top: 1px solid rgba(232, 97, 26, 0.06); }
.buy-steps li:hover { background: rgba(232, 97, 26, 0.03); }
.buy-steps li:nth-child(1) { transition-delay: 0s; }
.buy-steps li:nth-child(2) { transition-delay: 0.12s; }
.buy-steps li:nth-child(3) { transition-delay: 0.24s; }
.buy-steps li:nth-child(4) { transition-delay: 0.36s; }
.step-num {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ice);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink-deep);
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--ice);
  font-weight: 600;
  animation: pulse-tag 4s ease-in-out infinite;
}
@keyframes pulse-tag {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.footer-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate);
  margin-top: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-ca { display: none; }
  .nav { padding: 0 1rem; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 260px; text-align: center; }
  .block { padding: 3.5rem 1.25rem; }
  .impact-text { font-size: clamp(2.5rem, 12vw, 5rem); }
  .proof-points li { flex-direction: column; gap: 0.5rem; }
  .proof-num { min-width: unset; font-size: 36px; }
  .buy-steps li { padding: 1rem 1rem; }
  .cascade-quote { font-size: clamp(18px, 5vw, 24px); }
}
