:root {
  --bg: #080713;
  --bg-elevated: #100d1e;
  --surface: #15111f;
  --border: rgba(168, 85, 247, 0.18);
  --primary: #8b5cf6;
  --primary-bright: #a855f7;
  --glow: #c084fc;
  --text: #f5f3ff;
  --text-muted: #9b95b8;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  background: var(--bg);
  max-width: 100%;
  overflow-x: clip;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(168, 85, 247, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 22%, rgba(56, 189, 248, 0.08), transparent 22rem),
    var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
}

main {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

::selection {
  background: rgba(168, 85, 247, 0.35);
  color: var(--text);
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  width: calc(100% - 2.5rem);
}

.narrow {
  max-width: 900px;
}

.section {
  max-width: 100%;
  overflow-x: clip;
  overflow-x: hidden;
  padding: 5rem 0;
  position: relative;
  width: 100%;
}

.first-section {
  padding-top: 1.25rem;
}

.eyebrow {
  color: var(--primary-bright);
  font-family: "Cinzel", ui-serif, Georgia, serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: "Cinzel", ui-serif, Georgia, serif;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.55rem);
  font-weight: 800;
  line-height: 1.08;
  max-width: 56rem;
}

h1 span {
  background: linear-gradient(135deg, #a855f7, #6d28d9);
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(192, 132, 252, 0.45));
}

h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 48rem;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-copy,
.hero-copy {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 48rem;
}

.hero-copy {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 42rem;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  gap: 0.75rem;
  justify-content: center;
  line-height: 1.1;
  min-height: 3.5rem;
  padding: 1rem 1.35rem;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #a855f7, #6d28d9);
  border: 1px solid rgba(245, 243, 255, 0.15);
  box-shadow:
    0 18px 46px rgba(109, 40, 217, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: white;
}

.btn-secondary {
  background: rgba(21, 17, 31, 0.7);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:hover {
  border-color: rgba(192, 132, 252, 0.5);
  box-shadow:
    0 18px 48px rgba(109, 40, 217, 0.28),
    0 0 0 1px rgba(192, 132, 252, 0.1);
  transform: translateY(-2px);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.hero-section {
  min-height: min(760px, 90svh);
  overflow: hidden;
  padding-top: 1.25rem;
}

.hero-media,
.hero-vignette {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-bg {
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.7;
  width: 100%;
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(8, 7, 19, 0.98) 0%, rgba(8, 7, 19, 0.9) 30%, rgba(8, 7, 19, 0.42) 62%, rgba(8, 7, 19, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 7, 19, 0.24) 0%, rgba(8, 7, 19, 0.18) 48%, var(--bg) 100%);
}

.hero-logo,
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  padding: 1rem 0;
}

.hero-logo img {
  width: 4.5rem;
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64svh;
  padding: 3rem 0;
}

.hero-content .btn {
  margin-top: 1rem;
}

.steps-grid,
.earnings-grid,
.journey-grid,
.reasons-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 100%;
  overflow: hidden;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.earnings-grid,
.reasons-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.check-row,
.seal {
  background:
    linear-gradient(180deg, rgba(245, 243, 255, 0.06), rgba(245, 243, 255, 0.02)),
    rgba(21, 17, 31, 0.78);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  max-width: 100%;
}

.card {
  min-height: 17rem;
  padding: 1.5rem;
}

.card p,
.check-row {
  color: var(--text-muted);
  line-height: 1.65;
}

.card-number {
  color: rgba(192, 132, 252, 0.2);
  display: block;
  font-family: "Cinzel", ui-serif, Georgia, serif;
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 2.5rem;
}

.index,
.check {
  color: rgba(192, 132, 252, 0.72);
  display: inline-block;
  font-family: "Cinzel", ui-serif, Georgia, serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 1.35rem;
}

.card strong {
  color: var(--primary-bright);
  display: block;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.earning-card {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(245, 243, 255, 0.055), rgba(245, 243, 255, 0.018)),
    rgba(10, 8, 24, 0.86);
  border: 1px solid rgba(168, 85, 247, 0.32);
  border-radius: 8px;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 15.25rem;
  max-width: 100%;
  overflow: hidden;
  padding: 1.25rem 1rem 1rem;
  text-align: center;
}

.building-icon {
  align-items: center;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), rgba(8, 7, 19, 0.22));
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 999px;
  color: var(--primary-bright);
  display: flex;
  font-size: 1.6rem;
  height: 4rem;
  justify-content: center;
  margin-bottom: 0.9rem;
  width: 4rem;
}

.earning-card p {
  color: var(--text-muted);
  margin: 0;
}

.earning-card strong {
  color: var(--text);
  display: block;
  font-size: 1.35rem;
  line-height: 1.15;
  margin-top: 0.15rem;
}

.divider {
  background:
    radial-gradient(circle, var(--glow) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.18), rgba(192, 132, 252, 0.76), rgba(168, 85, 247, 0.18), transparent);
  height: 1px;
  margin: 1rem 0 0.8rem;
  width: 100%;
}

.earning {
  align-items: baseline;
  color: var(--primary-bright);
  display: inline-flex;
  filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.5));
  font-size: clamp(2.2rem, 4.6vw, 3rem);
  font-weight: 800;
  gap: 0.28rem;
  line-height: 0.95;
}

.earning small {
  color: rgba(245, 243, 255, 0.92);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
}

.earning-card em {
  border: 1px solid rgba(168, 85, 247, 0.36);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1;
  margin-top: 0.8rem;
  padding: 0.38rem 0.7rem;
}

.split,
.about-grid {
  align-items: center;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 0.92fr 1.08fr;
}

.split.compact {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-grid {
  grid-template-areas:
    "image text"
    "image seals";
}

.about-text {
  grid-area: text;
}

.about-image {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 8px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(192, 132, 252, 0.04);
  min-height: 24rem;
  overflow: hidden;
  position: relative;
  grid-area: image;
}

.about-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-image::after {
  background:
    linear-gradient(180deg, rgba(8, 7, 19, 0) 42%, rgba(8, 7, 19, 0.54) 100%),
    radial-gradient(circle at 78% 18%, rgba(168, 85, 247, 0.22), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.seal-grid {
  display: grid;
  gap: 0.75rem;
  grid-area: seals;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seal {
  padding: 1rem;
}

.seal strong {
  color: var(--text);
  display: block;
  font-family: "Cinzel", ui-serif, Georgia, serif;
  line-height: 1.2;
}

.seal span {
  color: var(--text-muted);
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 0.45rem;
}

.note {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 1rem;
}

.check-list .btn {
  margin-top: 0.4rem;
}

.check-row {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 1.1rem;
}

.check-row span {
  color: var(--glow);
  flex: 0 0 auto;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.faq-list details {
  background:
    linear-gradient(180deg, rgba(245, 243, 255, 0.055), rgba(245, 243, 255, 0.018)),
    rgba(21, 17, 31, 0.78);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  gap: 1rem;
  justify-content: space-between;
  line-height: 1.45;
  list-style: none;
  padding: 1.15rem 1.25rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  align-items: center;
  border: 1px solid rgba(168, 85, 247, 0.36);
  border-radius: 999px;
  color: var(--primary-bright);
  display: inline-flex;
  flex: 0 0 auto;
  height: 1.85rem;
  justify-content: center;
  transition: transform 180ms ease;
  width: 1.85rem;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  border-top: 1px solid rgba(168, 85, 247, 0.12);
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
}

.center {
  text-align: center;
}

.center h2,
.center .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2rem;
  max-width: min(calc(100% - 2.5rem), 1280px);
}

.footer img {
  width: 4.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }

  .first-section {
    padding-top: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-bg {
    object-position: 30% 50%;
  }
}

@media (max-width: 900px) {
  .steps-grid,
  .earnings-grid,
  .journey-grid,
  .reasons-grid,
  .split,
  .split.compact,
  .about-grid,
  .seal-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-areas:
      "text"
      "image"
      "seals";
  }

  .hero-content {
    min-height: 70svh;
  }

  .btn {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 639px) {
  .container {
    width: calc(100% - 2rem);
  }

  .footer {
    max-width: calc(100% - 2rem);
  }

  .earning-card {
    min-height: 13.75rem;
    padding: 1rem 0.9rem 0.95rem;
  }

  .building-icon {
    height: 3.5rem;
    width: 3.5rem;
  }

  .earning {
    font-size: 2.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
