:root {
  --launch-bg: #0d0b0a;
  --launch-panel: rgba(22, 18, 15, 0.96);
  --launch-panel-soft: rgba(29, 24, 20, 0.82);
  --launch-border: rgba(164, 126, 63, 0.45);
  --launch-gold: #d4b06a;
  --launch-gold-bright: #efd497;
  --launch-text: #e9dfcb;
  --launch-muted: #a99d88;
}

.site-footer {
  box-sizing: border-box;
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto 22px;
  padding: 22px 24px;
  border: 1px solid var(--launch-border);
  background: linear-gradient(180deg, rgba(25, 21, 18, 0.96), rgba(12, 10, 9, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 12px 30px rgba(0, 0, 0, 0.22);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__brand {
  display: grid;
  gap: 4px;
}

.site-footer__brand strong {
  color: var(--launch-gold-bright);
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__brand span,
.site-footer__legal {
  color: var(--launch-muted);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.95rem;
}

.site-footer__links {
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
}

.site-footer__links a,
.launch-link {
  color: var(--launch-muted);
  text-decoration: none;
  transition: color 140ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.launch-link:hover,
.launch-link:focus-visible {
  color: var(--launch-gold-bright);
}

.launch-body {
  min-height: 100vh;
  margin: 0;
  color: var(--launch-text);
  background:
    radial-gradient(circle at 50% -10%, rgba(119, 76, 29, 0.2), transparent 40%),
    linear-gradient(180deg, #16110e 0%, var(--launch-bg) 52%, #080706 100%);
  font-family: "EB Garamond", Georgia, serif;
}

.launch-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 18px;
}

.launch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 22px;
  border: 1px solid var(--launch-border);
  background: rgba(15, 12, 10, 0.94);
}

.launch-header__brand {
  display: grid;
  gap: 3px;
  text-decoration: none;
}

.launch-header__brand strong {
  color: var(--launch-gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launch-header__brand span {
  color: var(--launch-muted);
  font-size: 0.9rem;
}

.launch-header__nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.launch-header__nav a {
  color: var(--launch-muted);
  text-decoration: none;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.74rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.launch-header__nav a:hover,
.launch-header__nav a:focus-visible {
  color: var(--launch-gold-bright);
}

.launch-document {
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--launch-border);
  background: linear-gradient(180deg, var(--launch-panel), rgba(12, 10, 9, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.launch-kicker {
  margin: 0 0 7px;
  color: var(--launch-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.launch-document h1,
.launch-document h2,
.launch-document h3 {
  color: var(--launch-gold-bright);
  font-family: "Cinzel", Georgia, serif;
}

.launch-document h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.05;
}

.launch-document h2 {
  margin: 34px 0 10px;
  font-size: 1.25rem;
}

.launch-document h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
}

.launch-meta,
.launch-lead {
  color: var(--launch-muted);
}

.launch-meta {
  margin: 10px 0 26px;
  font-size: 0.94rem;
}

.launch-lead {
  margin: 18px 0 28px;
  font-size: 1.14rem;
  line-height: 1.6;
}

.launch-document p,
.launch-document li {
  line-height: 1.65;
}

.launch-document a {
  color: var(--launch-gold-bright);
}

.launch-document ul,
.launch-document ol {
  padding-left: 1.25rem;
}

.launch-callout {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--launch-gold);
  background: rgba(201, 164, 92, 0.07);
  color: #d8ccb6;
}

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

.faq-list details {
  border: 1px solid rgba(110, 91, 60, 0.55);
  background: var(--launch-panel-soft);
}

.faq-list summary {
  padding: 16px 18px;
  color: var(--launch-gold-bright);
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.faq-list details p,
.faq-list details ul {
  margin: 0;
  padding: 0 18px 18px;
}

.launch-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.launch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(201, 164, 92, 0.74);
  color: var(--launch-gold-bright);
  background: rgba(201, 164, 92, 0.08);
  text-decoration: none;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launch-button:hover,
.launch-button:focus-visible {
  background: rgba(201, 164, 92, 0.16);
}

@media (max-width: 680px) {
  .site-footer {
    padding-inline: 18px;
  }
  .launch-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-header__nav {
    justify-content: flex-start;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
