:root {
  color-scheme: light;
  --ink: #101a25;
  --muted: #5f6b78;
  --line: #d8d4cb;
  --paper: #fbfaf6;
  --card: #ffffff;
  --night: #07111d;
  --night-soft: #122131;
  --sun: #f6bd24;
  --sun-soft: #ffe9a1;
  --green: #146b56;
  --green-soft: #e4f3ed;
  --danger: #9f2727;
  --danger-soft: #fff0f0;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
.wrap { width: min(100% - 40px, var(--max)); margin: 0 auto; }

.site-head {
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: var(--night);
}
.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}
.sun-mark {
  width: 22px;
  height: 22px;
  border: 5px solid var(--sun);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(246,189,36,.4);
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: rgba(255,255,255,.78); font-size: 14px; font-weight: 650; text-decoration: none; }
.nav-links a:hover { color: #fff; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: var(--ink);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: #273646; }
.button.sun { border-color: var(--sun); color: var(--ink); background: var(--sun); }
.button.sun:hover { background: #ffd054; }
.button.outline { color: var(--ink); background: transparent; }
.button.outline:hover { background: #fff; }
.button:disabled { cursor: wait; opacity: .62; }

.hero-simple {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(246,189,36,.21), transparent 24rem),
    linear-gradient(145deg, #07111d, #122536);
  padding: 92px 0 86px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--sun-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-simple h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.hero-simple .lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.75);
  font-size: clamp(18px, 2vw, 21px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.section { padding: 76px 0; }
.section.white { background: #fff; }
.section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.section-intro { max-width: 720px; margin: 0 0 34px; color: var(--muted); font-size: 18px; }
.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  background: var(--card);
  box-shadow: 0 15px 45px rgba(20,29,39,.06);
}
.card.featured { border-color: #e2b126; box-shadow: 0 18px 54px rgba(246,189,36,.15); }
.card h2, .card h3 { margin: 0 0 10px; line-height: 1.2; }
.card p { color: var(--muted); }
.price { margin: 18px 0 2px; font-size: 48px; font-weight: 850; letter-spacing: -.05em; }
.price-note { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.check-list { display: grid; gap: 12px; margin: 24px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { position: absolute; left: 0; color: var(--green); content: "✓"; font-weight: 900; }

.form-card { border: 1px solid var(--line); border-radius: 26px; padding: 30px; background: #fff; box-shadow: 0 20px 60px rgba(20,29,39,.1); }
.field { display: grid; gap: 7px; margin-top: 18px; }
.field span { font-size: 14px; font-weight: 750; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid #bdc4ca;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}
.field input:focus, .field textarea:focus { border-color: var(--green); outline: 3px solid rgba(20,107,86,.12); }
.hidden-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; margin: 18px 0 0; border-radius: 12px; padding: 13px 14px; }
.form-status.visible { display: block; }
.form-status.error { border: 1px solid #efb4b4; color: var(--danger); background: var(--danger-soft); }
.form-status.success { border: 1px solid #a7d5c8; color: #0d5946; background: var(--green-soft); }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 12px; }

.steps { counter-reset: step; }
.step { position: relative; padding-left: 56px; }
.step::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  content: counter(step);
  counter-increment: step;
  font-weight: 800;
}
.step h3 { margin: 0 0 7px; }
.step p { margin: 0; color: var(--muted); }

.legal { max-width: 780px; padding-top: 68px; padding-bottom: 78px; }
.legal h1 { margin: 0 0 10px; font-size: clamp(40px, 6vw, 60px); line-height: 1.05; letter-spacing: -.045em; }
.legal h2 { margin: 38px 0 10px; font-size: 25px; }
.legal p, .legal li { color: #3f4c58; }
.legal a { color: #0d6651; }

.site-foot { color: rgba(255,255,255,.72); background: var(--night); }
.foot { display: flex; min-height: 112px; align-items: center; justify-content: space-between; gap: 24px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 18px; }
.foot a { color: rgba(255,255,255,.78); font-size: 13px; text-decoration: none; }
.foot a:hover { color: #fff; }

@media (max-width: 780px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .nav { min-height: 64px; }
  .nav-links a:not(.button) { display: none; }
  .nav-links .button { min-height: 38px; padding: 0 15px; font-size: 12px; }
  .hero-simple { padding: 70px 0 68px; }
  .grid.two, .grid.three { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .card, .form-card { padding: 24px; }
  .foot { flex-direction: column; justify-content: center; padding: 28px 0; text-align: center; }
  .foot-links { justify-content: center; }
}

/* Product imagery band, shared by the pricing and report pages. */
.shot-band { padding: 0 0 12px; }
.shot-band figure { margin: 0; }
.shot-band img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 26px 60px rgba(20, 29, 39, 0.14);
}
.shot-band figcaption {
  margin-top: 12px;
  color: #6b7480;
  font-size: 12.5px;
  text-align: center;
}
