:root {
  --navy: #102a43;
  --navy-2: #173f5f;
  --teal: #087e8b;
  --teal-soft: #dff3f1;
  --orange: #f28c58;
  --cream: #fbfaf6;
  --white: #fff;
  --ink: #18313d;
  --muted: #60727b;
  --line: #dbe4e5;
  --shadow: 0 24px 70px rgba(16, 42, 67, 0.13);
  --radius: 22px;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font:
    16px/1.65 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  letter-spacing: -0.035em;
}
h1 {
  max-width: 740px;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.01;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  line-height: 1.06;
}
h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(219, 228, 229, 0.8);
  backdrop-filter: blur(16px);
}
.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 50% 16px;
  background: linear-gradient(135deg, var(--teal), var(--navy-2));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  color: var(--navy);
  font-size: 1.05rem;
}
.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}
.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.site-header nav a,
.site-footer nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--teal);
}
.nav-cta {
  padding: 9px 16px;
  border: 1px solid var(--navy);
  border-radius: 999px;
}
.section-pad,
.hero,
.disclosure-bar {
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-top: clamp(26px, 4vw, 46px);
  padding-bottom: clamp(26px, 4vw, 46px);
  overflow: hidden;
}
.hero-copy {
  position: relative;
}
.hero-copy:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -100px;
  top: -55px;
  border-radius: 50%;
  background: var(--teal-soft);
  filter: blur(3px);
  z-index: -1;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}
.button.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.18);
}
.button.primary:hover {
  background: var(--teal);
}
.button.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}
.hero-media {
  position: relative;
  height: min(470px, calc(100svh - 210px));
  min-height: 390px;
  margin: 0;
  border-radius: 180px 180px var(--radius) var(--radius);
  overflow: hidden;
  background: var(--teal-soft);
  box-shadow: var(--shadow);
}
.disclosure-bar {
  padding-top: 8px;
  padding-bottom: 8px;
  background: var(--navy);
  color: #d9e8ef;
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: center;
}
.disclosure-bar strong {
  color: #fff;
}
.intro-section,
.prep-section {
  padding-top: clamp(70px, 9vw, 124px);
  padding-bottom: clamp(70px, 9vw, 124px);
}
.section-heading {
  max-width: 760px;
}
.section-heading > p:last-child,
.feature-copy > p,
.contact-section > div > p {
  color: var(--muted);
  font-size: 1.07rem;
}
.step-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 42px;
}
.step-grid article,
.card-grid article {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
}
.feature-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  padding-top: clamp(78px, 10vw, 138px);
  padding-bottom: clamp(78px, 10vw, 138px);
  background: #fff;
}
.feature-alt {
  background: var(--teal-soft);
}
.feature-alt .feature-media {
  order: 2;
}
.feature-media {
  position: relative;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}
.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}
.resource-note {
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--cream);
  font-size: 0.9rem !important;
}
.resource-note a {
  color: var(--teal);
  font-weight: 800;
}
.prep-section {
  background: var(--cream);
}
.card-grid {
  grid-template-columns: repeat(4, 1fr);
}
.card-grid article {
  min-height: 220px;
}
.card-grid article > span {
  display: block;
  margin-bottom: 44px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-grid p {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--muted);
}
.role-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 110px);
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
  background: var(--navy);
  color: #d8e6ec;
}
.role-section h2 {
  color: #fff;
}
.role-section .eyebrow {
  color: #79d4cf;
}
.role-copy p {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.role-copy p:last-child {
  border-bottom: 0;
}
.role-copy strong {
  color: #fff;
}
.text-link {
  color: #fff;
  font-weight: 850;
  text-underline-offset: 5px;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(310px, 430px);
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
  background: #fff;
}
.contact-card {
  display: grid;
  gap: 8px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}
.contact-card span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-card a {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}
.contact-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 14px 0;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  background: #091c2c;
  color: #dce8ed;
}
.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}
.footer-brand strong {
  color: #fff;
}
.footer-brand p {
  margin: 2px 0 0;
  color: #9fb3bd;
  font-size: 0.8rem;
}
.site-footer nav a {
  color: #dce8ed;
}
.copyright {
  margin: 0;
  color: #8da4af;
  font-size: 0.8rem;
}
.legal-page,
.legal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) 24px;
}
.legal-page h1,
.legal-shell h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}
.updated {
  color: var(--muted);
}
.notice-card {
  padding: 20px 22px;
  margin: 34px 0 16px;
  border: 1px solid #fac8ad;
  border-left: 5px solid var(--orange);
  border-radius: 14px;
  background: #fff5ef;
  color: #66361f;
}
.legal-page section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.legal-page section:last-child {
  border-bottom: 0;
}
.legal-page section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}
.legal-page section p {
  color: var(--muted);
}
.legal-page section a {
  color: var(--teal);
  font-weight: 800;
}
.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 440px);
  gap: 40px;
  align-items: start;
  max-width: 1180px;
}
.contact-card-large {
  margin-top: 52px;
}
.contact-card-large a {
  white-space: nowrap;
}
.contact-card-large p {
  color: var(--muted);
}
@media (max-width: 980px) {
  .hero,
  .feature-section,
  .role-section,
  .contact-section,
  .legal-shell {
    grid-template-columns: 1fr;
  }
  .hero-media {
    height: 500px;
    max-width: 720px;
  }
  .feature-alt .feature-media {
    order: 0;
  }
  .feature-media {
    height: 440px;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer {
    grid-template-columns: 1fr auto;
  }
  .copyright {
    grid-column: 1/-1;
  }
  .contact-card-large {
    margin-top: 0;
  }
  .contact-card-large a {
    white-space: normal;
  }
}
@media (min-width: 981px) {
  .card-grid h3 {
    min-height: 3em;
  }
}
@media (max-width: 720px) {
  h1 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(2.05rem, 9.5vw, 2.75rem);
    line-height: 1.03;
  }
  h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }
  .site-header nav {
    width: 100%;
    gap: 8px 14px;
    flex-wrap: wrap;
    overflow: visible;
  }
  .site-header nav a {
    flex: 0 0 auto;
    font-size: 0.82rem;
  }
  .nav-cta {
    padding: 7px 13px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .brand small {
    display: none;
  }
  .section-pad,
  .hero,
  .disclosure-bar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 20px;
    padding-bottom: 24px;
  }
  .hero-copy,
  .hero-media,
  .feature-copy,
  .feature-media,
  .section-heading,
  .contact-card {
    min-width: 0;
  }
  .hero-media {
    width: 100%;
    height: clamp(220px, 31svh, 300px);
    border-radius: 70px 70px var(--radius) var(--radius);
  }
  .hero-actions {
    display: flex;
    flex-wrap: nowrap;
    margin: 14px 0 16px;
  }
  .button {
    width: auto;
    min-height: 46px;
    padding: 11px 15px;
    font-size: 0.87rem;
    text-align: center;
  }
  .trust-row {
    gap: 7px;
  }
  .trust-row span {
    padding: 6px 9px;
    font-size: 0.7rem;
  }
  .lead {
    font-size: 0.94rem;
    line-height: 1.42;
  }
  .disclosure-bar {
    padding: 6px 16px;
    font-size: 0.68rem;
    line-height: 1.28;
  }
  .step-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
  .step-grid article:nth-child(2),
  .step-grid article:nth-child(3) {
    transform: none;
  }
  .feature-section {
    grid-template-columns: 1fr;
  }
  .feature-media {
    height: 330px;
  }
  .feature-copy,
  .role-copy,
  .legal-page,
  .legal-shell {
    overflow-wrap: anywhere;
  }
  .role-section {
    grid-template-columns: 1fr;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .site-footer nav {
    gap: 18px;
  }
  .copyright {
    grid-column: auto;
  }
  .legal-page,
  .legal-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact-card {
    padding: 24px;
  }
}
@media (max-width: 400px) {
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .button {
    width: 100%;
  }
  .site-header nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
}
.hero-media img {
  object-position: center 58%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
