:root {
  --bg: #08163a;
  --bg-soft: #102a68;
  --text: #f4f8ff;
  --muted: #b6c4ea;
  --card: rgba(255, 255, 255, 0.96);
  --line: #2f4f9d;
  --green: #17c36a;
  --teal: #2ad8ff;
  --deep: #0f245f;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(1100px 520px at 8% -5%, #2342af 0%, transparent 46%),
    radial-gradient(980px 560px at 100% 10%, #12986a 0%, transparent 42%),
    linear-gradient(130deg, var(--bg), var(--bg-soft));
}

.aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(380px 380px at 18% 82%, rgba(45, 204, 130, 0.13), transparent 60%),
    radial-gradient(310px 290px at 74% 88%, rgba(39, 203, 255, 0.12), transparent 58%);
  pointer-events: none;
}

.site-header,
main,
footer {
  position: relative;
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.page-shell {
  padding-bottom: 0.4rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 1rem;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.studio-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.studio-copy p {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.studio-copy span {
  color: var(--muted);
  font-size: .82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: .93rem;
  opacity: .93;
}

.cta-row {
  display: flex;
  gap: .65rem;
}

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: .7rem 1.1rem;
  font-size: .91rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(130deg, var(--green), #2de38b);
  color: #f9fff9;
  box-shadow: 0 12px 28px rgba(23, 195, 106, 0.22);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--text);
}

.hero {
  padding: 1.8rem 0 2.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.95fr);
  gap: 2rem;
  align-items: center;
  position: relative;
}

.hero-copy {
  background: #ffffff;
  border: 1px solid #d7e0f2;
  border-radius: 18px;
  padding: clamp(1rem, 2.4vw, 1.3rem);
  box-shadow: 0 14px 44px rgba(4, 12, 36, 0.24);
}

.hero-copy h1 {
  margin: .3rem 0 1rem;
  line-height: 1.08;
  font-size: clamp(2rem, 4.7vw, 3.4rem);
  color: #101a33;
  text-shadow: none;
  letter-spacing: -0.01em;
}

.eyebrow {
  color: #075c35;
  margin: 0;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .77rem;
  text-shadow: none;
}

.hero-copy p {
  color: #17223d;
  line-height: 1.6;
  max-width: 55ch;
  text-shadow: none;
}

.hero-copy > p:not(.eyebrow) {
  color: #17223d;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.7;
  text-shadow: none;
  margin-bottom: .3rem;
}

.hero-copy p,
.hero-copy h1,
.hero-copy .eyebrow {
  opacity: 1;
  transform: none;
}

.hero-copy.reveal,
.hero-copy.is-visible {
  opacity: 1;
  transform: none;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}

.hero-badges {
  display: flex;
  gap: .6rem;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.hero-badges li {
  background: #edf3ff;
  border: 1px solid #bac9e8;
  color: #111a2e;
  border-radius: 999px;
  padding: .42rem .68rem;
  font-size: .77rem;
  font-weight: 700;
}

.hero-copy .btn-ghost {
  border-color: #31528f;
  color: #162a55;
}

.hero-card-wrap {
  justify-self: end;
  width: min(460px, 100%);
}

.product-card {
  background: rgba(9, 25, 63, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 1.1rem;
  backdrop-filter: blur(7px);
}

.product-card__head {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.product-card__head img {
  width: 43px;
  height: 43px;
}

.product-card__head strong {
  display: block;
  color: #eef5ff;
}

.product-card__head p {
  margin: .15rem 0 0;
  color: #bdd0f8;
  font-size: .87rem;
}

.wallet-pass {
  margin-top: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, #1d7f51, #175e6f);
  padding: 1rem;
  color: white;
}

.wallet-pass h2 {
  margin: .3rem 0 .2rem;
  font-size: 1.15rem;
}

.wallet-pass p {
  color: #e8f3ff;
  margin: .2rem 0;
  font-size: .9rem;
}

.tag {
  margin: 0 0 .45rem;
  display: inline-flex;
  font-size: .73rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #deefff;
}

.timeline {
  margin: .75rem 0 .55rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}

.timeline span {
  padding: .35rem .62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: .74rem;
}

.timeline .active {
  background: rgba(255, 255, 255, 0.35);
  font-weight: 700;
}

.status {
  font-weight: 700;
  color: #cefff0;
}

.status-pending {
  color: #b3f5ff;
}

.wallet-pass--accented {
  background: linear-gradient(165deg, #2366c8, #4f8cff);
}

section {
  border-radius: 24px;
  padding: 1.7rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1e2c53;
}

.content-card {
  border-radius: 24px;
  padding: 1.7rem;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1e2c53;
}

.section-intro {
  color: #5f6e96;
  line-height: 1.6;
  max-width: 72ch;
}

.status-list {
  margin: 0 0 0.2rem;
  padding-left: 1.2rem;
  color: #435277;
  line-height: 1.65;
}

.feature-grid h2,
.how-wrap h2,
.pricing h2,
.faq h2 {
  margin-top: 0;
  font-size: 1.65rem;
}

.feature-grid p,
.how-wrap p,
.pricing p,
.faq p { color: #5f6e96; }

.feature-grid .cards {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cards {
  margin-top: .8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid #dce4ff;
  border-radius: 15px;
  padding: 1rem;
  background: #fff;
}

.card h3 { margin-top: 0; margin-bottom: .45rem; color: #1e2f57; }

.how-wrap .steps {
  margin-top: .9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.how-steps {
  margin-top: .9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  border: 1px dashed #bdd4ff;
  border-radius: 15px;
  background: #f8faff;
  padding: 1rem;
}

.card,
.step,
.plan,
.faq details,
.product-card,
.hero-copy,
.feature-grid,
.how-wrap,
.pricing,
.content-card {
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: .6rem;
  font-weight: 700;
  color: #1b50a2;
  background: #d4e4ff;
}

.pricing .plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.plan {
  border: 1px solid #cddaf9;
  border-radius: 16px;
  padding: 1.1rem;
  background: #fff;
}

.plan.featured {
  background: linear-gradient(140deg, #edf8ff, #e9fff3);
  border-color: #a8e4c7;
  position: relative;
}

.plan .price { font-size: 2rem; font-weight: 800; margin: .2rem 0 .8rem; color: #173064; }

.plan ul { margin: 0; padding-left: 1.2rem; color: #45547a; }

.alt { color: #3f5ea6; font-weight: 700; margin-top: .9rem; }

.waitlist-form {
  display: grid;
  gap: .75rem;
  margin-top: .6rem;
}

.waitlist-form label {
  font-size: .88rem;
  color: #233e71;
  font-weight: 600;
}

.waitlist-form input {
  width: 100%;
  padding: .78rem .88rem;
  border-radius: 10px;
  border: 1px solid #c7d7fb;
  font-size: 1rem;
  font-family: inherit;
  color: #13234d;
}

.waitlist-form input:focus {
  outline: none;
  border-color: #4c7ef7;
  box-shadow: 0 0 0 3px rgba(63, 116, 255, 0.15);
}

.small-copy {
  margin-top: .55rem;
  margin-bottom: 0;
  color: #4f5c81;
  font-size: .9rem;
}

.faq details {
  margin-top: .8rem;
  border: 1px solid #d8e3ff;
  border-radius: 12px;
  background: #fbfcff;
  padding: .65rem .9rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #20396a;
}

.faq p { margin-top: .6rem; }

footer {
  margin-top: 1rem;
  padding: 2.4rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  color: #ecf1ff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer img { width: 34px; height: 34px; }
footer p, footer small { margin: 0; }

@media (max-width: 900px) {
  .site-header,
  main,
  footer {
    width: calc(100% - 1.5rem);
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: .45rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: .6rem;
  }

  .hero-card-wrap { justify-self: stretch; }

  .feature-grid .cards,
  .cards,
  .how-wrap .steps,
  .how-steps,
  .pricing .plans {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
