:root {
  --ink: #16354a;
  --ink-deep: #0d283a;
  --ink-soft: #52778f;
  --paper: #f8fbfd;
  --white: #ffffff;
  --line: rgba(22, 53, 74, 0.12);
  --blue: #5ea8da;
  --blue-deep: #286d99;
  --sky: #83c5f1;
  --pale: #b9ddf5;
  --aqua: #afe3f4;
  --pink: #f4dbe3;
  --pink-deep: #d99fbb;
  --gold: #ffd66b;
  --gold-deep: #e5b347;
  --display: "Baloo 2", "Arial Rounded MT Bold", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --shell: 1320px;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 28px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--ink-deep);
  background: var(--gold);
}

:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink-deep);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--ink-deep);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: min(var(--shell), calc(100% - 92px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 154px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(248, 251, 253, 0.86);
  box-shadow: 0 10px 40px rgba(22, 53, 74, 0.05);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand b {
  color: var(--blue-deep);
  font-weight: 800;
}

.brand-mark {
  width: 35px;
  overflow: visible;
  fill: var(--gold);
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform 0.45s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(8deg) scale(1.05);
}

.brand-mark .brand-face {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.3;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover {
  color: var(--ink-deep);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: white;
  background: var(--ink-deep);
  box-shadow: 0 8px 22px rgba(13, 40, 58, 0.14);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-decoration: none;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.button:hover {
  background: #183f58;
  box-shadow: 0 12px 30px rgba(13, 40, 58, 0.2);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-small {
  min-height: 43px;
  padding: 0 19px;
  font-size: 12px;
}

.button-primary {
  min-height: 60px;
  padding: 0 29px;
  color: var(--ink-deep);
  background: var(--gold);
  box-shadow:
    0 8px 0 var(--gold-deep),
    0 18px 34px rgba(229, 179, 71, 0.22);
  font-size: 15px;
}

.button-primary:hover {
  color: var(--ink-deep);
  background: #ffdd82;
  box-shadow:
    0 10px 0 var(--gold-deep),
    0 24px 40px rgba(229, 179, 71, 0.28);
  transform: translateY(-3px);
}

.button-primary:active {
  box-shadow:
    0 4px 0 var(--gold-deep),
    0 12px 24px rgba(229, 179, 71, 0.2);
  transform: translateY(4px);
}

.button-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  transition: transform 0.3s var(--ease);
}

.button:hover .button-icon {
  transform: rotate(8deg) translate(1px, -1px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header) + 103px);
  background:
    linear-gradient(rgba(94, 168, 218, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 168, 218, 0.055) 1px, transparent 1px),
    var(--paper);
  background-position: center top;
  background-size: 80px 80px;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 44%;
  background: linear-gradient(to bottom, transparent, var(--paper) 92%);
  content: "";
  pointer-events: none;
}

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

.hero-glow-one {
  top: 190px;
  left: -220px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(175, 227, 244, 0.66), transparent 70%);
}

.hero-glow-two {
  top: 80px;
  right: -180px;
  width: 590px;
  height: 590px;
  background: radial-gradient(circle, rgba(244, 219, 227, 0.68), transparent 70%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 1000px;
  text-align: center;
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(94, 168, 218, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 30px rgba(94, 168, 218, 0.08);
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.live-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  content: "";
  animation: pulse-dot 2.2s ease-out infinite;
}

.hero h1,
.section-heading h2,
.journey-copy h3,
.family-copy h2,
.final-copy h2 {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.hero h1 {
  font-size: clamp(64px, 7.2vw, 108px);
}

.hero h1 em,
.section-heading h2 em,
.family-copy h2 em,
.final-copy h2 em {
  color: var(--blue-deep);
  font-style: normal;
}

.hero-lede {
  max-width: 670px;
  margin: 30px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  margin-top: 34px;
}

.text-link {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.trust-line {
  margin: 30px 0 0;
  color: #496d83;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.trust-line > span {
  color: var(--blue-deep);
  font-size: 17px;
  vertical-align: -1px;
}

.hero-product {
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: relative;
  z-index: 2;
  height: 820px;
  margin-top: 48px;
  perspective: 1400px;
}

.hero-product::before {
  position: absolute;
  top: 110px;
  left: 50%;
  width: min(990px, 78vw);
  height: 610px;
  border: 1px solid rgba(94, 168, 218, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(175, 227, 244, 0.4), rgba(255, 255, 255, 0.06) 54%, transparent 70%);
  content: "";
  transform: translateX(-50%) rotateX(67deg);
}

.orbit {
  position: absolute;
  top: 112px;
  left: 50%;
  border: 1px solid rgba(94, 168, 218, 0.18);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%) rotate(-7deg);
}

.orbit-one {
  width: 780px;
  height: 590px;
}

.orbit-two {
  top: 155px;
  width: 1020px;
  height: 530px;
  border-color: rgba(217, 159, 187, 0.16);
  transform: translateX(-50%) rotate(7deg);
}

.phone {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 49px;
  background: #17384d;
  box-shadow:
    0 58px 100px rgba(22, 53, 74, 0.2),
    0 16px 34px rgba(22, 53, 74, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 41px;
}

.phone-top {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 5;
  width: 95px;
  height: 25px;
  border-radius: 999px;
  background: #17384d;
  transform: translateX(-50%);
}

.phone-top span {
  position: absolute;
  top: 9px;
  right: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #31566d;
}

.phone-hero {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 347px;
  transform: translate3d(calc(-50% + var(--pointer-x) * 0.4), calc(var(--pointer-y) * 0.4), 40px) rotateX(1deg);
  transition: transform 0.3s ease-out;
}

[data-float-depth="1"] {
  transform: translate3d(calc(var(--pointer-x) * 0.12), calc(var(--pointer-y) * 0.12), 12px);
}

[data-float-depth="2"] {
  transform: translate3d(calc(var(--pointer-x) * 0.23), calc(var(--pointer-y) * 0.23), 24px);
}

.benefit-chip,
.mini-player {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(22, 53, 74, 0.13);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: transform 0.3s ease-out;
}

.benefit-chip {
  min-width: 238px;
  padding: 16px 18px;
  border-radius: 20px;
}

.benefit-chip b,
.benefit-chip small,
.mini-player b,
.mini-player small {
  display: block;
}

.benefit-chip b,
.mini-player b {
  color: var(--ink-deep);
  font-size: 12px;
  letter-spacing: -0.02em;
}

.benefit-chip small,
.mini-player small {
  margin-top: 1px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.chip-icon {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  font-size: 17px;
  font-weight: 800;
}

.chip-icon-blue {
  color: var(--blue-deep);
  background: var(--aqua);
}

.chip-icon-pink {
  color: #b2698d;
  background: var(--pink);
}

.chip-left {
  top: 260px;
  left: calc(50% - 495px);
}

.chip-right {
  top: 146px;
  right: calc(50% - 500px);
}

.mini-player {
  right: calc(50% - 500px);
  bottom: 183px;
  width: 280px;
  padding: 14px;
  border-radius: 22px;
}

.mini-art {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #ffedac);
  font-size: 22px;
}

.mini-player > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.mini-play {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 10px;
}

.floating-note,
.floating-star {
  position: absolute;
  z-index: 3;
  user-select: none;
  pointer-events: none;
}

.floating-note {
  color: rgba(52, 126, 174, 0.46);
  font-family: var(--display);
  font-size: 48px;
  animation: float-note 5s ease-in-out infinite;
}

.note-one {
  top: 96px;
  left: calc(50% - 390px);
  transform: rotate(-13deg);
}

.note-two {
  top: 452px;
  right: calc(50% - 410px);
  font-size: 39px;
  animation-delay: -2.2s;
}

.floating-star {
  color: var(--gold-deep);
  font-size: 22px;
  animation: twinkle-star 3.2s ease-in-out infinite;
}

.star-one {
  top: 515px;
  left: calc(50% - 345px);
}

.star-two {
  top: 84px;
  right: calc(50% - 345px);
  color: var(--pink-deep);
  font-size: 15px;
  animation-delay: -1.1s;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -22px;
  padding: 29px 0 45px;
  border-top: 1px solid var(--line);
}

.promise-row > div {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 37px;
  border-right: 1px solid var(--line);
}

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

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

.promise-row span {
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
}

.promise-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.promise-row b {
  color: var(--ink-deep);
}

.why-section {
  border-top: 1px solid rgba(22, 53, 74, 0.08);
  background: #eef8fc;
}

.section-heading {
  max-width: 810px;
}

.section-heading-wide {
  max-width: 1010px;
}

.section-heading h2,
.family-copy h2,
.final-copy h2 {
  font-size: clamp(52px, 5.8vw, 86px);
}

.section-heading > p:last-child {
  max-width: 610px;
  margin: 29px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

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

.principle-card {
  position: relative;
  display: flex;
  min-height: 535px;
  flex-direction: column;
  padding: 34px 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(22, 53, 74, 0.07);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s ease;
}

.principle-card:hover {
  box-shadow: 0 30px 65px rgba(22, 53, 74, 0.11);
  transform: translateY(-8px);
}

.principle-card-blue {
  background: linear-gradient(155deg, #d8f2fb, #f3fbfe 70%);
}

.principle-card-pink {
  background: linear-gradient(155deg, #f6e2e9, #fff7fa 70%);
}

.principle-card-gold {
  background: linear-gradient(155deg, #fff1be, #fffaf0 70%);
}

.principle-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(22, 53, 74, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.principle-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(22, 53, 74, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 19px;
}

.principle-card h3 {
  max-width: 280px;
  margin: 54px 0 18px;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.principle-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.range-visual,
.sparkle-visual,
.privacy-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 white;
  overflow: hidden;
}

.range-visual {
  gap: 13px;
  padding: 0 20px;
}

.range-label {
  color: var(--ink-soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.range-track {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(94, 168, 218, 0.18);
}

.range-track i {
  position: absolute;
  inset: 0 17% 0 20%;
  border-radius: inherit;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease) 0.25s;
}

.is-visible .range-track i {
  transform: scaleX(1);
}

.range-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--blue-deep);
  box-shadow: 0 4px 10px rgba(52, 126, 174, 0.28);
  transform: translate(-50%, -50%);
}

.range-dot-one { left: 20%; }
.range-dot-two { left: 83%; }

.sparkle-visual {
  gap: 13px;
  color: var(--pink-deep);
}

.sparkle-visual span {
  display: inline-block;
  font-size: 17px;
  animation: twinkle-star 2.4s ease-in-out infinite;
}

.sparkle-visual span:nth-child(2) { animation-delay: -0.8s; }
.sparkle-visual span:nth-child(4) { animation-delay: -1.5s; }

.sparkle-visual b {
  padding: 10px 14px;
  border-radius: 999px;
  color: #9d597b;
  background: white;
  box-shadow: 0 7px 18px rgba(217, 159, 187, 0.18);
  font-size: 10px;
}

.privacy-visual {
  gap: 15px;
  color: var(--ink);
}

.privacy-device {
  display: grid;
  width: 28px;
  height: 43px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-size: 0;
}

.privacy-device::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.privacy-wave {
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: -0.15em;
}

.privacy-lock {
  position: relative;
  display: grid;
  width: 32px;
  height: 27px;
  place-items: center;
  border-radius: 6px;
  color: var(--blue-deep);
  background: var(--pale);
  font-size: 5px;
}

.privacy-lock::before {
  position: absolute;
  bottom: 20px;
  width: 17px;
  height: 14px;
  border: 3px solid var(--blue-deep);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  content: "";
}

.privacy-visual b {
  color: var(--ink-soft);
  font-size: 9px;
}

.journey {
  background: var(--white);
}

.journey-heading {
  margin-bottom: 118px;
}

.journey-row {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: 9%;
  margin-bottom: 156px;
}

.journey-row:last-child {
  margin-bottom: 0;
}

.journey-row-reverse {
  grid-template-columns: minmax(520px, 1.15fr) minmax(340px, 0.85fr);
}

.journey-row-reverse .journey-copy {
  grid-column: 2;
  grid-row: 1;
}

.journey-row-reverse .journey-visual {
  grid-column: 1;
  grid-row: 1;
}

.step-number {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 25px;
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.step-number span {
  width: 28px;
  height: 1px;
  background: rgba(52, 126, 174, 0.4);
}

.journey-copy h3 {
  font-size: clamp(45px, 4vw, 63px);
}

.journey-copy > p:not(.step-number) {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.78;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 27px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.check-list span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: #e1f3fa;
  font-size: 10px;
}

.journey-visual {
  position: relative;
  height: 720px;
  border: 1px solid rgba(22, 53, 74, 0.07);
  border-radius: 42px;
  box-shadow: 0 24px 70px rgba(22, 53, 74, 0.08);
  overflow: hidden;
}

.journey-visual::before,
.journey-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.journey-visual::before {
  top: -130px;
  right: -110px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.journey-visual::after {
  bottom: -210px;
  left: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.journey-visual-sky {
  background: linear-gradient(145deg, #d8f2fb, #a9dff2);
}

.journey-visual-pink {
  background: linear-gradient(145deg, #f7e5eb, #edcad9);
}

.journey-visual-gold {
  background: linear-gradient(145deg, #fff2bd, #f7d982);
}

.phone-step {
  position: absolute;
  top: 75px;
  z-index: 2;
  width: 304px;
  transition: transform 0.8s var(--ease);
}

.phone-left { left: 50%; transform: translateX(-50%) rotate(-2deg); }
.phone-right { left: 50%; transform: translateX(-50%) rotate(2deg); }
.journey-visual:hover .phone-left { transform: translateX(-50%) translateY(-8px) rotate(-0.8deg); }
.journey-visual:hover .phone-right { transform: translateX(-50%) translateY(-8px) rotate(0.8deg); }

.voice-card,
.tuned-card,
.stars-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(22, 53, 74, 0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.voice-card {
  right: 34px;
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 232px;
  padding: 15px;
  border-radius: 19px;
}

.voice-star {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--gold-deep);
  background: #fff1b9;
}

.voice-card b,
.voice-card small {
  display: block;
}

.voice-card b {
  color: var(--ink-deep);
  font-size: 11px;
}

.voice-card small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
}

.tuned-card {
  top: 145px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.tuned-card span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 9px;
}

.stars-card {
  right: 26px;
  bottom: 96px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 15px 18px;
  border-radius: 18px;
  color: var(--gold-deep);
  font-size: 17px;
}

.stars-card b {
  margin-left: 7px;
  color: var(--ink-deep);
  font-size: 9px;
}

.screens-section {
  background: var(--ink-deep);
  overflow: hidden;
}

.screens-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(94, 168, 218, 0.18), transparent 28%),
    radial-gradient(circle at 88% 46%, rgba(244, 219, 227, 0.12), transparent 30%);
  content: "";
  pointer-events: none;
}

.screens-heading .kicker {
  color: var(--sky);
}

.screens-heading h2,
.screens-heading h2 em {
  color: white;
}

.screens-heading h2 em {
  color: var(--aqua);
}

.screens-heading > p:last-child {
  color: #9bb5c5;
}

.screen-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 83px;
}

.showcase-card {
  position: relative;
  margin: 0;
  padding: 14px 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.showcase-card:nth-child(even) {
  transform: translateY(46px);
}

.showcase-card:hover {
  z-index: 3;
  border-color: rgba(175, 227, 244, 0.4);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-9px) scale(1.02);
}

.showcase-card:nth-child(even):hover {
  transform: translateY(37px) scale(1.02);
}

.showcase-label {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 5px 13px;
  color: #9bb5c5;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.showcase-label span {
  color: var(--sky);
}

.showcase-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.showcase-card figcaption {
  padding: 18px 7px 0;
  color: #d5e3eb;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.family-section {
  background: #eaf7fb;
}

.family-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 9%;
}

.family-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 30px 0 34px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.button-light {
  color: var(--ink-deep);
  background: white;
  box-shadow: 0 12px 30px rgba(22, 53, 74, 0.09);
}

.button-light:hover {
  color: white;
  background: var(--ink-deep);
}

.family-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.bento-card {
  position: relative;
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(22, 53, 74, 0.07);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s ease;
}

.bento-card:hover {
  box-shadow: 0 25px 60px rgba(22, 53, 74, 0.12);
  transform: translateY(-5px);
}

.bento-wide {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 23px;
  min-height: 220px;
  grid-column: 1 / -1;
  background: white;
}

.bento-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  color: var(--blue-deep);
  background: linear-gradient(145deg, var(--aqua), #dff5fc);
  font-family: var(--display);
  font-size: 30px;
}

.duet-icon {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 50%;
}

.duet-icon::before,
.duet-icon::after {
  position: absolute;
  border: 1px solid rgba(94, 168, 218, 0.25);
  border-radius: 50%;
  content: "";
}

.duet-icon::before { inset: -13px; }
.duet-icon::after { inset: -28px; opacity: 0.5; }

.duet-icon span {
  position: absolute;
  font-size: 33px;
}

.duet-icon span:first-child { transform: translate(-14px, 5px) rotate(-9deg); }
.duet-icon span:last-child { transform: translate(14px, -5px) rotate(9deg); }

.bento-kicker {
  margin: 26px 0 11px;
  color: var(--blue-deep);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.bento-wide .bento-kicker {
  margin-top: 0;
}

.bento-card h3 {
  max-width: 280px;
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.bento-wide h3 {
  max-width: none;
  font-size: 34px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: #e7f6fb;
  font-size: 9px;
  font-weight: 800;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ba878;
  box-shadow: 0 0 0 4px rgba(59, 168, 120, 0.12);
}

.final-cta {
  position: relative;
  padding: 160px 0 170px;
  background:
    linear-gradient(rgba(94, 168, 218, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 168, 218, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 80px 80px;
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 227, 244, 0.38), transparent 68%);
  content: "";
  transform: translate(-50%, -50%);
}

.final-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-copy img {
  width: 86px;
  margin: 0 auto 25px;
  filter: drop-shadow(0 15px 24px rgba(94, 168, 218, 0.22));
  animation: float-note 4.5s ease-in-out infinite;
}

.final-copy > p:not(.kicker) {
  margin: 27px auto 32px;
  color: var(--ink-soft);
  font-size: 16px;
}

.button-large {
  min-height: 66px;
  padding-inline: 32px;
}

.final-copy small {
  display: block;
  margin-top: 27px;
  color: #4f7185;
  font-size: 10px;
  font-weight: 700;
}

.final-star,
.final-note {
  position: absolute;
  color: var(--gold-deep);
  pointer-events: none;
  animation: twinkle-star 3.4s ease-in-out infinite;
}

.final-star-one { top: 23%; left: 17%; font-size: 28px; }
.final-star-two { right: 18%; bottom: 25%; color: var(--pink-deep); font-size: 21px; animation-delay: -1.4s; }
.final-note { top: 29%; right: 20%; color: var(--blue-deep); font-family: var(--display); font-size: 45px; animation: float-note 5.2s ease-in-out infinite; }

.site-footer {
  padding: 75px 0 29px;
  color: #b7cad5;
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 69px;
}

.brand-footer {
  color: white;
}

.footer-brand > p {
  margin: 18px 0 0;
  color: #829eae;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 65px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links b {
  margin-bottom: 7px;
  color: white;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: #91aab8;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8fa8b6;
  font-size: 9px;
  font-weight: 700;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    box-shadow 0.4s ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .principle-card.is-visible:hover {
  transform: translateY(-8px);
}

.principle-grid [data-reveal]:nth-child(2),
.screen-showcase [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.principle-grid [data-reveal]:nth-child(3),
.screen-showcase [data-reveal]:nth-child(3) { transition-delay: 0.16s; }

@keyframes pulse-dot {
  0% { opacity: 0.65; transform: scale(0.65); }
  70%, 100% { opacity: 0; transform: scale(1.8); }
}

@keyframes float-note {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-13px) rotate(3deg); }
}

@keyframes twinkle-star {
  0%, 100% { opacity: 0.4; transform: scale(0.8) rotate(-8deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(8deg); }
}

@media (max-width: 1180px) {
  .shell { width: min(var(--shell), calc(100% - 56px)); }
  .desktop-nav { gap: 22px; }
  .desktop-nav a { font-size: 12px; }
  .hero-product { height: 770px; }
  .chip-left { left: 5%; }
  .chip-right,
  .mini-player { right: 4%; }
  .principle-card { min-height: 510px; padding-inline: 27px; }
  .principle-card h3 { font-size: 33px; }
  .journey-row,
  .journey-row-reverse { gap: 6%; }
  .journey-visual { height: 670px; }
  .phone-step { width: 280px; top: 62px; }
}

@media (max-width: 980px) {
  :root { --header: 70px; }
  .section { padding: 118px 0; }
  .desktop-nav,
  .nav-cta { display: none; }
  .nav-shell { display: flex; justify-content: space-between; }
  .menu-button {
    display: grid;
    width: 45px;
    height: 45px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    cursor: pointer;
  }
  .menu-button span {
    display: block;
    width: 17px;
    height: 1.5px;
    background: var(--ink-deep);
    transition: transform 0.3s var(--ease);
  }
  .site-header.is-open .menu-button span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .site-header.is-open .menu-button span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 0;
    display: flex;
    height: calc(100dvh - var(--header));
    flex-direction: column;
    gap: 3px;
    padding: 28px;
    background: rgba(248, 251, 253, 0.98);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-15px);
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      transform 0.35s var(--ease),
      visibility 0s linear 0.35s;
  }
  .site-header.is-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }
  .mobile-menu > a:not(.button) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-deep);
    font-family: var(--display);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -0.035em;
    text-decoration: none;
  }
  .mobile-menu .button { margin-top: 20px; }
  .hero { padding-top: calc(var(--header) + 82px); }
  .hero-product { height: 730px; }
  .phone-hero { width: 318px; }
  .benefit-chip { min-width: 210px; padding: 13px 15px; }
  .chip-left { top: 275px; left: 0; }
  .chip-right { top: 115px; right: 0; }
  .mini-player { right: 0; bottom: 170px; width: 240px; }
  .promise-row > div { padding-inline: 22px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 440px; }
  .principle-card h3 { max-width: 500px; margin-top: 38px; }
  .range-visual,
  .sparkle-visual,
  .privacy-visual { min-height: 100px; margin-top: 45px; }
  .journey-heading { margin-bottom: 85px; }
  .journey-row,
  .journey-row-reverse { grid-template-columns: 1fr; gap: 55px; margin-bottom: 115px; }
  .journey-row-reverse .journey-copy,
  .journey-row-reverse .journey-visual { grid-column: 1; grid-row: auto; }
  .journey-row-reverse .journey-copy { grid-row: 1; }
  .journey-visual { height: 700px; }
  .phone-step { width: 295px; }
  .screen-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .showcase-card:nth-child(even) { transform: translateY(0); }
  .showcase-card:nth-child(even):hover { transform: translateY(-9px) scale(1.02); }
  .family-grid { grid-template-columns: 1fr; gap: 65px; }
}

@media (max-width: 700px) {
  .shell { width: calc(100% - 34px); }
  .section { padding: 92px 0; }
  .brand { font-size: 21px; }
  .brand-mark { width: 32px; }
  .hero { padding-top: calc(var(--header) + 62px); background-size: 55px 55px; }
  .hero h1 { font-size: clamp(49px, 14vw, 68px); line-height: 0.95; }
  .hero-lede { margin-top: 24px; font-size: 15px; line-height: 1.7; }
  .hero-actions { flex-direction: column; gap: 22px; margin-top: 29px; }
  .trust-line { max-width: 310px; margin-inline: auto; line-height: 1.8; }
  .hero-product { width: 100%; height: 650px; margin-top: 45px; }
  .hero-product::before { top: 105px; width: 680px; height: 430px; }
  .orbit-one { top: 102px; width: 550px; height: 435px; }
  .orbit-two { top: 130px; width: 720px; height: 400px; }
  .phone-hero { top: 22px; width: 285px; }
  .benefit-chip { min-width: 0; width: 190px; }
  .benefit-chip b { font-size: 10px; }
  .benefit-chip small { font-size: 8px; }
  .chip-icon { width: 35px; height: 35px; border-radius: 11px; }
  .chip-left { top: 348px; left: -14px; }
  .chip-right { top: 125px; right: -25px; }
  .mini-player { right: -19px; bottom: 50px; width: 225px; }
  .note-one { top: 70px; left: 3px; }
  .note-two { top: 453px; right: 8px; }
  .star-one { top: 515px; left: 15px; }
  .star-two { right: 15px; }
  .promise-row { grid-template-columns: 1fr; margin-top: 0; padding-bottom: 20px; }
  .promise-row > div,
  .promise-row > div:first-child,
  .promise-row > div:last-child { padding: 19px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-row > div:last-child { border-bottom: 0; }
  .section-heading h2,
  .family-copy h2,
  .final-copy h2 { font-size: clamp(45px, 13vw, 64px); }
  .section-heading > p:last-child { font-size: 14px; }
  .principle-grid { margin-top: 52px; }
  .principle-card { min-height: 475px; padding: 26px 24px 23px; border-radius: 26px; }
  .principle-card h3 { font-size: 33px; }
  .journey-heading { margin-bottom: 65px; }
  .journey-row,
  .journey-row-reverse { gap: 42px; margin-bottom: 95px; }
  .journey-copy h3 { font-size: 44px; }
  .journey-visual { height: 620px; border-radius: 31px; }
  .phone-step { top: 48px; width: 260px; }
  .voice-card { right: 10px; bottom: 43px; width: 210px; }
  .tuned-card { top: 118px; left: 10px; }
  .stars-card { right: 8px; bottom: 65px; }
  .screen-showcase {
    display: flex;
    width: calc(100vw - 17px);
    gap: 14px;
    margin-top: 55px;
    padding: 0 17px 20px 0;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .screen-showcase::-webkit-scrollbar { display: none; }
  .showcase-card { width: min(75vw, 310px); flex: 0 0 auto; scroll-snap-align: start; }
  .family-bento { grid-template-columns: 1fr; }
  .bento-wide { display: block; grid-column: auto; }
  .bento-wide .duet-icon { margin-bottom: 36px; }
  .live-pill { position: absolute; top: 28px; right: 28px; }
  .bento-card { min-height: 230px; }
  .final-cta { padding: 110px 0 120px; background-size: 55px 55px; }
  .final-star-one { left: 7%; }
  .final-note { right: 7%; }
  .footer-grid { grid-template-columns: 1fr; gap: 55px; padding-bottom: 50px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 46px; }
  .eyebrow { font-size: 9px; letter-spacing: 0.12em; }
  .phone-hero { width: 265px; }
  .hero-product { height: 620px; }
  .chip-left { top: 325px; }
  .chip-right { top: 110px; }
  .mini-player { bottom: 50px; }
  .journey-visual { height: 580px; }
  .phone-step { width: 240px; }
  .footer-links { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
  .phone-hero { transform: translateX(-50%); }
}
