/* ============================================================
   EFFINCUT · Global Styles
   ============================================================ */

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

:root {
  --bg:       #ece6dc;
  --bg-dark:  #0a0a0a;
  --bg-card:  #f4efe6;
  --bg-muted: #ddd5c6;
  --text:     #0a0a0a;
  --muted:    #5a5650;
  --red:      #c8261b;
  --border:   1px solid #0a0a0a;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;
  --font-body:    'Inter Tight', -apple-system, sans-serif;
  --font-display: 'Anton', 'Bebas Neue', 'Archivo Black', Impact, sans-serif;
  --font-impact:  'Archivo Black', Impact, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   NAV — logo bulletproofed
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
  background: var(--bg);
  border-bottom: 2px solid var(--text);
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 8px 0;
}

.nav-logo {
  height: 56px !important;
  max-height: 56px !important;
  width: auto !important;
  max-width: 220px !important;
  display: block !important;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-loc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--text);
  padding: 9px 18px;
  background: var(--text);
  color: var(--bg);
  transition: background 0.15s, color 0.15s;
}

.nav-cta:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ============================================================
   BUTTONS — heavier
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 28px;
  border: 2px solid var(--text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  position: relative;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--text);
  color: var(--bg);
}

.btn.block {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn.big {
  padding: 20px 40px;
  font-size: 13px;
}

/* ============================================================
   HERO — louder, asymmetric
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 56px;
  min-height: calc(100vh - 80px);
  border-bottom: 2px solid var(--text);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  padding: 6rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  background: var(--bg-muted);
  padding: 8px 14px;
  width: fit-content;
  border: 1px solid var(--text);
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 0;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 1100px;
}

.hero-h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  text-transform: none;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: #1a1a1a;
  max-width: 560px;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--text);
  max-width: 480px;
}

.hero-meta > div {
  display: flex;
  gap: 1rem;
  font-size: 13px;
  align-items: baseline;
}

.meta-k {
  font-family: var(--font-impact);
  color: var(--red);
  font-size: 13px;
  min-width: 24px;
}

.meta-v {
  color: var(--text);
  font-weight: 500;
}

.hero-aside {
  border-left: 2px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
}

.vert-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #3a3632;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 700;
}

/* ============================================================
   MARQUEE BAND — heavier
   ============================================================ */

.band {
  overflow: hidden;
  background: var(--text);
  padding: 14px 0;
  border-bottom: 2px solid var(--text);
}

.marquee { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  white-space: nowrap;
  font-weight: 400;
}

.marquee-track .sep { color: var(--red); }

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

/* ============================================================
   SECTION SHARED — bigger labels, heavier h2
   ============================================================ */

.section-head {
  padding: 6rem 4rem 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section-tag.light { color: var(--red); }

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  max-width: 540px;
}

/* ============================================================
   FRAMEWORK — massive numbers
   ============================================================ */

.framework { border-bottom: 2px solid var(--text); }

.variables {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 2px solid var(--text);
}

.var {
  padding: 3rem 2rem 2.5rem;
  border-right: 1px solid var(--text);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: background 0.2s;
}

.var:hover {
  background: var(--bg-card);
}

.var:last-child { border-right: none; }

.var-num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.9;
  color: var(--red);
  letter-spacing: -0.02em;
}

.var h3 {
  font-family: var(--font-impact);
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
}

.var-what {
  font-size: 13px;
  line-height: 1.65;
  color: #1a1a1a;
  flex: 1;
}

.var-break {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.var-break strong { color: var(--text); font-weight: 700; }

/* ============================================================
   DIAGNOSTIC OFFER
   ============================================================ */

.diagnostic { border-bottom: 2px solid var(--text); }

.diag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.diag-left {
  padding: 6rem 4rem;
  border-right: 2px solid var(--text);
}

.diag-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 1.25rem 0 1.75rem;
  line-height: 0.95;
}

.lede {
  font-size: 1.1rem;
  line-height: 1.55;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.diag-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diag-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.diag-list li::before {
  content: '→';
  color: var(--red);
  font-family: var(--font-impact);
  flex-shrink: 0;
  font-size: 16px;
}

.diag-right {
  padding: 6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
}

.price-card {
  color: var(--bg);
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.price {
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.price-sub {
  font-size: 15px;
  color: #ddd5c6;
  line-height: 1.55;
}

.price-fine {
  font-size: 11px;
  color: #5a5650;
  line-height: 1.55;
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   STORY
   ============================================================ */

.story { border-bottom: 2px solid var(--text); }

.story-grid {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.story-grid .section-tag {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.story-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.story-body p {
  font-size: 15px;
  line-height: 1.75;
  color: #1a1a1a;
}

.story-pull {
  font-family: var(--font-serif) !important;
  font-size: 1.5rem !important;
  font-style: italic;
  padding: 1.75rem 0 !important;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  color: var(--text) !important;
  line-height: 1.35 !important;
}

.story-sig {
  font-family: var(--font-mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted) !important;
  font-weight: 700;
}

/* ============================================================
   PROOF
   ============================================================ */

.proof { border-bottom: 2px solid var(--text); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--text);
}

.proof-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--text);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  transition: background 0.2s;
}

.proof-card:hover { background: var(--bg-card); }

.proof-card:last-child { border-right: none; }

.stars {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 3px;
}

.proof-card blockquote {
  font-size: 14px;
  line-height: 1.75;
  color: #1a1a1a;
}

.proof-card figcaption {
  font-family: var(--font-impact);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.15);
  font-weight: 400;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.75rem 4rem;
  border-top: 1px solid var(--text);
  width: 100%;
  transition: color 0.15s, background 0.15s;
  font-weight: 700;
}

.reviews-link:hover { color: var(--bg); background: var(--text); }

/* ============================================================
   PROMISE — high impact
   ============================================================ */

.promise {
  background: var(--text);
  border-bottom: 2px solid var(--text);
  position: relative;
  overflow: hidden;
}

.promise::before {
  content: 'PROMISE';
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 22vw;
  line-height: 1;
  color: rgba(200, 38, 27, 0.08);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.promise-inner {
  padding: 7rem 4rem;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.promise-inner .section-tag { color: var(--red); }

.promise-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--bg);
  margin-top: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq { border-bottom: 2px solid var(--text); }

.faq-list { border-top: 2px solid var(--text); }

details { border-bottom: 1px solid var(--text); }

details:last-child { border-bottom: none; }

details summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 4rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-impact);
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: background 0.15s;
  user-select: none;
}

details summary::-webkit-details-marker { display: none; }
details summary::marker { display: none; }

details summary:hover,
details[open] summary { background: var(--text); color: var(--bg); }

details summary:hover .q-num,
details[open] summary .q-num { color: var(--red); }

.q-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--red);
  min-width: 32px;
}

details > p {
  padding: 1.75rem 4rem 2.25rem calc(4rem + 32px + 1.5rem);
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  background: var(--bg-card);
  font-family: var(--font-body);
}

/* ============================================================
   FINAL CTA — massive
   ============================================================ */

.final {
  border-bottom: 2px solid var(--text);
  position: relative;
  overflow: hidden;
}

.final::before {
  content: 'ENOUGH';
  position: absolute;
  bottom: -3rem;
  left: -2rem;
  font-family: var(--font-display);
  font-size: 28vw;
  line-height: 0.9;
  color: rgba(0, 0, 0, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.final-inner {
  padding: 8rem 4rem;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.final-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.final-inner h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  text-transform: none;
  letter-spacing: -0.01em;
}

.final-inner p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  max-width: 500px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background: var(--text); color: var(--bg); }

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
  padding: 4rem;
  gap: 3rem;
}

.foot-brand {
  font-family: var(--font-impact);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  color: var(--bg);
}

.foot-grid p {
  font-size: 13px;
  color: #5a5650;
  line-height: 1.65;
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.foot-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5650;
  transition: color 0.15s;
  font-weight: 700;
}

.foot-links a:hover { color: var(--red); }

.foot-c {
  font-size: 11px;
  color: #5a5650;
  align-self: end;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ============================================================
   QUIZ PAGE
   ============================================================ */

.page-quiz .quiz-shell {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
}

.quiz-progress {
  padding: 1.25rem 2.5rem;
  border-bottom: 2px solid var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-progress-meta {
  display: flex;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--text);
}

#q-total { color: var(--muted); }

.quiz-bar {
  height: 4px;
  background: rgba(0,0,0,0.1);
  width: 100%;
}

.quiz-bar-fill {
  height: 100%;
  background: var(--red);
  transition: width 0.4s ease;
}

.quiz-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.q-card {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.q-card[data-anim="in"] {
  animation: slideIn 0.22s ease forwards;
}

.q-card[data-anim="out"] {
  animation: slideOut 0.22s ease forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-20px); }
}

.q-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.q-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.q-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: -0.75rem;
}

.q-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.q-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 18px 22px;
  border: 2px solid var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.1s, color 0.1s, transform 0.1s;
}

.q-opt:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateX(4px);
}

.q-opt-k {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--red);
  min-width: 20px;
  flex-shrink: 0;
}

.q-opt-l { flex: 1; }

.q-opt-arrow {
  font-family: var(--font-impact);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.1s;
}

.q-opt:hover .q-opt-arrow { opacity: 1; }

.q-scale { display: flex; flex-direction: column; gap: 1rem; }

.q-scale-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}

.q-scale-row { display: flex; gap: 8px; }

.q-scale-btn {
  flex: 1;
  min-height: 68px;
  border: 2px solid var(--text);
  background: transparent;
  font-family: var(--font-display);
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  transition: background 0.1s, color 0.1s;
}

.q-scale-btn:hover {
  background: var(--text);
  color: var(--bg);
}

/* Contact form */
.q-form { display: flex; flex-direction: column; gap: 1.5rem; }

.q-field { display: flex; flex-direction: column; gap: 8px; }

.q-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}

.q-field input {
  padding: 14px 18px;
  border: 2px solid var(--text);
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.15s;
}

.q-field input:focus { border-color: var(--red); }

.q-fine {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.q-consent {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.q-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}

.q-err {
  font-size: 13px;
  color: var(--red);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================================
   RESULTS PAGE
   ============================================================ */

.page-results .results-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2.5rem 6rem;
}

.r-hero {
  padding: 5rem 0 3rem;
  border-bottom: 2px solid var(--text);
}

.r-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.r-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.r-h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  text-transform: none;
  letter-spacing: -0.01em;
}

.r-lede {
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
}

.r-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--text);
}

.r-block.dark {
  background: var(--text);
  color: var(--bg);
  padding: 3rem 2.5rem;
  margin: 0 -2.5rem;
  border-bottom: none;
}

.r-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.r-tag.light { color: var(--red); }

.r-body {
  font-size: 16px;
  line-height: 1.75;
}

.r-body.small {
  font-size: 13px;
  color: var(--muted);
}

.r-block.dark .r-body { color: #c8c0b4; }

.r-cta {
  padding: 3rem 0;
  border-bottom: 1px solid var(--text);
}

.r-cta-card {
  background: var(--text);
  color: var(--bg);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.r-cta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.r-cta-price {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.85;
  color: var(--bg);
  letter-spacing: -0.04em;
}

.r-cta-sub {
  font-size: 14px;
  color: #c8c0b4;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.r-cta-fine { font-size: 11px; color: #5a5650; font-family: var(--font-mono); letter-spacing: 0.05em; text-transform: uppercase; }

.r-ranking {
  padding: 3rem 0;
  border-bottom: 1px solid var(--text);
}

.r-ranklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  border-top: 1px solid var(--text);
}

.r-ranklist li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  font-size: 14px;
}

.r-ranklist li.top {
  background: var(--text);
  color: var(--bg);
  padding: 22px 24px;
  margin: 0 -24px;
}

.r-rank-n {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  min-width: 40px;
}

.r-rank-name {
  flex: 1;
  font-family: var(--font-impact);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.r-rank-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: white;
  padding: 4px 10px;
  font-weight: 700;
}

.r-note {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--text);
}

.r-note p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

.r-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.r-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.65;
}

.r-list li::before {
  content: '→';
  color: var(--red);
  font-family: var(--font-impact);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .variables { grid-template-columns: 1fr 1fr; }
  .var:nth-child(2n) { border-right: none; }
  .var:last-child { grid-column: 1 / -1; border-right: none; }

  .diag-grid { grid-template-columns: 1fr; }
  .diag-left { border-right: none; border-bottom: 2px solid var(--text); }

  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { border-right: none; border-bottom: 1px solid var(--text); }

  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .nav { padding: 0 1.25rem; height: 70px; }
  .nav-loc { display: none; }
  .nav-logo { height: 48px !important; max-height: 48px !important; }

  .hero { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .hero-grid { padding: 3.5rem 1.5rem; gap: 1.75rem; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }

  .section-head { padding: 4rem 1.5rem 2rem; }

  .variables { grid-template-columns: 1fr; }
  .var { border-right: none; border-bottom: 1px solid var(--text); }
  .var-num { font-size: 3rem; }

  .diag-left, .diag-right { padding: 3rem 1.5rem; }
  .price { font-size: 7rem; }

  .story-grid { padding: 3.5rem 1.5rem; }

  .proof-card { padding: 2.5rem 1.5rem; }
  .reviews-link { padding: 1.5rem 1.5rem; }

  .promise-inner { padding: 5rem 1.5rem; }

  details summary { padding: 1.5rem 1.5rem; font-size: 15px; }
  details > p { padding: 1.5rem 1.5rem; }

  .final-inner { padding: 5rem 1.5rem; }

  .foot-grid { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .foot-c { align-self: auto; }

  .q-scale-row { gap: 5px; }
  .q-scale-btn { min-height: 58px; font-size: 20px; }

  .r-block.dark { margin: 0 -2.5rem; padding: 2.5rem 1.5rem; }
  .r-cta-card { padding: 2.5rem 1.5rem; }
  .r-cta-price { font-size: 5rem; }
}
