:root {
  --bg: #08070a;
  --panel: #141217;
  --panel-2: #1d1a20;
  --line: rgba(255, 255, 255, 0.13);
  --text: #fff7fb;
  --muted: #bcb3ba;
  --soft: #7f747d;
  --hot: #e21682;
  --hot-2: #ad20e7;
  --cyan: #5dd8ff;
  --gold: #ffe070;
  --ok: #61e6aa;
  --shadow: 0 30px 90px rgba(226, 22, 130, 0.18);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(226, 22, 130, 0.28), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(93, 216, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, #09070a 0%, #0c090e 58%, #070608 100%);
  letter-spacing: 0;
}

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

.page {
  overflow: hidden;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 10, 0.78);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  font-size: 22px;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 76px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(226, 22, 130, 0.34);
  border-radius: 999px;
  background: rgba(226, 22, 130, 0.11);
  color: #ff72bc;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
}

h1 {
  margin: 20px 0 18px;
  max-width: 780px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 950;
}

.lead {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 650;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 13px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 20px;
}

.hero-media {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.hero-media img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

section {
  padding: 54px 0;
}

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

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  padding: 24px;
}

.card.featured {
  border-color: rgba(226, 22, 130, 0.52);
  background: linear-gradient(180deg, rgba(226, 22, 130, 0.18), rgba(255, 255, 255, 0.04));
}

.tag {
  color: #ff72bc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  margin: 16px 0 4px;
  font-size: 44px;
  font-weight: 950;
}

.sub {
  color: var(--muted);
  font-weight: 700;
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 650;
}

.list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(226, 22, 130, 0.2);
  color: #ff72bc;
  font-weight: 950;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.notice {
  border: 1px solid rgba(255, 224, 112, 0.28);
  border-radius: 8px;
  background: rgba(255, 224, 112, 0.08);
  padding: 22px;
  color: #f8df9c;
  line-height: 1.55;
  font-weight: 750;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.policy {
  max-width: 860px;
  padding: 70px 0;
}

.policy h1 {
  font-size: clamp(42px, 6vw, 70px);
}

.policy h2 {
  margin-top: 34px;
  font-size: 26px;
}

.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 650;
}

@media (max-width: 900px) {
  .nav-inner,
  .section-head,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-inner {
    min-height: auto;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .pricing,
  .flow,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }
}
