:root {
  --navy: #062654;
  --ice: #69b8e5;
  --ink: #13243f;
  --muted: #53657c;
  --line: #dce5ee;
  --wash: #f2f7fb;
  --paper: #fff;
  --green: #08704d;
  --gold: #f1bd52;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: #1257a2;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.topnav {
  color: #fff;
  font-size: 14px;
}

.topnav .wrap {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.topnav a {
  color: var(--ice);
  font-weight: 700;
}

.topnav .brand {
  margin-right: auto;
  color: #fff;
}

.hero {
  overflow: hidden;
  padding: 58px 0 54px;
  color: #fff;
  background: var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.55fr);
  gap: 42px;
  align-items: center;
}

.kicker,
.eyebrow {
  margin: 0 0 9px;
  color: var(--ice);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero .sub {
  max-width: 720px;
  margin: 0;
  color: #d6e4f0;
  font-size: 19px;
}

.hero-mark {
  display: grid;
  min-height: 230px;
  place-items: center;
  border: 1px solid rgba(105, 184, 229, 0.35);
  border-radius: 24px;
  background: rgba(105, 184, 229, 0.09);
}

.hero-mark img {
  display: block;
  width: 176px;
  height: 176px;
  object-fit: contain;
}

.pilot-bar {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #3f5570;
  background: var(--wash);
  font-size: 13px;
}

.pilot-bar p {
  margin: 0;
}

main {
  padding: 42px 0 76px;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 30px;
  align-items: start;
}

.panel,
.watch-preview,
.info-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(18, 49, 82, 0.08);
}

.panel {
  padding: 30px;
}

h2 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.16;
}

h3 {
  color: var(--navy);
}

.lede {
  margin: 0 0 26px;
  color: var(--muted);
}

fieldset {
  min-width: 0;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

legend,
.field > label,
.field-label {
  display: block;
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 66px;
  padding: 13px;
  border: 1px solid #bac9d7;
  border-radius: 11px;
  cursor: pointer;
}

.choice:has(input:checked) {
  border-color: #2474a1;
  background: #eef7fc;
  box-shadow: inset 0 0 0 1px #2474a1;
}

.choice input,
.consent-row input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
}

.choice strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.choice small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.field {
  min-width: 0;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #acbece;
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
button:focus-visible,
.button-link:focus-visible {
  border-color: #2474a1;
  outline: 3px solid rgba(105, 184, 229, 0.45);
  outline-offset: 2px;
}

.hint {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.consent-box {
  margin: 24px 0 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--wash);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 14px;
}

.consent-copy {
  margin: 10px 0 0 30px;
  color: var(--muted);
  font-size: 12px;
}

button,
.button-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--navy);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

button {
  width: 100%;
}

button:hover,
.button-link:hover {
  background: #153b69;
}

.fine {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.watch-sidebar {
  display: grid;
  gap: 18px;
}

.watch-preview {
  position: sticky;
  top: 20px;
  overflow: hidden;
}

.preview-head {
  padding: 22px 22px 18px;
  color: #fff;
  background: var(--navy);
}

.preview-head .eyebrow {
  margin-bottom: 6px;
}

.preview-head h2 {
  margin: 0;
  color: #fff;
  font-size: 23px;
}

.preview-body {
  padding: 20px 22px 22px;
}

.preview-list {
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
  margin: 0;
}

.preview-list dt,
.preview-list dd {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.preview-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-list dd {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.preview-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.value-list {
  margin: 0;
  padding: 20px 22px 22px 42px;
}

.value-list li {
  margin: 8px 0;
}

.content-page {
  max-width: 820px;
}

.content-page section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.content-page section:last-child {
  border-bottom: 0;
}

.content-page p,
.content-page li {
  color: #354a65;
}

.confirmation-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(18, 49, 82, 0.08);
}

.confirmation-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.confirmation-card h1,
.utility-hero h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(31px, 5vw, 43px);
  line-height: 1.08;
}

.next-list {
  margin: 22px 0;
  padding: 18px 18px 18px 38px;
  border-radius: 13px;
  background: var(--wash);
}

.next-list li {
  margin: 8px 0;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.utility-hero {
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.management-form {
  max-width: 660px;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
}

footer {
  padding: 30px 0;
  color: #c8d6e6;
  background: var(--navy);
  font-size: 13px;
}

footer a {
  color: var(--ice);
}

footer p {
  margin: 0 0 10px;
}

@media (max-width: 820px) {
  .hero-grid,
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    display: none;
  }

  .watch-preview {
    position: static;
  }
}

@media (max-width: 620px) {
  .wrap {
    padding: 0 19px;
  }

  .hero {
    padding: 43px 0 40px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero .sub {
    font-size: 17px;
  }

  main {
    padding: 30px 0 54px;
  }

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

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

  .link-row {
    align-items: stretch;
    flex-direction: column;
  }

  .link-row .button-link {
    width: 100%;
  }
}
