:root {
  --ink: #09283d;
  --ink-soft: #315164;
  --navy: #071f32;
  --teal: #1ca695;
  --teal-light: #79dfcf;
  --cream: #f6f2e7;
  --paper: #fffdf7;
  --coral: #ed7859;
  --amber: #ffc369;
  --line: rgba(9, 40, 61, .14);
  --shadow: 0 28px 80px rgba(6, 31, 49, .16);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-shell {
  max-width: 100vw;
  overflow: hidden;
  width: 100%;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 24px 28px;
  position: relative;
  width: 100%;
  z-index: 5;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 11px;
  letter-spacing: .16em;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(7, 31, 50, .18);
  height: 40px;
  width: 40px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--teal);
}

.language-control {
  position: relative;
}

.language-control select {
  appearance: none;
  background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2309283d' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: 800 12px/1 "Manrope", sans-serif;
  min-height: 40px;
  padding: 0 30px 0 13px;
}

.hero {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
  margin: 0 auto;
  max-width: 1240px;
  min-height: 760px;
  padding: 72px 28px 110px;
  position: relative;
}

.hero > *,
.hero-copy {
  min-width: 0;
}

.hero::before {
  background: radial-gradient(circle, rgba(28, 166, 149, .13) 0 2px, transparent 2.5px);
  background-size: 24px 24px;
  content: "";
  height: 240px;
  left: -90px;
  opacity: .58;
  position: absolute;
  top: 20px;
  width: 300px;
}

.hero-copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--teal);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: .18em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--coral);
  border-radius: 50%;
  content: "";
  height: 9px;
  width: 9px;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(4rem, 7.5vw, 7.2rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .87;
  margin: 0;
  max-width: 760px;
}

.accent {
  color: var(--coral);
  font-style: italic;
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
  margin: 32px 0 34px;
  max-width: 610px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(9, 40, 61, .2);
  color: white;
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.coming-note {
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 17px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.trust-row span {
  align-items: center;
  background: rgba(255, 253, 247, .72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 7px;
  padding: 8px 11px;
}

.trust-row span::before {
  background: var(--teal);
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 600px;
  position: relative;
}

.hero-visual::before {
  background: var(--navy);
  border-radius: 46% 54% 45% 55% / 55% 38% 62% 45%;
  content: "";
  height: 570px;
  position: absolute;
  transform: rotate(-5deg);
  width: min(540px, 95%);
}

.phone {
  background: #f8fbf7;
  border: 9px solid #09283d;
  border-radius: 48px;
  box-shadow: var(--shadow);
  height: 610px;
  overflow: hidden;
  position: relative;
  transform: rotate(4deg);
  width: 318px;
  z-index: 2;
}

.phone::before {
  background: var(--navy);
  border-radius: 0 0 15px 15px;
  content: "";
  height: 25px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 112px;
  z-index: 5;
}

.phone-top {
  background: linear-gradient(135deg, #0a3048, #0b5b65);
  color: white;
  padding: 53px 24px 25px;
}

.phone-kicker {
  color: var(--teal-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.phone h3 {
  font-size: 27px;
  letter-spacing: -.04em;
  margin: 5px 0 0;
}

.tree-canvas {
  height: 376px;
  overflow: hidden;
  position: relative;
}

.tree-line {
  background: #76cfc2;
  opacity: .7;
  position: absolute;
}

.line-v1 { height: 44px; left: 158px; top: 103px; width: 2px; }
.line-h1 { height: 2px; left: 69px; top: 146px; width: 179px; }
.line-v2 { height: 38px; left: 69px; top: 146px; width: 2px; }
.line-v3 { height: 38px; left: 247px; top: 146px; width: 2px; }
.line-v4 { height: 36px; left: 69px; top: 264px; width: 2px; }
.line-h2 { height: 2px; left: 69px; top: 299px; width: 90px; }

.person {
  align-items: center;
  background: white;
  border: 1px solid rgba(9, 40, 61, .08);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(9, 40, 61, .1);
  display: flex;
  gap: 8px;
  padding: 9px;
  position: absolute;
  width: 118px;
}

.person strong,
.person span {
  display: block;
}

.person strong {
  font-size: 10px;
}

.person span {
  color: #6b7d87;
  font-size: 8px;
  margin-top: 2px;
}

.portrait {
  border-radius: 50%;
  flex: 0 0 31px;
  height: 31px;
  position: relative;
}

.portrait::after {
  background: rgba(255, 255, 255, .78);
  border-radius: 50%;
  content: "";
  height: 11px;
  left: 10px;
  position: absolute;
  top: 6px;
  width: 11px;
}

.portrait::before {
  background: rgba(255, 255, 255, .78);
  border-radius: 10px 10px 5px 5px;
  bottom: 4px;
  content: "";
  height: 10px;
  left: 7px;
  position: absolute;
  width: 17px;
}

.p-main { left: 100px; top: 48px; }
.p-left { left: 10px; top: 184px; }
.p-right { left: 189px; top: 184px; }
.p-child { left: 10px; top: 300px; }
.portrait-coral { background: var(--coral); }
.portrait-teal { background: var(--teal); }
.portrait-amber { background: var(--amber); }
.portrait-navy { background: #315b78; }

.phone-tabbar {
  align-items: center;
  background: white;
  border-top: 1px solid rgba(9, 40, 61, .08);
  bottom: 0;
  display: flex;
  height: 72px;
  justify-content: space-around;
  left: 0;
  position: absolute;
  right: 0;
}

.tab-dot {
  background: #b6c0c5;
  border-radius: 50%;
  height: 7px;
  position: relative;
  width: 7px;
}

.tab-dot.active {
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(28, 166, 149, .13);
}

.search-card {
  background: var(--amber);
  border-radius: 20px;
  bottom: 72px;
  box-shadow: 0 18px 32px rgba(9, 40, 61, .2);
  color: var(--ink);
  padding: 17px 19px;
  position: absolute;
  right: -18px;
  transform: rotate(-6deg);
  width: 180px;
  z-index: 3;
}

.search-card small,
.search-card span,
.search-card strong {
  display: block;
}

.search-card small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.search-card strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
}

.search-card span {
  font-size: 9px;
  font-weight: 800;
  margin-top: 4px;
  opacity: .72;
}

.momentum {
  background: var(--paper);
  border: 1px solid rgba(9, 40, 61, .08);
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(9, 40, 61, .08);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: -34px auto 92px;
  max-width: 1120px;
  overflow: hidden;
  position: relative;
  width: calc(100% - 56px);
  z-index: 4;
}

.momentum-item {
  align-items: center;
  display: flex;
  gap: 16px;
  min-height: 92px;
  padding: 20px 28px;
}

.momentum-item + .momentum-item {
  border-left: 1px solid var(--line);
}

.momentum-item strong {
  color: var(--coral);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.momentum-item span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.section {
  padding: 110px 28px;
}

.section-inner {
  margin: 0 auto;
  max-width: 1184px;
}

.section-dark {
  background: var(--navy);
  color: white;
  position: relative;
}

.section-dark::after {
  border: 1px solid rgba(121, 223, 207, .23);
  border-radius: 50%;
  content: "";
  height: 330px;
  position: absolute;
  right: -160px;
  top: -150px;
  width: 330px;
}

.section-heading {
  display: grid;
  gap: 30px;
  grid-template-columns: .95fr 1.05fr;
  margin-bottom: 64px;
}

.section-heading h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -.045em;
  line-height: .98;
  margin: 0;
}

.section-heading p {
  align-self: end;
  color: #b8c9d2;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 25px;
  min-height: 250px;
  padding: 27px;
}

.feature-highlight {
  background: linear-gradient(150deg, rgba(121, 223, 207, .19), rgba(255, 255, 255, .07));
  border-color: rgba(121, 223, 207, .42);
  box-shadow: inset 0 0 0 1px rgba(121, 223, 207, .08);
}

.feature-number {
  color: var(--teal-light);
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
}

.feature h3 {
  font-size: 20px;
  letter-spacing: -.025em;
  margin: 45px 0 10px;
}

.feature p {
  color: #b8c9d2;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.story-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.story-copy h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -.055em;
  line-height: .95;
  margin: 0 0 26px;
}

.story-copy p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.story-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.story-list span {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 800;
  gap: 12px;
}

.story-list span::before {
  background: var(--teal);
  border-radius: 50%;
  color: white;
  content: "\2713";
  display: grid;
  flex: 0 0 26px;
  font-size: 13px;
  height: 26px;
  place-items: center;
}

.story-stack {
  min-height: 510px;
  position: relative;
}

.story-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  position: absolute;
  width: min(420px, 90%);
}

.story-card small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.story-card h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  letter-spacing: -.04em;
  margin: 70px 0 8px;
}

.story-card p {
  line-height: 1.55;
  margin: 0;
}

.story-one {
  background: var(--coral);
  color: white;
  left: 0;
  top: 20px;
  transform: rotate(-5deg);
}

.story-two {
  background: var(--amber);
  bottom: 15px;
  right: 0;
  transform: rotate(5deg);
}

.section-together {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 195, 105, .32), transparent 26rem),
    #e9f5f0;
  border-bottom: 1px solid rgba(9, 40, 61, .08);
  border-top: 1px solid rgba(9, 40, 61, .08);
}

.together-layout {
  align-items: start;
  display: grid;
  gap: 78px;
  grid-template-columns: .9fr 1.1fr;
}

.together-layout > div:first-child {
  position: sticky;
  top: 40px;
}

.together-layout h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  letter-spacing: -.055em;
  line-height: .93;
  margin: 0 0 26px;
}

.together-layout > div:first-child > p:last-child {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.together-steps {
  display: grid;
  gap: 16px;
}

.together-steps article {
  align-items: flex-start;
  background: rgba(255, 253, 247, .88);
  border: 1px solid rgba(9, 40, 61, .09);
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(9, 40, 61, .07);
  display: flex;
  gap: 20px;
  padding: 26px;
}

.together-steps article > span {
  background: var(--navy);
  border-radius: 16px;
  color: white;
  display: grid;
  flex: 0 0 48px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  height: 48px;
  place-items: center;
}

.together-steps h3 {
  font-size: 18px;
  letter-spacing: -.025em;
  margin: 1px 0 7px;
}

.together-steps p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cta {
  background: linear-gradient(135deg, #0a334a 0%, #087168 100%);
  border-radius: 42px;
  color: white;
  display: grid;
  gap: 36px;
  grid-template-columns: 1.2fr .8fr;
  overflow: hidden;
  padding: 68px;
  position: relative;
}

.cta::after {
  background: var(--amber);
  border-radius: 50%;
  content: "";
  height: 300px;
  opacity: .13;
  position: absolute;
  right: -100px;
  top: -110px;
  width: 300px;
}

.cta h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -.05em;
  line-height: .96;
  margin: 0;
}

.cta-kicker {
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.cta-side {
  align-self: end;
  position: relative;
  z-index: 2;
}

.cta-side p {
  color: #d5eeea;
  line-height: 1.6;
  margin: 0 0 24px;
}

.cta .button {
  background: var(--amber);
  color: var(--ink);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta .button-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .42);
  color: white;
}

.cta-side small {
  color: #b9d8d3;
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-top: 15px;
}

.footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 40px 28px 54px;
}

.footer p {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.legal-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(28, 166, 149, .15), transparent 30%),
    var(--cream);
  min-height: 100vh;
}

.legal-wrap {
  margin: 0 auto;
  max-width: 900px;
  padding: 46px 28px 100px;
}

.legal-back {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  margin-bottom: 48px;
  text-decoration: none;
}

.legal-card {
  background: var(--paper);
  border: 1px solid rgba(9, 40, 61, .08);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(9, 40, 61, .1);
  overflow: hidden;
}

.legal-head {
  background: var(--navy);
  color: white;
  padding: 58px clamp(28px, 7vw, 72px);
}

.legal-head .eyebrow {
  color: var(--teal-light);
}

.legal-head h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 680px;
}

.legal-head p:last-child {
  color: #c4d5dc;
  font-size: 18px;
  line-height: 1.65;
  margin: 26px 0 0;
}

.legal-content {
  padding: 55px clamp(28px, 7vw, 72px) 70px;
}

.legal-content h2 {
  font-size: 22px;
  letter-spacing: -.025em;
  margin: 38px 0 10px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content a {
  color: #08796f;
  font-weight: 800;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content .button {
  color: white;
  margin: 8px 0 18px;
}

.callout {
  background: #eaf7f3;
  border-left: 4px solid var(--teal);
  border-radius: 0 18px 18px 0;
  color: var(--ink);
  line-height: 1.7;
  margin: 30px 0;
  padding: 22px 25px;
}

@media (max-width: 980px) {
  .hero {
    gap: 30px;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

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

  .hero-visual {
    min-height: 650px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    gap: 50px;
  }

  .together-layout {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .together-layout > div:first-child {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 18px 20px;
  }

  .nav-links > a {
    display: none;
  }

  .nav-links {
    gap: 0;
    margin-left: auto;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 50px 20px 80px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.6rem);
    overflow-wrap: anywhere;
  }

  .hero h1 .accent {
    display: block;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .12em;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 570px;
    transform: scale(.9);
  }

  .phone {
    height: 590px;
  }

  .search-card {
    right: 0;
  }

  .momentum {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
    width: calc(100% - 40px);
  }

  .momentum-item {
    min-height: 74px;
    padding: 16px 20px;
  }

  .momentum-item + .momentum-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 82px 20px;
  }

  .section-heading,
  .story-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 210px;
  }

  .story-stack {
    min-height: 490px;
  }

  .story-card {
    padding: 28px;
  }

  .cta {
    border-radius: 30px;
    padding: 46px 28px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 32px 20px 46px;
  }

  .legal-wrap {
    padding: 26px 16px 70px;
  }

  .legal-back {
    margin-bottom: 28px;
  }
}

@media (max-width: 390px) {
  .nav {
    padding-inline: 16px;
  }

  .brand {
    font-size: 13px;
    gap: 9px;
    letter-spacing: .12em;
  }

  .brand img {
    height: 36px;
    width: 36px;
  }

  .nav-links { display: flex; }

  .language-control select {
    min-height: 36px;
    padding-left: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
