:root {
  --ink: #263044;
  --ink-soft: #687185;
  --purple: #8d57c8;
  --purple-dark: #5b3a8f;
  --purple-pale: #f3ecff;
  --pink: #ff789a;
  --pink-pale: #fff1f5;
  --blue: #2fa9ee;
  --blue-soft: #61b5f5;
  --blue-pale: #eaf7ff;
  --green: #52c41a;
  --green-dark: #3d9f14;
  --green-pale: #efffe8;
  --sun: #ffd15c;
  --sun-pale: #fff8df;
  --line: #e9e7ed;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --shadow: 0 30px 80px rgba(34, 91, 132, 0.13);
  --shadow-soft: 0 16px 42px rgba(34, 91, 132, 0.09);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 8.3vw, 7.8rem);
  line-height: 0.89;
  letter-spacing: 0;
  font-weight: 750;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 720;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 12px 18px;
  color: white;
  background: var(--ink);
  border-radius: 12px;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 860px; }
.center { margin-inline: auto; text-align: center; }
.section { position: relative; padding: clamp(88px, 11vw, 158px) 0; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}
.section-heading,
.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-heading h2,
.pricing-heading h2 { margin-bottom: 0; }
.section-heading > p,
.pricing-heading > p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(221, 238, 249, 0.9);
  box-shadow: 0 10px 34px rgba(33, 137, 205, 0.07);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.nav-wrap {
  width: min(calc(100% - 32px), 1260px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 780; letter-spacing: 0; }
.brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 30px; }
.main-nav a { color: #4b4754; font-size: 0.9rem; font-weight: 600; transition: color 0.2s ease; }
.main-nav a:hover { color: var(--blue); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 18px 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button span[aria-hidden="true"],
.text-link span[aria-hidden="true"] {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button:hover span[aria-hidden="true"],
.text-link:hover span[aria-hidden="true"] { transform: translateX(2px); }
.button-primary { color: white; background: #263044; box-shadow: 0 14px 30px rgba(38, 48, 68, 0.16); }
.button-primary span[aria-hidden="true"] { color: var(--green-dark); background: white; }
.button-primary:hover { background: #1f8fd1; box-shadow: 0 18px 42px rgba(47, 169, 238, 0.22); }
.button-dark { color: var(--ink); background: rgba(255,255,255,.74); border-color: rgba(47,169,238,.2); box-shadow: 0 10px 26px rgba(34,91,132,.08); }
.button-dark:hover { color: white; background: var(--ink); border-color: transparent; }
.button-small { min-height: 42px; padding: 8px 14px 8px 17px; font-size: 0.86rem; }
.button-light { color: var(--green-dark); background: white; box-shadow: 0 12px 30px rgba(34, 91, 132, 0.13); }
.button-light span[aria-hidden="true"] { color: white; background: var(--green); }
.button-full { width: 100%; }
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 8px 9px 8px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(38, 48, 68, 0.1);
  border-radius: 999px;
  font-weight: 760;
  box-shadow: 0 10px 24px rgba(34, 91, 132, 0.06);
}
.text-link span[aria-hidden="true"] { color: white; background: var(--green); }
.text-link:hover { border-color: rgba(47, 169, 238, 0.32); box-shadow: 0 14px 32px rgba(34, 91, 132, 0.1); }

.hero { min-height: 100svh; padding-top: 150px; padding-bottom: 46px; display: grid; align-content: center; overflow: hidden; background: linear-gradient(180deg, #f3fbff 0%, #ffffff 58%, #f4fbef 100%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 20px; align-items: center; }
.hero-copy { min-width: 0; position: relative; z-index: 3; padding-bottom: 34px; }
.hero-copy h1 span { color: var(--green-dark); }
.hero-lead { max-width: 650px; margin-bottom: 30px; color: var(--ink-soft); font-size: clamp(1.12rem, 1.65vw, 1.42rem); }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 9px; margin: 24px 0 0; color: #77727f; font-size: 0.84rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(75, 183, 123, 0.12); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 460px; height: 460px; right: -170px; top: 70px; background: rgba(97, 181, 245, 0.18); }
.hero-glow-two { width: 320px; height: 320px; left: -190px; bottom: 60px; background: rgba(82, 196, 26, 0.16); }
.hero-visual { min-width: 0; position: relative; min-height: 630px; display: grid; place-items: center; perspective: 900px; }
.hero-koala-wrap { width: min(520px, 90%); position: relative; z-index: 2; border-radius: 50%; transition: transform 0.24s ease-out; filter: drop-shadow(0 34px 40px rgba(42, 31, 68, 0.14)); }
.hero-koala { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 50%; }
.orbit { position: absolute; border: 1px solid rgba(47, 169, 238, 0.22); border-radius: 50%; }
.orbit-one { width: 540px; height: 540px; animation: orbitPulse 5s ease-in-out infinite; }
.orbit-two { width: 430px; height: 430px; border-color: rgba(82, 196, 26, 0.22); animation: orbitPulse 5s 1.2s ease-in-out infinite reverse; }
@keyframes orbitPulse { 50% { transform: scale(1.04); opacity: 0.55; } }
.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(229, 225, 237, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  animation: float 5s ease-in-out infinite;
}
.float-card strong, .float-card small { display: block; white-space: nowrap; }
.float-card strong { font-size: 0.82rem; }
.float-card small { color: var(--ink-soft); font-size: 0.67rem; margin-top: 1px; }
.float-message { left: 0; top: 22%; }
.float-family { right: -2%; bottom: 22%; animation-delay: -2s; }
.float-reading { left: 8%; bottom: 9%; animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-10px); } }
.card-avatar { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--pink); border-radius: 12px; font-size: 0.75rem; font-weight: 800; }
.card-check { margin-left: 8px; color: var(--green); font-weight: 900; }
.mini-faces { display: flex; }
.mini-faces span { width: 30px; height: 30px; display: grid; place-items: center; margin-left: -7px; color: white; background: var(--purple); border: 2px solid white; border-radius: 50%; font-size: 0.62rem; font-weight: 800; }
.mini-faces span:first-child { margin-left: 0; background: var(--blue); }
.mini-faces span:last-child { background: var(--pink); }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 7px rgba(75, 183, 123, 0.1); }
.proof-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 18px; padding: 22px; background: #dff2ff; border-radius: 26px; overflow: hidden; }
.proof-strip > div { padding: 14px 20px; text-align: center; background: white; }
.proof-strip > div:first-child { border-radius: 14px 0 0 14px; }
.proof-strip > div:last-child { border-radius: 0 14px 14px 0; }
.proof-strip strong { display: block; font-size: clamp(1.7rem, 2.4vw, 2.35rem); line-height: 1; letter-spacing: 0; }
.proof-strip strong span { color: var(--green-dark); }
.proof-strip p { margin: 5px 0 0; color: var(--ink-soft); font-size: 0.76rem; }

.statement-section { background: linear-gradient(180deg, var(--surface-soft), #ffffff); }
.transformation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 72px;
}
.transformation-card {
  min-height: 420px;
  position: relative;
  padding: clamp(34px, 4.6vw, 64px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.transformation-card:hover { transform: translateY(-6px); }
.muted-card {
  color: #697383;
  background: linear-gradient(180deg, #f4fbff, #e8f5ff);
  border: 1px solid #d8edf9;
}
.active-card {
  color: white;
  background: linear-gradient(145deg, #238fd3, #52c41a);
  box-shadow: 0 32px 70px rgba(47, 169, 238, 0.22);
}
.transformation-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}
.active-card::after { background: rgba(255,255,255,.14); }
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 9px;
  margin-bottom: 46px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(34, 91, 132, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-label::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #a9b8c5;
  border-radius: 50%;
}
.active-card .card-label {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255,255,255,.2);
}
.active-card .card-label::before { background: white; box-shadow: 0 0 0 6px rgba(255,255,255,.13); }
.transformation-card h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}
.transformation-card ul { display: grid; gap: 14px; padding: 0; margin: 32px 0 0; list-style: none; }
.transformation-card li { position: relative; z-index: 1; padding-left: 34px; font-size: clamp(1rem, 1.35vw, 1.18rem); }
.transformation-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.active-card li::before {
  width: 15px;
  height: 15px;
  top: 0.32em;
  border: 2px solid white;
  border-width: 0 2px 2px 0;
  background: none;
  border-radius: 0;
  transform: rotate(45deg);
}
.transformation-arrow {
  position: relative;
  align-self: center;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: white;
  background: #263044;
  border: 8px solid white;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(34,91,132,.14);
  font-size: 1.5rem;
}
.transformation-arrow::before,
.transformation-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(38,48,68,.22), transparent);
}
.transformation-arrow::before { right: 100%; }
.transformation-arrow::after { left: 100%; }
.transformation-grid.visible .transformation-arrow {
  animation: arrowBreathe 2.6s ease-in-out infinite;
}
.transformation-grid.visible .active-card {
  animation: activeLift 3.2s ease-in-out infinite;
}
@keyframes arrowBreathe {
  50% { transform: translateX(5px); background: var(--green); }
}
@keyframes arrowBreatheMobile {
  50% { transform: rotate(90deg) translateX(4px); background: var(--green); }
}
@keyframes activeLift {
  50% { box-shadow: 0 38px 84px rgba(47, 169, 238, 0.3); }
}

.trust-section { background: #ffffff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-card {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  border: 1px solid #dceefb;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(34, 91, 132, 0.06);
}
.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}
.trust-card:nth-child(2) .trust-icon { background: var(--blue); }
.trust-card:nth-child(3) .trust-icon { background: var(--pink); }
.trust-card:nth-child(4) .trust-icon { background: var(--purple); }
.trust-card p { color: var(--ink-soft); }

.product-section { overflow: hidden; background: linear-gradient(180deg, #fff, #f9fdff); }
.product-shell { padding: 16px; background: #dff2ff; border-radius: var(--radius-xl); }
.product-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.product-tab { padding: 14px 16px; color: var(--ink-soft); background: transparent; border: 0; border-radius: 17px; font-weight: 700; }
.product-tab.active { color: var(--ink); background: white; box-shadow: 0 8px 22px rgba(35, 117, 172, 0.08); }
.product-content { min-height: 650px; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 36px; align-items: center; padding: clamp(30px, 5vw, 76px); background: white; border-radius: 30px; overflow: hidden; }
.product-copy { max-width: 460px; }
.product-copy h3 { font-size: clamp(2.3rem, 4.8vw, 4.7rem); }
.product-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.05rem; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.feature-pills span { padding: 8px 12px; color: var(--purple-dark); background: var(--purple-pale); border-radius: 999px; font-size: 0.75rem; font-weight: 750; }
.phone-stage { min-height: 550px; display: grid; place-items: center; position: relative; }
.phone-stage::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, var(--green-pale), var(--blue-pale) 62%, transparent 63%); }
.real-screens { isolation: isolate; }
.screen-shot {
  position: absolute;
  margin: 0;
  background: white;
  border: 10px solid #ffffff;
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(34, 91, 132, 0.18);
  overflow: hidden;
}
.screen-shot img { width: 100%; height: 100%; object-fit: cover; }
.screen-main {
  z-index: 3;
  width: min(300px, 52vw);
  aspect-ratio: 375 / 911;
  transform: translateY(8px);
}
.screen-side {
  z-index: 2;
  width: min(210px, 36vw);
  aspect-ratio: 375 / 914;
  opacity: 0.9;
  filter: saturate(0.96);
}
.screen-left { left: 2%; transform: rotate(-7deg) translateY(34px); }
.screen-right { right: 0; transform: rotate(6deg) translateY(-26px); }
.screen-left img { object-position: top; }
.phone-frame { width: 300px; height: 610px; position: relative; z-index: 2; padding: 18px; color: #272330; background: #fbfbfc; border: 9px solid #1a1820; border-radius: 52px; box-shadow: 0 40px 78px rgba(33, 26, 50, 0.25); transform: rotate(4deg); transition: transform 0.4s ease; overflow: hidden; }
.phone-frame:hover { transform: rotate(0deg) translateY(-6px); }
.phone-top { display: flex; align-items: center; justify-content: space-between; font-size: 0.55rem; font-weight: 800; }
.phone-island { width: 72px; height: 20px; background: #17151d; border-radius: 999px; }
.app-head { display: flex; align-items: center; justify-content: space-between; margin: 30px 0 18px; }
.app-head small, .app-head strong { display: block; }
.app-head small { color: #8d8995; font-size: 0.68rem; }
.app-head strong { font-size: 0.93rem; }
.app-koala { width: 40px; height: 40px; overflow: hidden; border-radius: 50%; background: white; box-shadow: 0 5px 12px rgba(0,0,0,.08); }
.app-card { padding: 14px; background: white; border: 1px solid #ece9f0; border-radius: 18px; box-shadow: 0 8px 18px rgba(42,31,68,.05); }
.app-feature { background: linear-gradient(145deg, #fff, #fbf8ff); }
.app-card-top { display: flex; align-items: center; gap: 8px; }
.app-card-top strong, .app-card-top small { display: block; }
.app-card-top strong { font-size: 0.7rem; }
.app-card-top small { color: #92909a; font-size: 0.52rem; }
.app-icon { width: 30px; height: 30px; display: grid; place-items: center; color: white; background: var(--purple); border-radius: 10px; font-size: 0.62rem; font-weight: 800; }
.app-status { margin-left: auto; padding: 4px 7px; color: var(--green); background: #eaf8f1; border-radius: 99px; font-size: 0.5rem; font-weight: 800; }
.progress-row { display: flex; gap: 6px; margin: 16px 0 11px; }
.progress-row span { width: var(--value); max-width: 72px; height: 6px; background: var(--pink); border-radius: 99px; }
.progress-row span:nth-child(2) { background: var(--blue); }
.progress-row span:nth-child(3) { background: var(--green); }
.app-feature p { margin: 0; color: #706c78; font-size: 0.58rem; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.app-grid small, .app-grid strong { display: block; }
.app-grid small { color: #98949f; font-size: 0.52rem; }
.app-grid strong { margin: 5px 0 10px; font-size: 0.66rem; }
.meter { height: 4px; display: block; background: #eaf4ee; border-radius: 99px; overflow: hidden; }
.meter i { height: 100%; display: block; background: var(--green); }
.meter.purple { background: var(--purple-pale); }
.meter.purple i { background: var(--purple); }
.app-message { display: flex; align-items: center; gap: 10px; margin-top: 10px; padding: 13px; color: white; background: var(--ink); border-radius: 17px; }
.app-message strong, .app-message small { display: block; }
.app-message strong { font-size: 0.63rem; }
.app-message small { color: #b9b6c0; font-size: 0.5rem; }
.app-message b { margin-left: auto; }
.message-dot { width: 8px; height: 8px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 0 5px rgba(245,109,154,.18); }

.bento-section { background: #f6fbff; }
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 58px; }
.bento-card { min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(26px, 4vw, 48px); background: white; border: 1px solid rgba(231, 228, 235, 0.9); border-radius: var(--radius-lg); overflow: hidden; }
.bento-card p { color: var(--ink-soft); }
.bento-large { grid-column: span 8; flex-direction: row; gap: 30px; }
.bento-stat { grid-column: span 4; background: linear-gradient(145deg, var(--green-pale), white); }
.bento-dark { grid-column: span 4; color: white; background: linear-gradient(145deg, #2189cd, #2fa9ee); }
.bento-dark p { color: #e7f6ff; }
.bento-wide { grid-column: span 8; flex-direction: row; align-items: end; }
.number-chip { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 42px; color: var(--green-dark); background: var(--green-pale); border-radius: 13px; font-size: 0.7rem; font-weight: 800; }
.number-chip.light { color: white; background: rgba(255,255,255,.12); }
.message-stack { align-self: end; min-width: 330px; display: grid; gap: 9px; transform: translate(18px, 32px); }
.message-stack > div { display: flex; align-items: center; gap: 10px; padding: 14px; background: #f8f7fa; border: 1px solid #ebe8ef; border-radius: 17px; box-shadow: var(--shadow-soft); }
.message-stack > div > span { width: 32px; height: 32px; flex: 0 0 auto; background: var(--purple-pale); border-radius: 10px; }
.message-stack > div:nth-child(2) > span { background: var(--pink-pale); }
.message-stack > div:nth-child(3) > span { background: var(--blue-pale); }
.message-stack p { margin: 0; }
.message-stack b, .message-stack small { display: block; }
.message-stack b { color: var(--ink); font-size: 0.67rem; }
.message-stack small { font-size: 0.52rem; }
.message-stack i { margin-left: auto; color: var(--green); font-style: normal; font-size: 0.6rem; }
.big-stat { margin: auto 0 0; color: var(--ink) !important; font-size: clamp(4rem, 7vw, 6.7rem); font-weight: 760; line-height: 0.8; letter-spacing: 0; }
.big-stat span { color: var(--green); }
.bento-stat h3 { margin: 14px 0 0; }
.read-receipt { display: flex; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); color: #8f8b96; font-size: 0.65rem; }
.read-receipt b { color: #d8d5dc; }
.value-graph { height: 190px; min-width: 310px; display: flex; align-items: end; gap: 9px; padding: 20px; background: var(--surface-soft); border-radius: 22px; }
.value-graph span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--blue), var(--green)); border-radius: 8px 8px 3px 3px; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.audience-card { padding: 14px 14px 30px; border: 1px solid var(--line); border-radius: 30px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.audience-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.audience-image { height: 410px; display: grid; place-items: end center; margin-bottom: 28px; border-radius: 21px; overflow: hidden; }
.audience-image.lavender { background: linear-gradient(180deg, var(--blue-pale), white); }
.audience-image.pink { background: linear-gradient(180deg, var(--pink-pale), white); }
.audience-image.blue { background: linear-gradient(180deg, var(--green-pale), white); }
.audience-image img { height: 96%; width: 100%; object-fit: contain; object-position: bottom; transition: transform .35s ease; }
.audience-card:hover img { transform: scale(1.035); }
.audience-card > p, .audience-card h3 { margin-inline: 16px; }
.audience-card > p:not(.eyebrow) { color: var(--ink-soft); }

.story-section { padding-top: 30px; }
.story-card { min-height: 570px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; padding: clamp(40px, 7vw, 90px); color: white; background: linear-gradient(140deg, #2fa9ee 0%, #63c634 58%, #ffd15c 100%); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 34px 80px rgba(47,169,238,.22); }
.story-copy { position: relative; z-index: 2; max-width: 650px; }
.story-copy h2 { font-size: clamp(2.7rem, 5.4vw, 5.3rem); }
.story-copy > p:not(.eyebrow) { max-width: 580px; color: #f7fffb; font-size: 1.1rem; }
.story-copy .button { margin-top: 18px; }
.light-eyebrow { color: #ffffff; }
.story-visual { position: relative; align-self: stretch; display: grid; place-items: center; }
.story-visual img { position: relative; z-index: 2; width: 410px; }
.story-ring { position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.ring-one { width: 450px; height: 450px; }
.ring-two { width: 560px; height: 560px; }

.pricing-section { background: #f7fbff; }
.calculator { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; padding: 18px; background: #dff2ff; border-radius: var(--radius-xl); }
.calculator-controls, .calculator-result { padding: clamp(28px, 5vw, 58px); background: white; border-radius: 28px; }
.calculator-controls { display: flex; flex-direction: column; justify-content: center; gap: 44px; }
.field-group label { display: block; margin-bottom: 10px; color: var(--ink-soft); font-size: 0.77rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.select-wrap { position: relative; }
.select-wrap select { width: 100%; appearance: none; padding: 17px 50px 17px 18px; color: var(--ink); background: var(--surface-soft); border: 1px solid var(--line); border-radius: 16px; outline: none; font-weight: 680; }
.select-wrap span { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.field-hint { display: block; margin-top: 8px; color: #7f8a9a; font-size: .74rem; }
.label-row { display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.label-row output { color: var(--green-dark); font-size: 3rem; line-height: 1; font-weight: 760; letter-spacing: 0; }
input[type="range"] { width: 100%; height: 6px; appearance: none; background: linear-gradient(to right, var(--green) 0 var(--range-progress, 12.3%), #dbe9f2 var(--range-progress, 12.3%) 100%); border-radius: 99px; outline: none; }
input[type="range"]::-webkit-slider-thumb { width: 24px; height: 24px; appearance: none; background: white; border: 6px solid var(--green); border-radius: 50%; box-shadow: 0 4px 10px rgba(61,159,20,.2); }
input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; background: white; border: 6px solid var(--green); border-radius: 50%; box-shadow: 0 4px 10px rgba(61,159,20,.2); }
.range-labels { display: flex; justify-content: space-between; margin-top: 9px; color: #a19da7; font-size: .68rem; }
.calculator-note { padding: 15px 17px; color: var(--ink-soft); background: var(--green-pale); border-radius: 15px; font-size: .82rem; }
.calculator-result { display: flex; flex-direction: column; color: white; background: linear-gradient(145deg, #263044, #2189cd); }
.result-kicker { margin-bottom: 34px; color: #d0cbd7; font-size: .75rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }
.result-price { display: grid; grid-template-columns: auto auto 1fr; align-items: start; gap: 7px; margin-bottom: 9px; }
.result-price > span { margin-top: 10px; color: var(--pink); font-size: 1.5rem; font-weight: 800; }
.result-price strong { font-size: clamp(3.8rem, 7vw, 6.6rem); line-height: .85; letter-spacing: 0; }
.result-price small { align-self: end; margin-bottom: 6px; color: #aaa6b0; }
.result-average { margin-bottom: 40px; color: #a9a5af; }
.result-average span { color: white; font-weight: 700; }
.result-lines { display: grid; gap: 13px; margin-bottom: 28px; padding-top: 24px; border-top: 1px solid #35323c; }
.result-lines > div { display: flex; justify-content: space-between; gap: 18px; color: #aaa6b0; font-size: .82rem; }
.result-lines strong { color: white; text-align: right; }
.calculator-result .button-primary { margin-top: auto; color: var(--green-dark); background: white; }
.legal-note { display: block; margin-top: 15px; color: #817d88; font-size: .64rem; line-height: 1.5; text-align: center; }
.pricing-bands { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 18px; }
.pricing-bands > div { padding: 20px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.pricing-bands span, .pricing-bands strong, .pricing-bands small { display: block; }
.pricing-bands span { color: var(--green-dark); font-size: .7rem; font-weight: 780; text-transform: uppercase; }
.pricing-bands strong { margin-top: 7px; font-size: 1.2rem; }
.pricing-bands small { color: var(--ink-soft); }
.pricing-bands .active { color: white; background: var(--green); border-color: var(--green); }
.pricing-bands .active span { color: #eadfff; }
.pricing-bands .active small { color: #ded4f3; }

.process-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--green-dark); font-size: .75rem; font-weight: 800; }
.process-list li > div { display: grid; grid-template-columns: .7fr 1fr; gap: 40px; }
.process-list h3, .process-list p { margin: 0; }
.process-list p { color: var(--ink-soft); }

.faq-section { background: var(--surface-soft); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro > p:not(.eyebrow) { color: var(--ink-soft); }
.faq-list { border-top: 1px solid #dcd9e0; }
.faq-list details { border-bottom: 1px solid #dcd9e0; }
.faq-list summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 1.4rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -4px 0 26px; padding-right: 42px; color: var(--ink-soft); }

.final-cta-section { padding-bottom: 80px; }
.final-cta { min-height: 560px; position: relative; padding: clamp(48px, 8vw, 104px); color: white; background: linear-gradient(145deg, #2189cd, #52c41a); border-radius: var(--radius-xl); overflow: hidden; }
.final-cta > h2 { max-width: 760px; position: relative; z-index: 2; }
.final-cta > p:not(.eyebrow) { max-width: 610px; position: relative; z-index: 2; color: #f3fff0; font-size: 1.1rem; }
.final-cta .button { position: relative; z-index: 3; margin-top: 18px; }
.final-cta .eyebrow { color: #ffffff; }
.cta-koala {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 24px;
  width: min(330px, 31vw);
  opacity: 1;
  transform: rotate(-4deg);
  filter: drop-shadow(0 24px 34px rgba(38, 48, 68, 0.16));
}
.cta-koala::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 112%;
  height: 52px;
  z-index: -1;
  background: #6fd648;
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: inset 0 -10px 0 rgba(61, 159, 20, 0.18), 0 14px 22px rgba(38, 48, 68, 0.08);
}
.cta-koala img { border-radius: 0; }

.site-footer { padding: 74px 0 28px; background: #f5f4f6; }
.footer-top { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 50px; padding-bottom: 58px; }
.footer-brand p { max-width: 310px; margin: 20px 0 0; color: var(--ink-soft); }
.footer-links { display: grid; align-content: start; gap: 11px; }
.footer-links strong { margin-bottom: 7px; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a { color: var(--ink-soft); font-size: .9rem; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: #8b8791; border-top: 1px solid #dedce2; font-size: .75rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; align-items: center; gap: 10px; padding: 12px 13px 12px 17px; color: white; background: #1c9c57; border-radius: 999px; box-shadow: 0 14px 34px rgba(28,156,87,.3); font-size: .8rem; font-weight: 750; }
.whatsapp-float b { width: 27px; height: 27px; display: grid; place-items: center; background: rgba(255,255,255,.16); border-radius: 50%; }

.video-modal { width: min(1040px, calc(100% - 32px)); padding: 0; background: #050505; border: 0; border-radius: 24px; box-shadow: 0 40px 100px rgba(0,0,0,.45); overflow: visible; }
.video-modal::backdrop { background: rgba(15, 12, 22, .82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.video-modal video { width: 100%; max-height: 82svh; display: block; border-radius: 24px; }
.video-close { position: absolute; right: -12px; top: -44px; width: 38px; height: 38px; color: white; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 1.6rem; }

.legal-hero {
  padding-top: 150px;
  background: linear-gradient(180deg, #f3fbff 0%, #ffffff 100%);
}
.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.52fr);
  gap: 58px;
  align-items: center;
}
.legal-hero-copy h1 {
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}
.legal-updated {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 10px 14px;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}
.legal-hero-card {
  position: relative;
  padding: 34px;
  background: white;
  border: 1px solid #dceefb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.legal-hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 38%;
  background: linear-gradient(135deg, var(--blue-pale), var(--green-pale));
}
.legal-hero-card img,
.legal-hero-card h2,
.legal-hero-card p {
  position: relative;
  z-index: 1;
}
.legal-hero-card img {
  width: 210px;
  margin-inline: auto;
  filter: drop-shadow(0 18px 26px rgba(34, 91, 132, 0.14));
}
.legal-hero-card h2 {
  margin: 22px 0 12px;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
}
.legal-hero-card p { color: var(--ink-soft); margin-bottom: 0; }

.legal-section { padding-top: 36px; background: #ffffff; }
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: #f7fbff;
  border: 1px solid #dceefb;
  border-radius: 22px;
}
.legal-toc strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-toc a {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.legal-toc a:hover { color: var(--blue); }
.legal-content {
  max-width: 860px;
}
.legal-content section {
  scroll-margin-top: 110px;
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid #e5edf5;
}
.legal-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.1;
}
.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.legal-content a {
  color: var(--blue);
  font-weight: 700;
}
.legal-content ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  margin: 18px 0 0;
}
.legal-note-box {
  padding: 24px;
  color: var(--ink);
  background: var(--sun-pale);
  border: 1px solid #f7dfa0;
  border-radius: 20px;
}
.legal-note-box p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .main-nav { gap: 18px; }
  .nav-wrap { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; padding-top: 30px; }
  .hero-visual { min-height: 560px; }
  .proof-strip { grid-template-columns: repeat(3, 1fr); }
  .proof-strip > div { border-radius: 12px !important; }
  .section-heading, .pricing-heading { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .bento-large, .bento-wide { grid-column: span 7; }
  .bento-stat, .bento-dark { grid-column: span 5; }
  .bento-large { flex-direction: column; }
  .message-stack { min-width: 0; width: 100%; transform: none; }
  .bento-wide { flex-direction: column; align-items: stretch; }
  .value-graph { min-width: 0; width: 100%; }
  .audience-image { height: 340px; }
  .story-card { grid-template-columns: 1fr .6fr; }
  .legal-hero-grid { grid-template-columns: 1fr; }
  .legal-hero-card { max-width: 560px; }
  .legal-layout { grid-template-columns: 1fr; gap: 36px; }
  .legal-toc { position: static; grid-template-columns: repeat(2, 1fr); }
  .legal-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  h1 { font-size: clamp(3.7rem, 16vw, 6.5rem); }
  .site-header { background: rgba(255,255,255,.88); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: grid; justify-self: end; gap: 5px; width: 42px; height: 42px; place-content: center; background: transparent; border: 0; }
  .menu-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: absolute; left: 16px; right: 16px; top: 66px; display: grid; gap: 0; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { padding: 12px; }
  .nav-cta { display: none; }
  .hero { padding-top: 120px; }
  .hero-visual { min-height: 500px; }
  .float-family { right: 0; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .transformation-grid { grid-template-columns: 1fr; gap: 22px; margin-top: 52px; }
  .transformation-card { min-height: 0; }
  .transformation-arrow { width: 64px; height: 64px; margin-inline: auto; transform: rotate(90deg); }
  .transformation-grid.visible .transformation-arrow { animation-name: arrowBreatheMobile; }
  .transformation-arrow::before,
  .transformation-arrow::after { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .product-tabs { grid-template-columns: 1fr 1fr; }
  .product-content { grid-template-columns: 1fr; }
  .product-copy { max-width: 680px; }
  .phone-stage { min-height: 610px; }
  .screen-main { width: min(285px, 54vw); }
  .screen-side { width: min(180px, 34vw); }
  .screen-left { left: 10%; }
  .screen-right { right: 8%; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-stat, .bento-dark, .bento-wide { grid-column: auto; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { display: grid; grid-template-columns: .8fr 1fr; column-gap: 24px; align-items: center; }
  .audience-image { height: 380px; grid-row: 1 / span 3; margin-bottom: 0; }
  .audience-card > p, .audience-card h3 { margin-inline: 0; }
  .story-card { grid-template-columns: 1fr; }
  .story-visual { display: none; }
  .calculator { grid-template-columns: 1fr; }
  .pricing-bands { grid-template-columns: repeat(3, 1fr); }
  .process-list li > div { grid-template-columns: 1fr; gap: 9px; }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-intro { position: static; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-hero { padding-top: 120px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 82px 0; }
  h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .brand img { width: 40px; height: 40px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 390px; }
  .hero-koala-wrap { width: 330px; }
  .orbit-one { width: 355px; height: 355px; }
  .orbit-two { width: 285px; height: 285px; }
  .float-card { transform: scale(.86); }
  .float-message { left: -24px; top: 15%; }
  .float-family { right: -30px; bottom: 18%; }
  .float-reading { display: none; }
  .proof-strip { grid-template-columns: 1fr 1fr; padding: 8px; border-radius: 20px; }
  .proof-strip > div { padding: 17px 6px; }
  .proof-strip > div:last-child { grid-column: 1 / -1; }
  .transformation-card { padding: 30px 24px; border-radius: 28px; }
  .transformation-card h3 { font-size: clamp(1.75rem, 9vw, 2.6rem); }
  .card-label { margin-bottom: 30px; }
  .product-shell { padding: 8px; border-radius: 28px; }
  .product-tabs { grid-template-columns: 1fr; }
  .product-content { padding: 30px 18px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { min-height: 0; }
  .phone-stage { min-height: 520px; transform: none; margin: -12px 0 -22px; }
  .phone-stage::before { width: 360px; height: 360px; }
  .screen-shot { border-width: 7px; border-radius: 26px; }
  .screen-main { width: min(238px, 66vw); }
  .screen-side { width: min(122px, 32vw); }
  .screen-left { left: 0; transform: rotate(-6deg) translateY(52px); }
  .screen-right { right: 0; transform: rotate(6deg) translateY(-34px); }
  .audience-card { display: block; }
  .audience-image { height: 390px; margin-bottom: 24px; }
  .story-card, .final-cta { border-radius: 28px; }
  .calculator { padding: 8px; border-radius: 28px; }
  .calculator-controls, .calculator-result { padding: 28px 20px; border-radius: 22px; }
  .result-price strong { font-size: 3.9rem; }
  .result-price small { font-size: .7rem; }
  .pricing-bands { grid-template-columns: 1fr 1fr; }
  .pricing-bands > div:last-child { grid-column: 1 / -1; }
  .process-list li { grid-template-columns: 46px 1fr; gap: 10px; }
  .faq-list summary { align-items: flex-start; }
  .final-cta { min-height: 0; padding-bottom: 32px; }
  .final-cta > h2,
  .final-cta > p:not(.eyebrow) { max-width: none; }
  .cta-koala {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(210px, 68vw);
    margin: 30px auto 0;
    transform: none;
    opacity: 1;
  }
  .cta-koala::before {
    bottom: -10px;
    height: 34px;
    width: 108%;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .legal-hero-grid { gap: 28px; }
  .legal-hero-card { padding: 24px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-content section { margin-bottom: 30px; padding-bottom: 30px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 11px; right: 14px; bottom: 14px; }
  .whatsapp-float b { width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
