:root {
  color-scheme: dark;
  --navy-950: #071120;
  --navy-900: #0d1830;
  --navy-850: #111d37;
  --navy-800: #16243f;
  --gold-300: #e7d39a;
  --gold-400: #d7bd79;
  --gold-500: #c9a962;
  --text: #f8fafc;
  --muted: #b6c0d1;
  --soft: #7f8ba3;
  --line: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.035);
  --card-strong: rgba(255, 255, 255, 0.06);
  --shadow-gold: 0 20px 70px rgba(201, 169, 98, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 169, 98, 0.08), transparent 34rem),
    radial-gradient(circle at 82% 8%, rgba(201, 169, 98, 0.05), transparent 28rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 45%, var(--navy-950));
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
}

img,
svg {
  display: block;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 32, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 40px;
  height: 40px;
}

.brand__name {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__name span {
  color: var(--gold-500);
}

.brand__tagline {
  display: block;
  margin-top: -3px;
  color: var(--soft);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__items {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav__item,
.static-button {
  user-select: none;
}

.nav__item {
  color: var(--muted);
  white-space: nowrap;
}

.static-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.16rem;
  border: 1px solid rgba(201, 169, 98, 0.28);
  border-radius: 14px;
  color: var(--gold-300);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: default;
  opacity: 0.94;
}

.static-button--primary {
  border-color: transparent;
  background: var(--gold-500);
  color: #08111f;
  box-shadow: var(--shadow-gold);
}

.static-button--ghost {
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 72px);
  padding: 80px 0 96px;
  text-align: center;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__logo {
  display: grid;
  justify-items: center;
  margin-bottom: 30px;
}

.hero__mark {
  width: clamp(86px, 14vw, 126px);
  height: clamp(86px, 14vw, 126px);
  filter: drop-shadow(0 28px 46px rgba(201, 169, 98, 0.16));
}

.hero__brand {
  margin: 8px 0 0;
  color: var(--text);
  font-size: clamp(3.1rem, 9vw, 5.8rem);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero__brand span {
  color: var(--gold-500);
}

.eyebrow {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand__name,
.hero__brand {
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

h1 {
  margin-bottom: 22px;
  color: var(--text);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.gold-text {
  color: var(--gold-400);
}

.hero__lead {
  max-width: 680px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.role-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(560px, 100%);
  margin: 42px auto 0;
}

.role-pill {
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.role-pill strong {
  display: block;
  color: var(--text);
  font-size: clamp(0.9rem, 2.8vw, 1rem);
}

.role-pill span {
  display: block;
  color: var(--gold-400);
  font-size: 0.78rem;
}

.section {
  padding: 92px 0;
}

.section--band {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
}

.section__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section__header h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section__header p {
  color: var(--muted);
  font-size: 1.08rem;
}

.roles-grid,
.benefits-grid {
  display: grid;
  gap: 18px;
}

.roles-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.12);
}

.card__number {
  position: absolute;
  top: -12px;
  right: -10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 169, 98, 0.36);
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--gold-400);
  font-weight: 800;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(201, 169, 98, 0.11);
  color: var(--gold-400);
  font-size: 1.55rem;
}

.card h3 {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.card__subtitle {
  margin-bottom: 14px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.card__meta {
  margin-top: 20px;
  color: var(--soft);
  font-size: 0.84rem;
}

.benefit {
  padding: 24px;
}

.benefit h3 {
  font-size: 1.08rem;
}

.invite {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 56px);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(201, 169, 98, 0.12), transparent 24rem),
    var(--card);
  text-align: center;
}

.invite p {
  color: var(--muted);
  font-size: 1.08rem;
}

.status-note {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 999px;
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  color: var(--soft);
  font-size: 0.95rem;
}

.footer h2,
.footer h3 {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer p {
  margin-bottom: 0;
}

.footer__bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(182, 192, 209, 0.58);
  font-size: 0.82rem;
  text-align: center;
}

[aria-disabled="true"] {
  pointer-events: none;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav__items {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .roles-grid,
  .benefits-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
  }

  .static-button {
    width: 100%;
  }

  .role-pills {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }
}
