@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700;800&family=Wix+Madefor+Display:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #6E44FF;
  --primary-dark: #5530E8;
  --primary-soft: #EFE9FF;
  --accent: #FFCB05;
  --accent-dark: #E6B400;
  --bg: #FFFFFF;
  --bg-alt: #F6F3FF;
  --bg-deep: #1A1033;
  --card-bg: #FFFFFF;
  --border: #E8E4F5;
  --text: #1A1033;
  --text-muted: #6A6586;
  --text-dim: #9C97B5;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 14px rgba(110,68,255,.06);
  --shadow: 0 8px 32px rgba(110,68,255,.12);
  --shadow-hover: 0 16px 48px rgba(110,68,255,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Wix Madefor Display', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  line-height: 1.16;
  color: var(--text);
  letter-spacing: -.015em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* ===== HEADER — white sticky w/ shadow ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow .3s;
}

.header.scrolled { box-shadow: 0 4px 24px rgba(26,16,51,.08); }

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--text);
  letter-spacing: -.02em;
}

.logo img { width: 40px; height: 40px; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: .94rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s;
}

.nav-links a:hover { color: var(--primary); }

/* ===== BUTTONS — rounded ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  border: none;
  cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s, color .2s;
  letter-spacing: -.005em;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(110,68,255,.34);
}

.btn-accent {
  background: var(--accent);
  color: #000000;
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,203,5,.4);
}

.btn-outline {
  background: #FFFFFF;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.btn-arrow::after {
  content: '→';
  font-size: 1.05rem;
  transition: transform .2s;
}

.btn-arrow:hover::after { transform: translateX(5px); }

.nav-links a.nav-cta {
  padding: 11px 24px;
  font-size: .85rem;
  background: var(--accent);
  color: #000000;
  font-weight: 800;
  border-radius: var(--radius);
  font-family: 'Unbounded', sans-serif;
}

.nav-links a.nav-cta:hover {
  background: var(--accent-dark);
  color: #000000;
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 600;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 22px; right: 26px;
  font-size: 2.1rem;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== HERO — center card with gradient bg ===== */
.hero {
  position: relative;
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at 15% 30%, rgba(110,68,255,.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255,203,5,.12) 0%, transparent 45%),
    var(--bg);
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  background: var(--primary);
  border-radius: 14px;
  opacity: .08;
}

.hero-shape:nth-child(1) { width: 100px; height: 100px; top: 12%; left: 8%; transform: rotate(15deg); }
.hero-shape:nth-child(2) { width: 70px; height: 70px; top: 65%; left: 4%; transform: rotate(-20deg); background: var(--accent); opacity: .25; }
.hero-shape:nth-child(3) { width: 80px; height: 80px; top: 18%; right: 10%; transform: rotate(-12deg); background: var(--accent); opacity: .22; }
.hero-shape:nth-child(4) { width: 60px; height: 60px; bottom: 15%; right: 6%; transform: rotate(28deg); }

.hero-card {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 60px 56px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(26,16,51,.08), 0 1px 0 rgba(255,255,255,.8) inset;
  border: 1px solid var(--border);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 22px;
}

.hero h1 .accent-text {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero h1 .accent-text::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 12px;
  background: var(--accent);
  z-index: -1;
  opacity: .7;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 auto 34px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px dashed var(--border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 500;
}

.trust-badge strong {
  color: var(--text);
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
}

.trust-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== SECTIONS — alternating ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 1.02rem;
}

/* ===== FEATURES — large icon top ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px) rotate(-.4deg);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform .3s ease, background .3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(-8deg) scale(1.05);
}

.feature-card:nth-child(2) .feature-icon { background: var(--accent); color: #000; }
.feature-card:nth-child(3) .feature-icon { background: #FF5C8A; }
.feature-card:nth-child(4) .feature-icon { background: #00C48C; }
.feature-card:nth-child(5) .feature-icon { background: #FF8B3D; color: #000; }
.feature-card:nth-child(6) .feature-icon { background: #2D9CDB; }

.feature-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.7;
}

/* ===== STATS BAR ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 980px;
}

.stat-block {
  text-align: center;
  padding: 28px 18px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .25s ease;
}

.stat-block:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--primary);
  display: block;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: .86rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ===== PRICE — gradient banner ===== */
.price-banner {
  position: relative;
  background: linear-gradient(120deg, var(--primary) 0%, #9B7BFF 60%, var(--accent) 100%);
  border-radius: 28px;
  padding: 52px 56px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(110,68,255,.34);
}

.price-banner::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  top: -120px; right: -80px;
}

.price-banner h2 {
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 12px;
}

.price-banner p {
  color: rgba(255,255,255,.86);
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.price-banner-cta {
  position: relative;
  z-index: 2;
  text-align: center;
}

.price-banner-cta .price-tag {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #FFFFFF;
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 8px;
}

.price-banner-cta .price-sub {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  margin-bottom: 20px;
}

/* ===== PLATFORMS ===== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.download-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 14px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: block;
}

.download-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.download-icon {
  width: 50px; height: 50px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 12px;
  transition: background .25s ease, transform .25s ease;
}

.download-card:hover .download-icon {
  background: var(--primary);
  color: #FFFFFF;
  transform: rotate(-6deg);
}

.download-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.download-card p {
  color: var(--text-muted);
  font-size: .8rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--bg-deep);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 18px;
  opacity: .12;
}

.cta-banner::before {
  width: 200px; height: 200px;
  background: var(--primary);
  top: 20%; left: 10%;
  transform: rotate(15deg);
}

.cta-banner::after {
  width: 160px; height: 160px;
  background: var(--accent);
  bottom: 18%; right: 12%;
  transform: rotate(-20deg);
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-badge {
  display: inline-block;
  background: rgba(255,203,5,.18);
  color: var(--accent);
  padding: 8px 22px;
  border-radius: 50px;
  font-family: 'Unbounded', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: .04em;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,.78);
  font-size: 1.06rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ — two columns ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.faq-q-num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}

.faq-item h3 {
  font-size: 1.02rem;
  color: var(--text);
}

.faq-item p {
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.7;
}

.faq-item p a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== FOOTER — minimal one row ===== */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,.65);
  padding: 32px 0;
  border-top: 4px solid var(--accent);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer .logo { color: #FFFFFF; }

.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.62);
  transition: color .2s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

.footer-copy .footer-eng {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.32);
  margin-top: 2px;
}

/* ===== INSTRUCTION PAGE ===== */
.instr-hero {
  padding: 90px 0 60px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 50%, rgba(110,68,255,.1) 0%, transparent 45%),
    radial-gradient(circle at 70% 50%, rgba(255,203,5,.12) 0%, transparent 45%),
    var(--bg);
}

.instr-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.instr-hero p {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 640px;
  margin: 0 auto;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 880px;
  margin: 0 auto;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  transition: border-color .25s, box-shadow .25s;
}

.step-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 14px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transform: rotate(-4deg);
}

.step-card h2 {
  font-size: 1.42rem;
  margin-bottom: 14px;
}

.step-card p, .step-card ul {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .98rem;
}

.step-card p strong { color: var(--text); }

.step-card ul {
  padding-left: 24px;
  margin-top: 14px;
}

.step-card ul li {
  margin-bottom: 10px;
  list-style: square;
}

.step-card ul li::marker { color: var(--accent); }

.step-bonus {
  background: linear-gradient(135deg, var(--primary-soft), rgba(255,203,5,.1));
  border-color: var(--primary);
}

.platforms-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.platform-mini-card {
  background: #FFFFFF;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  transition: border-color .25s, transform .25s;
}

.platform-mini-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ===== HOW IT WORKS TEXT ===== */
.text-block {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.text-block p { margin-bottom: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero { padding: 70px 0 90px; }
  .hero-card { padding: 44px 32px; }
  .hero h1 { font-size: 2.3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .price-banner { grid-template-columns: 1fr; padding: 40px 32px; text-align: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.85rem; }
  .cta-banner h2 { font-size: 2rem; }
  .instr-hero h1 { font-size: 2rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero { padding: 50px 0 70px; }
  .hero-card { padding: 32px 22px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-desc { font-size: .98rem; }
  .features-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; gap: 14px; }
  .footer .container { justify-content: center; text-align: center; }
  .footer-nav { justify-content: center; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.55rem; }
  .cta-banner { padding: 70px 0; }
  .cta-banner h2 { font-size: 1.6rem; }
  .instr-hero { padding: 60px 0 40px; }
  .instr-hero h1 { font-size: 1.7rem; }
  .step-card { padding: 32px 22px; }
  .platforms-mini { grid-template-columns: 1fr; }
  .price-banner-cta .price-tag { font-size: 2rem; }
}
