:root {
  --deep-950: #020510;
  --deep-900: #040a17;
  --accent: #00b4f0;
  --accent-soft: #26cfff;
  --purple: #8b5cf6;
  --purple-soft: #a78bfa;
  --font: "Space Grotesk", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--deep-950);
  color: #fff;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.mv-wrap { width: min(100% - 32px, 1120px); margin-inline: auto; }
.mv-narrow { width: min(100% - 32px, 720px); }
.mv-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.mv-glow { position: absolute; border-radius: 999px; filter: blur(90px); pointer-events: none; }
.mv-glow-blue { width: 700px; height: 700px; top: 25%; left: 50%; transform: translateX(-50%); background: rgba(0,180,240,.1); }
.mv-glow-purple { width: 500px; height: 500px; right: 15%; bottom: 0; background: rgba(139,92,246,.08); }
.mv-gradient, .mv-hero h1 span, .mv-section h2 span, .mv-price, .mv-footer-brand span span, .mv-brand span span {
  background: linear-gradient(135deg, var(--accent-soft), var(--purple-soft), var(--purple));
  -webkit-background-clip: text;
  color: transparent;
}

.mv-timer-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(124,58,237,.9), rgba(0,180,240,.9), rgba(124,58,237,.9));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.mv-timer-inner { height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mv-timer-left, .mv-timer, .mv-promo { display: flex; align-items: center; gap: 8px; }
.mv-clock { width: 7px; height: 7px; border-radius: 999px; background: white; opacity: .65; box-shadow: 0 0 14px rgba(255,255,255,.6); }
.mv-timer-label, .mv-promo { font-size: 11px; color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.mv-timer span { font-size: 13px; font-weight: 700; color: white; font-variant-numeric: tabular-nums; }
.mv-timer small { font-size: 9px; color: rgba(255,255,255,.48); text-transform: uppercase; }
.mv-timer b { color: rgba(255,255,255,.25); }
.mv-promo span { width: 8px; height: 8px; border-radius: 999px; background: #7dd3fc; box-shadow: 0 0 14px #7dd3fc; }

.mv-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255,255,255,.045);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(24px);
  transition: background .3s ease, box-shadow .3s ease;
}
.mv-header.is-scrolled { background: rgba(255,255,255,.08); box-shadow: 0 14px 40px rgba(0,0,0,.12); }
.mv-nav { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.mv-brand, .mv-footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: white; white-space: nowrap; }
.mv-brand-icon { width: 44px; height: 44px; display: block; }
.mv-brand span { font-size: 18px; letter-spacing: -.03em; }
.mv-menu { display: flex; align-items: center; gap: 36px; }
.mv-menu a { font-size: 14px; color: rgba(255,255,255,.58); transition: color .2s ease, transform .2s ease; }
.mv-menu a:hover { color: white; transform: translateY(-1px); }
.mv-nav-cta, .mv-button-primary { background: linear-gradient(90deg, var(--accent), var(--purple)); color: white !important; box-shadow: 0 16px 36px rgba(139,92,246,.22); }
.mv-menu .mv-nav-cta { height: 40px; display: inline-flex; align-items: center; padding: 0 20px; border-radius: 10px; font-weight: 600; }
.mv-menu-button { display: none; width: 42px; height: 42px; background: transparent; border: 0; padding: 0; }
.mv-menu-button span { display: block; width: 24px; height: 2px; margin: 5px auto; background: white; transition: transform .25s ease, opacity .25s ease; }
.is-menu-open .mv-menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-menu-open .mv-menu-button span:nth-child(2) { opacity: 0; }
.is-menu-open .mv-menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mv-hero, .mv-section { position: relative; overflow: hidden; }
.mv-hero { min-height: 100vh; display: flex; align-items: center; padding: 150px 0 80px; }
.mv-hero-inner, .mv-section-inner, .mv-narrow { position: relative; z-index: 1; text-align: center; }
.mv-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.035); color: rgba(255,255,255,.45); font-size: 12px; backdrop-filter: blur(10px); }
.mv-badge span { width: 6px; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--accent-soft), var(--purple-soft)); }
.mv-hero h1 { margin: 28px auto 0; font-size: clamp(48px, 8vw, 112px); line-height: .95; letter-spacing: -.06em; max-width: 980px; }
.mv-hero-copy, .mv-section-copy { max-width: 610px; margin: 24px auto 0; color: rgba(255,255,255,.34); font-size: clamp(17px, 2vw, 21px); line-height: 1.6; }
.mv-hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.mv-button { height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; padding: 0 28px; font-size: 14px; font-weight: 600; transition: transform .2s ease, background .2s ease; }
.mv-button:hover { transform: translateY(-2px); }
.mv-button-secondary { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.035); color: rgba(255,255,255,.65); }
.mv-trust { margin-top: 42px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; color: rgba(255,255,255,.28); font-size: 12px; }
.mv-trust span::before { content: "✓"; margin-right: 6px; color: var(--purple-soft); }
.mv-mockup-wrap { margin-top: 60px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); border-radius: 40px; padding: 12px; background: rgba(255,255,255,.035); backdrop-filter: blur(10px); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.mv-mockup-float { position: relative; animation: mvFloat 5.5s ease-in-out infinite; }
.mv-mockup-float img { position: relative; display: block; width: 100%; border-radius: 30px; filter: drop-shadow(0 20px 38px rgba(0,0,0,.45)); }
.mv-mockup-glow { position: absolute; inset: auto 8% 0; height: 56px; border-radius: 999px; background: linear-gradient(90deg, rgba(0,180,240,.18), rgba(139,92,246,.2), rgba(0,180,240,.18)); filter: blur(34px); animation: mvPulse 5.5s ease-in-out infinite; }
@keyframes mvFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes mvPulse { 0%,100% { opacity: .28; transform: scale(1); } 50% { opacity: .42; transform: scale(1.08); } }

.mv-section { padding: 110px 0; }
.mv-offer-section, .mv-cta-section { background: var(--deep-900); }
.mv-section h2 { margin: 24px auto 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; letter-spacing: -.05em; }
.mv-offer-card, .mv-form, .mv-success { margin: 48px auto 0; max-width: 540px; border: 1px solid rgba(139,92,246,.2); background: linear-gradient(180deg, rgba(139,92,246,.04), rgba(0,180,240,.02)); border-radius: 20px; padding: 38px; box-shadow: 0 24px 70px rgba(0,0,0,.2); transition: transform .25s ease, border-color .25s ease; }
.mv-offer-card:hover { transform: translateY(-4px); border-color: rgba(139,92,246,.34); }
.mv-price-label, .mv-card-label { color: rgba(255,255,255,.34); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 700; }
.mv-price { margin-top: 8px; font-size: clamp(42px, 7vw, 68px); font-weight: 800; letter-spacing: -.07em; }
.mv-offer-card p { color: rgba(255,255,255,.34); margin: 8px 0 0; }
.mv-divider { height: 1px; background: rgba(255,255,255,.06); margin: 30px 0; }
.mv-offer-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 26px; margin-top: 24px; text-align: left; }
.mv-offer-list div { color: rgba(255,255,255,.56); font-size: 14px; display: flex; gap: 10px; }
.mv-offer-list span { color: var(--purple-soft); }
.mv-full { width: 100%; margin-top: 30px; }
.mv-note { margin: 24px auto 0; max-width: 580px; color: rgba(255,255,255,.3); font-size: 14px; }

.mv-faq-list { margin-top: 44px; display: grid; gap: 10px; }
.mv-faq-item { border: 1px solid rgba(255,255,255,.045); background: rgba(255,255,255,.025); border-radius: 16px; overflow: hidden; transition: border-color .25s ease, background .25s ease; }
.mv-faq-item.is-open { border-color: rgba(139,92,246,.18); background: rgba(139,92,246,.025); }
.mv-faq-item button { width: 100%; min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 0; background: transparent; color: rgba(255,255,255,.78); padding: 16px 20px; text-align: left; cursor: pointer; }
.mv-faq-item b { color: rgba(255,255,255,.28); transition: transform .25s ease; }
.mv-faq-item.is-open b { transform: rotate(45deg); }
.mv-faq-panel p { margin: 0; padding: 0 20px 18px; color: rgba(255,255,255,.42); line-height: 1.65; font-size: 14px; }

.mv-form { display: grid; gap: 18px; text-align: left; }
.mv-form label span, .mv-form legend { display: block; margin-bottom: 8px; color: rgba(255,255,255,.42); font-size: 12px; font-weight: 600; }
.mv-form input[type="text"], .mv-form input[type="email"] { width: 100%; height: 48px; border-radius: 10px; border: 1px solid rgba(255,255,255,.065); background: rgba(255,255,255,.035); color: white; padding: 0 14px; outline: 0; transition: border-color .2s ease, background .2s ease; }
.mv-form input:focus { border-color: rgba(167,139,250,.45); background: rgba(255,255,255,.055); }
.mv-form fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 10px; }
.mv-radio { display: flex !important; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.065); background: rgba(255,255,255,.025); border-radius: 10px; padding: 13px 14px; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.mv-radio:hover { background: rgba(255,255,255,.045); transform: translateY(-1px); }
.mv-radio span { margin: 0 !important; color: rgba(255,255,255,.7) !important; }
.mv-form small { text-align: center; color: rgba(255,255,255,.22); }
.mv-success strong { display: block; font-size: 22px; margin-bottom: 8px; }
.mv-success p { color: rgba(255,255,255,.42); }

.mv-footer { border-top: 1px solid rgba(255,255,255,.035); background: var(--deep-950); padding: 70px 0; }
.mv-footer-inner { text-align: center; color: rgba(255,255,255,.28); }
.mv-footer-logo { width: 56px; height: 56px; }
.mv-footer-brand span { font-size: 19px; }
.mv-footer p { max-width: 360px; margin: 14px auto 0; line-height: 1.6; }
.mv-footer-links { display: flex; justify-content: center; gap: 24px; margin-top: 28px; font-size: 13px; }
.mv-footer-links a:hover { color: white; }
.mv-footer-meta { margin-top: 24px; display: grid; gap: 6px; font-size: 13px; }
.mv-footer small { display: block; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.035); }

.reveal-item { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .mv-timer-inner { justify-content: center; }
  .mv-promo, .mv-timer-label { display: none; }
  .mv-menu-button { display: block; }
  .mv-menu { position: fixed; inset: 120px 16px auto; display: grid; gap: 12px; padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(2,5,16,.92); backdrop-filter: blur(20px); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease; }
  .is-menu-open .mv-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mv-menu a { padding: 12px; }
  .mv-nav-cta { justify-content: center; }
  .mv-hero { padding-top: 145px; }
  .mv-hero h1 { font-size: clamp(46px, 13vw, 74px); }
  .mv-offer-list { grid-template-columns: 1fr; }
  .mv-offer-card, .mv-form, .mv-success { padding: 28px; }
}

@media (max-width: 520px) {
  .mv-brand span { font-size: 15px; }
  .mv-brand-icon { width: 38px; height: 38px; }
  .mv-mockup-wrap { border-radius: 24px; padding: 8px; }
  .mv-mockup-float img { border-radius: 18px; }
}