@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 900;
}

:root {
  --black: #000;
  --panel: #090909;
  --panel-soft: #111;
  --white: #fff;
  --muted: #d8d8d8;
  --soft: #aaa;
  --gold: #c9a84c;
  --line: rgba(255, 255, 255, .16);
  --line-strong: rgba(255, 255, 255, .34);
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, .94);
}

.brand {
  font-size: .88rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
}

nav a {
  min-width: 84px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

main {
  width: 100%;
}

.notice,
.hero,
.section {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px;
}

.notice {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 168, 76, .5);
}

.notice p {
  margin: 0;
  color: #f3e6b8;
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding-top: 28px;
  padding-bottom: 28px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero img {
  width: min(74vw, 320px);
  max-height: 220px;
  object-fit: contain;
}

.hero .mark-logo {
  width: min(58vw, 250px);
  max-height: 170px;
}

.unit-hero img {
  border-radius: 8px;
}

.title-hero {
  min-height: 180px;
}

.title-hero h1 {
  margin-bottom: 0;
}

.logo-hero {
  min-height: 280px;
}

.logo-hero img {
  width: min(82vw, 360px);
  max-height: 260px;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy p:last-child {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: .9;
  font-weight: 900;
}

h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.05;
  font-weight: 900;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  border-bottom: 1px solid var(--line);
}

.choice-grid,
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.choice,
.plan {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.choice span,
.plan span {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan.featured {
  border-color: rgba(201, 168, 76, .72);
  background: #111007;
}

.plan strong {
  display: block;
  margin: 18px 0;
  font-size: 2.2rem;
  line-height: 1;
}

.plan small {
  font-size: .9rem;
  color: var(--soft);
}

.button {
  min-height: 50px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  color: var(--white);
}

.plain-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--panel);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list p {
  margin: 10px 0 0;
  font-size: .92rem;
}

.compact {
  max-width: 760px;
}

@media (min-width: 760px) {
  .hero {
    min-height: 330px;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .title-hero {
    min-height: 220px;
  }

  .logo-hero {
    min-height: 320px;
  }

  .logo-hero img {
    width: min(52vw, 380px);
    max-height: 280px;
  }

  .choice-grid,
  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 520px) {
  .topbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  nav {
    gap: 6px;
  }

  nav a {
    flex: 0 1 96px;
    min-width: 0;
    padding-inline: 6px;
    font-size: .58rem;
    text-align: center;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2rem, 14vw, 3rem);
  }

  .hero {
    min-height: 280px;
  }

  .hero img {
    width: min(82vw, 290px);
  }

  .title-hero {
    min-height: 160px;
  }

  .logo-hero {
    min-height: 250px;
  }

  .logo-hero img {
    width: min(86vw, 320px);
    max-height: 230px;
  }

  .hero .mark-logo {
    width: min(64vw, 220px);
  }
}
