@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");

:root {
  --bg: #163662;
  --bg-deep: #102b4f;
  --panel: rgba(255, 255, 255, .07);
  --panel-strong: rgba(255, 255, 255, .11);
  --text: #fff;
  --muted: rgba(255, 255, 255, .78);
  --muted-soft: rgba(255, 255, 255, .56);
  --line: rgba(255, 255, 255, .16);
  --accent: #3e8afa;
  --accent-hover: #6aa7ff;
  --dark-text: #111;
  --radius: 5px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  position: relative;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(7, 19, 36, .34) 0, rgba(22, 54, 98, 0) 330px),
    radial-gradient(circle at 50% -160px, rgba(96, 143, 205, .35) 0, rgba(22, 54, 98, 0) 430px),
    var(--bg);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
}

a {
  color: var(--text);
  text-decoration: none;
  outline: none;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), calc(100% - 30px));
  height: 60px;
  margin: 0 auto 25px;
  padding: 0;
  background: transparent;
  border: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin: 10px 0;
}

.brand:hover {
  text-decoration: none;
}

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

.brand-mark {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  height: 60px;
  margin-left: 30px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  height: 60px;
  padding: 0 10px;
  margin-left: 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 1px;
}

.site-nav a:hover {
  color: var(--accent-hover);
}

.nav-toggle {
  display: none;
  height: 34px;
  min-width: 42px;
  margin: 13px 0;
  padding: 0 12px;
  cursor: pointer;
  color: var(--dark-text);
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-size: 20px;
  line-height: 34px;
}

.container {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 30px));
  margin: 0 auto;
  padding: 50px 0;
}

.page-title {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.kicker,
.eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-title h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.content {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.content h2 {
  margin: 1.7em 0 .55em;
  color: var(--text);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.content h3 {
  margin: 1.4em 0 .5em;
  color: var(--text);
  font-size: 22px;
  line-height: 1.3;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 16px;
  overflow-wrap: break-word;
}

.content p {
  margin: 0 0 1em;
}

.content ul,
.content ol {
  padding-left: 24px;
  margin: 0 0 1.2em;
}

.content li {
  margin: .35em 0;
}

.content strong {
  color: var(--text);
}

.content a:not(.btn):hover,
.site-footer a:hover {
  color: var(--accent-hover);
}

.hero-panel {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 28px 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lead {
  color: rgba(255, 255, 255, .9) !important;
  font-size: 18px !important;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 50px;
  padding: 15px 30px;
  color: var(--text) !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: scale(1.06);
  text-decoration: none;
}

.btn.primary {
  min-width: 250px;
  background: var(--accent);
  border: 4px solid #fff;
  box-shadow: none;
}

.btn.primary:hover {
  background: var(--accent);
  box-shadow: 0 0 20px rgba(62, 138, 250, .6);
}

.btn.secondary {
  min-width: 210px;
  color: var(--dark-text) !important;
  background: #fff;
  border: 4px solid rgba(255, 255, 255, .82);
}

.btn.secondary:hover {
  color: var(--dark-text) !important;
  box-shadow: 0 0 18px rgba(255, 255, 255, .28);
}

.btn.inline {
  margin-top: 4px;
}

.notice {
  color: var(--muted-soft) !important;
  font-size: 14px !important;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 8px;
}

.card {
  display: block;
  min-height: 156px;
  padding: 22px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card:hover {
  color: var(--text);
  background: var(--panel-strong);
  border-color: rgba(62, 138, 250, .55);
  text-decoration: none;
}

.card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.3;
}

.card span {
  display: block;
  color: var(--muted);
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.link-list a {
  display: block;
  padding: 14px 16px;
  color: var(--text);
  font-weight: 600;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.link-list a:hover {
  background: var(--panel-strong);
  border-color: rgba(62, 138, 250, .55);
}

.faq {
  margin-top: 34px;
}

.faq details {
  margin: 12px 0;
  padding: 15px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.faq p {
  margin: .8em 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--container), calc(100% - 30px));
  margin: 24px auto 0;
  padding: 0 0 40px;
  color: var(--muted-soft);
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  max-width: 620px;
  margin: .35em 0 0;
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

@media screen and (max-width: 900px) {
  .site-header {
    width: calc(100% - 30px);
  }

  .brand {
    height: 30px;
    margin: 15px 0;
  }

  .brand-logo {
    height: 30px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 220px;
    height: auto;
    margin: 0;
    padding: 10px 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
  }

  .site-nav.open {
    display: block;
  }

  .site-nav a {
    display: block;
    height: auto;
    margin: 0;
    padding: 10px 20px;
    color: var(--dark-text);
    line-height: normal;
    text-align: center;
  }

  .site-nav a:hover {
    color: var(--accent);
  }

  .container {
    width: calc(100% - 30px);
    padding: 26px 0 42px;
  }

  .page-title {
    margin-bottom: 26px;
  }

  .page-title h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.16;
  }

  .content {
    font-size: 15px;
  }

  .content p,
  .content li {
    font-size: 15px;
  }

  .hero-panel {
    padding: 22px 18px;
  }

  .lead {
    font-size: 16px !important;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 12px 24px;
    font-size: 16px;
  }

  .cards,
  .link-list {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
    width: calc(100% - 30px);
  }

  .footer-links {
    justify-content: flex-start;
  }
}
