:root {
  --bg: #041f33;
  --bg-soft: #063456;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --text: #f8fcff;
  --muted: #d9eefb;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #ffb25a;
  --primary-dark: #ff9335;
  --accent: #14b7ff;
  --accent-2: #7fd6ff;
  --surface: #083b5f;
  --white: #ffffff;
  --success: #ffd96a;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(20, 183, 255, 0.22), transparent 28%),
    radial-gradient(circle at top left, rgba(9, 109, 194, 0.26), transparent 28%),
    linear-gradient(180deg, #062b46 0%, #041f33 42%, #0b5ea0 100%);
  color: var(--text);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { position: relative; padding: 90px 0; }
.section-dark { background: linear-gradient(180deg, rgba(20,183,255,0.10), rgba(255,255,255,0.02)); }
.section-contrast {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(20,183,255,0.10));
}
.announcement-bar {
  position: relative;
  z-index: 30;
  background: linear-gradient(90deg, #ffb25a, #ffd96a);
  color: #251300;
  font-size: 0.95rem;
  font-weight: 800;
}
.announcement-wrap {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  backdrop-filter: blur(18px);
  background: rgba(4, 31, 51, 0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(255, 210, 0, 0.20));
}
.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}
.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 500;
}
.nav-links a:hover { color: var(--white); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, #ffd889 0%, #ffb25a 55%, #ff9f3f 100%);
  color: #2d1400;
  box-shadow: 0 18px 36px rgba(255, 178, 90, 0.26);
}
.btn-primary:hover { box-shadow: 0 20px 44px rgba(255, 178, 90, 0.30); }
.btn-secondary {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.btn-large { padding: 16px 28px; font-size: 1rem; }
.btn-xl { padding: 18px 30px; font-size: 1.06rem; }
.full-width { width: 100%; }
.hero {
  overflow: clip;
  padding-top: 72px;
  padding-bottom: 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 42px;
  align-items: center;
}
.hero-pattern {
  position: absolute;
  width: 360px;
  height: 360px;
  pointer-events: none;
  opacity: 0.35;
}
.hero-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(188, 240, 255, 0.85) 1.4px, transparent 1.6px);
  background-size: 20px 20px;
}
.hero-pattern-left { left: -40px; top: 30px; transform: rotate(12deg); }
.hero-pattern-right { right: -60px; bottom: 0; transform: rotate(-8deg); }
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 210, 0, 0.12);
  border: 1px solid rgba(255, 210, 0, 0.28);
  color: #ffe8a5;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.badge-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--muted);
}
.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero h1 span {
  color: #ffd96a;
  text-shadow: 0 10px 40px rgba(20, 183, 255, 0.18);
}
.hero-lead {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
}
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.proof-card {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.proof-card.accent {
  background: linear-gradient(180deg, rgba(255,178,90,0.20), rgba(20,183,255,0.10));
  border-color: rgba(255,210,0,0.32);
}
.proof-label {
  display: block;
  color: #ffe8a5;
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.proof-card strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 6px;
}
.proof-card small { color: var(--muted); }
.urgency-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 22px;
}
.mini-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffe8a5;
  font-weight: 700;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 92px));
  gap: 12px;
}
.countdown div {
  padding: 14px 12px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.countdown strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}
.countdown span { color: var(--muted); font-size: 0.84rem; }
.urgency-side {
  display: grid;
  gap: 12px;
  min-width: 245px;
}
.viewer-chip,
.spots-chip {
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}
.spots-chip { color: #ffe48a; }
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.micro-benefits {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
  margin: 0;
  color: var(--muted);
}
.hero-visual { position: relative; min-height: 640px; }
.poster-card {
  position: relative;
  z-index: 2;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.07);
}
.poster-card img { width: 100%; height: auto; }
.floating-card { animation: floatY 5.5s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-mini-card {
  position: absolute;
  z-index: 3;
  width: 240px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
}
.floating-mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}
.floating-mini-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}
.floating-mini-card.dark {
  background: linear-gradient(180deg, rgba(255, 210, 0, 0.16), rgba(20, 183, 255, 0.18));
}
.floating-top-right { top: -20px; right: -20px; }
.floating-bottom-left { bottom: 18px; left: -18px; }
.trust-strip {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-grid > div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.trust-grid strong { display: block; margin-bottom: 4px; }
.trust-grid span { color: var(--muted); font-size: 0.95rem; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffe8a5;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.section-heading h2,
.two-col-section h2,
.coach-copy h2,
.faq-grid h2,
.final-cta-card h2,
.value-grid h2,
.bonus-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.section-heading p,
.value-grid p,
.coach-copy p,
.faq-grid p,
.final-cta-card p,
.card-panel p { color: var(--muted); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card,
.quote-card,
.credibility-card,
.value-box,
.card-panel,
.bonus-panel {
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow);
}
.feature-card {
  padding: 24px;
  min-height: 100%;
}
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,178,90,0.20), rgba(20,183,255,0.10));
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.feature-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.feature-card p { margin: 0; color: var(--muted); }
.value-grid,
.bonus-grid,
.coach-grid,
.two-col-section,
.faq-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
.value-grid { grid-template-columns: 1fr 0.95fr; }
.value-boxes { display: grid; gap: 18px; }
.value-box { padding: 24px; }
.value-box strong { display: block; margin-bottom: 8px; font-size: 1.12rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #2a1600;
  background: linear-gradient(180deg, #ffd351, #ffb703);
  font-weight: 900;
}
.two-col-section { grid-template-columns: repeat(2, 1fr); }
.card-panel { padding: 28px; }
.pricing-panel {
  background: linear-gradient(180deg, rgba(255,183,3,0.12), rgba(255,255,255,0.05));
  border-color: rgba(255,183,3,0.25);
}
.price-stack {
  display: grid;
  gap: 14px;
  margin: 24px 0 22px;
}
.price-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.price-item.highlighted {
  background: linear-gradient(180deg, rgba(255,183,3,0.18), rgba(255,183,3,0.07));
  border-color: rgba(255,183,3,0.3);
}
.price-item span { display: block; color: #ffd88b; font-size: 0.92rem; margin-bottom: 6px; }
.price-item strong { display: block; font-size: 1.6rem; line-height: 1.08; margin-bottom: 4px; }
.price-item small { color: var(--muted); }
.steps-list { display: grid; gap: 18px; margin-top: 20px; }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-item > span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd351, #ffb703);
  color: #2a1500;
  font-weight: 900;
}
.step-item p { margin: 4px 0 0; }
.coach-grid { grid-template-columns: 0.84fr 1fr; }
.coach-photo-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.coach-photo {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center top;
}
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 24px;
}
.credibility-card { padding: 18px; }
.credibility-card strong { display: block; margin-bottom: 8px; }
.credibility-card p { margin: 0; font-size: 0.96rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}
.gallery-card {
  border-radius: 28px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.04);
}
.gallery-card.large { grid-row: span 2; min-height: 100%; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 170px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,183,3,0.4), rgba(255,255,255,0.06));
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: start;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 162px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd351, #ffb703);
  box-shadow: 0 0 0 6px rgba(255,183,3,0.10);
}
.timeline-item.highlight::before { background: linear-gradient(180deg, #ffe8a5, #ffd351); }
.timeline-time {
  font-weight: 800;
  color: #ffe8a5;
  padding-top: 6px;
}
.timeline-content {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}
.timeline-content h3 { margin: 0 0 8px; font-size: 1.16rem; }
.timeline-content p { margin: 0; color: var(--muted); }
.bonus-grid { grid-template-columns: 1fr 0.92fr; }
.bonus-panel { padding: 0; overflow: hidden; }
.bonus-header {
  padding: 24px 24px 16px;
  background: linear-gradient(180deg, rgba(255,183,3,0.2), rgba(255,183,3,0.06));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bonus-header span { display: block; color: #ffd88b; margin-bottom: 6px; }
.bonus-header strong { font-size: 1.35rem; }
.bonus-items { display: grid; gap: 18px; padding: 24px; }
.bonus-item { display: flex; gap: 14px; align-items: flex-start; }
.bonus-item > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffd351, #ffb703);
  color: #2a1500;
  font-weight: 900;
}
.bonus-item p { margin: 4px 0 0; color: var(--muted); }
.testimonial-quotes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.quote-card {
  padding: 22px;
  min-height: 100%;
}
.quote-card p { margin: 0; color: var(--white); }
.testimonial-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.testimonial-shot {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.testimonial-shot img { width: 100%; height: 100%; object-fit: cover; }
.faq-grid { grid-template-columns: 0.95fr 1.05fr; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 1.6rem;
  color: #ffe8a5;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}
.final-cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,183,3,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,183,3,0.26);
  box-shadow: var(--shadow);
}
.location-box {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.location-box strong { display: block; margin-bottom: 6px; }
.location-box span { color: var(--muted); }
.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.fine-print {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.proof-toast {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 40;
  width: min(360px, calc(100% - 32px));
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(18, 8, 5, 0.92);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.34);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.proof-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.proof-toast-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: #6dff8a;
  box-shadow: 0 0 0 6px rgba(109,255,138,0.15);
}
.proof-toast strong { display: block; margin-bottom: 4px; }
.proof-toast span { color: var(--muted); font-size: 0.95rem; }
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(14, 8, 5, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.mobile-sticky-cta strong { display: block; font-size: 0.95rem; }
.mobile-sticky-cta span { display: block; color: var(--muted); font-size: 0.84rem; }
.mobile-sticky-cta a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd042, #ffb703);
  color: #2d1400;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .hero-grid,
  .value-grid,
  .bonus-grid,
  .coach-grid,
  .faq-grid,
  .two-col-section,
  .final-cta-card {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: unset; max-width: 620px; margin: 0 auto; }
  .floating-top-right { right: 0; top: -16px; }
  .floating-bottom-left { left: 0; bottom: 12px; }
  .results-grid,
  .testimonial-quotes,
  .testimonial-gallery,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card.large { grid-row: auto; min-height: 340px; grid-column: span 2; }
}

@media (max-width: 820px) {
  .section { padding: 74px 0; }
  .header-inner { min-height: 74px; }
  .header-cta { display: none; }
  .hero { padding-top: 52px; }
  .hero-proof-grid,
  .results-grid,
  .testimonial-quotes,
  .testimonial-gallery,
  .trust-grid,
  .credibility-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .urgency-box {
    flex-direction: column;
    align-items: stretch;
  }
  .urgency-side { min-width: unset; }
  .timeline::before,
  .timeline-item::before { display: none; }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .timeline-time { padding-top: 0; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .proof-toast { bottom: 88px; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 86px; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .announcement-wrap { gap: 8px; font-size: 0.82rem; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 0.92rem; }
  .brand span { font-size: 0.82rem; }
  .hero h1,
  .section-heading h2,
  .two-col-section h2,
  .coach-copy h2,
  .faq-grid h2,
  .final-cta-card h2,
  .value-grid h2,
  .bonus-grid h2 {
    font-size: 2.05rem;
  }
  .hero-lead { font-size: 1rem; }
  .proof-card strong,
  .price-item strong { font-size: 1.35rem; }
  .countdown div { padding: 12px 10px; }
  .countdown strong { font-size: 1.3rem; }
  .floating-mini-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
  .hero-visual { display: grid; gap: 12px; }
  .poster-card { border-radius: 24px; }
  .card-panel,
  .quote-card,
  .feature-card,
  .value-box,
  .credibility-card,
  .timeline-content,
  .final-cta-card { padding-left: 18px; padding-right: 18px; }
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 75% 30%, rgba(186, 92, 255, 0.10), transparent 20%), radial-gradient(circle at 20% 10%, rgba(255, 210, 0, 0.08), transparent 18%);
}
.section-kicker {
  color: #ffe8a5;
}
.viewer-chip {
  color: #fff0c8;
}
.proof-toast {
  background: rgba(20, 5, 31, 0.92);
}
