:root {
  color-scheme: light;
  --ink: #151d4f;
  --muted: #596184;
  --blue: #139edc;
  --blue-deep: #0875b8;
  --green: #65be43;
  --yellow: #ffbd32;
  --coral: #f26565;
  --surface: #ffffff;
  --soft: #f3f7ff;
  --line: #dfe7f5;
  --shadow: 0 14px 30px rgba(13, 41, 89, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue-deep);
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
}

.site-header.solid {
  position: relative;
  background: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
}

.site-nav a {
  color: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(82vh, 760px);
  padding: 130px clamp(24px, 8vw, 120px) 74px;
  display: flex;
  align-items: center;
  background-color: #172c83;
  background-image: url("assets/moon-mission-background.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(10, 19, 71, 0.42);
  content: "";
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
  text-shadow: 0 3px 12px rgba(5, 16, 55, 0.5);
}

.hero-kicker {
  margin: 0 0 10px;
  color: #ffdb70;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 6.6rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin: 22px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-note {
  display: inline-block;
  margin-top: 26px;
  padding: 10px 16px;
  border-left: 5px solid var(--yellow);
  background: rgba(12, 23, 76, 0.74);
  font-weight: 700;
  text-shadow: none;
}

.band {
  padding: clamp(48px, 7vw, 84px) clamp(20px, 6vw, 84px);
}

.band.soft {
  background: var(--soft);
}

.band-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: 3rem;
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  object-fit: contain;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
}

.trust-visual {
  width: min(300px, 70vw);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
  font-weight: 700;
}

.trust-list li::before {
  position: absolute;
  left: 0;
  content: "\2605";
  color: var(--yellow);
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
}

.support-strip h2,
.support-strip p {
  margin: 0;
}

.button-link {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.legal-main {
  min-height: 70vh;
  padding: clamp(44px, 7vw, 82px) 20px;
  background: var(--soft);
}

.legal-document {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin: 0 0 4px;
  font-size: 3.7rem;
  line-height: 1.1;
}

.legal-document h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-document p,
.legal-document li {
  color: #333b61;
}

.updated {
  margin-top: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 40px;
}

.contact-option {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-option h2 {
  margin: 0 0 6px;
}

.contact-option p {
  margin: 0;
}

.site-footer {
  padding: 30px 20px;
  background: #0b1237;
  color: #ffffff;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #ffffff;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span {
    display: none;
  }

  .site-nav {
    gap: 13px;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .hero {
    min-height: 700px;
    align-items: flex-end;
    padding-bottom: 82px;
    background-position: 38% center;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-copy {
    font-size: 1.15rem;
  }

  .section-heading h2 {
    font-size: 2.2rem;
  }

  .legal-document h1 {
    font-size: 2.55rem;
  }

  .feature-grid,
  .trust-layout,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .support-strip,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 410px) {
  .site-header {
    padding-inline: 14px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
