@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;
  width: min(var(--container), calc(100% - 30px));
  min-height: 60px;
  margin: 0 auto 25px;
  padding: 0;
  background: transparent;
  border: 0;
}

.site-header > .container {
  width: 100%;
  padding: 0;
}

.nav,
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin: 10px 0;
  color: var(--text);
  font-weight: 700;
}

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

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

.logo {
  display: none;
}

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

.site-nav a,
.nav-links 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,
.site-nav a.active,
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-hover);
}

.nav-links a.cta {
  min-height: 38px;
  height: auto;
  padding: 9px 18px;
  color: var(--text);
  line-height: 1.2;
  background: var(--accent);
  border: 3px solid #fff;
  border-radius: 50px;
}

.nav-links a.cta:hover {
  color: var(--text);
  box-shadow: 0 0 18px rgba(62, 138, 250, .55);
}

.nav-toggle,
.menu-button {
  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;
}

.hero {
  padding: 0;
}

.hero .container {
  padding-top: 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: center;
}

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

.page-title .container {
  width: 100%;
  padding-bottom: 0;
}

.breadcrumbs {
  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;
}

.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;
}

.hero h1,
.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;
}

.hero h1 {
  margin-top: 10px;
}

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

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

.content .container {
  width: 100%;
  padding-top: 0;
}

.content article {
  max-width: 1040px;
  margin: 0 auto;
}

.content h2,
.section 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,
.section h3,
.tile h3 {
  margin: 1.4em 0 .5em;
  color: var(--text);
  font-size: 22px;
  line-height: 1.3;
}

.tile h3 {
  margin-top: 0;
}

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

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

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

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

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

.content code {
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2px 6px;
}

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

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

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

.page-title .actions,
.hero-actions {
  justify-content: center;
}

.button,
.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;
}

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

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

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

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

.button:not(.primary):hover,
.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;
}

.notice.warning {
  padding: 15px 18px;
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid #fff;
  border-radius: var(--radius);
}

.section {
  padding: 0;
}

.section > .container {
  padding-top: 20px;
  padding-bottom: 32px;
}

.grid-3,
.grid-2,
.cards {
  display: grid;
  gap: 16px;
  margin: 20px auto 8px;
}

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

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

.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);
}

.tile {
  min-height: 0;
}

.tile a,
.card a {
  font-weight: 600;
}

.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);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 50px;
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent-hover);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(106, 167, 255, .8);
}

.domain-box {
  margin: 18px 0;
  padding: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.domain-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.domain-box code {
  color: var(--text);
  font-size: 20px;
  overflow-wrap: anywhere;
}

.small {
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.6;
}

.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 {
  width: min(var(--container), calc(100% - 30px));
  margin: 24px auto 0;
  padding: 0 0 40px;
  color: var(--muted-soft);
}

.site-footer > .container {
  width: 100%;
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, .6fr));
  gap: 24px;
  align-items: start;
}

.site-footer strong,
.site-footer h4 {
  margin: 0 0 10px;
  color: var(--text);
}

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

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

.footer-grid > div:not(:first-child) a {
  display: block;
  margin: 7px 0;
}

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

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

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

  .brand-logo {
    height: 30px;
  }

  .nav-toggle,
  .menu-button {
    display: block;
  }

  .site-nav,
  .nav-links {
    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,
  .nav-links.open {
    display: block;
  }

  .site-nav a,
  .nav-links a,
  .nav-links a.cta {
    display: block;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 10px 20px;
    color: var(--dark-text) !important;
    line-height: normal;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav a:hover,
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent) !important;
  }

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

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

  .hero-grid,
  .grid-3,
  .grid-2,
  .cards,
  .link-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .content {
    font-size: 15px;
  }

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

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

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

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

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

  .card {
    min-height: 0;
  }

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

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