@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,700;1,8..60,700&family=Manrope:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg: #14181c;
  --surface: #1f2731;
  --surface2: #273040;
  --text: #e1e6ed;
  --muted: #728095;
  --orange: #ff8000;
  --green: #00c030;
  --display: "Source Serif 4", serif;
  --body: "Manrope", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: rgba(20,24,28,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
}
.logo em { font-style: normal; color: var(--orange); }
.header-cta {
  display: inline-block;
  padding: 9px 22px;
  background: var(--orange);
  color: #000 !important;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 4px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.header-cta:hover { opacity: 0.85; }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-wrap {
  background: #0a0d10;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: ticker 30s linear infinite;
}
.ticker-track span { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; }
.ticker-track span.orange { color: var(--orange); }
.ticker-track span.green { color: var(--green); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 48px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 30%, var(--bg) 100%),
    linear-gradient(135deg, #1a2030 0%, #0d1520 100%);
  z-index: 0;
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 1rem; color: var(--muted); max-width: 54ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--orange);
  color: #000 !important;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.hero-btn:hover { opacity: 0.85; }
.hero-btn-ghost {
  font-size: 0.85rem;
  color: var(--text) !important;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: border-color 0.2s, color 0.2s;
}
.hero-btn-ghost:hover { border-color: var(--orange); color: var(--orange) !important; }

.hero-stats {
  position: absolute;
  top: 32px;
  right: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-stat-pill {
  background: rgba(31,39,49,0.85);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 6px;
  text-align: right;
}
.hero-stat-pill .v { font-family: var(--mono); font-size: 1.3rem; color: var(--orange); font-weight: 600; line-height: 1; }
.hero-stat-pill .k { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 2px; }

/* ── SECTION ─────────────────────────────────────────────── */
.section {
  padding: 56px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 8px;
}
.section h2 {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.section p { max-width: 64ch; color: var(--text); opacity: 0.85; margin-bottom: 12px; }
.section h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ── POSTER GRID ─────────────────────────────────────────── */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.poster-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.25s;
  cursor: pointer;
}
.poster-card:hover { transform: translateY(-4px) scale(1.02); }
.poster-inner {
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 12px;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.9) 100%);
  position: relative;
}
.poster-bg {
  position: absolute;
  inset: 0;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.4;
}
.poster-content { position: relative; z-index: 1; }
.poster-title { font-family: var(--body); font-weight: 700; font-size: 0.82rem; color: var(--text); line-height: 1.2; }
.poster-provider { font-family: var(--mono); font-size: 0.62rem; color: var(--muted); margin-top: 3px; }
.poster-rating { font-family: var(--mono); font-size: 0.75rem; color: var(--orange); margin-top: 4px; }
.poster-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  background: var(--orange);
  color: #000;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 2px;
  text-transform: uppercase;
}
.poster-tag.green { background: var(--green); }

/* ── TWO COL ─────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 20px;
}

/* ── STEP LIST ───────────────────────────────────────────── */
.step-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.step-text strong { display: block; font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 3px; }
.step-text span { font-size: 0.82rem; color: var(--muted); }

/* ── BONUS TABLE ─────────────────────────────────────────── */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.bonus-table th {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  padding: 0 0 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bonus-table td {
  padding: 13px 16px 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
  color: var(--text);
  vertical-align: top;
}
.bonus-hl { color: var(--orange); font-weight: 700; }
.bonus-green { color: var(--green); font-weight: 700; }

/* ── REVIEW CARD ─────────────────────────────────────────── */
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.review-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 20px;
}
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.review-title { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.review-rating { font-family: var(--mono); font-size: 0.75rem; color: var(--orange); }
.review-body { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* ── PAYMENT LIST ────────────────────────────────────────── */
.pay-list { display: flex; flex-direction: column; gap: 0; margin-top: 16px; }
.pay-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
  align-items: center;
}
.pay-row:last-child { border-bottom: none; }
.pay-name { font-weight: 600; color: var(--text); }
.pay-time { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); }
.pay-min { font-family: var(--mono); font-size: 0.72rem; color: var(--green); }

/* ── RATING BLOCK ────────────────────────────────────────── */
.rating-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border-radius: 6px;
  margin-top: 24px;
}
.rating-big { font-family: var(--mono); font-size: 3.5rem; color: var(--orange); font-weight: 600; line-height: 1; }
.rating-info .stars { font-size: 1.2rem; color: var(--orange); }
.rating-info .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-top: 4px; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--surface);
}
.cta-section .eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 12px;
}
.cta-section h2 {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-section h2 em { font-style: normal; color: var(--orange); }
.cta-section p { max-width: 52ch; margin: 0 auto 36px; color: var(--muted); }
.cta-btn {
  display: inline-block;
  padding: 18px 52px;
  background: var(--orange);
  color: #000 !important;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 4px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.cta-btn:hover { opacity: 0.85; }
.cta-note { margin-top: 20px; font-size: 0.72rem; color: var(--muted); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  padding: 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}
.footer-logo { font-family: var(--display); font-style: italic; font-weight: 700; font-size: 1rem; color: var(--text); }

/* ── PROS/CONS ───────────────────────────────────────────── */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.verdict-card {
  background: var(--surface);
  border-radius: 6px;
  padding: 20px;
}
.verdict-card h3 { color: var(--orange); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.verdict-card.cons h3 { color: var(--muted); }
.verdict-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.verdict-list li { font-size: 0.85rem; color: var(--text); opacity: 0.8; padding-left: 18px; position: relative; }
.verdict-list li::before { position: absolute; left: 0; font-weight: 700; }
.verdict-list.pros li::before { content: "✓"; color: var(--green); }
.verdict-list.cons li::before { content: "✗"; color: var(--muted); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1000px) { .poster-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .review-grid { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .section { padding: 40px 20px; }
  .site-header { padding: 12px 20px; }
  .hero { padding: 0 20px 40px; }
  .cta-section { padding: 56px 20px; }
}
@media (max-width: 600px) { .poster-grid { grid-template-columns: repeat(2, 1fr); } }
