:root {
  --black: #0b0b0b;
  --coal: #141414;
  --gold: #eac05b;
  --gold-dark: #9a7425;
  --white: #f5f5f5;
  --muted: #c8c8c8;
  --line: rgba(245, 245, 245, 0.15);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Clear Sans", "Segoe UI", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.98), rgba(11, 11, 11, 0.72)),
    url("assets/elite90-hero.jpg") center / cover no-repeat;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 10px clamp(18px, 5vw, 68px);
  background: rgba(11, 11, 11, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 84px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  transition: color 160ms ease, border-color 160ms ease;
}

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

.nav-cta {
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  min-height: 100svh;
  padding: 108px clamp(18px, 5vw, 68px) 36px;
}

.hero-copy {
  max-width: 760px;
  padding-bottom: clamp(8px, 4vh, 50px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Tomorrow", "Arial Black", Impact, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Tomorrow", "Arial Black", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.83;
  text-shadow: 0 14px 32px var(--shadow);
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-family: "Tomorrow", "Arial Black", Impact, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.primary,
.submit {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(234, 192, 91, 0.18);
}

.secondary {
  color: var(--white);
  background: rgba(245, 245, 245, 0.06);
  border-color: var(--line);
}

.whatsapp-link {
  color: var(--white);
  background: #128c4a;
  border-color: #25d366;
}

.button:hover {
  transform: translateY(-1px);
}

.button.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin: 42px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-stats div {
  min-width: 0;
  padding: 18px;
  background: rgba(11, 11, 11, 0.62);
}

.hero-stats dt {
  color: var(--gold);
  font-family: "Tomorrow", "Arial Black", Impact, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signup-panel {
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(234, 192, 91, 0.42);
  box-shadow: 0 28px 80px var(--shadow);
}

.panel-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.panel-top .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 0.72rem;
}

.panel-top h2 {
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  line-height: 0.94;
}

.spots {
  min-width: 96px;
  padding: 10px 12px;
  color: var(--black);
  text-align: center;
  background: var(--gold);
}

.spots span {
  display: block;
  font-family: "Tomorrow", "Arial Black", Impact, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 0.85;
}

.spots small {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

form {
  display: grid;
  gap: 10px;
  padding: 18px 22px 20px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 40px;
  color: var(--white);
  background: rgba(245, 245, 245, 0.07);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 12px;
  font: inherit;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(234, 192, 91, 0.18);
}

select {
  color: var(--white);
}

option {
  color: var(--black);
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.35;
  text-transform: none;
}

.check input {
  min-height: 18px;
  margin: 0;
  accent-color: var(--gold);
}

.submit {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  min-height: 28px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.form-note.success {
  color: var(--gold);
  font-weight: 800;
}

.form-note.error {
  color: #ff938b;
  font-weight: 800;
}

.welcome-card {
  display: grid;
  gap: 0;
  padding: 18px;
}

.welcome-card[hidden] {
  display: none;
}

.welcome-image {
  position: relative;
  display: grid;
  align-items: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.04), rgba(11, 11, 11, 0.18) 42%, rgba(11, 11, 11, 0.74) 58%, rgba(11, 11, 11, 0.9)),
    url("assets/welcome-elite90.png") center / contain no-repeat,
    var(--black);
  border: 1px solid rgba(234, 192, 91, 0.34);
}

.welcome-copy {
  justify-self: end;
  width: min(52%, 560px);
  padding: clamp(18px, 4vw, 34px);
  text-align: left;
}

.welcome-copy h3 {
  font-size: clamp(1.45rem, 3.9vw, 2.4rem);
  line-height: 0.95;
}

.welcome-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(0.98rem, 2vw, 1.24rem);
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.welcome-next {
  padding: 18px 0 4px;
}

.welcome-next h3 {
  display: none;
}

.welcome-next p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.45;
}

.method,
.brand-world {
  padding: 72px clamp(18px, 5vw, 68px);
  background: var(--black);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.section-heading h2,
.brand-world h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.9;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.method-grid article {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(234, 192, 91, 0.1), rgba(20, 20, 20, 0)),
    var(--coal);
}

.method-grid span {
  color: var(--gold);
  font-family: "Tomorrow", "Arial Black", Impact, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.method-grid h3 {
  margin-top: 34px;
  font-size: 1.28rem;
  line-height: 1;
}

.method-grid p,
.brand-world p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.brand-world {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0), rgba(234, 192, 91, 0.08)),
    var(--coal);
}

.brand-world p {
  max-width: 600px;
  margin: 20px 0 26px;
}

.brand-world img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 68px);
  color: var(--muted);
  background: var(--black);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

footer strong {
  color: var(--gold);
}

.thankyou-page::before {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.96), rgba(11, 11, 11, 0.84)),
    url("assets/elite90-hero.jpg") center / cover no-repeat;
}

.thankyou-shell {
  display: grid;
  gap: 24px;
  min-height: 100svh;
  padding: clamp(18px, 5vw, 58px);
}

.thankyou-brand {
  width: 104px;
}

.thankyou-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: stretch;
  gap: 1px;
  align-self: center;
  background: rgba(245, 245, 245, 0.14);
  border: 1px solid rgba(234, 192, 91, 0.36);
  box-shadow: 0 28px 80px var(--shadow);
}

.thankyou-image {
  border: 0;
}

.thankyou-image .welcome-copy h1 {
  max-width: 9ch;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.9;
}

.thankyou-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(20, 20, 20, 0.94);
}

.thankyou-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 0.95;
}

.thankyou-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .hero,
  .brand-world {
    grid-template-columns: 1fr;
  }

  .signup-panel {
    max-width: 620px;
  }

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

  .thankyou-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand {
    width: 70px;
  }

  nav {
    gap: 10px;
    font-size: 0.72rem;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 42px 16px 38px;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 6.2rem);
  }

  .hero-stats,
  .field-row,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats div,
  .method-grid article {
    min-height: auto;
  }

  .panel-top {
    grid-template-columns: 1fr;
  }

  .spots {
    width: 100%;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  footer {
    flex-direction: column;
  }

  .welcome-image {
    align-items: end;
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.02), rgba(11, 11, 11, 0.16) 42%, rgba(11, 11, 11, 0.88)),
      url("assets/welcome-elite90.png") center / contain no-repeat,
      var(--black);
  }

  .welcome-copy {
    width: 100%;
    padding: 22px;
  }
}
