* {
  box-sizing: border-box;
}

:root {
  --navy: #181278;
  --navy-dark: #09072f;
  --navy-deep: #050417;
  --gold: #d6b940;
  --gold-light: #f2dc75;
  --cream: #f9fbe8;
  --cream-soft: #fffdf2;
  --white: #ffffff;
  --ink: #111122;
  --muted: #5f6075;
  --border: rgba(24, 18, 120, 0.14);
  --gold-border: rgba(214, 185, 64, 0.45);
  --shadow: 0 22px 60px rgba(8, 8, 23, 0.14);
  --radius: 26px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 185, 64, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 44%, #ffffff 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 4, 23, 0.92);
  border-bottom: 1px solid rgba(214, 185, 64, 0.28);
  backdrop-filter: blur(14px);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 82px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
  color: var(--cream);
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(214, 185, 64, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(249, 251, 232, 0.82);
  font-weight: 800;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-deep);
  background: var(--gold);
}

.nav-links .member-link {
  color: var(--cream);
  border: 1px solid var(--gold-border);
  background: rgba(214, 185, 64, 0.12);
}

.nav-links .member-link:hover,
.nav-links .member-link.active {
  color: var(--navy-deep);
  background: var(--gold);
}

.hero,
.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 104px 24px 78px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-card {
  width: min(420px, 90vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 44px;
  background:
    radial-gradient(circle, rgba(249, 251, 232, 0.96), rgba(249, 251, 232, 0.78)),
    linear-gradient(135deg, rgba(24, 18, 120, 0.09), rgba(214, 185, 64, 0.2));
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 84%;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(24, 18, 120, 0.18));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--navy);
}

h1,
h2,
h3,
p {
  line-height: 1.2;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.8rem, 8vw, 5.9rem);
  letter-spacing: -0.075em;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

h2 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.045em;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.hero-text,
.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 23px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
  font-weight: 900;
  border: 1px solid var(--navy);
  box-shadow: 0 12px 24px rgba(24, 18, 120, 0.18);
}

.button:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.button.secondary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 12px 24px rgba(214, 185, 64, 0.22);
}

.button.secondary:hover {
  background: var(--gold-light);
}

.button.outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold-border);
  box-shadow: none;
}

.button.outline:hover {
  background: rgba(214, 185, 64, 0.16);
}

.button.disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 720px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.panel,
.wide-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.card::before,
.wide-card::before,
.panel::before {
  content: "";
  display: block;
  width: 52px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.card p,
.panel p,
.wide-card p,
.content-section p,
.split-section p,
.step p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: start;
}

.panel {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 251, 232, 0.94)),
    radial-gradient(circle at top right, rgba(214, 185, 64, 0.26), transparent 15rem);
  border-color: var(--gold-border);
}

.panel .button {
  margin-top: 10px;
}

.content-section > p {
  max-width: 840px;
  font-size: 1.08rem;
}

.content-section h2:not(:first-child) {
  margin-top: 42px;
}

.team-list {
  display: grid;
  gap: 18px;
}

.wide-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.wide-card h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.step span {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  border: 1px solid var(--gold-border);
}

.step p {
  margin: 5px 0 0;
}

.site-footer {
  margin-top: 52px;
  background: var(--navy-deep);
  color: rgba(249, 251, 232, 0.78);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(214, 185, 64, 0.28);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--cream);
}

.footer-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-logo-wrap {
    order: -1;
  }

  .hero-logo-card {
    width: min(320px, 80vw);
    border-radius: 34px;
  }

  .card-grid,
  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .page-hero {
    padding-top: 58px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 9px 10px;
  }

  .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }
}