:root {
  --navy: #16324f;
  --teal: #14978e;
  --mint: #ddf5ef;
  --coral: #ff756f;
  --yellow: #ffd84d;
  --cream: #fff9ee;
  --lilac: #eee9ff;
  --gray: #617181;
  --lede: #dce9ee;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.nav-wrap { position: sticky; top: 0; z-index: 9; padding: 16px 14px 0; }
.nav {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 22px;
  border-radius: 99px;
  background: #fffdf8e8;
  border: 1px solid #16324f22;
  box-shadow: 0 12px 36px #16324f18;
}
.brand { font-size: 22px; font-weight: 900; color: var(--navy); }
.brand i { color: var(--coral); font-style: normal; }
.links { display: flex; gap: 22px; font-size: 14px; font-weight: 900; }
.links a.active { color: var(--teal); }
.cta, .btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 99px;
  font-weight: 900;
}
.cta { background: var(--coral); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.hero, .band { padding: 64px 0; }
.hero { background: var(--navy); color: #fff; }
.hero-grid { display: grid; gap: 40px; }
.kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero .kicker { color: #9ce9dd; }
h1, h2, h3 {
  margin: 0;
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 900;
}
h1 { font-size: clamp(44px, 7vw, 92px); }
h1 em { color: var(--yellow); font-style: normal; }
h2 { font-size: clamp(36px, 5vw, 72px); max-width: 1060px; }
h3 { font-size: 28px; }
.lede, .body {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
  max-width: 720px;
  font-weight: 700;
}
.lede { color: var(--lede); margin: 28px 0 0; }
.body { color: var(--gray); margin: 24px 0 0; }
.fine { color: var(--lede); font-size: 14px; font-weight: 700; max-width: 36rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 16px; }
.phone {
  width: min(62vw, 260px);
  margin: 0 auto;
  border: 10px solid #fff;
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 35px 80px #07182b44;
  transform: rotate(3deg);
}
.phone-in { background: var(--cream); padding: 20px; color: var(--navy); }
.row { display: flex; justify-content: space-between; font-size: 12px; font-weight: 900; }
.chip { background: var(--yellow); border-radius: 99px; padding: 2px 8px; }
.photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
.tile { aspect-ratio: 4/5; border-radius: 20px; padding: 10px; font-size: 12px; font-weight: 900; color: var(--gray); }
.muted { background: var(--lilac); }
.live { background: var(--mint); }
.pass { background: var(--navy); color: #fff; border-radius: 20px; padding: 14px; }
.pass small { color: #9ce9dd; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.mint { background: var(--mint); }
.lilac { background: var(--lilac); }
.yellow { background: var(--yellow); }
.cream { background: var(--cream); }
.cards, .steps { display: grid; gap: 16px; margin-top: 36px; }
.card { padding: 28px; border-radius: 28px; background: #fff; }
.card p { color: var(--gray); font-weight: 700; line-height: 1.45; }
.num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
}
.form-shell { background: #fff; border-radius: 28px; overflow: hidden; min-height: 1180px; box-shadow: 0 24px 80px #16324f18; }
iframe { width: 100%; height: 1180px; border: 0; }
.center { text-align: center; }
.gray { color: var(--gray); font-weight: 700; }
.teal { color: var(--teal); font-weight: 900; }
footer { background: var(--teal); color: var(--navy); padding: 48px 0; font-weight: 700; }
@media (min-width: 800px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .steps { grid-template-columns: repeat(5, 1fr); }
  .cards { grid-template-columns: 1fr 1fr; }
  .cards.three { grid-template-columns: 1fr 1fr 1fr; }
  .phone { width: 280px; }
}
@media (max-width: 799px) {
  .hide-sm { display: none; }
}
