:root {
  --bg: #130F12;
  --bg-2: #1B1418;
  --bg-3: #241A20;
  --bg-4: #2E2129;
  --text: #F5ECEF;
  --muted: #C7B0BC;
  --rose: #F43F5E;
  --rose-pale: #FECDD3;
  --rose-deep: #BE123C;
  --line: #3C2933;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

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

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Banner wordmark ===== */
.banner-wordmark {
  background-color: var(--bg);
  text-align: center;
  padding: 34px 24px 26px;
  position: relative;
}

.banner-wordmark .rule {
  display: block;
  height: 1px;
  background-color: var(--rose);
  width: 140px;
  margin: 0 auto;
}

.banner-wordmark .rule-top {
  margin-bottom: 22px;
}

.banner-wordmark .rule-bottom {
  margin-top: 22px;
}

.wordmark {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

/* ===== Nav ===== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background-color: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 24px;
  flex-wrap: wrap;
}

.main-nav .nav-cta {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  border-bottom-color: var(--rose-pale);
}

.nav-link.is-active {
  color: var(--rose-pale);
  border-bottom-color: var(--rose);
}

.nav-cta {
  background-color: var(--rose);
  color: #130F12;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: var(--rose-pale);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  min-height: 72vh;
  background-color: var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background-color: var(--bg-2);
  align-self: stretch;
}

.aura-hero {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aura-orb {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, var(--rose-pale) 0%, var(--rose) 38%, var(--rose-deep) 66%, var(--bg-2) 84%);
}

.aura-halo {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid var(--rose);
}

.aura-halo-outer {
  width: 300px;
  height: 300px;
  border-color: var(--rose-pale);
}

.aura-spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--rose-pale);
}

.aura-spark-1 {
  top: 18px;
  right: 46px;
}

.aura-spark-2 {
  bottom: 30px;
  left: 34px;
  width: 6px;
  height: 6px;
}

.hero-text {
  padding: 72px 56px 72px 64px;
}

.eyebrow, .section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.subcopy {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-rose {
  background-color: var(--rose);
  color: #130F12;
}

.btn-rose:hover {
  background-color: var(--rose-pale);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* ===== Statement ===== */
.statement-section {
  background-color: var(--bg-2);
  padding: 96px 24px;
  border-bottom: 1px solid var(--line);
}

.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.statement-lead {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 28px;
}

.statement-support {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ===== Stats ===== */
.stats-section {
  background-color: var(--bg);
  padding: 80px 24px;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.stat-num::after {
  content: "+";
  color: var(--rose);
}

.stat-label {
  display: inline-block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--rose);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Features ===== */
.features-section {
  background-color: var(--bg-2);
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 18px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
}

.feature-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-cell {
  border: 1px solid var(--line);
  border-left: 3px solid var(--rose);
  background-color: var(--bg);
  padding: 30px 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-cell:hover {
  border-left-color: var(--rose-pale);
  transform: translateY(-3px);
}

.feature-cell h3 {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: var(--rose-pale);
}

.feature-cell p {
  font-size: 0.98rem;
  color: var(--muted);
}

/* ===== Fee table ===== */
.fee-section {
  background-color: var(--bg);
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.fee-table-wrap {
  overflow-x: auto;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.fee-table thead th {
  background-color: var(--rose);
  color: #130F12;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: left;
  padding: 16px 22px;
  border: 1px solid var(--rose);
}

.fee-table tbody td {
  padding: 20px 22px;
  border: 1px solid var(--line);
  color: var(--muted);
  vertical-align: top;
}

.fee-table tbody tr:nth-child(odd) {
  background-color: var(--bg-2);
}

.fee-table tbody tr:nth-child(even) {
  background-color: var(--bg-3);
}

.fee-table .tier-name {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.fee-table .tier-fee {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--rose-pale);
  white-space: nowrap;
}

/* ===== CTA band ===== */
.cta-band {
  background-color: var(--bg-2);
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-left h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 18px;
}

.cta-left p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.cta-contact {
  font-weight: 600;
  color: var(--rose-pale) !important;
}

.cta-right {
  background-color: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 32px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-form input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background-color: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.contact-form input::placeholder {
  color: var(--muted);
}

.contact-form input:focus {
  outline: 2px solid var(--rose);
  outline-offset: 1px;
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--bg);
  padding-top: 40px;
}

.footer-rule-top {
  height: 1px;
  background-color: var(--rose);
  width: 100%;
  margin-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-rule-vertical {
  width: 1px;
  background-color: var(--rose);
  justify-self: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav {
  align-items: flex-start;
}

.footer-contact {
  align-items: flex-end;
  text-align: right;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--rose-pale);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== Scroll reveal ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    padding: 40px 20px;
  }

  .aura-hero {
    width: 240px;
    height: 240px;
  }

  .aura-orb {
    width: 170px;
    height: 170px;
  }

  .aura-halo {
    width: 210px;
    height: 210px;
  }

  .aura-halo-outer {
    width: 240px;
    height: 240px;
  }

  .hero-text {
    padding: 56px 24px 72px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .cta-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .main-nav {
    justify-content: flex-end;
    gap: 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    order: 3;
    padding-top: 14px;
  }

  .main-nav.open .nav-cta {
    display: inline-block;
    position: static;
    transform: none;
    order: 4;
    margin: 12px 0 4px;
  }

  .feature-duo {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-rule-vertical {
    width: 100%;
    height: 1px;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
}
