:root {
  --ink: #102326;
  --ink-soft: #24464b;
  --paper: #f5fbf8;
  --white: #ffffff;
  --mist: #e4f4ee;
  --line: rgba(16, 35, 38, 0.14);
  --blue: #2454ff;
  --aqua: #20c7a7;
  --lime: #c8ef62;
  --coral: #ff6d5d;
  --shadow: 0 24px 70px rgba(16, 35, 38, 0.16);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(36, 84, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(32, 199, 167, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
  color: var(--ink);
  font-family: var(--font-body);
}

body::selection {
  background: var(--lime);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(16, 35, 38, 0.78);
  color: var(--white);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.brand,
.nav-links,
.header-action,
.hero-actions,
.hero-metrics,
.trust-list div,
.form-header,
.submit-button,
.primary-button,
.ghost-button {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), var(--aqua));
  color: var(--ink);
  font-size: 14px;
}

.nav-links {
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a,
.header-action,
.primary-button,
.ghost-button,
.submit-button {
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.header-action:hover,
.primary-button:hover,
.ghost-button:hover,
.submit-button:hover {
  transform: translateY(-2px);
}

.header-action {
  min-height: 44px;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.header-action svg,
.primary-button svg,
.ghost-button svg,
.submit-button svg,
.trust-list svg,
.journey-item svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 150px max(24px, calc((100vw - 1120px) / 2)) 86px;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1751522915538-e67be6719c9c?auto=format&fit=crop&w=1800&q=78");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  width: min(420px, calc(100% - 48px));
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(200, 239, 98, 0.22), rgba(32, 199, 167, 0.08)),
    rgba(255, 255, 255, 0.12);
  content: "";
  backdrop-filter: blur(12px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 28, 31, 0.9) 0%, rgba(8, 28, 31, 0.7) 42%, rgba(8, 28, 31, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 28, 31, 0.58), rgba(8, 28, 31, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--aqua);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: 58px;
  line-height: 1.02;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.primary-button,
.ghost-button,
.submit-button {
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.primary-button {
  padding: 0 22px;
  background: var(--lime);
  color: var(--ink);
}

.ghost-button {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.hero-metrics div {
  min-width: 150px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-family: var(--font-display);
  font-size: 25px;
}

.hero-metrics span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.life-stage-section,
.journey-section,
.quote-section {
  padding: 88px max(24px, calc((100vw - 1120px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading.compact {
  display: block;
  max-width: 650px;
}

.section-heading h2,
.quote-copy h2 {
  color: var(--ink);
  font-size: 42px;
  line-height: 1.12;
}

.section-heading p:not(.eyebrow),
.quote-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stage-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.stage-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.stage-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 35, 38, 0.02) 24%, rgba(16, 35, 38, 0.86) 100%);
  content: "";
}

.stage-card:hover img {
  transform: scale(1.055);
}

.stage-card-content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  color: var(--white);
}

.stage-card-content span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(200, 239, 98, 0.9);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.stage-card-content h3 {
  font-size: 22px;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .stage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.journey-section {
  background: var(--ink);
  color: var(--white);
}

.journey-section .section-heading h2 {
  color: var(--white);
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.journey-item {
  position: relative;
  min-height: 260px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(36, 84, 255, 0.18), rgba(32, 199, 167, 0.08)),
    #132d31;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
}

.journey-item svg {
  width: 34px;
  height: 34px;
  margin-bottom: 52px;
  color: var(--lime);
}

.journey-item h3 {
  font-size: 23px;
  line-height: 1.22;
}

.journey-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.6;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
}

.quote-copy {
  max-width: 520px;
}

.quote-copy p {
  margin-top: 18px;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.trust-list div {
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-weight: 800;
}

.trust-list svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(228, 244, 238, 0.96)),
    var(--white);
  box-shadow: var(--shadow);
}

.lead-form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-header {
  gap: 16px;
  padding-bottom: 4px;
}

.form-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--lime);
}

.form-icon svg {
  width: 24px;
  height: 24px;
}

.form-header h3 {
  font-size: 25px;
}

.form-header p {
  margin: 4px 0 0;
  color: var(--ink-soft);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 14px;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(16, 35, 38, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: 700 16px var(--font-body);
  outline: none;
  padding: 0 15px;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.lead-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 84, 255, 0.12);
}

.lead-form input::placeholder {
  color: rgba(36, 70, 75, 0.48);
}

.consent {
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.submit-button {
  width: 100%;
  border: 0;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
}

.submit-button:hover {
  background: #183ed1;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.form-status.success {
  color: #0c7d62;
}

.form-status.error {
  color: #b43124;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px max(24px, calc((100vw - 1120px) / 2));
  border-top: 1px solid rgba(32, 199, 167, 0.18);
  background: #edf9f4;
  color: var(--ink);
}

.footer-identity {
  display: grid;
  gap: 6px;
}

.footer-identity span {
  color: inherit;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.footer-identity p {
  margin: 0;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 690px;
    padding-top: 124px;
    background-position: 62% center;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero::after {
    display: none;
  }

  .section-heading,
  .quote-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2,
  .quote-copy h2 {
    font-size: 33px;
  }

  .stage-grid,
  .journey-list {
    grid-template-columns: 1fr;
  }

  .stage-card,
  .stage-card img {
    min-height: 340px;
  }

  .quote-copy {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .header-action {
    padding: 0 12px;
  }

  .hero {
    min-height: 660px;
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .life-stage-section,
  .journey-section,
  .quote-section {
    padding: 66px 18px;
  }

  .section-heading h2,
  .quote-copy h2 {
    font-size: 29px;
  }

  .lead-form {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
