:root {
  --navy-950: #001b33;
  --navy-900: #002b4a;
  --navy-800: #07385e;
  --accent: #3f8a7a;
  --accent-dark: #2d6d60;
  --accent-soft: #dff1ed;
  --gold: #c99a3d;
  --cream-50: #fbf7ef;
  --cream-100: #f6efe3;
  --white: #ffffff;
  --text: #102033;
  --muted: #5e6a78;
  --border: #e7dfd2;
  --error: #9f3028;
  --success: #276b52;
  --shadow-card: 0 12px 30px rgba(0, 27, 51, 0.08);
  --shadow-lift: 0 20px 54px rgba(0, 27, 51, 0.14);
  --radius: 12px;
  --container: min(1180px, calc(100vw - 32px));
  --font-body: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure,
ol,
ul,
fieldset {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid rgba(63, 138, 122, 0.5);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 500;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-weight: 850;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0, 27, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(0, 27, 51, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--navy-900);
}

.brand-mark {
  display: inline-grid;
  width: 58px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(63, 138, 122, 0.5);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--navy-950);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-900);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.main-nav {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 220;
  display: none;
  max-height: calc(100vh - 96px);
  padding: 12px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lift);
}

body.nav-open .main-nav {
  display: grid;
}

.main-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 780;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: var(--accent-soft);
}

.nav-contact {
  justify-content: center;
  margin-top: 6px;
  background: var(--accent);
  color: var(--white) !important;
}

.header-cta,
.button {
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.header-cta {
  display: none;
  background: var(--accent);
  color: var(--white);
}

.header-cta.static-visible {
  display: inline-flex;
}

.button {
  display: inline-flex;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(63, 138, 122, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: rgba(0, 43, 74, 0.16);
  background: var(--white);
  color: var(--navy-900);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero {
  position: relative;
  padding: 56px 0 44px;
  background:
    radial-gradient(circle at 88% 12%, rgba(63, 138, 122, 0.16), transparent 32%),
    linear-gradient(180deg, var(--white), var(--cream-50));
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(246, 239, 227, 0.82));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 30px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--navy-950);
  font-size: clamp(31px, 7vw, 48px);
  hyphens: manual;
}

.hero-title-line {
  display: block;
}

h2 {
  margin: 0 0 16px;
  color: var(--navy-950);
  font-size: clamp(30px, 7vw, 46px);
}

h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(17px, 3.8vw, 20px);
}

.hero-actions {
  display: grid;
  gap: 12px;
  max-width: 400px;
  margin-bottom: 18px;
}

.trustline {
  margin: 0;
  color: var(--navy-900);
  font-weight: 780;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
}

.hero-visual figcaption {
  display: grid;
  gap: 2px;
  width: min(320px, calc(100% - 32px));
  margin: -44px 16px 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(63, 138, 122, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.hero-visual figcaption strong {
  color: var(--navy-950);
}

.hero-visual figcaption span {
  color: var(--muted);
  font-size: 14px;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.trust-grid {
  display: grid;
}

.trust-grid article {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.trust-grid article:last-child {
  border-bottom: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy-950);
}

.trust-grid span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 60px 0;
}

.section:nth-of-type(even) {
  background: var(--white);
}

.check-section,
.support-section,
.day-section,
.region-section,
.voices-section,
.form-section {
  background: var(--cream-50);
}

.target-section,
.task-section,
.autonomy-section,
.start-section,
.learning-section,
.income-section,
.trust-section,
.faq-section {
  background: var(--white);
}

.section-head {
  max-width: 840px;
  margin-bottom: 28px;
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p,
.section-copy p,
.feature-card p,
.mini-card p,
.profile-list p,
.quote-card p,
.region-card p,
.day-flow p,
.step-list span,
.faq-item p,
.privacy-note {
  color: var(--muted);
}

.split-grid,
.media-grid,
.faq-grid,
.form-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.feature-grid,
.profile-list,
.metrics-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

.feature-card,
.mini-card,
.profile-list article,
.check-card,
.highlight-card,
.region-card,
.quote-card,
.contact-card,
.faq-item,
.contact-form,
.metrics-grid article,
.day-flow li,
.step-list li {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.feature-card,
.mini-card,
.profile-list article,
.highlight-card,
.region-card,
.quote-card,
.contact-card,
.metrics-grid article {
  padding: 22px;
}

.number,
.icon-dot {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.icon-dot::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.check-card {
  display: grid;
  gap: 16px;
  padding: 18px;
}

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

legend {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-weight: 850;
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-height: 52px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-50);
  color: var(--navy-950);
  font-weight: 720;
}

.choice + .choice {
  margin-top: 10px;
}

.choice input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.choice:has(input:checked) {
  border-color: rgba(63, 138, 122, 0.72);
  background: var(--accent-soft);
}

.check-result {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--navy-950);
  color: var(--white);
}

.check-result span {
  color: #aee1d5;
  font-size: 13px;
  font-weight: 860;
  text-transform: uppercase;
}

.check-result strong {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
}

.check-result p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.image-card {
  margin: 0;
}

.image-card img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 15px;
  height: 8px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.day-flow,
.step-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.day-flow li,
.step-list li {
  padding: 20px;
}

.day-flow span,
.step-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-list strong {
  color: var(--navy-900);
}

.quote-card {
  align-self: start;
  background: var(--accent-soft);
}

.metrics-grid article {
  display: grid;
  gap: 8px;
  text-align: center;
}

.metrics-grid strong {
  color: var(--accent-dark);
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1;
}

.metrics-grid span {
  color: var(--muted);
  font-weight: 720;
}

.contact-band {
  padding: 54px 0;
  background:
    linear-gradient(135deg, rgba(0, 27, 51, 0.98), rgba(0, 43, 74, 0.96)),
    var(--navy-950);
  color: var(--white);
}

.contact-band h2 {
  color: var(--white);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  box-shadow: none;
  font-style: normal;
}

.contact-card a,
.contact-inline a,
.footer-contact a {
  font-weight: 820;
}

.contact-card a {
  color: #aee1d5;
}

.faq-item {
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 850;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 22px;
  line-height: 1;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item div {
  padding: 0 18px 18px;
}

.faq-item p {
  margin-bottom: 0;
}

.contact-inline {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-inline strong {
  color: var(--navy-900);
}

.contact-inline a {
  color: var(--accent-dark);
}

.contact-form {
  padding: 18px;
}

.field-grid {
  display: grid;
  gap: 0;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
}

.field label {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-50);
  color: var(--text);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(63, 138, 122, 0.16);
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-field label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text);
  font-weight: 680;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.privacy-note {
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  font-size: 14px;
}

.field-error,
.form-error,
.form-status {
  min-height: 18px;
  margin: 0;
  font-size: 13px;
}

.field-error,
.form-error {
  color: var(--error);
}

.form-status {
  color: var(--success);
  font-weight: 780;
}

[aria-invalid="true"] {
  border-color: var(--error) !important;
}

.site-footer {
  padding: 42px 0 92px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand .brand-mark {
  color: var(--navy-900);
}

.site-footer p {
  max-width: 320px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 10px;
  color: #aee1d5;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer a:not(.brand),
.site-footer strong {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a:not(.brand):hover,
.site-footer a:not(.brand):focus-visible {
  color: var(--white);
}

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 260;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-lift);
  font-weight: 900;
}

body.show-sticky-cta .mobile-sticky-cta {
  display: flex;
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
  }

  .button {
    min-width: 180px;
  }

  .trust-grid,
  .feature-grid.three,
  .feature-grid.four,
  .field-grid,
  .footer-grid,
  .metrics-grid,
  .day-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid article {
    padding-right: 18px;
    padding-left: 18px;
  }

  .trust-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .contact-form {
    padding: 24px;
  }

  .field-grid {
    gap: 14px;
  }
}

@media (min-width: 880px) {
  .site-header {
    padding: 0 28px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    gap: 2px;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav a {
    position: relative;
    min-height: 42px;
    padding: 0 10px;
    background: transparent;
    font-size: 14px;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 2px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 160ms ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: transparent;
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.is-active::after {
    transform: scaleX(1);
  }

  .nav-contact {
    display: none !important;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero {
    padding: 86px 0 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 46px;
  }

  h1 {
    font-size: clamp(42px, 3.5vw, 48px);
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-grid article,
  .trust-grid article:nth-last-child(-n + 2) {
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .trust-grid article:last-child {
    border-right: 0;
  }

  .section {
    padding: 88px 0;
  }

  .split-grid,
  .media-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) 280px auto;
  }

  .feature-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .check-card {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .day-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .step-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  }

  .mobile-sticky-cta {
    display: none !important;
  }
}

@media (min-width: 1120px) {
  .main-nav a {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 879px) {
  .brand-copy small {
    max-width: 190px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100vw - 32px);
  }

  .site-header {
    gap: 10px;
  }

  .brand-mark {
    width: 52px;
  }

  .brand-copy strong,
  .brand-copy small {
    max-width: 156px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual figcaption {
    width: calc(100% - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }

  .hero-actions .button,
  .contact-band .button,
  .contact-form .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .feature-card,
  .mini-card,
  .profile-list article,
  .check-card,
  .highlight-card,
  .region-card,
  .quote-card,
  .contact-card,
  .faq-item,
  .contact-form,
  .metrics-grid article,
  .day-flow li,
  .step-list li {
    padding: 18px;
  }

  .contact-band {
    padding: 44px 0;
  }

  .site-footer {
    padding-bottom: 88px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
