:root {
  color-scheme: light;
  --navy-950: #061d46;
  --navy-900: #082a5e;
  --navy-800: #0d3977;
  --blue-700: #086eb5;
  --blue-600: #0a8fd8;
  --cyan-500: #10b9e8;
  --cyan-300: #77daf3;
  --sky-200: #cbe8fa;
  --sky-100: #e5f3fc;
  --ice-50: #f4f8fd;
  --white: #ffffff;
  --ink: #10233f;
  --muted: #596b82;
  --line: #d9e7f2;
  --shadow: 0 24px 70px rgb(9 48 97 / 12%);
  --shadow-soft: 0 16px 44px rgb(9 48 97 / 9%);
  --radius-lg: 30px;
  --radius-md: 22px;
  --shell: min(1180px, calc(100% - 48px));
  font-family:
    Inter,
    Avenir Next,
    Avenir,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background: var(--ice-50);
  color: var(--ink);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

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

button,
summary {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy-950);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.nav-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: rgb(13 57 119 / 8%);
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 8px 30px rgb(9 48 97 / 5%);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.brand > span:last-child > span {
  color: var(--blue-600);
}

.brand-mark {
  width: 37px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(145deg, var(--navy-800), var(--blue-600));
  box-shadow: 0 8px 22px rgb(10 106 177 / 20%);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 36px);
  color: #3f526c;
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

.site-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy-900);
  box-shadow: 0 10px 24px rgb(8 42 94 / 16%);
  color: var(--white);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.nav-cta:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--navy-900);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button[aria-expanded='true'] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded='true'] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 150px 0 100px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgb(244 248 253 / 96%), rgb(247 251 255 / 78%)), var(--ice-50);
}

.hero::after {
  content: '';
  position: absolute;
  right: -10vw;
  bottom: -230px;
  width: 720px;
  height: 400px;
  border-radius: 50%;
  background: rgb(101 194 239 / 10%);
  filter: blur(2px);
  transform: rotate(-9deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -240px;
  left: -180px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgb(177 219 246 / 40%), transparent 68%);
}

.hero-glow-two {
  top: 90px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgb(74 185 235 / 16%), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  display: inline-block;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
}

.hero h1,
.section-heading h2,
.values-copy h2,
.progress-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(55px, 6.2vw, 82px);
  line-height: 0.98;
}

.hero h1 span,
.values-copy h2 span,
.final-cta h2 span {
  color: var(--blue-600);
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  box-shadow: 0 16px 32px rgb(8 42 94 / 20%);
  color: var(--white);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgb(8 42 94 / 26%);
}

.button-secondary {
  border-color: #c9dceb;
  background: rgb(255 255 255 / 70%);
  color: var(--navy-800);
}

.button-secondary:hover {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.store-area {
  margin-top: 31px;
}

.store-area > p {
  margin: 0 0 9px;
  color: #7b8a9d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  min-width: 174px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 14px 9px 10px;
  border: 1px solid #cbddea;
  border-radius: 14px;
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 9px 25px rgb(8 42 94 / 7%);
  color: var(--navy-900);
}

.store-badge > span:last-child {
  display: grid;
  gap: 1px;
  text-align: left;
}

.store-badge small {
  color: #718197;
  font-size: 9px;
  font-weight: 650;
}

.store-badge strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.store-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
  color: var(--white);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.store-icon-play {
  padding-left: 2px;
  background: linear-gradient(145deg, var(--blue-600), var(--cyan-500));
  font-size: 17px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 21px;
  margin: 27px 0 0;
  padding: 0;
  color: #6a7d94;
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list li span {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #dff5fb;
  color: var(--blue-700);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.image-halo {
  position: absolute;
  inset: 4% -6% -8% 2%;
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(135deg, rgb(179 219 246 / 52%), rgb(66 180 231 / 8%));
  filter: blur(10px);
  transform: rotate(-4deg);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(132 185 224 / 28%);
  border-radius: 36px 36px 36px 10px;
  background: var(--white);
  box-shadow: 0 34px 90px rgb(10 54 108 / 15%);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 16px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 16px 42px rgb(8 42 94 / 14%);
  backdrop-filter: blur(14px);
}

.floating-note > span:last-child {
  display: grid;
  gap: 3px;
  color: #6a7c92;
  font-size: 10px;
}

.floating-note strong {
  color: var(--navy-900);
  font-size: 12px;
}

.note-top {
  top: 7%;
  right: -3%;
}

.note-bottom {
  bottom: 8%;
  left: -5%;
}

.note-dot {
  width: 12px;
  height: 12px;
  border: 3px solid #c7f0f8;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px #e7fafd;
}

.note-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #e3f6fd, #d6effb);
  color: var(--blue-600);
  font-size: 21px;
}

.promise-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid #e4eef6;
  background: var(--white);
}

.promise-grid {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.promise-grid > div {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding-inline: clamp(18px, 4vw, 54px);
  border-right: 1px solid #e4eef6;
}

.promise-grid > div:first-child {
  padding-left: 0;
}

.promise-grid > div:last-child {
  border-right: 0;
}

.promise-grid strong {
  color: var(--navy-900);
  font-size: 16px;
}

.promise-grid span {
  color: #73849a;
  font-size: 12px;
}

.section {
  padding: 120px 0;
}

.section-heading h2,
.values-copy h2,
.progress-copy h2,
.final-cta h2 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.07;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.centered-heading {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p:last-child {
  max-width: 660px;
  margin: 23px auto 0;
}

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

.step-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfdff;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.step-card:hover {
  border-color: #b9d9ee;
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.featured-step {
  border-color: transparent;
  background: linear-gradient(155deg, var(--navy-900), #0b4e92);
  box-shadow: 0 24px 55px rgb(8 42 94 / 20%);
  color: var(--white);
}

.step-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #c7d9e8;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 700;
}

.featured-step .step-number {
  color: rgb(255 255 255 / 20%);
}

.step-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 47px 0 30px;
  border-radius: 22px 22px 22px 7px;
  background: var(--sky-100);
}

.featured-step .step-icon {
  background: rgb(255 255 255 / 10%);
}

.scene-shape {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
  border: 3px solid var(--blue-700);
  border-radius: 8px;
}

.scene-shape::before,
.scene-shape::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--cyan-500);
}

.scene-shape::before {
  top: 7px;
  left: 7px;
  width: 6px;
  height: 6px;
}

.scene-shape::after {
  right: 6px;
  bottom: 6px;
  width: 10px;
  height: 10px;
}

.conversation-icon {
  position: relative;
  display: block;
}

.conversation-icon span {
  position: absolute;
  width: 31px;
  height: 23px;
  border: 2px solid var(--white);
  border-radius: 9px;
}

.conversation-icon span:first-child {
  top: 20px;
  left: 16px;
}

.conversation-icon span:last-child {
  right: 14px;
  bottom: 19px;
  border-color: var(--cyan-300);
}

.feedback-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
}

.feedback-icon span {
  width: 7px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(var(--cyan-500), var(--blue-700));
}

.feedback-icon span:first-child {
  height: 17px;
}

.feedback-icon span:nth-child(2) {
  height: 31px;
}

.feedback-icon span:last-child {
  height: 24px;
}

.step-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 21px;
}

.featured-step h3 {
  color: var(--white);
}

.step-card p {
  margin: 15px 0 0;
  color: #6a7c92;
  font-size: 14px;
  line-height: 1.75;
}

.featured-step p {
  color: rgb(255 255 255 / 70%);
}

.situations-section {
  background:
    radial-gradient(circle at 86% 22%, rgb(44 164 220 / 17%), transparent 30%),
    linear-gradient(145deg, #061e48, #092d63 65%, #073e75);
  color: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.light-eyebrow {
  color: var(--cyan-300);
}

.light-eyebrow > span {
  background: var(--cyan-300);
}

.split-heading h2,
.progress-copy h2,
.final-cta h2 {
  color: var(--white);
}

.split-heading > p:last-child {
  margin: 0;
  color: rgb(255 255 255 / 68%);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scenario-card {
  min-height: 380px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 6%);
  transition:
    transform 200ms ease,
    background-color 200ms ease;
}

.scenario-card:hover {
  background: rgb(255 255 255 / 9%);
  transform: translateY(-6px);
}

.scenario-art {
  position: relative;
  min-height: 190px;
  overflow: hidden;
}

.scenario-copy {
  padding: 25px;
}

.scenario-copy > span {
  color: var(--cyan-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scenario-copy h3 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: 19px;
}

.scenario-copy p {
  margin: 0;
  color: rgb(255 255 255 / 58%);
  font-size: 13px;
  line-height: 1.65;
}

.scenario-cafe .scenario-art {
  background: radial-gradient(circle at 50% 65%, rgb(45 181 232 / 24%), transparent 46%);
}

.cup {
  position: absolute;
  bottom: 35px;
  left: 50%;
  width: 72px;
  height: 48px;
  border: 3px solid #8eddf2;
  border-radius: 5px 5px 25px 25px;
  transform: translateX(-50%);
}

.cup::after {
  content: '';
  position: absolute;
  top: 8px;
  right: -25px;
  width: 23px;
  height: 23px;
  border: 3px solid #8eddf2;
  border-left: 0;
  border-radius: 0 50% 50% 0;
}

.steam {
  position: absolute;
  bottom: 94px;
  width: 17px;
  height: 42px;
  border-left: 2px solid rgb(142 221 242 / 70%);
  border-radius: 50%;
}

.steam-one {
  left: 46%;
  transform: rotate(10deg);
}

.steam-two {
  left: 54%;
  height: 32px;
  transform: rotate(-8deg);
}

.people-art {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  padding-bottom: 28px;
  background: radial-gradient(circle at 50% 72%, rgb(71 191 232 / 20%), transparent 52%);
}

.people-art span {
  position: relative;
  width: 46px;
  height: 70px;
  border: 2px solid rgb(150 220 242 / 65%);
  border-bottom: 0;
  border-radius: 22px 22px 4px 4px;
}

.people-art span::before {
  content: '';
  position: absolute;
  top: -34px;
  left: 7px;
  width: 28px;
  height: 28px;
  border: 2px solid #91d8ee;
  border-radius: 50%;
}

.people-art span:nth-child(2) {
  height: 88px;
  border-color: #a9e8f7;
}

.path-art {
  background: linear-gradient(165deg, transparent 35%, rgb(67 177 225 / 13%) 36%);
}

.path-art::before {
  content: '';
  position: absolute;
  top: 40px;
  right: -30px;
  bottom: -70px;
  left: 20px;
  border: 2px solid rgb(139 218 241 / 55%);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.path-art span {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid #89daf1;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.path-art span:first-child {
  top: 55px;
  left: 32%;
}

.path-art span:last-child {
  right: 21%;
  bottom: 34px;
  width: 20px;
  height: 20px;
  opacity: 0.58;
}

.boundary-art {
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgb(54 181 232 / 20%), transparent 55%);
}

.boundary-line {
  width: 120px;
  height: 120px;
  display: block;
  border: 2px solid rgb(142 221 242 / 55%);
  border-radius: 50%;
}

.boundary-line::before,
.boundary-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #93e2f5;
  transform: translate(-50%, -50%) rotate(45deg);
}

.boundary-line::before {
  width: 52px;
  height: 3px;
}

.boundary-line::after {
  width: 3px;
  height: 52px;
}

.boundary-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #092d63;
  border-radius: 50%;
  background: var(--cyan-300);
  box-shadow: 0 0 0 7px rgb(119 218 243 / 16%);
}

.values-section {
  overflow: hidden;
  background: #f8fbfe;
}

.values-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.values-visual {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.values-visual::before {
  content: '';
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  background: radial-gradient(circle, #dff3fc, rgb(223 243 252 / 20%) 55%, transparent 70%);
}

.values-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid #b8dcec;
  border-radius: 50%;
}

.orbit-two {
  inset: 21%;
  border-style: dashed;
  border-color: #badfee;
}

.values-center {
  position: absolute;
  z-index: 2;
  inset: 29%;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
  box-shadow: 0 28px 70px rgb(8 42 94 / 24%);
  color: var(--white);
}

.values-heart {
  color: var(--cyan-300);
  font-size: 34px;
}

.values-center strong {
  margin-top: 4px;
  font-family: Georgia, serif;
  font-size: 25px;
}

.values-center small {
  margin-top: 3px;
  color: rgb(255 255 255 / 62%);
  font-size: 10px;
}

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  border: 1px solid #d4e9f3;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 30px rgb(8 42 94 / 9%);
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 750;
}

.label-listen {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.label-boundaries {
  top: 56%;
  right: -1%;
}

.label-authentic {
  bottom: 8%;
  left: 6%;
}

.values-copy h2 {
  margin-bottom: 25px;
}

.values-lead {
  max-width: 600px;
  margin: 0 0 33px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.value-list {
  display: grid;
  gap: 8px;
}

.value-list article {
  display: flex;
  gap: 15px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.value-list article:hover {
  border-color: var(--line);
  background: var(--white);
}

.value-check {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #dff4fb;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
}

.value-list h3 {
  margin: 2px 0 6px;
  color: var(--navy-900);
  font-size: 15px;
}

.value-list p {
  margin: 0;
  color: #718197;
  font-size: 13px;
  line-height: 1.55;
}

.progress-section {
  background: var(--white);
}

.progress-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding: clamp(46px, 7vw, 82px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0 100%, rgb(58 182 230 / 18%), transparent 34%),
    linear-gradient(140deg, #061e47, #0b3e7c);
  box-shadow: 0 32px 80px rgb(7 35 78 / 18%);
}

.progress-panel::after {
  content: '';
  position: absolute;
  top: -250px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgb(125 218 242 / 18%);
  border-radius: 50%;
}

.progress-copy,
.progress-card {
  position: relative;
  z-index: 2;
}

.progress-copy p:last-child {
  max-width: 440px;
  margin: 23px 0 0;
  color: rgb(255 255 255 / 62%);
  font-size: 15px;
  line-height: 1.75;
}

.progress-card {
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 25px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 25px 65px rgb(4 26 61 / 30%);
}

.progress-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.progress-card-head > div {
  display: grid;
  gap: 5px;
}

.progress-card-head span:first-child {
  color: #7a8a9d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.progress-card-head strong {
  color: var(--navy-900);
  font-size: 19px;
}

.progress-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e1f5fb;
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 750;
}

.metric {
  margin-top: 20px;
}

.metric > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 7px;
  color: #53667d;
  font-size: 11px;
}

.metric strong {
  color: var(--navy-800);
  font-size: 10px;
}

.metric-track {
  height: 7px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #e6eef5;
}

.metric-track > span {
  width: var(--score);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-500));
}

.reflection-note {
  position: relative;
  margin: 28px 0 0;
  padding: 15px 16px 15px 44px;
  border-radius: 13px;
  background: #f1f8fc;
  color: #607188;
  font-size: 11px;
  line-height: 1.55;
}

.reflection-note span {
  position: absolute;
  top: 8px;
  left: 15px;
  color: var(--blue-600);
  font-family: Georgia, serif;
  font-size: 30px;
}

.faq-section {
  background: #f8fbfe;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  font-size: clamp(40px, 4.5vw, 57px);
}

.faq-heading > p:last-child {
  margin: 22px 0 0;
}

.faq-list {
  border-top: 1px solid #cfdfeb;
}

.faq-list details {
  border-bottom: 1px solid #cfdfeb;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--sky-100);
  color: var(--blue-700);
  font-size: 21px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 670px;
  margin: -7px 50px 25px 0;
  color: #66788f;
  font-size: 14px;
  line-height: 1.75;
}

.final-cta-section {
  padding-top: 0;
  background: #f8fbfe;
}

.final-cta {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 70px 40px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 120%, rgb(43 190 231 / 30%), transparent 45%),
    linear-gradient(135deg, #061e48, #0a3974);
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: -170px;
  left: 50%;
  width: 540px;
  height: 310px;
  border: 1px solid rgb(130 221 244 / 22%);
  border-radius: 50%;
  transform: translateX(-50%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(42px, 5.6vw, 67px);
}

.final-cta p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px auto 31px;
  color: rgb(255 255 255 / 65%);
  font-size: 16px;
  line-height: 1.7;
}

.button-light {
  background: var(--white);
  box-shadow: 0 16px 38px rgb(2 20 51 / 24%);
  color: var(--navy-900);
}

.store-badges-light {
  justify-content: center;
  margin-top: 22px;
}

.store-badges-light .store-badge {
  border-color: rgb(255 255 255 / 22%);
  background: rgb(255 255 255 / 9%);
  box-shadow: none;
  color: var(--white);
}

.store-badges-light .store-badge small {
  color: rgb(255 255 255 / 60%);
}

.store-badges-light .store-icon {
  background: rgb(255 255 255 / 14%);
}

.cta-wordmark {
  position: absolute;
  right: -16px;
  bottom: -55px;
  color: rgb(255 255 255 / 3.5%);
  font-family: Georgia, serif;
  font-size: clamp(100px, 16vw, 210px);
  font-weight: 700;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.site-footer {
  padding: 47px 0;
  border-top: 1px solid #dce8f1;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
}

.footer-brand {
  font-size: 23px;
}

.footer-brand .brand-mark {
  width: 33px;
  font-size: 18px;
}

.footer-grid > p {
  margin: 0;
  color: #78889b;
  font-size: 12px;
}

.footer-note {
  display: grid;
  justify-items: end;
  gap: 5px;
  color: #8795a6;
  font-size: 10px;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 69px);
  }

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

  .scenario-card {
    min-height: 350px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 3px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgb(255 255 255 / 98%);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta),
  .nav-cta {
    padding: 13px 15px;
    border-radius: 12px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    padding: 128px 0 85px;
  }

  .hero-grid,
  .values-grid,
  .progress-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    margin-top: 20px;
  }

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

  .step-card {
    min-height: 330px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-visual {
    width: min(100%, 430px);
  }

  .progress-panel {
    gap: 45px;
  }

  .faq-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-note {
    justify-items: center;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 24px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    font-size: 23px;
  }

  .brand-mark {
    width: 33px;
    border-radius: 11px 11px 11px 4px;
    font-size: 18px;
  }

  .site-nav {
    top: 64px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 72px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 65px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .store-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-badge {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }

  .hero-image-card {
    border-radius: 24px 24px 24px 8px;
  }

  .floating-note {
    display: none;
  }

  .promise-grid {
    grid-template-columns: 1fr;
    padding-block: 15px;
  }

  .promise-grid > div,
  .promise-grid > div:first-child {
    min-height: 80px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid #e4eef6;
  }

  .promise-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading h2,
  .values-copy h2,
  .progress-copy h2,
  .final-cta h2 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .centered-heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .centered-heading .eyebrow {
    justify-content: flex-start;
  }

  .step-card {
    min-height: 0;
    padding: 28px;
  }

  .step-icon {
    margin-top: 35px;
  }

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

  .scenario-card {
    min-height: 340px;
  }

  .values-grid {
    gap: 55px;
  }

  .orbit-label {
    padding: 8px 12px;
    font-size: 10px;
  }

  .values-center strong {
    font-size: 21px;
  }

  .values-center small {
    display: none;
  }

  .value-list article {
    padding-inline: 0;
  }

  .progress-panel,
  .final-cta {
    width: calc(100% - 20px);
    padding: 38px 24px;
    border-radius: 25px;
  }

  .metric > div {
    align-items: start;
  }

  .metric strong {
    max-width: 42%;
    text-align: right;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .final-cta {
    min-height: 480px;
  }
}

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

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