/* ============================================================
   MÉTODO DTD — Hi-fi LP styles
   3 themes via [data-theme]: trader (default), editorial, mono
   ============================================================ */

:root{
  /* TRADER (default) — dark, deep green + warm gold */
  --bg:        #0b0f0e;
  --bg-2:      #0f1413;
  --bg-3:      #141b19;
  --card:      #131a18;
  --card-2:    #181f1d;
  --line:      rgba(255,255,255,0.06);
  --line-2:    rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.14);

  --text:      #e8efea;
  --text-2:    #a0aea6;
  --text-3:    #6c7a73;

  --accent:    oklch(0.72 0.16 158);   /* green */
  --accent-ink:#04140c;
  --accent-soft:oklch(0.72 0.16 158 / 0.12);
  --accent-line:oklch(0.72 0.16 158 / 0.30);

  --gold:      oklch(0.82 0.13 78);    /* warm gold */
  --gold-ink:  #1b1303;
  --gold-soft: oklch(0.82 0.13 78 / 0.14);

  --danger:    oklch(0.66 0.18 27);
  --warn:      oklch(0.78 0.15 60);

  --font-display: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --font-body:    'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --display-weight: 800;
  --display-tracking: -0.025em;
  --display-leading: 1.02;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 8px;

  --maxw: 1120px;
  --maxw-narrow: 760px;

  --pad-y: clamp(64px, 9vw, 110px);
  --gap: clamp(16px, 2vw, 22px);

  color-scheme: dark;
}

/* ───────────── EDITORIAL theme ───────────── */
[data-theme="editorial"]{
  --bg:        #f6f3ec;
  --bg-2:      #efeae0;
  --bg-3:      #e9e3d6;
  --card:      #ffffff;
  --card-2:    #faf7f0;
  --line:      rgba(20,18,14,0.08);
  --line-2:    rgba(20,18,14,0.14);
  --line-strong: rgba(20,18,14,0.22);

  --text:      #14120e;
  --text-2:    #4a463d;
  --text-3:    #7a7466;

  --accent:    oklch(0.42 0.10 165);   /* deep forest */
  --accent-ink:#ffffff;
  --accent-soft:oklch(0.42 0.10 165 / 0.10);
  --accent-line:oklch(0.42 0.10 165 / 0.30);

  --gold:      oklch(0.48 0.12 60);    /* burnt umber */
  --gold-ink:  #ffffff;
  --gold-soft: oklch(0.48 0.12 60 / 0.10);

  --font-display: 'Newsreader', 'Times New Roman', Georgia, serif;
  --font-body:    'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --display-weight: 500;
  --display-tracking: -0.022em;
  --display-leading: 1.04;

  color-scheme: light;
}

/* ───────────── MONO theme ───────────── */
[data-theme="mono"]{
  --bg:        #f4f4f2;
  --bg-2:      #ececea;
  --bg-3:      #e4e4e1;
  --card:      #ffffff;
  --card-2:    #f8f8f6;
  --line:      rgba(10,10,10,0.10);
  --line-2:    rgba(10,10,10,0.18);
  --line-strong:#0a0a0a;

  --text:      #0a0a0a;
  --text-2:    #3b3b3b;
  --text-3:    #6a6a6a;

  --accent:    #0a0a0a;
  --accent-ink:#f4f4f2;
  --accent-soft:rgba(10,10,10,0.08);
  --accent-line:rgba(10,10,10,0.20);

  --gold:      oklch(0.62 0.20 28);    /* signal red-orange */
  --gold-ink:  #ffffff;
  --gold-soft: oklch(0.62 0.20 28 / 0.10);

  --font-display: 'JetBrains Mono', ui-monospace, monospace;
  --font-body:    'JetBrains Mono', ui-monospace, monospace;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --display-weight: 700;
  --display-tracking: -0.045em;
  --display-leading: 0.96;

  --radius: 4px;
  --radius-lg: 6px;
  --radius-sm: 2px;

  color-scheme: light;
}

/* ───────────── Density ───────────── */
[data-density="compact"]{ --pad-y: clamp(40px, 6vw, 72px); --gap: 14px; }
[data-density="comfy"]  { --pad-y: clamp(80px, 11vw, 140px); --gap: 28px; }

/* ───────────── Reset / base ───────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body{
  font-family: var(--font-body);
  background: transparent;
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
  transition: background-color .35s ease, color .35s ease;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }

/* ───────────── Layout ───────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 22px; }
section { padding: var(--pad-y) 0; position: relative; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before{
  content:""; width: 18px; height: 1px; background: currentColor; opacity: 0.6;
}
.eyebrow.no-rule::before{ display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-leading);
  color: var(--text);
}
h1 { font-size: clamp(36px, 6.4vw, 72px); }
h2 { font-size: clamp(28px, 4.4vw, 52px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
.display-xl { font-size: clamp(48px, 8vw, 96px); }

.mono { font-family: var(--font-mono); font-feature-settings: 'tnum'; }
.num  { font-variant-numeric: tabular-nums; }

/* hairline accent stroke used widely */
.hairline { background: var(--line); height: 1px; width: 100%; }

/* ───────────── Header ───────────── */
.site-header{
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-nav{
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand-mark{
  width: 32px; height: 32px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-mono); font-weight: 800; font-size: 14px;
  letter-spacing: -0.04em;
}
[data-theme="mono"] .brand-mark{ border-radius: 4px; }
[data-theme="editorial"] .brand-mark{
  background: var(--text); color: var(--bg);
  border-radius: 50%;
}
.brand-word{ font-weight: 700; font-size: 15px; letter-spacing: -0.01em; display: flex; gap: 4px; }
.brand-word em{ font-style: normal; color: var(--accent); font-weight: 800; }
[data-theme="mono"] .brand-word{ font-family: var(--font-mono); }
.nav-meta{
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-3);
}
.nav-meta .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px var(--accent); animation: pulse 1.8s ease-in-out infinite; margin-right: 6px; vertical-align: middle; }
.nav-meta .live{ color: var(--text-2); }
@media (max-width: 720px){ .nav-meta .live-text{ display: none; } }
.nav-cta{
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  background: var(--text); color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  border: none; transition: transform .15s ease, background .2s ease;
  text-decoration: none;
}
.nav-cta:hover{ transform: translateY(-1px); }

@keyframes pulse { 0%,100%{ opacity: 1; } 50%{ opacity: 0.35; } }

/* ───────────── Buttons ───────────── */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 16px 26px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  text-align: center; white-space: nowrap;
}
.btn--primary{
  background: var(--gold); color: var(--gold-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 12px 30px -10px color-mix(in srgb, var(--gold) 70%, transparent);
}
.btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 18px 40px -10px color-mix(in srgb, var(--gold) 70%, transparent); }
.btn--accent{ background: var(--accent); color: var(--accent-ink); }
.btn--ghost{ background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover{ background: var(--card); border-color: var(--line-strong); }
.btn--lg{ padding: 20px 32px; font-size: 17px; }
.btn--block{ width: 100%; }
[data-theme="mono"] .btn{ border-radius: var(--radius-sm); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
[data-theme="mono"] .btn--primary{ background: var(--text); color: var(--bg); border: 1px solid var(--text); box-shadow: 4px 4px 0 var(--gold); }
[data-theme="mono"] .btn--primary:hover{ transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--gold); }

.cta-microcopy{
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  color: var(--text-3); font-size: 12.5px; font-family: var(--font-mono);
}
.cta-microcopy span{ display: inline-flex; align-items: center; gap: 6px; }
.cta-microcopy svg{ color: var(--accent); }

/* ───────────── Cards ───────────── */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.card:hover{ border-color: var(--line-2); }
[data-theme="mono"] .card{ border-color: var(--line-strong); }

/* ───────────── Section heads ───────────── */
.sect-head{
  display: flex; flex-direction: column; gap: 14px;
  max-width: 720px; margin: 0 auto var(--pad-y) auto;
  text-align: center; align-items: center;
}
.sect-head.left{ text-align: left; align-items: flex-start; margin-left: 0; }
.sect-head h2 .accent{ color: var(--accent); }
.sect-head p{ color: var(--text-2); font-size: clamp(15px, 1.5vw, 17px); text-wrap: pretty; }
.sect-head .num-id{
  font-family: var(--font-mono); font-size: 11px; color: var(--text-3);
  letter-spacing: 0.12em;
}

/* ───────────── Marquee ─────────────  */
.marquee{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track{
  display: flex; gap: 48px;
  padding: 14px 0;
  animation: scroll-x 38s linear infinite;
  white-space: nowrap;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--text-2);
}
.marquee-track span{ display: inline-flex; align-items: center; gap: 10px; }
.marquee-track .sep{ color: var(--text-3); }
.marquee-track .up{ color: var(--accent); }
.marquee-track .dn{ color: var(--danger); }
@keyframes scroll-x { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ───────────── Hero ───────────── */
.hero{ padding-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(40px, 5vw, 60px); position: relative; overflow: hidden; }
.hero-grid{
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start;
}
@media (max-width: 920px){ .hero-grid{ grid-template-columns: 1fr; gap: 36px; } }

/* Host card (professor photo + credentials) */
.host-card{
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  overflow: hidden;
  background:
    radial-gradient(120% 60% at 50% 100%, var(--accent-soft), transparent 70%),
    linear-gradient(180deg, var(--card-2) 0%, var(--card) 100%);
  min-height: 380px;
  display: flex; flex-direction: column;
}
[data-theme="mono"] .host-card{ border-color: var(--text); box-shadow: 4px 4px 0 var(--text); }
.host-photo-wrap{
  position: relative; flex: 1;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; min-height: 320px;
  background:
    radial-gradient(60% 50% at 50% 90%, var(--accent-soft), transparent 70%),
    linear-gradient(180deg, transparent 0%, var(--bg-3) 100%);
}
.host-photo-wrap::before{
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(60% 70% at 50% 40%, black, transparent 80%);
  opacity: 0.6;
  pointer-events: none;
}
.host-photo{
  position: relative; z-index: 1;
  display: block;
  max-width: 88%;
  max-height: 440px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,0.45));
}
.host-badge{
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 10.5px; color: var(--text-2);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.host-badge .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 1.8s infinite; }
.host-meta{
  position: relative; z-index: 2;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 85%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.host-meta .who{ display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.host-meta .name{ font-weight: 700; font-size: 15px; letter-spacing: -0.01em; color: var(--text); }
.host-meta .role{ font-family: var(--font-mono); font-size: 11px; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; }
.host-meta .creds{ display: flex; gap: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--text-2); flex-shrink: 0; text-align: right; }
.host-meta .creds .v{ color: var(--text); font-size: 15px; font-weight: 700; font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1; }
.host-meta .creds .l{ display: block; color: var(--text-3); font-size: 10px; margin-top: 2px; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 480px){
  .host-meta .creds{ display: none; }
}

.hero-copy{ display: flex; flex-direction: column; gap: 24px; }
.hero h1 .accent{ color: var(--accent); }
.hero h1 .strike{ position: relative; color: var(--text-3); }
.hero h1 .strike::after{
  content:""; position: absolute; left: -2%; right: -2%; top: 52%; height: 6px;
  background: var(--danger); transform: rotate(-3deg); opacity: .85;
}
.hero-sub{
  font-size: clamp(15px, 1.4vw, 17.5px); color: var(--text-2); max-width: 56ch;
  text-wrap: pretty;
}
.hero-sub strong{ color: var(--text); font-weight: 600; }

.hero-cta{ display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.hero-cta .row{ display: flex; gap: 12px; flex-wrap: wrap; }

.hero-aside{ display: flex; flex-direction: column; gap: 14px; min-width: 0; }

/* Pool calculator widget */
.pool{
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.pool.pool--compact{ padding: 16px; gap: 12px; }
.pool.pool--compact .pool-title{ font-size: 10.5px; }
.pool.pool--compact .pool-input .field{ padding: 10px 12px; }
.pool.pool--compact .pool-input .field input{ font-size: 18px; }
.pool.pool--compact .pool-input .chips{ display: none; }
.pool.pool--compact .pool-foot{ font-size: 10.5px; padding-top: 10px; }
.pool.pool--compact .btn{ padding: 12px 18px; font-size: 14px; }

/* Rate cells — replaces the old rate ticks */
.rate-cells{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, var(--accent-soft), transparent);
}
.rate-cell{
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--accent-line);
  text-align: left;
}
.rate-cell:last-child{ border-right: none; }
.rate-cell .pct{
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -0.04em; line-height: 1;
  color: var(--accent);
}
.rate-cell .period{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rate-cell .usd{
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  margin-top: 4px;
}

/* Horizontal pool layout (for the strip below the hero) */
.pool.pool--horizontal{
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.6fr;
  grid-template-areas:
    "head head"
    "input rates"
    "foot foot"
    "cta cta";
  column-gap: 32px;
  row-gap: 18px;
  padding: 28px 32px;
  align-items: start;
}
.pool.pool--horizontal .pool-head{ grid-area: head; }
.pool.pool--horizontal .pool-input{ grid-area: input; }
.pool.pool--horizontal .rate-cells{ grid-area: rates; align-self: stretch; }
.pool.pool--horizontal .pool-foot{ grid-area: foot; padding-top: 8px; }
.pool.pool--horizontal .btn{ grid-area: cta; justify-self: end; max-width: 320px; }
.pool.pool--horizontal .pool-input .field input{ font-size: 26px; }
.pool.pool--horizontal .rate-cell{ padding: 18px 18px; }
@media (max-width: 760px){
  .pool.pool--horizontal{
    grid-template-columns: 1fr;
    grid-template-areas: "head" "input" "rates" "foot" "cta";
    padding: 22px;
  }
  .pool.pool--horizontal .btn{ justify-self: stretch; max-width: none; }
  .rate-cell{ padding: 14px 12px; }
  .rate-cell .pct{ font-size: 24px; }
}
.pool-head{ display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pool-title{ font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.pool-live{ font-family: var(--font-mono); font-size: 11px; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.pool-live::before{ content:""; width:6px; height:6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 1.6s infinite; }

.pool-input{
  display: flex; flex-direction: column; gap: 8px;
}
.pool-input label{ font-size: 12px; color: var(--text-2); display:flex; justify-content: space-between; align-items: baseline; }
.pool-input label .hint{ color: var(--text-3); font-family: var(--font-mono); font-size: 11px; }
.pool-input .field{
  display: flex; align-items: center; gap: 0;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.pool-input .field .prefix{ color: var(--text-3); font-family: var(--font-mono); padding-right: 8px; border-right: 1px solid var(--line); }
.pool-input .field input{
  background: transparent; border: none; outline: none; color: var(--text);
  font-family: var(--font-mono); font-size: 22px; font-weight: 600; width: 100%;
  padding-left: 12px; -moz-appearance: textfield;
}
.pool-input .field input::-webkit-outer-spin-button,
.pool-input .field input::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }
.pool-input .chips{ display: flex; gap: 6px; flex-wrap: wrap; }
.pool-input .chip{
  font-family: var(--font-mono); font-size: 11px;
  padding: 6px 10px; border-radius: 999px;
  background: transparent; color: var(--text-2);
  border: 1px solid var(--line-2);
  transition: all .15s ease;
}
.pool-input .chip:hover{ color: var(--text); border-color: var(--accent-line); }
.pool-input .chip[aria-pressed="true"]{ background: var(--accent-soft); color: var(--accent); border-color: var(--accent-line); }

.pool-rate{
  display: flex; flex-direction: column; gap: 8px;
}
.pool-rate .ticks{
  display: flex; gap: 0; border: 1px solid var(--line-2); border-radius: var(--radius-sm); overflow: hidden;
}
.pool-rate .ticks button{
  flex: 1; background: transparent; color: var(--text-2);
  font-family: var(--font-mono); font-size: 12px; padding: 10px 8px;
  border: none; border-right: 1px solid var(--line-2);
  transition: all .15s ease;
}
.pool-rate .ticks button:last-child{ border-right: none; }
.pool-rate .ticks button[aria-pressed="true"]{ background: var(--accent); color: var(--accent-ink); }

.pool-out{
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 18px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--accent-soft), transparent);
  border: 1px solid var(--accent-line);
}
.pool-out .cell{ display: flex; flex-direction: column; gap: 4px; }
.pool-out .cell .lbl{ font-size: 11px; color: var(--text-3); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.pool-out .cell .val{
  font-family: var(--font-display); font-weight: var(--display-weight);
  font-size: clamp(22px, 3vw, 30px); color: var(--text);
  letter-spacing: -0.02em; line-height: 1;
}
.pool-out .cell .val .unit{ color: var(--accent); font-size: 0.6em; margin-left: 4px; }
.pool-foot{
  font-size: 11px; color: var(--text-3); font-family: var(--font-mono); line-height: 1.5;
  border-top: 1px dashed var(--line-2); padding-top: 12px;
}

/* Mini ticker chart */
.spark{ width: 100%; height: 56px; display: block; }

/* Pool strip wrapper (below hero) */
.pool-strip{ padding: 30px 0 10px; }
.pool-strip .pool{ box-shadow: 0 24px 60px -30px rgba(0,0,0,0.5); }

/* ───────────── Stats / numbers ───────────── */
.stats{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 720px){ .stats{ grid-template-columns: 1fr; } }
.stat{ padding: 28px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.stat:last-child{ border-right: none; }
@media (max-width: 720px){ .stat{ border-right: none; border-bottom: 1px solid var(--line); } .stat:last-child{ border-bottom: none; } }
.stat-val{ font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.stat-val .accent{ color: var(--accent); }
.stat-lbl{ font-family: var(--font-mono); font-size: 11.5px; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; }
.stat-note{ font-size: 13px; color: var(--text-2); }

/* ───────────── Pain ───────────── */
.pain-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 900px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 720px){ .pain-list{ grid-template-columns: 1fr; } }
.pain-item{
  display: flex; gap: 14px; padding: 22px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--text); background: var(--card);
}
.pain-item:nth-child(2n){ border-right: none; }
.pain-item:nth-last-child(-n+2){ border-bottom: none; }
@media (max-width: 720px){
  .pain-item{ border-right: none; }
  .pain-item:nth-last-child(-n+2){ border-bottom: 1px solid var(--line); }
  .pain-item:last-child{ border-bottom: none; }
}
.pain-item .x{
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: color-mix(in srgb, var(--danger) 18%, transparent); color: var(--danger);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  margin-top: 2px;
}

/* ───────────── Solution ───────────── */
.solution{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 880px){ .solution{ grid-template-columns: 1fr; gap: 28px; } }
.solution-list{
  list-style: none; display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.solution-list li{
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text); font-size: 15.5px;
}
.solution-list li .n{
  font-family: var(--font-mono); font-size: 11px; color: var(--text-3);
  padding-top: 4px; min-width: 32px;
}
.solution-list li .t strong{ color: var(--accent); font-weight: 600; }

/* ───────────── Benefits grid ───────────── */
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 980px){ .benefits-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .benefits-grid{ grid-template-columns: 1fr; } }
.benefit{
  padding: 24px; background: var(--card);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
  transition: background .2s ease;
}
.benefit:hover{ background: var(--card-2); }
.benefit:nth-child(4n){ border-right: none; }
.benefit:nth-last-child(-n+4){ border-bottom: none; }
@media (max-width: 980px){
  .benefit:nth-child(4n){ border-right: 1px solid var(--line); }
  .benefit:nth-child(2n){ border-right: none; }
  .benefit:nth-last-child(-n+4){ border-bottom: 1px solid var(--line); }
  .benefit:nth-last-child(-n+2){ border-bottom: none; }
}
@media (max-width: 560px){
  .benefit{ border-right: none; border-bottom: 1px solid var(--line); }
  .benefit:last-child{ border-bottom: none; }
}
.benefit .ico{
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 4px;
}
[data-theme="mono"] .benefit .ico{ border-radius: 2px; background: var(--text); color: var(--bg); }
.benefit h3{ font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.benefit p{ font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* ───────────── Testimonials ───────────── */
.testi-row{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  align-items: start;
}
@media (max-width: 880px){ .testi-row{ grid-template-columns: 1fr; } }
.testi{
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0; overflow: hidden;
  display: flex; flex-direction: column;
}
.testi-video{
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, color-mix(in srgb, var(--text) 4%, transparent) 14px 15px),
    var(--bg-2);
  display: grid; place-items: center; position: relative; border-bottom: 1px solid var(--line);
}
.testi-video--real{
  aspect-ratio: 4 / 5;
  background: #000;
  overflow: hidden;
}
.testi-video--real video{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.testi-video--img{
  aspect-ratio: 7 / 5;
  background: #ece5dd; /* whatsapp-ish */
  overflow: hidden;
  cursor: zoom-in;
}
.testi-video--img img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.testi-video--img:hover img{ transform: scale(1.03); }
.testi-video .play{
  width: 54px; height: 54px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 90%, white);
  color: var(--accent-ink); display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px color-mix(in srgb, var(--accent) 60%, transparent);
}
.testi-video .corner{
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-mono); font-size: 10px; color: var(--text-3);
  background: var(--bg); padding: 4px 8px; border-radius: 4px; border: 1px solid var(--line);
}
.testi-body{ padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.testi-body .q{ font-size: 14.5px; color: var(--text); line-height: 1.5; }
.testi-body .by{ display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); }
.testi-body .by .av{ width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--gold)); flex-shrink: 0; }
.testi-body .by strong{ color: var(--text); font-weight: 600; }

/* ───────────── Offer ───────────── */
.offer-wrap{ max-width: 760px; margin: 0 auto; position: relative; }
.offer-card{
  background: var(--card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 30px 80px -30px color-mix(in srgb, var(--accent) 30%, transparent);
}
@media (max-width: 560px){ .offer-card{ padding: 24px; } }
.offer-ribbon{
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--gold-ink);
  padding: 7px 16px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.offer-title{ text-align: center; margin-bottom: 22px; font-size: clamp(20px, 2.6vw, 26px); }
.stack{ display: flex; flex-direction: column; }
.stack-row{
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.stack-row:last-of-type{ border-bottom: none; }
.stack-row .label{ display: flex; gap: 10px; flex: 1; line-height: 1.45; }
.stack-row .label .tag{
  font-family: var(--font-mono); font-size: 10px; padding: 2px 6px; border-radius: 4px;
  background: var(--accent-soft); color: var(--accent); flex-shrink: 0; align-self: center;
  letter-spacing: 0.06em;
}
.stack-row .label .tag.bonus{ background: var(--gold-soft); color: var(--gold); }
.stack-row .price{
  color: var(--text-3); font-family: var(--font-mono); font-size: 13px;
  text-decoration: line-through; white-space: nowrap; align-self: center;
}
.stack-total{
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 0;
  border-top: 2px solid var(--line);
  margin-top: 6px;
  font-size: 14px; color: var(--text-2);
}
.stack-total .total{ font-family: var(--font-mono); font-size: 18px; color: var(--text-3); text-decoration: line-through; }

.price-box{
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--accent-soft), transparent);
  border: 1px solid var(--accent-line);
  text-align: center;
  display: flex; flex-direction: column; gap: 8px;
}
.price-label{ font-family: var(--font-mono); font-size: 11px; color: var(--text-2); letter-spacing: 0.1em; text-transform: uppercase; }
.price-big{
  font-family: var(--font-display); font-weight: var(--display-weight);
  font-size: clamp(40px, 6vw, 60px); letter-spacing: -0.04em; line-height: 1;
  color: var(--text);
}
.price-big .currency{ color: var(--text-2); font-size: 0.55em; font-weight: 500; margin-right: 6px; }
.price-installments{ font-size: 14.5px; color: var(--text-2); }
.price-installments strong{ color: var(--text); font-weight: 700; }
.price-methods{ font-family: var(--font-mono); font-size: 11px; color: var(--text-3); display: inline-flex; gap: 12px; justify-content: center; margin-top: 4px; }
.price-methods span{ display: inline-flex; align-items: center; gap: 6px; }

/* ───────────── Objections ───────────── */
.obj-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 980px; margin: 0 auto; }
@media (max-width: 720px){ .obj-grid{ grid-template-columns: 1fr; } }
.obj{
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
}
.obj .q{
  font-weight: 700; font-size: 16px; color: var(--text); line-height: 1.35;
  display: flex; gap: 10px;
}
.obj .q::before{
  content: "“"; font-family: var(--font-display); font-size: 32px; line-height: 0.6;
  color: var(--gold); font-weight: 800;
}
.obj .a{ font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.obj .a strong{ color: var(--text); }

/* ───────────── Guarantee ───────────── */
.guarantee{
  max-width: 820px; margin: 0 auto;
  display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: center;
  padding: 36px;
  border: 1px solid var(--accent-line); border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--accent-soft), transparent 60%);
}
@media (max-width: 680px){ .guarantee{ grid-template-columns: 1fr; text-align: center; padding: 28px; } }
.seal{
  width: 160px; height: 160px; margin: 0 auto;
  position: relative; display: grid; place-items: center;
  border-radius: 50%; background: var(--card); border: 1px solid var(--accent-line);
}
.seal::before{
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), var(--gold), var(--accent));
  -webkit-mask: radial-gradient(circle, transparent 76px, black 77px);
          mask: radial-gradient(circle, transparent 76px, black 77px);
  animation: rot 20s linear infinite;
}
@keyframes rot { to { transform: rotate(360deg); } }
.seal-inner{ text-align: center; }
.seal-num{ font-family: var(--font-display); font-weight: var(--display-weight); font-size: 52px; line-height: 1; color: var(--text); letter-spacing: -0.04em; }
.seal-lbl{ font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--text-2); text-transform: uppercase; margin-top: 4px; }
.guarantee h3{ font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 10px; }
.guarantee p{ color: var(--text-2); font-size: 15px; line-height: 1.6; }
.guarantee p strong{ color: var(--text); }
.guarantee p + p{ margin-top: 10px; }

/* ───────────── FAQ ───────────── */
.faq-list{ max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 20px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  font-size: 16.5px; font-weight: 600; color: var(--text); letter-spacing: -0.005em;
}
.faq-q .num{ font-family: var(--font-mono); color: var(--text-3); font-size: 13px; font-weight: 500; min-width: 30px; }
.faq-q .text{ flex: 1; }
.faq-q .toggle{
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--card); border: 1px solid var(--line-2);
  color: var(--text-2); transition: all .25s ease;
}
.faq-item.open .faq-q .toggle{ background: var(--accent); color: var(--accent-ink); transform: rotate(45deg); border-color: var(--accent); }
.faq-a{
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--text-2); font-size: 15px; line-height: 1.65; padding: 0 0 0 46px;
}
.faq-item.open .faq-a{ max-height: 400px; padding: 0 60px 22px 46px; }

/* ───────────── Final CTA ───────────── */
.final{
  text-align: center; padding: clamp(80px, 12vw, 140px) 0; position: relative;
}
.final-h{ max-width: 820px; margin: 0 auto 22px; }
.final-h .accent{ color: var(--gold); }
.final-p{ max-width: 620px; margin: 0 auto 16px; color: var(--text-2); font-size: 16.5px; }
.final-p + .final-p{ margin-top: -6px; }
.final-p strong{ color: var(--text); }
.ps{
  max-width: 720px; margin: 50px auto 0; text-align: left;
  padding: 28px; background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius); font-size: 15px; color: var(--text-2); line-height: 1.7;
}
.ps strong.tag{ color: var(--gold); font-weight: 700; letter-spacing: 0.04em; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; }
.ps em{ color: var(--text); font-style: normal; font-weight: 600; }

/* ───────────── Footer ───────────── */
footer{
  border-top: 1px solid var(--line); padding: 48px 0 80px;
  color: var(--text-3); font-size: 13px;
}
footer .grid{
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px;
  margin-bottom: 36px;
}
@media (max-width: 680px){ footer .grid{ grid-template-columns: 1fr; } }
footer h5{ font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2); margin-bottom: 12px; }
footer ul{ list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul a{ color: var(--text-3); }
footer ul a:hover{ color: var(--text); }
.disclaimer{ font-size: 12px; line-height: 1.6; padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-3); max-width: 760px; }
.disclaimer strong{ color: var(--text-2); }

/* ───────────── Floating + sticky ───────────── */
.fab-whatsapp{
  position: fixed; bottom: 22px; right: 22px; z-index: 45;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6);
  transition: transform .2s ease;
}
.fab-whatsapp:hover{ transform: scale(1.08); }
.sticky-cta{
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 44;
  padding: 12px 14px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.sticky-cta .row{ display: flex; gap: 10px; align-items: center; }
.sticky-cta .meta{ flex: 1; min-width: 0; }
.sticky-cta .meta .p1{ font-size: 12px; color: var(--text-3); font-family: var(--font-mono); }
.sticky-cta .meta .p2{ font-size: 14px; color: var(--text); font-weight: 600; }
.sticky-cta .btn{ padding: 12px 18px; font-size: 13px; flex-shrink: 0; }
@media (max-width: 780px){
  .sticky-cta{ display: block; }
  .fab-whatsapp{ bottom: 88px; }
  body{ padding-bottom: 76px; }
}

/* ───────────── Checkout modal ───────────── */
.modal-veil{
  position: fixed; inset: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 80%, black);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 22px;
  animation: veilIn .25s ease;
}
@keyframes veilIn { from { opacity: 0; } to { opacity: 1; } }
.modal{
  width: 100%; max-width: 460px;
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
  animation: modalIn .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes modalIn { from { transform: translateY(20px) scale(0.96); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head{
  padding: 20px 22px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}
.modal-head h4{ font-size: 17px; font-weight: 700; }
.modal-head .x{
  width: 30px; height: 30px; border-radius: 8px; background: var(--card-2); border: 1px solid var(--line);
  color: var(--text-2); display: grid; place-items: center; cursor: pointer;
}
.modal-body{ padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.steps{ display: flex; gap: 6px; }
.step{ flex: 1; height: 4px; background: var(--line); border-radius: 2px; transition: background .25s ease; }
.step.active{ background: var(--accent); }
.step.done{ background: var(--accent); opacity: 0.5; }
.modal-h{ font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.modal-p{ font-size: 14px; color: var(--text-2); }
.pay-opts{ display: flex; flex-direction: column; gap: 10px; }
.pay-opt{
  display: flex; align-items: center; gap: 14px; padding: 16px;
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: var(--card-2); cursor: pointer; transition: all .15s ease;
  text-align: left; width: 100%;
}
.pay-opt:hover{ border-color: var(--accent-line); }
.pay-opt[aria-pressed="true"]{ border-color: var(--accent); background: var(--accent-soft); }
.pay-opt .icon{
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--bg-2); display: grid; place-items: center; color: var(--text);
  flex-shrink: 0; font-family: var(--font-mono); font-size: 12px; font-weight: 700;
}
.pay-opt .meta{ flex: 1; }
.pay-opt .meta .t{ font-weight: 600; font-size: 14.5px; color: var(--text); }
.pay-opt .meta .s{ font-size: 12.5px; color: var(--text-2); margin-top: 2px; }
.pay-opt .meta .s.gold{ color: var(--gold); font-weight: 600; }
.pay-opt .radio{
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--line-strong); flex-shrink: 0; position: relative;
}
.pay-opt[aria-pressed="true"] .radio{ border-color: var(--accent); }
.pay-opt[aria-pressed="true"] .radio::after{
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent);
}
.modal input.text{
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--line-2);
  color: var(--text); font-family: var(--font-body); font-size: 14.5px;
  outline: none; transition: border-color .15s ease;
}
.modal input.text:focus{ border-color: var(--accent); }
.modal-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px){ .modal-row{ grid-template-columns: 1fr; } }

.success-anim{
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--accent); display: grid; place-items: center;
  margin: 12px auto;
  animation: pop .5s cubic-bezier(.2,1.4,.4,1);
  color: var(--accent-ink);
}
@keyframes pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ───────────── Falling pattern background ───────────── */
.fp-root{
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  overflow: hidden;
  opacity: var(--fp-opacity, 0.55);
  transition: opacity .4s ease;
}
.fp-stream{
  position: absolute; inset: 0;
  animation: fp-fall var(--fp-duration, 200s) linear infinite;
  will-change: background-position;
}
.fp-overlay{
  position: absolute; inset: 0;
  backdrop-filter: blur(var(--fp-blur, 1em));
  -webkit-backdrop-filter: blur(var(--fp-blur, 1em));
}
/* Subtle radial vignette to keep edges calm */
.fp-mask{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 30%, transparent 0%, transparent 40%, var(--bg) 100%);
}
@keyframes fp-fall {
  from { background-position:
    0px 220px, 3px 220px, 151.5px 337.5px,
    25px 24px, 28px 24px, 176.5px 150px,
    50px 16px, 53px 16px, 201.5px 91px,
    75px 224px, 78px 224px, 226.5px 230.5px,
    100px 19px, 103px 19px, 251.5px 121px,
    125px 120px, 128px 120px, 276.5px 187px,
    150px 31px, 153px 31px, 301.5px 120.5px,
    175px 235px, 178px 235px, 326.5px 384.5px,
    200px 121px, 203px 121px, 351.5px 228.5px,
    225px 224px, 228px 224px, 376.5px 364.5px,
    250px 26px, 253px 26px, 401.5px 105px,
    275px 75px, 278px 75px, 426.5px 180px;
  }
  to { background-position:
    0px 6800px, 3px 6800px, 151.5px 6917.5px,
    25px 13632px, 28px 13632px, 176.5px 13758px,
    50px 5416px, 53px 5416px, 201.5px 5491px,
    75px 17175px, 78px 17175px, 226.5px 17301.5px,
    100px 5119px, 103px 5119px, 251.5px 5221px,
    125px 8428px, 128px 8428px, 276.5px 8495px,
    150px 9876px, 153px 9876px, 301.5px 9965.5px,
    175px 13391px, 178px 13391px, 326.5px 13540.5px,
    200px 14741px, 203px 14741px, 351.5px 14848.5px,
    225px 18770px, 228px 18770px, 376.5px 18910.5px,
    250px 5082px, 253px 5082px, 401.5px 5161px,
    275px 6375px, 278px 6375px, 426.5px 6480px;
  }
}
@media (prefers-reduced-motion: reduce){
  .fp-stream{ animation: none; }
}

/* Per-theme dial so the pattern stays "leve" everywhere */
[data-theme="trader"]    { --fp-opacity: 0.55; }
[data-theme="editorial"] { --fp-opacity: 0.22; }
[data-theme="mono"]      { --fp-opacity: 0.30; }

/* ───────────── Reveal on scroll ───────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ───────────── Theme-specific niceties ───────────── */
[data-theme="editorial"] .pool, [data-theme="editorial"] .offer-card, [data-theme="editorial"] .card {
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 30px -20px rgba(20,18,14,0.18);
}
[data-theme="editorial"] h1, [data-theme="editorial"] h2 { font-feature-settings: 'ss01'; }
[data-theme="editorial"] .hero h1 .accent{ font-style: italic; font-weight: 400; }

[data-theme="mono"] .pool, [data-theme="mono"] .offer-card, [data-theme="mono"] .card {
  border-color: var(--text); box-shadow: 4px 4px 0 var(--text);
}
[data-theme="mono"] .stat-val, [data-theme="mono"] .price-big, [data-theme="mono"] h1, [data-theme="mono"] h2 {
  text-transform: uppercase;
}
[data-theme="mono"] .seal{ border-color: var(--text); }
[data-theme="mono"] .seal::before{ display: none; }
[data-theme="mono"] .hero h1 .accent{ background: var(--text); color: var(--bg); padding: 0 0.15em; }
[data-theme="mono"] .nav-cta{ border: 1px solid var(--text); }

/* selection */
::selection{ background: var(--accent); color: var(--accent-ink); }

/* Tweaks panel scaling guard */
.twk-panel{ font-variant-numeric: tabular-nums; }
