:root {
  --navy: #0b2430;
  --navy-mid: #13303d;
  --teal: #1a5c6b;
  --orange: #e15300;
  --orange-hover: #c44800;
  --cream: #f6f1ea;
  --paper: #fffcf8;
  --ink: #1c1917;
  --muted: #5c574f;
  --line: #e4ddd4;
  --white: #ffffff;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --radius: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
  line-height: 1.15;
}

p {
  text-wrap: pretty;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

.wrap {
  width: min(1152px, calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  background: var(--navy);
  color: var(--cream);
  font-size: 0.9rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 1rem;
}
.topbar a {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.topbar .tag {
  opacity: 0.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.home-page {
  min-height: 100dvh;
  background: var(--orange);
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.home-simple {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}
.home-simple h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
}
.home-links {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.home-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 500;
  font-size: 1.05rem;
}
.home-links a:hover {
  text-decoration: underline;
}
.home-copy {
  text-align: center;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--white) 80%, transparent);
  padding-bottom: 2rem;
  margin: 0;
}

.footer-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}
.wordmark-foot {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}
.footer-simple nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.925rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav a {
  font-size: 0.925rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 80%, transparent);
}
.nav a:hover,
.nav a.is-active {
  color: var(--orange);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.35rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-hover);
}
.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid color-mix(in srgb, var(--navy) 15%, transparent);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 6px;
  color: var(--navy);
  font-size: 1.25rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.75rem 1rem 1rem;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.75rem;
  font-weight: 500;
}
.mobile-nav.open {
  display: block;
}

.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 4rem 0;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}
.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero h1 {
  margin: 0.7rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.lede {
  margin-top: 1.2rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.meta {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.925rem;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px -28px rgba(11, 36, 48, 0.35);
}
.panel .kicker {
  color: var(--teal);
}
.checklist {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}
.checklist li {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.7rem;
}
.checklist li::before {
  content: "";
  width: 0.7rem;
  height: 0.45rem;
  margin-top: 0.4rem;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
  flex-shrink: 0;
}
.panel-note {
  margin: 1.4rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.925rem;
}

.section {
  padding: 4.5rem 0;
}
.section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--navy);
}
.section-lead {
  margin-top: 1rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.2rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}
.card h3 {
  margin: 0.85rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
}
.card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.icon {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.band {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}
.platforms li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem 0.75rem;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.925rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.steps {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}
.steps li {
  display: flex;
  gap: 1rem;
  margin-top: 1.15rem;
}
.num {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.steps strong {
  display: block;
  color: var(--navy);
}
.steps span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.925rem;
}

.cta-band {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.legal-links {
  margin-top: 1.4rem;
  display: flex;
  gap: 1rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--teal);
}
.legal-links a:hover {
  color: var(--orange);
}

.contact {
  background: var(--navy);
  color: var(--cream);
  scroll-margin-top: 7rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  padding: 4.2rem 0;
}
.contact h2 {
  margin: 0.7rem 0 0;
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.contact p {
  color: color-mix(in srgb, var(--cream) 75%, transparent);
  max-width: 36rem;
  line-height: 1.7;
}
.contact-card {
  background: var(--navy-mid);
  border: 1px solid color-mix(in srgb, var(--white) 10%, transparent);
  border-radius: 16px;
  padding: 1.4rem;
}
.contact-card a {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  min-height: 48px;
  padding: 0.35rem 0.4rem;
  color: var(--white);
}
.contact-card a:hover {
  color: var(--orange);
}
.badge {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--orange) 15%, transparent);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.contact-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: color-mix(in srgb, var(--cream) 50%, transparent);
}
.contact-card strong {
  font-size: 1.1rem;
}

.site-footer {
  background: var(--navy);
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 2.4rem;
  padding: 3.4rem 0;
}
.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.1rem;
}
.site-footer h2 {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 55%, transparent);
}
.site-footer ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.site-footer li {
  margin-top: 0.45rem;
}
.site-footer a:hover {
  color: var(--white);
}
.fineprint {
  border-top: 1px solid color-mix(in srgb, var(--white) 10%, transparent);
  padding: 1.4rem 0 1.7rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--cream) 55%, transparent);
}

.legal-hero {
  background: var(--orange);
  border-bottom: 1px solid var(--orange-hover);
  padding: 3.4rem 0;
}
.legal-hero .kicker {
  color: color-mix(in srgb, var(--white) 80%, transparent);
}
.legal-hero h1 {
  margin: 0.7rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 3rem);
  color: var(--white);
}
.legal-hero .sub {
  margin-top: 1rem;
  color: color-mix(in srgb, var(--white) 80%, transparent);
}
.legal-hero .sub a {
  color: var(--teal);
  font-weight: 600;
}
.doc {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3.4rem 1rem 4.5rem;
}
.doc h2 {
  margin: 2rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
}
.doc p,
.doc li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--ink) 90%, transparent);
}
.doc ul {
  padding-left: 1.4rem;
}
.note {
  margin-top: 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-grid,
  .cards,
  .split,
  .contact-grid,
  .footer-grid,
  .platforms {
    grid-template-columns: 1fr;
  }
  .platforms {
    grid-template-columns: 1fr 1fr;
  }
  .topbar .tag {
    display: none;
  }
  .hero,
  .section,
  .contact-grid {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }
}
