:root {
  --night: #05080a;
  --ink: #101722;
  --body: #354251;
  --muted: #667381;
  --line: #dfe7eb;
  --paper: #ffffff;
  --mist: #f5f8f9;
  --teal: #16d5c0;
  --green: #36c878;
  --blue: #2b70f7;
  --amber: #f1a83f;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

header {
  background: var(--night);
  color: #ffffff;
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 850;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 740;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--teal);
  color: #04110f;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(22, 213, 192, .25);
}

.ghost {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  color: #ffffff;
  font-weight: 800;
}

.hero {
  background: linear-gradient(135deg, #05080a 0%, #0d171d 52%, #13232a 100%);
  color: #ffffff;
  padding: 86px 0 74px;
}

.eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 14px 0 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: 0;
}

p {
  color: var(--body);
}

.hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

section {
  padding: 72px 0;
}

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

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 34px;
  align-items: start;
}

.wide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.panel,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(20, 35, 45, .08);
}

.panel {
  padding: 28px;
}

.card {
  padding: 22px;
}

.lead {
  font-size: 18px;
}

.answer {
  max-width: 780px;
}

.answer p,
.answer li {
  font-size: 17px;
}

.answer a,
footer a {
  color: #126a5e;
  font-weight: 780;
}

.check-list,
.link-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--body);
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
}

.link-list a {
  display: block;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-weight: 820;
}

.quote {
  margin: 22px 0 0;
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: #f2fbfa;
  color: var(--ink);
  font-size: 17px;
  font-weight: 720;
}

.fact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 15px;
}

.fact-table th,
.fact-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.fact-table th {
  width: 180px;
  color: var(--ink);
}

.sample-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(20, 35, 45, .08);
}

.sample-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.sample-table th,
.sample-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.sample-table th {
  background: #f7fafb;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-table tr:last-child td {
  border-bottom: 0;
}

.status-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(22, 213, 192, .32);
  border-radius: var(--radius);
  background: #f2fbfa;
  color: #105e55;
  font-size: 13px;
  font-weight: 780;
}

.cta {
  background: #071015;
  color: #ffffff;
}

.cta p {
  color: rgba(255, 255, 255, .72);
}

footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 840px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    gap: 12px 16px;
  }

  .grid,
  .wide-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-actions .ghost {
    width: 100%;
  }

  .fact-table th,
  .fact-table td {
    display: block;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    gap: 10px 12px;
    font-size: 13px;
  }

  .nav-links .button {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero {
    padding: 66px 0 58px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero p {
    max-width: 100%;
    font-size: 18px;
  }

  section {
    padding: 58px 0;
  }

  .panel,
  .card {
    padding: 22px;
  }

  .status-note {
    display: block;
    width: 100%;
  }

  .cta .button {
    width: 100%;
  }

  footer .wrap {
    overflow-wrap: anywhere;
  }
}
