:root {
  --accent: #5ba8c4;
  --accent-strong: #2c8db2;
  --accent-soft: #e9f6fb;
  --hot: #e24b4a;
  --hot-soft: #fff0ef;
  --dark: #1a1a2e;
  --muted: #667085;
  --hero-from: #ffffff;
  --hero-to: #e5f5fb;
  --mid-from: #f7fbfd;
  --mid-to: #ffffff;
  --cta-from: #27304a;
  --cta-to: #14192a;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; width: 100%; height: 100%; }
body {
  overflow: hidden;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, var(--hero-from) 0%, var(--hero-to) 100%);
}

#stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--hero-from) 0%, var(--hero-to) 55%, var(--mid-to) 100%);
}

.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 26px 92px;
}

.scene.active {
  opacity: 1;
  pointer-events: auto;
}

.scene-inner {
  position: relative;
  width: min(100%, 860px);
  z-index: 2;
}

#s1 {
  background: linear-gradient(145deg, var(--hero-from) 0%, var(--hero-to) 100%);
}

#s2, #s3, #s4, #s5 {
  background: linear-gradient(180deg, var(--mid-from) 0%, var(--mid-to) 100%);
}

#s6 {
  background: radial-gradient(circle at top, rgba(255,255,255,.08), transparent 34%), linear-gradient(180deg, var(--cta-from) 0%, var(--cta-to) 100%);
}

.orb,
.cta-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb {
  filter: blur(2px);
  opacity: .72;
}

.orb-a {
  width: 220px;
  height: 220px;
  top: -50px;
  right: -30px;
  background: radial-gradient(circle, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 72%);
}

.orb-b {
  width: 170px;
  height: 170px;
  bottom: 10%;
  left: -40px;
  background: radial-gradient(circle, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 70%);
}

.orb-c {
  width: 110px;
  height: 110px;
  top: 20%;
  left: 12%;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 70%);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(91,168,196,.22);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .55px;
  text-transform: uppercase;
}

.headline,
.scene-title,
.cta-title {
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.headline {
  font-size: clamp(30px, 4vw, 44px);
  margin: 20px 0 14px;
  max-width: 620px;
}

.subhead,
.price-body,
.cta-body,
.contact-meta,
.site-url,
.wins-list,
.band,
.result-pill {
  line-height: 1.65;
}

.subhead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 560px;
}

.chip-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(91,168,196,.22);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

.hero-visual {
  position: relative;
  margin-top: 34px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(91,168,196,.22);
  border-radius: 28px;
  min-height: 280px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(31, 55, 75, .15);
}

.hero-circle {
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(91,168,196,.18) 0%, rgba(91,168,196,.04) 55%, rgba(255,255,255,0) 78%);
}

.hero-badge {
  position: absolute;
  max-width: 180px;
  padding: 14px 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(91,168,196,.2);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(31, 55, 75, .12);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-badge-a { top: 18px; right: 18px; }
.hero-badge-b { bottom: 18px; left: 18px; }

.hero-center {
  position: absolute;
  inset: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.hero-center-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 16px 36px rgba(44, 141, 178, .22);
  font-size: 32px;
}

.hero-center-text {
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 900;
  line-height: 1.18;
  max-width: 260px;
}

.scene-title {
  font-size: clamp(28px, 3.7vw, 40px);
  margin: 18px 0 24px;
  max-width: 700px;
}

.card-stack,
.note-stack,
.wins-list {
  display: grid;
  gap: 14px;
}

.stack-card,
.feature-card,
.note-chip,
.win-item {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(91,168,196,.18);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(31, 55, 75, .1);
}

.stack-card {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: flex-start;
}

.stack-icon,
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  font-size: 22px;
}

.stack-title,
.feature-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stack-sub,
.feature-copy {
  font-size: 14px;
  color: var(--muted);
}

.result-pill,
.band {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 100%);
  border: 1px solid rgba(91,168,196,.18);
  box-shadow: 0 18px 42px rgba(31, 55, 75, .08);
  font-size: 14px;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 20px;
}

.price-card {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 100%);
  border: 1px solid rgba(91,168,196,.18);
  box-shadow: 0 22px 50px rgba(31, 55, 75, .11);
}

.price-question {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.18;
}

.price-answer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  margin: 18px 0 16px;
  padding: 16px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--hot) 0%, #d24d43 100%);
  color: white;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: .06em;
  box-shadow: 0 16px 38px rgba(226, 75, 74, .24);
}

.price-body {
  font-size: 15px;
  color: var(--muted);
}

.note-stack {
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.note-chip {
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.wins-board {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 100%);
  border: 1px solid rgba(91,168,196,.18);
  box-shadow: 0 22px 50px rgba(31, 55, 75, .11);
}

.wins-highlight {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 18px;
}

.wins-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.win-item {
  position: relative;
  padding: 18px 18px 18px 52px;
  font-size: 14px;
  color: var(--muted);
}

.win-item::before {
  content: "✓";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.cta-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 840px);
  margin: 0 auto;
  text-align: center;
  color: white;
}

.logo-shell {
  width: 84px;
  height: 84px;
  border-radius: 28px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  font-size: 34px;
  font-weight: 900;
}

.logo-text {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -.02em;
}

.cta-card {
  margin-top: 24px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}

.cta-title {
  font-size: clamp(28px, 4vw, 44px);
}

.cta-body {
  font-size: 16px;
  color: rgba(255,255,255,.82);
  margin-top: 14px;
}

.cta-button {
  margin-top: 22px;
  background: linear-gradient(135deg, #25D366 0%, #19b85a 100%);
  color: white;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(37,211,102,.24);
}

.contact-block {
  margin-top: 22px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.contact-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .55px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
}

.wa-mark {
  width: 30px;
  height: 30px;
}

.contact-meta,
.site-url {
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.site-url {
  margin-top: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-ring {
  border: 1px solid rgba(255,255,255,.08);
  opacity: .55;
}

.r1 {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -60px;
}

.r2 {
  width: 180px;
  height: 180px;
  right: 12%;
  top: 18%;
}

.r3 {
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: -120px;
}

#dots {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transition: transform .25s ease, background .25s ease;
}

.dot.active {
  transform: scale(1.5);
  background: white;
}

.dot.done {
  background: rgba(255,255,255,.62);
}

#progress-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--hot) 100%);
  z-index: 22;
  box-shadow: 0 0 16px rgba(91,168,196,.45);
}

#controls {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  z-index: 20;
}

#controls button {
  background: rgba(7, 13, 18, .48);
  color: white;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

#watermark {
  position: fixed;
  left: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 13, 18, .3);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 700;
  z-index: 20;
  backdrop-filter: blur(8px);
}

.wm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}

.reveal.pop {
  transform: translateY(22px) scale(.96);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 720px) {
  .scene { padding: 72px 18px 92px; }
  .feature-grid,
  .note-stack { grid-template-columns: 1fr; }
  .hero-badge { max-width: 150px; padding: 12px 14px; font-size: 12px; }
  .hero-center { inset: 20px; }
  .wins-board,
  .price-card,
  .cta-card { padding: 22px; }
  #controls { left: 50%; right: auto; transform: translateX(-50%); }
}
