:root {
  --bg: #050505;
  --bg-soft: #0b0b10;
  --card: #0f0f16;
  --card-light: #15151e;
  --border: rgba(255, 255, 255, 0.11);

  --text: #ffffff;
  --muted: #a7a7b3;
  --soft-muted: #737380;

  --pink: #ff2daa;
  --purple: #8b3dff;
  --green: #35ff6b;
  --red: #ff3b5c;

  --radius: 22px;
  --max-width: 1120px;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 45, 170, 0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(139, 61, 255, 0.20), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* HEADER */

.site-header {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-sub {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
}

.header-cta {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 24px rgba(255, 45, 170, 0.28);
}

/* BASE SECTIONS */

.section {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 54px 0;
}

.eyebrow {
  color: var(--pink);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.7rem, 12vw, 6.5rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(2rem, 8vw, 4rem);
  max-width: 780px;
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 680px;
  margin-top: 14px;
}

/* BUTTONS */

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  box-shadow: 0 0 34px rgba(255, 45, 170, 0.32);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.full-width {
  width: 100%;
}

.large {
  min-height: 60px;
  font-size: 1rem;
}

/* TRUST LINE */

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-line span {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-line.center {
  justify-content: center;
}

/* HERO */

.hero {
  padding-top: 42px;
  text-align: center;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(255, 45, 170, 0.10);
  border: 1px solid rgba(255, 45, 170, 0.24);
  box-shadow: 0 0 24px rgba(255, 45, 170, 0.14);
}

.hero h1 {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(2.8rem, 12vw, 6rem);
  line-height: 0.95;
}

.hero-text {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 1.04rem;
  color: var(--muted);
}

.hero-btn {
  margin-top: 28px;
  min-width: 240px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.hero-points span {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
}

.hero-preview {
  max-width: 760px;
  margin: 42px auto 0;
  padding: 8px;
  border-radius: 28px;
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
    linear-gradient(135deg, rgba(255, 45, 170, 0.75), rgba(139, 61, 255, 0.75)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 60px rgba(139, 61, 255, 0.14);
}

.hero-preview video {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(255, 45, 170, 0.18);
}

.hero-preview p {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--soft-muted);
}
.preview-heading {
  text-align: center;
  margin-bottom: 16px;
}

.preview-heading span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-heading h3 {
  max-width: 520px;
  margin: 0 auto;
  font-size: clamp(1.35rem, 5vw, 2.2rem);
  line-height: 1.1;
  color: var(--text);
}
@media (min-width: 720px) {
  .hero {
    padding-top: 76px;
  }
}

/* CARDS */

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

.card {
  background: rgba(15, 15, 22, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 0 38px rgba(0, 0, 0, 0.25);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--pink);
  background: rgba(255, 45, 170, 0.11);
  border: 1px solid rgba(255, 45, 170, 0.24);
  font-size: 1.4rem;
}

.card p {
  margin-top: 10px;
}

/* AUDIT */

.audit-box {
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, rgba(255, 45, 170, 0.85), rgba(139, 61, 255, 0.85)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 22px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.check-list li {
  color: var(--text);
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}

.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  color: var(--green);
  background: rgba(53, 255, 107, 0.12);
}

/* IMAGE STACK */

.image-stack {
  border-radius: calc(var(--radius) + 10px);
  padding: 10px;
  background:
    linear-gradient(var(--bg-soft), var(--bg-soft)) padding-box,
    linear-gradient(135deg, var(--pink), var(--purple)) border-box;
  border: 1px solid transparent;
}

.image-stack img {
  border-radius: var(--radius);
}

.disclaimer {
  font-size: 0.82rem;
  color: var(--soft-muted);
  margin-top: 14px;
}

/* STEPS */

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

.step {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
}

.step span {
  display: inline-block;
  color: var(--pink);
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 12px;
  letter-spacing: 0.14em;
}

.step p {
  margin-top: 10px;
}

/* TARGET GROUP */

.split-section {
  display: grid;
  gap: 14px;
}

.info-box {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}

.info-box h2 {
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.info-box ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.info-box li {
  color: var(--muted);
  display: flex;
  gap: 10px;
}

.info-box li::before {
  content: "•";
  color: var(--pink);
}

.info-box.negative li::before {
  color: var(--red);
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--pink);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin-top: 12px;
}

/* FINAL CTA */

.final-cta {
  text-align: center;
  padding: 64px 22px;
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at top, rgba(255, 45, 170, 0.24), transparent 45%),
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, var(--pink), var(--purple)) border-box;
  border: 1px solid transparent;
  margin-bottom: 54px;
}

.final-cta h2 {
  margin: 0 auto;
}

.final-cta p {
  max-width: 620px;
  margin: 16px auto 28px;
}

/* FOOTER */

.site-footer {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 26px 0 40px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 18px;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
}

.site-footer p {
  font-size: 0.9rem;
}

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

.site-footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

/* TABLET / DESKTOP */

@media (min-width: 720px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 46px;
    padding-top: 72px;
  }

  .hero-visual {
    margin-top: 0;
  }

  .cta-row {
    flex-direction: row;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .audit-box {
    max-width: 720px;
  }
}