@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@500;700&family=Work+Sans:wght@300;400;500;600&display=swap");

:root {
  color-scheme: only light;
  --bg: #1a0036;
  --bg-alt: #120033;
  --ink: #f6f4ff;
  --muted: #d2d1ff;
  --accent: #ff4ddb;
  --accent-dark: #e31fb3;
  --teal: #1dffb0;
  --cream: #14062e;
  --card: #1b0b3b;
  --shadow: 0 26px 80px rgba(14, 0, 31, 0.55);
  --sunset: #ff6ad9;
  --berry: #8d3cff;
  --mint: #2bffb2;
}

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

body {
  font-family: "Work Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 129, 230, 0.35), transparent 42%),
    radial-gradient(circle at 18% 28%, rgba(114, 162, 255, 0.28), transparent 46%),
    radial-gradient(circle at 50% 65%, rgba(255, 83, 214, 0.4), transparent 52%),
    linear-gradient(180deg, #12002b 0%, #24005a 40%, #4a0c7a 70%, #1a0138 100%);
  background-size: 140% 140%;
  animation: bg-shift 18s ease-in-out infinite;
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 68%, rgba(255, 120, 226, 0.35), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(117, 213, 255, 0.35), transparent 35%),
    linear-gradient(180deg, rgba(26, 0, 56, 0.2) 0%, rgba(12, 0, 28, 0.6) 55%, rgba(8, 0, 20, 0.92) 100%);
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42vh;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18, 0, 44, 0) 0%, rgba(9, 0, 24, 0.85) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0 10px,
      rgba(255, 255, 255, 0) 10px 22px
    ),
    linear-gradient(180deg, rgba(15, 0, 36, 0.1) 0%, rgba(6, 0, 20, 0.9) 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
}


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

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.site-header,
main,
.site-footer,
.mobile-cta {
  position: relative;
  z-index: 1;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Bodoni Moda", serif;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(255, 45, 187, 0.4));
}

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

.nav a {
  transition: color 0.2s ease;
}

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

.btn {
  border: 1px solid transparent;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--teal));
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 45, 187, 0.35);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0, 255, 154, 0.45);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 40%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--ink);
  background: transparent;
}

.hero {
  position: relative;
  padding: 80px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.hero-banner {
  width: 100%;
  height: auto;
  max-width: 720px;
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(255, 77, 219, 0.5);
  border: 1px solid rgba(255, 77, 219, 0.5);
}

.hero-copy h1 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.hero-copy h1 span {
  color: var(--mint);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--mint);
  font-weight: 600;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.meta-title {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-value {
  font-weight: 600;
}


.hero-glow {
  position: absolute;
  right: 10%;
  top: 180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 45, 187, 0.5) 0%, transparent 70%);
  filter: blur(10px);
  z-index: -1;
  animation: glow-pulse 5s ease-in-out infinite;
}

.steps,
.why,
.feature,
.cta,
.access {
  padding: 90px 0;
}

.section-header {
  max-width: 560px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 12px 0 14px;
}

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

.access-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.access-subheader {
  margin-top: 54px;
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(29, 255, 176, 0.22);
}

.info-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.info-list span {
  color: var(--ink);
  font-weight: 600;
  margin-right: 6px;
}

.access-note {
  display: grid;
  gap: 16px;
  align-content: start;
}

.access-note .btn-ghost {
  position: relative;
  overflow: hidden;
  animation: glow-float 3.2s ease-in-out infinite;
  box-shadow: 0 22px 46px rgba(43, 255, 178, 0.45), 0 0 22px rgba(255, 77, 219, 0.35);
  padding: 6px 12px;
  font-size: 11px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(120deg, #ff39cf, #2bffb2);
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  margin-top: 6px;
  width: fit-content;
  align-self: flex-start;
}

.access-note .btn-ghost::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(43, 255, 178, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.access-note .btn-ghost:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 40px rgba(43, 255, 178, 0.4);
}

.access-note .btn-ghost:hover::after {
  opacity: 1;
}

.step-number {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
}

.why {
  background: linear-gradient(120deg, rgba(29, 255, 176, 0.22), rgba(255, 77, 219, 0.22));
}

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

.checklist {
  list-style: none;
  margin: 20px 0 28px;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(47, 111, 113, 0.15);
}

.why-panel {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.why-media {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: center;
}

.why-media img {
  width: min(520px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 18px;
}

.stat {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.stat-label {
  color: var(--muted);
  font-weight: 500;
}

.panel-note {
  background: rgba(255, 77, 219, 0.22);
  padding: 16px;
  border-radius: 14px;
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.feature-grid img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.feature-copy h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.feature-copy .btn-ghost {
  margin-top: 16px;
  background: linear-gradient(120deg, #ff39cf, #2bffb2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 46px rgba(43, 255, 178, 0.45), 0 0 22px rgba(255, 77, 219, 0.35);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.feature-copy .btn-ghost:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 26px 56px rgba(43, 255, 178, 0.55), 0 0 30px rgba(255, 77, 219, 0.5);
}

.cta {
  background: linear-gradient(120deg, rgba(255, 77, 219, 0.22), rgba(29, 255, 176, 0.2));
}

.cta-inner {
  background: var(--card);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer {
  padding: 36px 0 60px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: grid;
  gap: 8px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: rgba(9, 9, 19, 0.85);
  backdrop-filter: blur(16px);
  display: none;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 20;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes glow-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes bg-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 960px) {
  main {
    padding-bottom: 90px;
  }

  .hero-grid,
  .why-grid,
  .feature-grid,
  .access-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-cta {
    display: flex;
  }
}
