:root {
  --bg: #07111f;
  --bg-2: #0c1930;
  --text: #eef6ff;
  --muted: rgba(238, 246, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.08);
  --softer: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.26);
  --accent: #98f5d2;
  --accent-2: #8bc8ff;
  --accent-3: #c7b7ff;
  --warning: #ffe39a;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--bg); }

html { overflow-x: hidden; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(139, 200, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(152, 245, 210, 0.16), transparent 24rem),
    radial-gradient(circle at 45% 86%, rgba(199, 183, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, #06101d 0%, #0a1426 48%, #0f1e35 100%);
  overflow-x: hidden;
}

button, input, select { font: inherit; }

a { color: inherit; text-decoration: none; }

code {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.38rem;
  border-radius: 0.45rem;
}

.ambient {
  position: fixed;
  width: 26rem;
  height: 26rem;
  filter: blur(18px);
  border-radius: 50%;
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}

.ambient-a { top: -10rem; left: -8rem; background: rgba(139, 200, 255, 0.32); }
.ambient-b { top: 12rem; right: -12rem; background: rgba(152, 245, 210, 0.24); animation-delay: -4s; }
.ambient-c { bottom: -14rem; left: 30%; background: rgba(199, 183, 255, 0.22); animation-delay: -8s; }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(1.4rem, -1rem, 0) scale(1.06); }
}

.shell, .gate-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.shell { padding: 24px 0 36px; }
.gate-shell { padding: 26px 0; }

.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055));
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
}

.soft-border { border-radius: var(--radius-lg); }
.strong-border { border-radius: var(--radius-xl); border-color: var(--line-strong); }

.topbar, .mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar { padding: 14px 16px; }
.mini-header { padding: 0 4px 22px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,0.18) 28%, transparent 32%),
    linear-gradient(135deg, var(--accent), var(--accent-2) 55%, var(--accent-3));
  box-shadow: 0 14px 32px rgba(139, 200, 255, 0.28);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ghost-link, .button-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.055);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 480px);
  gap: 24px;
  align-items: center;
  padding: 72px 0 26px;
}

.hero-copy h1,
.gate-center h1 {
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 5.85rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  max-width: 720px;
}

.gate-center h1 { font-size: clamp(2.4rem, 6vw, 4.85rem); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  margin: 24px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row span, .status-pill, .secure-chip, .sponsor-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(238,246,255,0.78);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 700;
}

.creator-card { padding: 24px; }
.card-heading, .section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.card-heading h2, .section-heading h2, .ad-panel h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.form-stack { display: grid; gap: 16px; }
.field-grid { display: grid; grid-template-columns: 1fr 130px; gap: 14px; }

.field { display: grid; gap: 8px; }
.field span { color: rgba(238,246,255,0.78); font-size: 0.9rem; font-weight: 700; }
.field small { color: rgba(238,246,255,0.48); line-height: 1.4; }

input, select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 0 15px;
  color: var(--text);
  background: rgba(2, 7, 18, 0.38);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

select { appearance: none; cursor: pointer; }
input:focus, select:focus {
  border-color: rgba(152, 245, 210, 0.62);
  box-shadow: 0 0 0 4px rgba(152, 245, 210, 0.12);
  background: rgba(2, 7, 18, 0.52);
}

.primary-btn {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  color: #06101d;
  background: linear-gradient(135deg, #d7fff0 0%, #98f5d2 42%, #8bc8ff 100%);
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(139, 200, 255, 0.22), inset 0 1px 0 rgba(255,255,255,0.72);
}

.primary-btn span:first-child { position: relative; z-index: 1; }
.primary-btn .btn-glow {
  position: absolute;
  inset: -60% auto auto -20%;
  width: 42%;
  height: 220%;
  background: rgba(255,255,255,0.55);
  transform: rotate(22deg);
  filter: blur(2px);
  animation: sheen 3.4s ease-in-out infinite;
}

.primary-btn.disabled {
  opacity: 0.58;
  cursor: not-allowed;
  filter: saturate(0.45);
}

.as-link { padding: 0 24px; }

@keyframes sheen {
  0%, 45% { left: -35%; opacity: 0; }
  65% { opacity: 0.8; }
  100% { left: 125%; opacity: 0; }
}

.result-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.result-box.hidden { display: none; }
.result-box p { margin: 0 0 10px; color: var(--muted); font-weight: 700; }
.copy-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.copy-row button, .history-actions button, .history-actions a {
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border-radius: 14px;
  padding: 0 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.preview-link { display: inline-block; margin-top: 12px; color: var(--accent); font-weight: 800; }

.history-section { margin: 22px 0 0; padding: 22px; }
.muted { margin: 0; color: rgba(238,246,255,0.55); }
.history-list { display: grid; gap: 12px; }
.history-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
}
.history-item strong { display: block; margin-bottom: 5px; }
.history-item p { margin: 0 0 6px; color: var(--muted); word-break: break-all; }
.history-item small { color: rgba(238,246,255,0.42); }
.history-actions { display: flex; gap: 8px; align-items: center; }
.empty-state { color: var(--muted); padding: 18px; border: 1px dashed rgba(255,255,255,0.16); border-radius: 18px; }
.footer-note { position: relative; z-index: 1; width: min(1180px, calc(100% - 32px)); margin: 0 auto 34px; color: rgba(238,246,255,0.52); line-height: 1.55; }

.gate-html { overflow-x: hidden; }
body { display: grid; place-items: center; }
.gate-layout {
  display: grid;
  grid-template-columns: minmax(210px, 270px) 1fr minmax(210px, 270px);
  gap: 18px;
  align-items: stretch;
}

.gate-card {
  min-height: 650px;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 22px;
}

.progress-wrap { padding: 2px; }
.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.progress-track {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 300ms ease;
}

.gate-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px 8px;
}
.gate-center .lead { margin-inline: auto; }

.pulse-orb {
  width: clamp(116px, 16vw, 152px);
  height: clamp(116px, 16vw, 152px);
  margin: 34px 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.9), rgba(255,255,255,0.12) 25%, transparent 30%),
    linear-gradient(135deg, rgba(152,245,210,0.95), rgba(139,200,255,0.88));
  color: #06101d;
  font-size: 3.3rem;
  font-weight: 950;
  box-shadow: 0 0 0 10px rgba(255,255,255,0.055), 0 24px 80px rgba(139,200,255,0.28);
  animation: breathe 2s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255,255,255,0.055), 0 24px 80px rgba(139,200,255,0.28); }
  50% { transform: scale(1.035); box-shadow: 0 0 0 18px rgba(152,245,210,0.07), 0 28px 92px rgba(152,245,210,0.25); }
}

.micro-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 14px; }
.text-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.ad-panel {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.ad-panel p { margin: 0; color: var(--muted); line-height: 1.55; }
.sponsor-label { color: var(--warning); border-color: rgba(255, 227, 154, 0.24); background: rgba(255, 227, 154, 0.08); }
.sponsor-btn, .download-sponsor, .mobile-sponsored button {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  cursor: pointer;
  background: rgba(255,255,255,0.08);
}
.sponsor-btn {
  color: #06101d;
  background: linear-gradient(135deg, #fff4c7, #98f5d2);
  font-weight: 900;
}
.download-sponsor {
  background: rgba(139,200,255,0.10);
  font-weight: 800;
}
.mobile-sponsored { display: none; }

.scroll-bottom-btn {
  border: 1px solid rgba(151, 219, 255, 0.22);
  border-radius: 18px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--text);
  cursor: pointer;
  background: rgba(139, 200, 255, 0.10);
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.scroll-bottom-btn:hover { transform: translateY(-1px); background: rgba(139, 200, 255, 0.14); }
.scroll-bottom-btn.full-width { width: 100%; }
.hero-scroll-btn { margin-top: 8px; }


@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 42px; }
  .gate-layout { grid-template-columns: 1fr; }
  .right-panel { display: none; }
  .ad-panel { min-height: auto; }
  .gate-card { min-height: 540px; }
}

@media (max-width: 660px) {
  .shell, .gate-shell, .footer-note { width: min(100% - 22px, 1180px); }
  .topbar { align-items: flex-start; }
  .nav-actions { justify-content: flex-start; }
  .hero-copy h1 { font-size: clamp(2.6rem, 15vw, 4rem); }
  .field-grid, .copy-row, .history-item { grid-template-columns: 1fr; }
  .history-actions { justify-content: stretch; }
  .history-actions > * { justify-content: center; flex: 1; }
  .creator-card, .history-section, .gate-card { padding: 17px; }
  .ad-panel { display: none; }
  .mobile-sponsored {
    position: sticky;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 20px;
  }
  .mobile-sponsored span { color: var(--warning); font-weight: 800; font-size: 0.82rem; }
  .mobile-sponsored button { min-height: 40px; border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Scroll funnel content */
.gate-html { overflow-x: hidden; }
body {
  display: block;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -10px 0 12px;
  color: rgba(238,246,255,0.72);
  font-weight: 800;
  font-size: 0.92rem;
}

.mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(238,246,255,0.5);
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
}
.mouse-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
  animation: wheelDrop 1.35s ease-in-out infinite;
}
@keyframes wheelDrop {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 11px); }
}

.scroll-content {
  display: grid;
  gap: 18px;
  margin: 18px 0;
}

.content-card {
  min-height: 360px;
  padding: clamp(22px, 4vw, 42px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
}
.content-card h2, .final-cta h2 {
  margin: 0;
  letter-spacing: -0.055em;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.96;
}
.content-card p, .final-cta p, .sponsor-tile p, details p {
  color: var(--muted);
  line-height: 1.65;
}
.content-card > div > p:not(.eyebrow), .final-cta > p:not(.eyebrow) {
  max-width: 720px;
}
.content-number {
  width: clamp(72px, 10vw, 112px);
  height: clamp(72px, 10vw, 112px);
  display: grid;
  place-items: center;
  border-radius: 30px;
  color: #06101d;
  font-weight: 950;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), var(--accent) 48%, var(--accent-2));
  box-shadow: 0 22px 64px rgba(139,200,255,0.22);
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.mini-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  color: rgba(238,246,255,0.82);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 800;
}
.split-card {
  grid-template-columns: 1fr minmax(260px, 370px);
}
.sponsor-tile {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.12);
}
.sponsor-tile h3 { margin: 10px 0 0; font-size: 1.45rem; letter-spacing: -0.04em; }
.sponsor-tile button { width: 100%; margin-top: 10px; }
.clean-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.clean-list li {
  position: relative;
  padding: 15px 15px 15px 48px;
  border-radius: 18px;
  color: rgba(238,246,255,0.82);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}
.clean-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: var(--accent);
  font-weight: 950;
}
.faq-card { grid-template-columns: 1fr; }
details {
  margin-top: 12px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: rgba(238,246,255,0.9);
}
details p { margin-bottom: 0; }
.final-cta {
  margin: 18px 0 30px;
  padding: clamp(26px, 5vw, 52px);
  text-align: center;
}
.final-cta p { margin-left: auto; margin-right: auto; }
.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.final-actions .primary-btn,
.final-actions .download-sponsor {
  min-width: min(100%, 260px);
  padding-inline: 22px;
}

@media (max-width: 980px) {
  .content-card, .split-card { grid-template-columns: 1fr; min-height: auto; }
  .mini-grid { grid-template-columns: 1fr; }
}

@media (max-width: 660px) {
  .scroll-hint { font-size: 0.84rem; }
  .content-card { padding: 20px; }
  .content-number { border-radius: 22px; }
  .final-actions { display: grid; }
  .final-actions .primary-btn,
  .final-actions .download-sponsor { width: 100%; }
}

/* Multi-layout funnel update */
.multi-step-shell { padding-bottom: 42px; }
.multi-step-body[data-step-layout="1"] { --accent: #98f5d2; --accent-2: #8bc8ff; --accent-3: #c7b7ff; }
.multi-step-body[data-step-layout="2"] { --accent: #ffe39a; --accent-2: #98f5d2; --accent-3: #8bc8ff; }
.multi-step-body[data-step-layout="3"] { --accent: #c7b7ff; --accent-2: #8bc8ff; --accent-3: #98f5d2; }
.multi-step-body[data-step-layout="4"] { --accent: #8bc8ff; --accent-2: #d7fff0; --accent-3: #ffe39a; }
.multi-step-body[data-step-layout="5"] { --accent: #d7fff0; --accent-2: #98f5d2; --accent-3: #8bc8ff; }

.step-layout { display: grid; gap: 18px; }
.step-progress { width: 100%; }

.layout-one { padding: clamp(16px, 2.2vw, 24px); }
.layout-one-grid {
  display: grid;
  grid-template-columns: minmax(210px, 270px) 1fr minmax(210px, 270px);
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
}
.hero-gate-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 4vw, 54px);
  border-radius: 30px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
}
.hero-gate-card h1,
.split-header h1,
.article-content h1,
.quest-hero h1,
.final-focus h1 {
  margin: 0;
  letter-spacing: -0.085em;
  line-height: .9;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
}
.ad-stack { display: grid; gap: 14px; }
.native-ad {
  padding: 18px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}
.native-ad h3 { margin: 0; letter-spacing: -0.04em; font-size: 1.35rem; }
.native-ad p { margin: 0; color: var(--muted); line-height: 1.55; }
.native-ad.gold { background: linear-gradient(135deg, rgba(255,227,154,.16), rgba(255,255,255,.055)); }
.native-ad.blue { background: linear-gradient(135deg, rgba(139,200,255,.14), rgba(255,255,255,.052)); }
.native-ad.purple { background: linear-gradient(135deg, rgba(199,183,255,.15), rgba(255,255,255,.052)); }
.mini-proof { padding: 18px; display: grid; gap: 12px; align-content: center; min-height: 220px; }
.mini-proof strong { font-size: 1.1rem; letter-spacing: -0.03em; }
.mini-proof span { color: var(--muted); padding: 10px 12px; border-radius: 14px; background: rgba(255,255,255,0.06); }
.compact { margin-top: 0; }

.split-header {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 370px);
  gap: 22px;
  align-items: stretch;
  padding: clamp(22px, 4vw, 46px);
}
.timer-panel { padding: 18px; display: grid; align-content: center; gap: 16px; }
.small-orb { width: 124px; height: 124px; margin: 0 auto; font-size: 2.5rem; }
.checker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, auto);
  gap: 18px;
}
.checker-card { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.checker-card h2 { margin: 18px 0 8px; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1; letter-spacing: -0.055em; }
.checker-card p { color: var(--muted); line-height: 1.6; }
.tall-card { grid-row: span 2; }
.wide-card { grid-column: span 2; }
.checker-grid .native-ad { min-height: auto; }

.article-shell {
  display: grid;
  grid-template-columns: minmax(210px, 290px) 1fr;
  gap: clamp(18px, 3vw, 36px);
  padding: clamp(18px, 3vw, 32px);
}
.article-rail {
  position: sticky;
  top: 18px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}
.rail-orb { width: 118px; height: 118px; margin: 0 auto; font-size: 2.4rem; }
.full-width { width: 100%; }
.article-content { padding: clamp(18px, 3vw, 34px); }
.article-html { overflow-x: hidden; }
body { display: grid; gap: 22px; margin-top: 32px; }
.article-body p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; }
.article-body h2 { margin: 10px 0 0; font-size: clamp(2rem, 4vw, 3.8rem); line-height: .95; letter-spacing: -.06em; }
.inline-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.inline-stat-grid span { display: grid; gap: 4px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.06); color: var(--muted); font-weight: 800; }
.inline-stat-grid strong { display: block; color: var(--text); font-size: 2rem; letter-spacing: -.05em; }

.quest-hero {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
}
.quest-timer { display: grid; gap: 16px; }
.quest-orb { margin: 0 auto; }
.pathway { display: grid; gap: 18px; }
.path-step {
  min-height: 260px;
  padding: clamp(22px, 4vw, 42px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.path-step span {
  width: clamp(72px, 9vw, 108px);
  height: clamp(72px, 9vw, 108px);
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06101d;
  font-size: 2.15rem;
  font-weight: 950;
}
.path-step h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.6rem); line-height: .92; letter-spacing: -.075em; }
.path-step p { margin: 8px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.pathway .native-ad { min-height: 250px; }

.final-grid { display: grid; grid-template-columns: 1fr minmax(260px, 360px); gap: 18px; }
.final-focus { min-height: 640px; padding: clamp(24px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.final-focus .step-progress { align-self: stretch; margin-bottom: 34px; }
.final-orb { margin-bottom: 0; }
.final-side { display: grid; gap: 18px; }
.final-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-block { min-height: 250px; padding: clamp(22px, 4vw, 38px); }
.info-block h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: .95; letter-spacing: -.06em; }
.info-block p { color: var(--muted); line-height: 1.65; }

.final-cta { margin-top: 0; }
.final-actions .download-sponsor { min-width: 190px; }

@media (max-width: 1120px) {
  .layout-one-grid, .checker-grid, .final-grid { grid-template-columns: 1fr; }
  .ad-stack { grid-template-columns: 1fr 1fr; }
  .right-stack { grid-template-columns: 1fr; }
  .checker-grid { grid-auto-rows: auto; }
  .tall-card, .wide-card { grid-row: auto; grid-column: auto; }
  .final-side { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .split-header, .article-shell, .quest-hero, .final-info-grid { grid-template-columns: 1fr; }
  .article-rail { position: static; }
  .inline-stat-grid, .ad-stack, .final-side { grid-template-columns: 1fr; }
  .hero-gate-card, .final-focus { min-height: 500px; }
  .path-step { grid-template-columns: 1fr; }
}

@media (max-width: 660px) {
  .layout-one { padding: 12px; }
  .native-ad { min-height: 200px; }
  .hero-gate-card, .final-focus { min-height: 460px; padding: 22px 14px; }
  .split-header, .quest-hero, .article-shell { padding: 17px; }
  .checker-card, .info-block { padding: 20px; }
  .path-step { min-height: 220px; }
  .final-actions { grid-template-columns: 1fr; }
  .final-actions .download-sponsor { width: 100%; }
}

/* Live slots -------------------------------------------------- */
.live-ad-shell {
  overflow: hidden;
  align-items: stretch;
  justify-content: stretch;
}

.ad-live-slot {
  width: 100%;
  min-height: 90px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(2, 7, 18, 0.20);
  overflow: hidden;
}

.ad-live-slot[data-ad-size="300x250"] { min-height: 250px; }
.ad-live-slot[data-ad-size="728x90"] { min-height: 90px; }

.ad-live-slot iframe,
.ad-live-slot img,
.ad-live-slot ins,
.ad-live-slot div {
  max-width: 100%;
}

.ad-placeholder {
  width: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
  color: var(--muted);
}

.ad-placeholder strong {
  color: var(--text);
  letter-spacing: -0.03em;
}

.ad-placeholder span {
  font-size: 0.86rem;
  line-height: 1.45;
}

.adsterra-checker-grid .live-ad-shell {
  min-height: 240px;
}

.article-rail .live-ad-shell {
  min-height: 250px;
  padding: 12px;
}

.article-rail .ad-live-slot {
  min-height: 220px;
}

.final-side .live-ad-shell:first-child {
  min-height: 340px;
}

@media (max-width: 660px) {
  .ad-live-slot[data-ad-size="728x90"] { min-height: 120px; }
  .final-side .live-ad-shell:first-child { min-height: 280px; }
}


/* Integrated ad presentation -------------------------------------- */
.native-ad.live-ad-shell {
  padding: 10px;
  min-height: auto;
  gap: 8px;
  justify-content: start;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.native-ad.live-ad-shell.gold,
.native-ad.live-ad-shell.blue,
.native-ad.live-ad-shell.purple {
  background: transparent;
}

.live-ad-shell .ad-disclosure,
.live-ad-shell .sponsor-label {
  align-self: start;
  color: rgba(232, 240, 255, 0.54);
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 2px;
  min-height: auto;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-live-slot {
  width: 100%;
  min-height: 90px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ad-live-slot[data-ad-size="300x250"] { min-height: 250px; }
.ad-live-slot[data-ad-size="160x300"] { min-height: 300px; }
.ad-live-slot[data-ad-size="160x600"] { min-height: 600px; }
.ad-live-slot[data-ad-size="320x50"] { min-height: 50px; }
.ad-live-slot[data-ad-size="728x90"] { min-height: 90px; }

.ad-live-slot iframe,
.ad-live-slot img,
.ad-live-slot ins {
  border: 0 !important;
  outline: 0 !important;
  border-radius: 14px;
  background: transparent;
}

.ad-placeholder {
  display: none !important;
}

.article-rail .live-ad-shell {
  padding: 4px;
  min-height: auto;
}

.article-rail .ad-live-slot {
  min-height: 250px;
}

.checker-grid .native-ad.live-ad-shell,
.pathway .native-ad.live-ad-shell,
.final-side .native-ad.live-ad-shell {
  min-height: auto;
}

.final-side .live-ad-shell:first-child {
  min-height: auto;
}


.sponsor-tile,
.mobile-sponsored,
.ad-panel {
  border-color: rgba(255,255,255,0.08);
}

@media (max-width: 660px) {
  .native-ad.live-ad-shell { padding: 6px 0; }
  .live-ad-shell .ad-disclosure,
  .live-ad-shell .sponsor-label { padding-left: 4px; }
  .ad-live-slot[data-ad-size="728x90"] { min-height: 90px; }
}


@media (max-width: 660px) {
  .ad-live-slot,
  .ad-live-slot iframe,
  .ad-live-slot ins,
  .ad-live-slot img {
    max-width: 100% !important;
  }
  .ad-live-slot iframe {
    height: auto;
  }
  .scroll-bottom-btn { min-height: 44px; }
}


/* Revenue-oriented placement tuning -------------------------------------- */
.priority-ad-stack {
  gap: 14px;
}

.live-ad-shell[data-ad-slot*="300x250"],
.live-ad-shell[data-ad-slot*="Banner inferior"],
.live-ad-shell[data-ad-slot*="Mini banner"],
.live-ad-shell[data-ad-slot*="final visible"] {
  width: min(100%, 336px);
  margin-inline: auto;
}

.step-layout > .live-ad-shell[data-ad-slot*="300x250"],
.step-layout > .live-ad-shell[data-ad-slot*="Native antes"],
.step-layout > .live-ad-shell[data-ad-slot*="antes del avance"],
.step-layout > .live-ad-shell[data-ad-slot*="antes de salida"] {
  width: min(100%, 360px);
  margin: 18px auto;
}

.article-body .live-ad-shell {
  margin: 18px auto;
}

.article-body .live-ad-shell[data-ad-slot*="300x250"] {
  width: min(100%, 336px);
}

.final-side .live-ad-shell[data-ad-slot*="300x250"] {
  width: min(100%, 336px);
}

.ad-stack .live-ad-shell[data-ad-slot*="Lateral alto"] {
  width: 176px;
  margin-inline: auto;
}

.live-ad-shell .ad-disclosure,
.live-ad-shell .sponsor-label {
  opacity: 0.58;
}

@media (max-width: 860px) {
  .ad-stack .live-ad-shell[data-ad-slot*="Lateral alto"] {
    width: min(100%, 336px);
  }
}

@media (max-width: 660px) {
  .live-ad-shell[data-ad-slot*="300x250"],
  .step-layout > .live-ad-shell[data-ad-slot*="300x250"],
  .article-body .live-ad-shell[data-ad-slot*="300x250"],
  .final-side .live-ad-shell[data-ad-slot*="300x250"],
  .ad-stack .live-ad-shell[data-ad-slot*="Lateral alto"] {
    width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
  }

  .ad-live-slot[data-ad-size="160x600"],
  .ad-live-slot[data-ad-size="160x300"] {
    min-height: 250px;
  }
}


/* Clean public placement and wide native blocks ---------------------- */
.sponsor-label,
.ad-disclosure,
.mobile-sponsored span {
  display: none !important;
}

.native-banner-shell.wide-ad-shell,
.step-layout > .native-banner-shell {
  width: min(100%, 960px) !important;
  margin: 16px auto 20px !important;
}

.native-banner-shell.wide-ad-shell .ad-live-slot,
.step-layout > .native-banner-shell .ad-live-slot {
  width: 100%;
  min-height: 120px;
}

.layout-one > .native-banner-shell.wide-ad-shell {
  width: min(100%, 900px) !important;
  margin-top: 18px !important;
  margin-bottom: 10px !important;
}

.article-body .native-banner-shell,
.final-side .native-banner-shell {
  width: min(100%, 900px) !important;
}

.mobile-sponsored {
  justify-content: center;
}

.mobile-sponsored button {
  width: 100%;
}

@media (min-width: 981px) {
  .native-banner-shell.wide-ad-shell .ad-live-slot,
  .step-layout > .native-banner-shell .ad-live-slot {
    min-height: 135px;
  }

  .layout-one-grid {
    grid-template-columns: minmax(190px, 230px) minmax(420px, 1fr) minmax(210px, 270px);
  }
}

@media (max-width: 760px) {
  .native-banner-shell.wide-ad-shell,
  .step-layout > .native-banner-shell {
    width: min(100%, 336px) !important;
    margin: 14px auto !important;
  }

  .native-banner-shell.wide-ad-shell .ad-live-slot,
  .step-layout > .native-banner-shell .ad-live-slot {
    min-height: 210px;
  }
}

/* All-formats-per-step suite -------------------------------------- */
.step-ad-suite {
  display: grid;
  gap: 14px;
  padding: clamp(12px, 2vw, 20px);
  width: 100%;
  overflow: hidden;
}

.step-ad-suite .native-ad.live-ad-shell {
  padding: 0;
}

.suite-wide-row {
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
}

.suite-top-banner .live-ad-shell,
.suite-top-banner .ad-live-slot {
  width: min(100%, 728px) !important;
  max-width: 100%;
}

.suite-mobile-banner .live-ad-shell,
.suite-mobile-banner .ad-live-slot {
  width: min(100%, 320px) !important;
  max-width: 100%;
}

.suite-native-row .native-banner-shell,
.suite-native-row .ad-live-slot {
  width: min(100%, 980px) !important;
  max-width: 100%;
}

.suite-native-row .ad-live-slot {
  min-height: 132px;
}

.suite-grid {
  display: grid;
  grid-template-columns: minmax(300px, 340px) minmax(160px, 190px) minmax(160px, 190px);
  gap: 14px;
  align-items: start;
  justify-content: center;
}

.suite-grid .live-ad-shell[data-ad-slot*="300x250"] {
  width: min(100%, 320px) !important;
}

.suite-grid .live-ad-shell[data-ad-slot*="160x300"],
.suite-grid .live-ad-shell[data-ad-slot*="160x600"] {
  width: 160px !important;
  margin-inline: auto;
}

.suite-action-row {
  display: flex;
  justify-content: center;
}

.suite-action-row .suite-resource-btn {
  min-width: min(100%, 320px);
}

.article-suite-row {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .suite-grid {
    grid-template-columns: minmax(280px, 340px) minmax(160px, 190px);
  }
}

@media (max-width: 660px) {
  .step-ad-suite {
    padding: 10px 0;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .suite-grid {
    grid-template-columns: 1fr;
  }

  .suite-grid .live-ad-shell,
  .suite-grid .ad-live-slot,
  .suite-top-banner .live-ad-shell,
  .suite-top-banner .ad-live-slot,
  .suite-mobile-banner .live-ad-shell,
  .suite-mobile-banner .ad-live-slot {
    max-width: 100% !important;
  }

  .suite-grid .live-ad-shell[data-ad-slot*="300x250"] {
    width: min(100%, 320px) !important;
  }

  .suite-grid .live-ad-shell[data-ad-slot*="160x300"],
  .suite-grid .live-ad-shell[data-ad-slot*="160x600"] {
    width: 160px !important;
  }

  .suite-native-row .ad-live-slot {
    min-height: 210px;
  }
}


/* 15s wait animation ------------------------------------------------ */
.wait-widget {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 26px 0;
}

.wait-widget .pulse-orb {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.wait-widget .pulse-orb::before,
.wait-widget .pulse-orb::after,
.wait-widget .pulse-orb i,
.wait-widget .pulse-orb b {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(139, 200, 255, 0.16);
  animation: orbitPulse 3.2s ease-in-out infinite;
  z-index: -1;
}

.wait-widget .pulse-orb::after {
  inset: -26px;
  border-color: rgba(152, 245, 210, 0.11);
  animation-delay: .35s;
}

.wait-widget .pulse-orb i,
.wait-widget .pulse-orb b {
  width: 9px;
  height: 9px;
  inset: auto;
  top: -11px;
  left: 50%;
  background: rgba(255, 244, 199, 0.95);
  border: 0;
  box-shadow: 0 0 24px rgba(255, 244, 199, 0.48);
  transform-origin: 0 calc(clamp(116px, 16vw, 152px) / 2 + 11px);
  animation: waitOrbit 4.6s linear infinite;
}

.wait-widget .pulse-orb b {
  background: rgba(152, 245, 210, 0.95);
  animation-duration: 6.4s;
  animation-direction: reverse;
}

.wait-copy {
  width: min(360px, 100%);
  display: grid;
  gap: 10px;
  text-align: center;
  color: rgba(238,246,255,0.74);
  font-weight: 800;
}

.wait-meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.wait-meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(152,245,210,0.95), rgba(139,200,255,0.95), rgba(255,244,199,0.92));
  transition: width .35s ease;
}

.wait-chips {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.wait-chips span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.24);
  animation: chipBlink 1.4s ease-in-out infinite;
}
.wait-chips span:nth-child(2) { animation-delay: .16s; }
.wait-chips span:nth-child(3) { animation-delay: .32s; }
.wait-chips span:nth-child(4) { animation-delay: .48s; }

@keyframes orbitPulse {
  0%, 100% { transform: scale(.96); opacity: .55; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes waitOrbit {
  from { transform: rotate(0deg) translateX(-50%); }
  to { transform: rotate(360deg) translateX(-50%); }
}

@keyframes chipBlink {
  0%, 100% { transform: translateY(0); opacity: .38; }
  50% { transform: translateY(-3px); opacity: 1; }
}

/* Wider native banner lane on desktop */
.suite-native-row .native-banner-shell,
.suite-native-row .ad-live-slot {
  width: min(100%, 1120px) !important;
  max-width: 1120px !important;
}

.suite-native-row .ad-live-slot {
  min-height: 210px;
}

@media (min-width: 1024px) {
  .suite-native-row {
    padding-inline: 8px;
  }
}

@media (max-width: 660px) {
  .wait-widget { margin: 22px 0; }
  .wait-copy { width: min(320px, 100%); }
  .suite-native-row .ad-live-slot { min-height: 230px; }
}

.small-orb .pulse-orb { width: 124px; height: 124px; margin: 0 auto; font-size: 2.5rem; }
.rail-orb .pulse-orb { width: 118px; height: 118px; margin: 0 auto; font-size: 2.4rem; }
.quest-orb .pulse-orb { margin: 0 auto; }
.final-orb .pulse-orb { margin-bottom: 0; }
