:root {
  --ink: #15283d;
  --ink-soft: #46596a;
  --teal: #176f71;
  --teal-dark: #115558;
  --coral: #d95f48;
  --coral-dark: #b94432;
  --paper: #fffdf8;
  --mist: #edf2f2;
  --line: #d7dfe1;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
}

a { color: var(--teal-dark); }

.ad-bar {
  min-height: 50px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.ad-bar a {
  color: var(--teal-dark);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: min(560px, 64vh);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.91) 35%, rgba(255, 253, 248, 0.12) 68%, rgba(255, 253, 248, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 74px;
}

.hero-content > * { max-width: 560px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1, h2, h3 { letter-spacing: 0; }

h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.06;
}

.hero-copy {
  margin: 20px 0 26px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
}

.hero-link {
  display: inline-block;
  padding: 15px 20px;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.hero-link:hover,
.hero-link:focus-visible { background: var(--teal-dark); }

.signup-band {
  padding: 68px 20px;
  background: var(--white);
}

.signup-layout {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 80px;
  align-items: start;
}

.signup-copy h2,
.education-band h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
}

.signup-copy > p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: var(--ink-soft);
  font-size: 17px;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.benefit-list li {
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 15px;
}

.benefit-list span {
  width: 32px;
  color: var(--coral-dark);
  font-weight: 700;
}

.lead-form {
  padding-left: 38px;
  border-left: 4px solid var(--teal);
}

.form-heading {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.lead-form > label[for="email"] {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
}

input[type="email"] {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid #98a6af;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

input[type="email"]:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(23, 111, 113, 0.18);
}

.field-help,
.notice-line,
.form-status {
  color: #5b6973;
  font-size: 12px;
  line-height: 1.5;
}

.field-help { margin: 7px 0 18px; }

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #394d5c;
  font-size: 12px;
  line-height: 1.5;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

button {
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  border: 0;
  border-radius: 4px;
  background: var(--coral);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
}

button:hover,
button:focus-visible { background: var(--coral-dark); }

button:disabled { cursor: wait; opacity: 0.7; }

.notice-line { margin: 12px 0 0; }

.form-status { min-height: 18px; margin: 10px 0 0; font-weight: 700; }
.form-status.error { color: #a33124; }
.form-status.success { color: #126160; }

.education-band {
  padding: 68px 20px;
  background: var(--mist);
}

.content-width { width: min(1080px, 100%); margin: 0 auto; }

.comparison-grid {
  margin-top: 34px;
  border-top: 1px solid #bdc9cc;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.comparison-grid article {
  padding: 28px 28px 12px 0;
  border-right: 1px solid #bdc9cc;
}

.comparison-grid article + article { padding-left: 28px; }
.comparison-grid article:last-child { border-right: 0; padding-right: 0; }
.comparison-grid h3 { margin: 0 0 8px; font-size: 19px; }
.comparison-grid p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.disclosure-band {
  padding: 40px 20px;
  background: #20354a;
  color: #e7edf1;
}

.disclosure-copy h2 { margin: 0 0 12px; color: var(--white); font-size: 20px; }
.disclosure-copy p { margin: 8px 0; font-size: 13px; line-height: 1.65; }

footer {
  padding: 28px 20px 36px;
  background: #13283c;
  color: #bfcbd3;
  text-align: center;
  font-size: 12px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

footer a { color: var(--white); }
.footer-address { margin-bottom: 0; }

.legal-page {
  width: min(820px, calc(100% - 40px));
  margin: 50px auto 80px;
}

.legal-page h1 { font-size: 42px; }
.legal-page h2 { margin-top: 34px; font-size: 23px; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page .legal-warning { padding: 16px 18px; border-left: 4px solid var(--coral); background: #fff2ee; }

.thank-you {
  min-height: calc(100vh - 50px);
  padding: 70px 20px;
  background: var(--mist);
  display: grid;
  place-items: center;
}

.thank-you-content {
  width: min(620px, 100%);
  padding: 40px;
  border-top: 5px solid var(--teal);
  background: var(--white);
}

.thank-you h1 { font-size: 42px; }

@media (max-width: 760px) {
  .hero { min-height: 525px; align-items: end; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(255, 253, 248, 0.12) 0%, rgba(255, 253, 248, 0.72) 38%, rgba(255, 253, 248, 0.99) 72%); }
  .hero-content { width: min(100% - 36px, 520px); padding: 190px 0 34px; }
  h1 { font-size: 40px; line-height: 1.08; }
  .hero-copy { margin: 14px 0 20px; font-size: 17px; line-height: 1.48; }
  .hero-link { display: block; text-align: center; }
  .signup-band, .education-band { padding: 46px 20px; }
  .signup-layout { grid-template-columns: 1fr; gap: 42px; }
  .lead-form { order: -1; }
  .signup-copy h2, .education-band h2 { font-size: 31px; }
  .lead-form { padding-left: 20px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-grid article, .comparison-grid article + article, .comparison-grid article:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #bdc9cc;
  }
  .comparison-grid article:last-child { border-bottom: 0; }
  .legal-page h1, .thank-you h1 { font-size: 34px; }
  .thank-you-content { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
