:root {
  --navy: #061a2d;
  --blue: #061a2d;
  --teal: #118c8b;
  --mist: #f2fafa;
  --ink: #061a2d;
  --muted: #486171;
  --line: #cfe4e4;
  --white: #fff;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #fff;
  padding: 10px;
  z-index: 99;
}
.skip:focus {
  left: 8px;
}
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: auto;
  padding: 0 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--teal);
  display: grid;
  place-items: center;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: -0.08em;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  color: #355062;
}
nav a:hover,
nav .active {
  color: var(--teal);
}
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 12px 18px;
}
.menu {
  display: none;
  border: 0;
  background: none;
  font: inherit;
}
.hero {
  background: var(--navy);
  color: #fff;
  min-height: 680px;
  padding: 90px max(28px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(67, 190, 190, 0.18);
  border-radius: 50%;
  right: -200px;
  top: -190px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 18px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(46px, 5.7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 760px;
  margin: 0 0 26px;
}
.lead {
  font-size: 19px;
  color: #c3d0d9;
  max-width: 620px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 34px 0;
}
.button {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 15px 22px;
  text-decoration: none;
  font-weight: 750;
  border: 0;
  cursor: pointer;
}
.button:hover {
  background: #0e7779;
}
.text-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.text-link span {
  color: var(--teal);
}
.trust-list {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  color: #a9bcc8;
  font-size: 13px;
}
.trust-list li:before {
  content: "✓";
  color: #4bc0bd;
  margin-right: 8px;
}
.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 53, 79, 0.6);
  padding: 26px;
  position: relative;
  z-index: 1;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}
.panel-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #9eb3c1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding-bottom: 18px;
}
.status {
  color: #65c9c6;
}
.score {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 35px 0;
}
.score strong {
  font: normal 68px/1 Georgia;
  color: #63c4c2;
}
.score span {
  font: 700 20px/1.3 Georgia;
}
.score p {
  font-size: 13px;
  color: #abc0cc;
}
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}
.metric-grid div {
  background: #0d2d47;
  padding: 20px;
}
.metric-grid span {
  display: block;
  color: #7994a7;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.metric-grid b {
  font-size: 13px;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 105px 28px;
}
.intro {
  text-align: center;
  max-width: 840px;
}
.intro h2,
.process h2,
.cta-band h2,
.page-hero h1 {
  font: 400 clamp(38px, 5vw, 58px) / 1.1 Georgia;
  margin: 0 0 24px;
  letter-spacing: -0.025em;
}
.intro > p:last-child {
  color: var(--muted);
  font-size: 18px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 10px;
}
.service-grid article {
  border-top: 2px solid var(--navy);
  padding: 28px 28px 30px 0;
  margin-right: 26px;
}
.service-grid article > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}
.service-grid h3 {
  font: 400 25px Georgia;
}
.service-grid p {
  color: var(--muted);
  font-size: 14px;
}
.service-grid a {
  color: var(--blue);
  font-weight: 750;
  font-size: 13px;
}
.pricing {
  max-width: none;
  background: var(--mist);
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
}
.pricing-heading {
  max-width: 720px;
  margin-bottom: 46px;
}
.pricing-heading h2 {
  font: 400 clamp(38px, 5vw, 58px) / 1.1 Georgia;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.pricing-heading > p:last-child {
  color: var(--muted);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-top: 5px solid var(--teal);
  padding-top: 30px;
}
.price {
  color: var(--navy) !important;
  font: 400 52px/1 Georgia;
  margin: 6px 0 22px;
}
.price span {
  color: var(--teal);
  font-size: 24px;
  vertical-align: top;
}
.price-card > p:not(.kicker):not(.price) {
  color: var(--muted);
  min-height: 52px;
}
.price-card ul {
  padding-left: 20px;
  margin: 18px 0 30px;
  color: var(--muted);
  flex: 1;
}
.price-card li {
  margin-bottom: 9px;
}
.price-card .button {
  text-align: center;
}
.monthly-plan {
  margin-top: 20px;
  padding: 32px 36px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.8fr 1.4fr auto;
  gap: 34px;
  align-items: center;
}
.monthly-plan h3 {
  font: 400 42px/1 Georgia;
  margin: 0;
}
.monthly-plan h3 span {
  font:
    500 15px/1.2 Inter,
    sans-serif;
  color: #b9d1d3;
}
.monthly-plan ul {
  margin: 0;
  padding-left: 20px;
  color: #d6e4e6;
  font-size: 14px;
}
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: #f4f8f9;
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  padding-right: max(28px, calc((100vw - var(--max)) / 2));
}
.process ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process li {
  display: grid;
  border-top: 1px solid var(--line);
  padding: 23px 0;
}
.process li span {
  color: var(--muted);
  font-size: 14px;
}
.cta-band {
  padding: 100px 28px;
  text-align: center;
  background: var(--blue);
  color: #fff;
}
.cta-band p:not(.eyebrow) {
  color: #c6d5de;
}
.light {
  background: #fff;
  color: var(--navy);
  margin-top: 18px;
}
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 100px max(28px, calc((100vw - var(--max)) / 2));
}
.page-hero p:last-child {
  max-width: 720px;
  color: #c3d0d9;
  font-size: 19px;
}
.content {
  max-width: var(--max);
  margin: auto;
  padding: 80px 28px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  border: 1px solid var(--line);
  padding: 36px;
}
.card h2,
.card h3 {
  font: 400 29px Georgia;
  margin-top: 0;
}
.card p,
.prose p {
  color: var(--muted);
}
.card ul {
  padding-left: 18px;
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.kicker {
  font-weight: 800;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.placeholder {
  background: linear-gradient(135deg, var(--mist), #d7e8e9);
  min-height: 270px;
  display: grid;
  place-items: center;
  color: var(--blue);
  padding: 35px;
  text-align: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.form-honeypot {
  display: none;
}
label {
  font-size: 13px;
  font-weight: 750;
}
input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #b8c7ce;
  font: inherit;
  background: #fff;
}
textarea {
  min-height: 140px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(22, 143, 145, 0.35);
  outline-offset: 2px;
}
.notice {
  font-size: 12px;
  color: var(--muted);
}
footer {
  background: #061523;
  color: #c6d3dc;
  padding: 70px max(28px, calc((100vw - var(--max)) / 2)) 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 45px;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer a {
  text-decoration: none;
  font-size: 14px;
}
.footer-brand {
  color: #fff;
}
.copyright {
  grid-column: 1/-1;
  border-top: 1px solid #243847;
  padding-top: 24px;
  font-size: 12px;
}
.prose {
  max-width: 820px;
}
.prose h2 {
  font: 400 30px Georgia;
  margin-top: 45px;
}
@media (max-width: 820px) {
  .site-header {
    height: 72px;
  }
  .menu {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    top: 72px;
    background: #fff;
    padding: 22px 28px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  .site-header nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
    gap: 45px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .trust-list {
    flex-direction: column;
    gap: 8px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process,
  .split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .monthly-plan {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  footer > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 520px) {
  .brand {
    font-size: 11px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-panel {
    padding: 18px;
  }
  .score {
    grid-template-columns: 70px 1fr;
  }
  .score strong {
    font-size: 52px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 75px 22px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .copyright {
    grid-column: 1;
  }
}
