*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #080808;
  --bg-soft: #111111;
  --surface: #ffffff;
  --surface-soft: #f3f1ed;
  --text: #ffffff;
  --text-dark: #111111;
  --muted: rgba(255, 255, 255, 0.78);
  --muted-dark: rgba(17, 17, 17, 0.72);
  --line: rgba(250, 187, 0, 0.28);
  --gold: #fabb00;
  --gold-strong: #d39b00;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  --radius: 24px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(14px);
  padding: 1rem 0 0.85rem;
}

.header-shell {
  position: relative;
}

.header-topline {
  display: none;
}

.desktop-nav-frame {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  min-height: 54px;
  border: 2px solid var(--gold);
  padding: 0 1.3rem;
  gap: clamp(1rem, 2vw, 2rem);
}

.desktop-nav-left {
  border-right: 0;
}

.desktop-nav-right {
  border-left: 0;
}

.desktop-nav a {
  flex: 1;
  font-size: 1.02rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
  white-space: nowrap;
}

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

.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
}

.header-logo img {
  width: min(240px, 22vw);
  height: auto;
}

.mobile-header-row,
.mobile-nav,
.menu-toggle {
  display: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn {
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
}

.btn:hover,
.desktop-nav a:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #fabb00 0%, #d39b00 100%);
  color: #111;
  box-shadow: 0 12px 30px rgba(224, 181, 59, 0.22);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: calc(100vh - 98px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.split-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg {
  background-image: url("../images/hero.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 8%, rgba(8, 8, 8, 0.56) 48%, rgba(8, 8, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.22), rgba(8, 8, 8, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
  padding: 5rem 0;
}

.eyebrow,
.section-tag,
.panel-label {
  display: inline-block;
  font-size: 1.09rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.hero h1,
.intro h2,
.section-heading h2,
.split-copy h2,
.works-copy h2,
.membership h2,
.cta-strip h2,
.signup-copy h1,
.hero-panel h2 {
  margin: 0.6rem 0 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.hero-text {
  max-width: 640px;
  margin: 1.25rem 0 0;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 14, 14, 0.72);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.steps-list {
  margin: 1.2rem 0 0;
  padding-left: 0;
  color: var(--muted);
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.steps-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.hero-step-number {
  flex: 0 0 54px;
  margin-bottom: 0;
}

.section-light {
  background: var(--surface-soft);
  color: var(--text-dark);
}

.section-dark {
  background: #0d0d0d;
}

.intro,
.features,
.how-it-works,
.membership,
.cta-strip,
.signup-section {
  padding: 5.5rem 0;
}

.intro-grid,
.membership-grid,
.works-grid,
.signup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
  align-items: center;
}

.intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

.intro-copy,
.works-copy,
.signup-copy,
.membership-grid p {
  color: var(--muted-dark);
  font-size: 1.03rem;
}

.intro-copy p + p {
  margin-top: 1rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.feature-card,
.price-card,
.signup-card {
  background: #fff;
  color: #111;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.feature-card p,
.price-card li,
.form-note {
  color: var(--muted-dark);
}

.features.section-dark .feature-card {
  background: linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
  color: #fff;
  border: 1px solid var(--line);
}

.features.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.82);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fabb00 0%, #d39b00 100%);
  color: #111;
  font-weight: 900;
  margin-bottom: 1rem;
}


.community-section {
  background: url("../images/hero2.png") center/cover no-repeat;
  position: relative;
}

.community-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 80px 0;
}

.community-content {
  max-width: 600px;
}

.community-content h2 {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.community-content p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
}


.split-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.split-image {
  background-image: url("../images/community-road.png");
}

.split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.82) 10%, rgba(8, 8, 8, 0.4) 60%, rgba(8, 8, 8, 0.3) 100%);
}

.split-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0;
}

.split-copy {
  max-width: 640px;
}

.split-copy p:not(.section-tag) {
  color: var(--muted);
  margin: 1rem 0 1.6rem;
}

.works-grid {
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.works-copy {
  max-width: 100%;
  text-align: left;
}

.works-points {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.works-point {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  text-align: left;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
}

.works-step-number {
  flex: 0 0 54px;
  margin-bottom: 0;
}

.price-card {
  background: linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
  color: #fff;
  border: 1px solid var(--line);
}

.membership .membership-grid > div:first-child p:not(.section-tag) {
  color: var(--muted);
}

.membership .section-tag {
  color: var(--gold);
}

.price-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.price-period {
  color: var(--muted);
}

.price-list {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
}

.price-card li {
  color: rgba(255, 255, 255, 0.82);
}

.price-list li + li {
  margin-top: 0.8rem;
}

.full-width {
  width: 100%;
}

.cta-strip {
  background: var(--surface);
  color: var(--text-dark);
}

.cta-strip-inner {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 2.25rem;
}

.partners-copy,
.partners-card {
  font-size: 1.03rem;
}

.partners-copy p:not(.section-tag) {
  color: var(--muted-dark);
}

.partners-card {
  padding: 1.75rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: var(--surface-soft);
  color: var(--muted-dark);
}

.partners-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}

.partners-list li + li,
.partners-card p + p {
  margin-top: 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2rem;
  background: #070707;
}

.footer-wrap {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  width: 140px;
}

.footer-copy {
  margin: 0.8rem 0 0;
  color: var(--muted);
  max-width: 560px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.signup-body {
  background: linear-gradient(180deg, #0b0b0b 0%, #111 100%);
  min-height: 100vh;
}

.signup-main {
  padding: 2rem 0 4rem;
}

.signup-grid {
  align-items: stretch;
}

.signup-copy,
.signup-card {
  border-radius: 28px;
}

.signup-copy {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 2rem;
  color: #fff;
}

.signup-copy p {
  color: var(--muted);
}

.signup-benefits {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.benefit-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 79, 0.12);
}

.signup-card {
  background: #fff;
}

.signup-form {
  display: grid;
  gap: 1rem;
}

.signup-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.signup-form input {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  padding: 0.9rem 1rem;
  font: inherit;
}

@media (max-width: 960px) {
  .desktop-nav-frame {
    display: none;
  }

  .mobile-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .mobile-logo img {
    width: 170px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-nav {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.03);
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    font-size: 1.02rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold);
  }

  .mobile-signup {
    background: linear-gradient(180deg, #fabb00 0%, #d39b00 100%);
    color: #111111 !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .intro-grid,
  .membership-grid,
  .works-grid,
  .signup-grid,
  .feature-grid,
  .cta-strip-inner,
  .footer-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-content {
    padding: 4rem 0;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .footer-wrap,
  .cta-strip-inner {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 0.75rem;
  }

  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .header-topline {
    margin-bottom: 0.35rem;
  }

  .mobile-logo img {
    width: 138px;
  }

  .hero-content,
  .intro,
  .features,
  .how-it-works,
  .membership,
  .cta-strip,
  .signup-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .hero-text,
  .intro-copy,
  .works-copy,
  .signup-copy,
  .membership-grid p {
    font-size: 0.98rem;
  }

  .hero-panel,
  .feature-card,
  .price-card,
  .signup-card,
  .signup-copy {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .price {
    font-size: 3.15rem;
  }
}
