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

:root {
  --bg: #0f0b1d;
  --bg-2: #171028;
  --surface: #1d1531;
  --surface-2: #261c3f;
  --line: rgba(255,255,255,.10);
  --text: #f2eefc;
  --muted: #c4bdd8;
  --muted-2: #9f96b8;
  --brand-1: #312758;
  --brand-2: #675884;
  --brand-3: #7b7390;
  --brand-4: #c4bdd8;
  --brand-5: #ece7f7;
  --accent: #9b8bc8;
  --success: #d9d1ef;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 24px;
  --max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(196,189,216,.12), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #120d22 100%);
  color: var(--text);
}

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

img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 11, 29, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.brand img { height: 54px; width: auto; }

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

/* ── CTA ── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s;
  border: 1px solid transparent;
}

.cta.primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-1));
  box-shadow: rgba(103, 88, 132, 0.35) 0px 10px 30px;
}

.cta.secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

/* ── Hero ── */
.hero { padding: 72px 0 44px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(196, 189, 216, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--brand-4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 18px 0;
  max-width: 12ch;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.point {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.point strong { display: block; font-size: 15px; margin-bottom: 6px; }

.point span { font-size: 13px; color: var(--muted-2); line-height: 1.5; }

.hero-card {
  background: linear-gradient(rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -20% 60% auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196,189,216,0.2), transparent 60%);
  filter: blur(10px);
}

.hero-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-4);
}

.stack { display: grid; gap: 14px; }

.stack-item {
  background: rgba(9, 7, 18, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 18px;
}

.stack-item strong { display: block; font-size: 18px; margin-bottom: 8px; }

.stack-item p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 15px; }

/* ── Sections ── */
section { padding: 42px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 12ch;
}

.section-copy { color: var(--muted); max-width: 62ch; line-height: 1.7; }

/* ── Cards / Grid ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.024));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card .kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-4);
  margin-bottom: 12px;
  font-weight: 700;
}

.card h3 { font-size: 24px; margin: 0 0 12px; }

.card p { margin: 0; color: var(--muted); line-height: 1.7; }

/* ── Bullets ── */
.bullets { display: grid; gap: 10px; margin-top: 16px; }

.bullets div {
  display: flex;
  gap: 10px;
  color: var(--brand-5);
  line-height: 1.55;
}

.bullets div::before { content: "◆"; color: var(--accent); margin-top: 1px; }

/* ── Offer ── */
.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.offer-big {
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(103,88,132,0.2), rgba(49,39,88,0.25));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-big h3 { font-size: 32px; margin: 0 0 12px; }

.offer-big p { margin: 0; color: var(--muted); line-height: 1.7; }

/* ── Audience ── */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience .mini {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini strong { display: block; margin-bottom: 8px; }

.mini span { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step b {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(196, 189, 216, 0.14);
  margin-bottom: 14px;
}

.step p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }

/* ── FAQ ── */
.faq { display: grid; gap: 14px; }

.faq-item {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item strong { display: block; margin-bottom: 8px; font-size: 18px; }

.faq-item span { color: var(--muted); line-height: 1.7; }

/* ── Footer ── */
.footer {
  padding: 34px 0 60px;
  color: var(--muted-2);
  font-size: 14px;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Premium band ── */
.premium-band {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(196,189,216,0.08), rgba(103,88,132,0.1));
  color: var(--brand-5);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid,
  .offer { grid-template-columns: 1fr; }

  .hero-points,
  .grid-3,
  .audience,
  .steps { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--max)); }

  .hero { padding-top: 40px; }

  .hero-points,
  .grid-3,
  .audience,
  .steps { grid-template-columns: 1fr; }

  .brand img { height: 42px; }

  .hero-card { padding: 20px; }

  .footer-box,
  .hero-actions { flex-direction: column; align-items: flex-start; }
}