/* ============================================================
   CETROTV — Editorial Broadcast / VHS-Tabloid
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,400..900,0..100;1,9..144,400..900,0..100&family=Geist:wght@300..800&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --ink: #0c0c0d;
  --ink-2: #161617;
  --ink-3: #232325;
  --paper: #f3ece0;
  --paper-2: #e8dfcb;
  --paper-3: #d9cfb7;
  --blood: #ff2e2e;
  --blood-deep: #c81c1c;
  --volt: #d8ff36;
  --volt-deep: #bce81d;
  --signal: #ff7a00;
  --grid-line: rgba(243, 236, 224, .07);
  --muted: #888280;

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Geist', 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Geometry */
  --gutter: clamp(16px, 3vw, 32px);
  --bar: 1px;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-paper: 6px 6px 0 var(--paper);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, .25);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }
button { font-family: inherit; }

/* ---------- Global texture (scanlines + grain) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, .025) 0px,
    rgba(255, 255, 255, .025) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  opacity: .6;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
  mix-blend-mode: overlay;
  opacity: .35;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Top marquee ---------- */
.tape {
  background: var(--blood);
  color: var(--ink);
  border-bottom: var(--bar) solid var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.tape-track {
  display: inline-flex;
  gap: 40px;
  padding: 9px 0;
  animation: tape 38s linear infinite;
  will-change: transform;
}
.tape-track span::after {
  content: "●";
  margin-left: 40px;
  opacity: .5;
}
@keyframes tape {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--ink);
  border-bottom: var(--bar) solid rgba(243, 236, 224, .12);
}
.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -1.5px;
  color: var(--paper);
  line-height: 1;
}
.logo::before {
  content: "▮";
  font-style: normal;
  color: var(--blood);
  font-size: 22px;
  margin-right: 6px;
  transform: translateY(-2px);
}
.logo span { color: var(--volt); font-style: italic; }

.site-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  justify-content: center;
}
.site-header nav a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-3);
  position: relative;
  padding-bottom: 4px;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--volt);
  transition: right .25s ease;
}
.site-header nav a:hover { color: var(--paper); }
.site-header nav a:hover::after { right: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 22px 13px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  position: relative;
}
.btn-primary {
  background: var(--volt);
  color: var(--ink);
  border: var(--bar) solid var(--ink);
  box-shadow: var(--shadow-hard-paper);
}
.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--paper);
  background: var(--paper);
}
.btn-blood {
  background: var(--blood);
  color: var(--paper);
  border: var(--bar) solid var(--paper);
  box-shadow: var(--shadow-hard-paper);
}
.btn-blood:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--paper);
}
.btn-outline {
  background: transparent;
  color: var(--paper);
  border: var(--bar) solid var(--paper);
}
.btn-outline:hover {
  background: var(--paper);
  color: var(--ink);
}
.btn-lg {
  padding: 18px 28px 17px;
  font-size: 14px;
}
.btn-sm {
  padding: 10px 16px 9px;
  font-size: 11px;
}
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 50px 0 70px;
  border-bottom: var(--bar) solid rgba(243, 236, 224, .12);
  background-image:
    radial-gradient(800px 500px at 80% 10%, rgba(255, 46, 46, .14), transparent 70%),
    radial-gradient(900px 600px at 10% 100%, rgba(216, 255, 54, .08), transparent 70%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-3);
  margin-bottom: 26px;
  padding: 6px 12px;
  border: 1px solid var(--paper-3);
  background: rgba(243, 236, 224, .03);
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blood);
  box-shadow: 0 0 0 4px rgba(255, 46, 46, .2);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(255, 46, 46, 0); }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 0 0 24px;
  color: var(--paper);
}
.hero h1 .it {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--volt);
}
.hero h1 .underline {
  display: inline-block;
  position: relative;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.09em;
  background: var(--blood);
  z-index: -1;
}

.hero-lead {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--paper-2);
  max-width: 540px;
  margin: 0 0 32px;
  font-variation-settings: "opsz" 30;
}
.hero-lead em { color: var(--paper); font-style: italic; }

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-microcopy {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.hero-microcopy span { display: inline-flex; align-items: center; gap: 8px; }
.hero-microcopy span::before {
  content: "+";
  color: var(--volt);
  font-weight: 700;
}

/* ---------- TV mockup (broadcast frame) ---------- */
.tv {
  position: relative;
  background: var(--ink-2);
  border: var(--bar) solid var(--paper);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  padding: 14px;
  font-family: var(--mono);
  box-shadow: 12px 12px 0 var(--blood), 12px 12px 0 1px var(--paper);
}
.tv-bezel {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--paper-3);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.tv-bezel .live {
  color: var(--blood);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tv-bezel .live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blood);
  animation: pulse 1.4s ease-in-out infinite;
}
.tv-screen {
  flex: 1;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, .04) 0px,
      rgba(255, 255, 255, .04) 1px,
      transparent 1px,
      transparent 4px
    ),
    radial-gradient(circle at 30% 30%, rgba(255, 46, 46, .25), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(216, 255, 54, .2), transparent 60%),
    var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.tv-screen::before {
  content: "";
  position: absolute;
  top: 14px; right: 14px;
  width: 60px; height: 8px;
  background: linear-gradient(90deg,
    #ff2e2e 0 14.28%,
    #ff7a00 14.28% 28.57%,
    #d8ff36 28.57% 42.85%,
    #00b8a9 42.85% 57.14%,
    #1f8efa 57.14% 71.42%,
    #6a35ff 71.42% 85.71%,
    #ff35d8 85.71% 100%);
}
.tv-screen .show-title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-weight: 500;
}
.tv-screen .show-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-3);
  margin-top: 8px;
}
.tv-ribbon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--blood);
  color: var(--ink);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}
.tv-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 12px;
}
.tv-channel {
  background: var(--ink-3);
  border: 1px solid rgba(243, 236, 224, .12);
  padding: 7px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--paper-3);
  text-transform: uppercase;
}
.tv-channel.hot {
  background: var(--blood);
  color: var(--paper);
  border-color: var(--blood);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .tv { aspect-ratio: 4/3; }
}

/* ---------- Stats row (trust strip) ---------- */
.stats {
  border-top: var(--bar) solid rgba(243, 236, 224, .12);
  border-bottom: var(--bar) solid rgba(243, 236, 224, .12);
  background: var(--ink-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 38px var(--gutter);
  border-right: var(--bar) solid rgba(243, 236, 224, .1);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  color: var(--paper);
}
.stat-num .small { font-size: 0.55em; vertical-align: top; opacity: .7; }
.stat-num .it { font-style: italic; color: var(--volt); }
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-3);
  margin-top: 8px;
}

@media (max-width: 800px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: var(--bar) solid rgba(243,236,224,.1); }
  .stat:nth-child(-n+2) { border-bottom: var(--bar) solid rgba(243,236,224,.1); }
}

/* ---------- Generic section ---------- */
.section {
  padding: clamp(60px, 9vw, 130px) 0;
  border-bottom: var(--bar) solid rgba(243, 236, 224, .12);
  position: relative;
}
.section-paper {
  background: var(--paper);
  color: var(--ink);
}
.section-paper a { color: var(--ink); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blood);
  margin-bottom: 22px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blood);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  margin: 0 0 18px;
  max-width: 920px;
  color: var(--paper);
}
.section-paper .section-title { color: var(--ink); }
.section-title .it { font-style: italic; font-weight: 400; color: var(--blood); }
.section-paper .section-title .it { color: var(--blood); }

.section-sub {
  font-family: var(--display);
  font-variation-settings: "opsz" 30;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  font-weight: 400;
  max-width: 640px;
  color: var(--paper-3);
  margin: 0 0 64px;
}
.section-paper .section-sub { color: var(--ink-3); }

/* ---------- Benefits grid (editorial cards) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: rgba(243, 236, 224, .12);
  border: var(--bar) solid rgba(243, 236, 224, .12);
}
.section-paper .bento {
  background: var(--ink);
  border-color: var(--ink);
}
.bento-cell {
  background: var(--ink);
  padding: 36px 32px;
  position: relative;
}
.section-paper .bento-cell { background: var(--paper); }
.bento-cell.span-6 { grid-column: span 6; }
.bento-cell.span-4 { grid-column: span 4; }
.bento-cell.span-8 { grid-column: span 8; }
.bento-cell.span-12 { grid-column: span 12; }
.bento-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--blood);
  margin-bottom: 14px;
}
.bento-cell h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  margin: 0 0 12px;
  color: var(--paper);
  max-width: 28ch;
}
.section-paper .bento-cell h3 { color: var(--ink); }
.bento-cell h3 .it { font-style: italic; color: var(--volt); }
.section-paper .bento-cell h3 .it { color: var(--blood); }
.bento-cell p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--paper-3);
  max-width: 50ch;
}
.section-paper .bento-cell p { color: var(--ink-3); }

@media (max-width: 900px) {
  .bento-cell.span-6, .bento-cell.span-4, .bento-cell.span-8 { grid-column: span 12; }
}

/* ---------- Pricing ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--bar) solid var(--ink);
  background: var(--ink);
}
.plan {
  background: var(--paper);
  color: var(--ink);
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: var(--bar) solid var(--ink);
}
.plan:last-child { border-right: none; }
.plan.featured {
  background: var(--ink);
  color: var(--paper);
}
.plan-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 22px;
}
.plan.featured .plan-name { color: var(--volt); }
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
  font-family: var(--display);
  font-variation-settings: "opsz" 144;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.plan-price .real {
  font-size: 22px;
  font-weight: 600;
  margin-top: 18px;
}
.plan-price .amount {
  font-size: clamp(82px, 8vw, 124px);
  font-weight: 500;
}
.plan-price .cent {
  font-size: 26px;
  font-weight: 600;
  margin-top: 16px;
}
.plan-period {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: .7;
}
.plan-tag {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 30;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 28px;
  opacity: .8;
}
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
  border-top: var(--bar) solid currentColor;
}
.plan-list li {
  padding: 13px 0;
  font-size: 14px;
  line-height: 1.4;
  border-bottom: var(--bar) solid currentColor;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan-list li::before {
  content: "→";
  font-family: var(--mono);
  color: var(--blood);
  font-weight: 700;
  margin-top: -1px;
}
.plan.featured .plan-list li::before { color: var(--volt); }
.plan .btn { width: 100%; justify-content: center; }
.plan.featured .btn-primary { background: var(--volt); }
.plan-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--blood);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px 7px;
}

@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; }
  .plan { border-right: none; border-bottom: var(--bar) solid var(--ink); }
  .plan:last-child { border-bottom: none; }
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--bar) solid rgba(243, 236, 224, .12);
  border-bottom: var(--bar) solid rgba(243, 236, 224, .12);
}
.section-paper .steps {
  border-color: var(--ink);
}
.step {
  padding: 38px 28px;
  border-right: var(--bar) solid rgba(243, 236, 224, .12);
  position: relative;
}
.step:last-child { border-right: none; }
.section-paper .step { border-color: var(--ink); }
.step-num {
  font-family: var(--display);
  font-size: 88px;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--blood);
  margin-bottom: 12px;
  display: block;
}
.step h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.05;
}
.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: .75;
  max-width: 32ch;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: var(--bar) solid rgba(243, 236, 224, .12); }
  .step:last-child { border-bottom: none; }
  .section-paper .step { border-color: var(--ink); }
}

/* ---------- Devices marquee ---------- */
.dev-marquee {
  overflow: hidden;
  border-top: var(--bar) solid currentColor;
  border-bottom: var(--bar) solid currentColor;
  padding: 24px 0;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  line-height: 1;
  letter-spacing: -0.025em;
}
.dev-marquee-track {
  display: inline-flex;
  animation: tape 50s linear infinite;
}
.dev-marquee span {
  display: inline-block;
  padding: 0 24px;
}
.dev-marquee span::after {
  content: "✱";
  margin-left: 48px;
  color: var(--blood);
  font-style: normal;
  font-size: 0.55em;
  vertical-align: 0.25em;
}

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--bar) solid rgba(243, 236, 224, .12);
}
.section-paper .quotes { border-color: var(--ink); }
.quote {
  padding: 40px 32px 32px;
  border-right: var(--bar) solid rgba(243, 236, 224, .12);
  position: relative;
}
.quote:last-child { border-right: none; }
.section-paper .quote { border-color: var(--ink); }
.quote::before {
  content: "“";
  font-family: var(--display);
  font-size: 120px;
  font-style: italic;
  line-height: 0.6;
  color: var(--blood);
  position: absolute;
  top: 28px;
  right: 24px;
  pointer-events: none;
}
.quote-stars {
  font-family: var(--mono);
  color: var(--volt);
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.section-paper .quote-stars { color: var(--blood); }
.quote blockquote {
  font-family: var(--display);
  font-variation-settings: "opsz" 30;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0 0 22px;
}
.quote-author { display: flex; flex-direction: column; gap: 2px; }
.quote-name {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.quote-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: .55;
}

@media (max-width: 900px) {
  .quotes { grid-template-columns: 1fr; }
  .quote { border-right: none; border-bottom: var(--bar) solid rgba(243, 236, 224, .12); }
  .quote:last-child { border-bottom: none; }
  .section-paper .quote { border-color: var(--ink); }
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: var(--bar) solid currentColor;
  max-width: 980px;
}
.faq-item {
  padding: 26px 0;
  border-bottom: var(--bar) solid currentColor;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}
.faq-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding-top: 6px;
  opacity: .55;
}
.faq-item h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-variation-settings: "opsz" 144;
}
.faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  opacity: .8;
  max-width: 75ch;
}
.faq-item a { text-decoration: underline; text-underline-offset: 3px; }
.faq-item a:hover { color: var(--blood); }

@media (max-width: 600px) {
  .faq-item { grid-template-columns: 32px 1fr; gap: 12px; }
}

/* ---------- Signup form (teste page) ---------- */
.signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  border: var(--bar) solid var(--paper);
  margin-bottom: 22px;
  max-width: 720px;
  background: var(--ink-2);
}
.signup-form input {
  background: transparent;
  border: none;
  border-right: var(--bar) solid var(--paper);
  color: var(--paper);
  padding: 18px 20px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  outline: none;
  min-width: 0;
}
.signup-form input::placeholder { color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; }
.signup-form button {
  background: var(--volt);
  border: none;
  color: var(--ink);
  padding: 18px 26px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, color .15s;
}
.signup-form button:hover { background: var(--blood); color: var(--paper); }
@media (max-width: 700px) {
  .signup-form { grid-template-columns: 1fr; }
  .signup-form input { border-right: none; border-bottom: var(--bar) solid var(--paper); }
}

/* ---------- Final CTA ---------- */
.cta-final {
  padding: clamp(80px, 12vw, 160px) 0;
  border-bottom: var(--bar) solid rgba(243, 236, 224, .12);
  background:
    radial-gradient(900px 600px at 50% 0%, rgba(255, 46, 46, .25), transparent 70%),
    var(--ink);
  text-align: center;
  position: relative;
}
.cta-final h2 {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  margin: 0 0 28px;
}
.cta-final h2 .it { font-style: italic; color: var(--volt); font-weight: 400; }
.cta-final p {
  font-family: var(--display);
  font-variation-settings: "opsz" 30;
  font-size: 20px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--paper-3);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 70px;
}
.footer-brand p {
  font-family: var(--display);
  font-variation-settings: "opsz" 30;
  font-size: 17px;
  line-height: 1.45;
  color: var(--paper-3);
  margin: 18px 0 0;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blood);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--paper);
  transition: color .15s;
}
.footer-col a:hover { color: var(--volt); }
.footer-bottom {
  border-top: var(--bar) solid rgba(243, 236, 224, .12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-bottom .colophon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom .colophon::before {
  content: "▮";
  color: var(--blood);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT PAGES (article)
   ============================================================ */
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--paper-3);
  margin-bottom: 26px;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.breadcrumb a { color: var(--paper-3); }
.breadcrumb a:hover { color: var(--volt); }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; opacity: .4; }

/* Hero for content pages (smaller, editorial) */
.hero-article {
  padding: 60px 0 70px;
  border-bottom: var(--bar) solid rgba(243, 236, 224, .12);
}
.hero-article h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  margin: 0 0 22px;
  max-width: 16ch;
}
.hero-article .lead {
  font-family: var(--display);
  font-variation-settings: "opsz" 30;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  color: var(--paper-2);
  max-width: 56ch;
  margin: 0 0 22px;
}
.hero-article .meta-info {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-article .meta-info span::before {
  content: "▮ ";
  color: var(--blood);
}

main.container article {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 0 80px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--paper-2);
}
main.container article p { margin: 0 0 18px; }
main.container article a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--blood);
  text-underline-offset: 3px;
}
main.container article a:hover { color: var(--volt); }
main.container article h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  margin: 56px 0 18px;
  color: var(--paper);
}
main.container article h2::before {
  content: "▮ ";
  color: var(--blood);
  font-size: 0.7em;
  vertical-align: 0.15em;
}
main.container article h3 {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 32px 0 10px;
  color: var(--paper);
}
main.container article ul,
main.container article ol {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}
main.container article li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
main.container article ul li::before {
  content: "▮";
  position: absolute;
  left: 0;
  color: var(--blood);
  font-size: 0.7em;
  top: 0.65em;
}
main.container article ol {
  counter-reset: oli;
}
main.container article ol li {
  counter-increment: oli;
}
main.container article ol li::before {
  content: counter(oli, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--mono);
  font-size: 0.8em;
  color: var(--blood);
  font-weight: 700;
}
main.container article strong { color: var(--paper); font-weight: 600; }

main.container article table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 32px;
  font-family: var(--mono);
  font-size: 13px;
  border: var(--bar) solid var(--paper-3);
}
main.container article th,
main.container article td {
  padding: 12px 14px;
  border-bottom: var(--bar) solid var(--paper-3);
  text-align: left;
  vertical-align: top;
}
main.container article th {
  background: var(--ink-2);
  color: var(--paper);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.tldr {
  border: var(--bar) solid var(--volt);
  background: rgba(216, 255, 54, .04);
  padding: 24px 28px;
  margin: 0 0 32px;
  position: relative;
}
.tldr strong:first-child {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 10px;
}
.tldr p { margin: 0; font-size: 16px; }

.definition {
  border-left: 3px solid var(--blood);
  padding: 4px 0 4px 20px;
  margin: 22px 0 28px;
  font-size: 16px;
}
.definition strong:first-child {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05em;
  color: var(--paper);
  margin-bottom: 6px;
}

.cta-card {
  margin: 36px 0;
  background: var(--blood);
  color: var(--paper);
  padding: 32px;
  border: var(--bar) solid var(--paper);
}
.cta-card h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  margin: 0 0 10px;
  color: var(--paper);
}
.cta-card p {
  font-family: var(--display);
  font-variation-settings: "opsz" 30;
  font-size: 17px;
  line-height: 1.4;
  margin: 0 0 20px;
}
.cta-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 18px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 5px 5px 0 var(--ink);
}
.cta-card a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--ink);
}

.related {
  margin: 36px 0;
  padding: 24px 28px;
  border: var(--bar) solid var(--paper-3);
}
.related strong {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 14px;
}
.related ul { padding: 0; list-style: none; margin: 0; }
.related li {
  padding-left: 0 !important;
  margin-bottom: 10px;
}
.related li::before { content: none !important; }
.related a {
  font-family: var(--display);
  font-size: 18px;
  font-variation-settings: "opsz" 30;
  text-decoration: none !important;
  border-bottom: 1px dotted var(--paper-3);
  padding-bottom: 2px;
  color: var(--paper) !important;
}
.related a:hover { color: var(--volt) !important; border-color: var(--volt); }
.related a::before {
  content: "→ ";
  color: var(--blood);
  font-family: var(--mono);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  padding: 0 18px 0 18px;
  background: #25d366;
  color: #fff !important;
  border: var(--bar) solid var(--ink);
  border-radius: 999px;
  text-decoration: none !important;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}
.wa-float .wa-label {
  margin-left: 10px;
  white-space: nowrap;
}
.wa-float:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
  background: #1ebe5a;
  color: #fff !important;
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: var(--bar) solid #25d366;
  animation: wa-ring 2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float {
    height: 56px;
    padding: 0 16px;
  }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 0; width: 56px; justify-content: center; }
}

/* ============================================================
   UTILS
   ============================================================ */
.center { text-align: center; }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }
.display { font-family: var(--display); }
.italic { font-style: italic; }

/* hide nav on mobile */
@media (max-width: 760px) {
  .site-header nav { display: none; }
  .site-header .container { grid-template-columns: auto 1fr; }
}
