:root {
  --ink: #171225;
  --ink-soft: #2f2940;
  --paper: #fbfaf7;
  --paper-2: #f2eef8;
  --white: #ffffff;
  --muted: #716b7d;
  --line: rgba(46, 33, 75, 0.12);
  --purple: #7042d8;
  --purple-deep: #4b258f;
  --purple-soft: #eee7fb;
  --gold: #c99b43;
  --gold-soft: #f4e3b7;
  --cyan: var(--gold);
  --cyan-strong: var(--purple);
  --red: var(--purple);
  --red-deep: var(--purple-deep);
  --lime: var(--gold-soft);
  --shadow: 0 34px 90px rgba(43, 27, 72, 0.17);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Hebrew", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  transform: translateY(-150%);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--gold-soft);
  color: var(--ink);
  font-weight: 800;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 18px;
  color: var(--ink);
  transition: background 180ms ease, padding 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  border-bottom: 1px solid rgba(46, 33, 75, 0.08);
  background: rgba(251, 250, 247, 0.88);
  box-shadow: 0 12px 40px rgba(45, 29, 74, 0.06);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.nav-shell,
.brand,
.primary-nav,
.hero-actions,
.hero-chips,
.store-buttons,
.footer-bottom {
  display: flex;
  align-items: center;
}

.nav-shell {
  justify-content: space-between;
  gap: 28px;
}

.brand {
  gap: 11px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.primary-nav {
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(23, 18, 37, 0.68);
  transition: color 160ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  inset: auto 0 -7px;
  width: 0;
  height: 2px;
  margin: auto;
  border-radius: 99px;
  background: var(--gold);
  content: "";
  transition: width 160ms ease;
}

.primary-nav > a:hover {
  color: var(--ink);
}

.primary-nav > a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid var(--purple);
  border-radius: 999px;
  padding: 0 19px;
  background: var(--purple);
  box-shadow: 0 12px 28px rgba(112, 66, 216, 0.2);
  color: var(--white);
}

.nav-cta span,
.button span {
  font-size: 17px;
  transition: transform 160ms ease;
}

.nav-cta:hover span,
.button:hover span {
  transform: translate(-2px, -2px);
}

[dir="ltr"] .nav-cta:hover span,
[dir="ltr"] .button:hover span {
  transform: translate(2px, -2px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(46, 33, 75, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 152px 0 104px;
  background:
    radial-gradient(circle at 88% 18%, rgba(112, 66, 216, 0.13), transparent 27rem),
    radial-gradient(circle at 12% 74%, rgba(201, 155, 67, 0.13), transparent 25rem),
    linear-gradient(145deg, #ffffff 0%, #fbfaf7 58%, #f5f0fb 100%);
  color: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    radial-gradient(circle at center, rgba(112, 66, 216, 0.12) 0 1px, transparent 1.5px);
  background-size: 30px 30px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 72%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(450px, 0.98fr);
  align-items: center;
  gap: 64px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.45;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  content: "";
}

.eyebrow--hero {
  max-width: 560px;
  color: var(--purple-deep);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

[dir="ltr"] .hero h1 {
  font-size: clamp(46px, 5vw, 72px);
}

.hero h1 em {
  display: block;
  margin-top: 8px;
  background: linear-gradient(105deg, var(--purple) 10%, #8d5ae6 58%, var(--gold) 115%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-copy > p {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--purple), #8351df);
  box-shadow: 0 18px 44px rgba(112, 66, 216, 0.25);
  color: var(--white);
}

.button--primary:hover {
  background: linear-gradient(135deg, #7e4ce2, #9566e8);
}

.button--ghost {
  border-color: rgba(46, 33, 75, 0.14);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button--ghost:hover {
  border-color: rgba(112, 66, 216, 0.3);
  background: var(--white);
}

.hero-chips {
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chips li {
  border: 1px solid rgba(112, 66, 216, 0.12);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.7);
  color: #5e536d;
  font-size: 12px;
  font-weight: 700;
}

.page-kind-home .hero-copy {
  max-width: 720px;
}

.page-kind-home .hero {
  min-height: 800px;
  padding-bottom: 88px;
}

.page-kind-home .hero h1 {
  max-width: 700px;
  font-size: clamp(52px, 5.2vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

[dir="ltr"] .page-kind-home .hero h1 {
  max-width: 660px;
  font-size: clamp(50px, 5vw, 74px);
}

.page-kind-home .hero h1 em {
  margin-top: 13px;
  font-size: 1.09em;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.page-kind-home .hero-copy > p {
  max-width: 615px;
  margin-top: 26px;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.64;
}

.page-kind-home .hero-actions {
  margin-top: 30px;
}

.hero-smart-download {
  display: none;
}

.hero-actions .store-buttons--compact {
  gap: 8px;
}

.store-buttons--compact .store-button {
  min-height: 50px;
  box-shadow: 0 12px 30px rgba(35, 18, 51, 0.13);
}

.store-buttons--compact .store-button--apple img {
  height: 42px;
}

.store-buttons--compact .store-button--google img {
  height: 51px;
}

.page-kind-home .button--primary {
  min-width: 194px;
  box-shadow:
    0 20px 48px rgba(112, 66, 216, 0.3),
    0 4px 12px rgba(112, 66, 216, 0.14);
}

.page-kind-home .hero-chips {
  gap: 7px;
  margin-top: 24px;
}

.page-kind-home .hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 11px;
  color: #4f455d;
  font-size: 11.5px;
  font-weight: 800;
}

.page-kind-home .hero-chips li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  box-shadow: 0 0 0 3px rgba(112, 66, 216, 0.07);
  content: "";
}

.hero-visual,
.section-visual {
  min-width: 0;
}

.visual {
  position: relative;
  width: 100%;
  min-height: 510px;
}

.visual--screens {
  transform: perspective(1100px) rotateY(-4deg);
}

[dir="ltr"] .visual--screens {
  transform: perspective(1100px) rotateY(4deg);
}

.screen-glow {
  position: absolute;
  inset: 12% 2% 5%;
  border-radius: 50%;
  background: rgba(45, 161, 190, 0.27);
  filter: blur(70px);
}

.store-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #0c2029;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
}

.store-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-shot--back {
  inset: 26px 20px auto 10%;
  width: 76%;
  aspect-ratio: 526 / 296;
  transform: rotate(4deg);
  opacity: 0.7;
}

.store-shot--front {
  inset: auto 7% 36px auto;
  z-index: 2;
  width: 88%;
  aspect-ratio: 526 / 296;
  transform: rotate(-3deg);
}

.floating-proof,
.mini-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 11px 15px;
  background: rgba(35, 23, 57, 0.9);
  box-shadow: 0 20px 45px rgba(44, 29, 72, 0.2);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.floating-proof {
  inset: 52% auto auto -2%;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #69e989;
  box-shadow: 0 0 0 5px rgba(105, 233, 137, 0.12);
}

.device-stage {
  min-height: 610px;
  isolation: isolate;
}

.device-halo,
.portrait-glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(112, 66, 216, 0.2);
  filter: blur(64px);
  pointer-events: none;
}

.device-halo {
  inset: 9% 2% 6%;
  z-index: -1;
}

.device-frame {
  position: absolute;
  overflow: hidden;
  width: 256px;
  aspect-ratio: 720 / 1558;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 49px;
  padding: 8px;
  background: #110d1b;
  box-shadow:
    0 42px 90px rgba(47, 29, 77, 0.22),
    0 10px 24px rgba(33, 19, 58, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.device-frame::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  box-shadow: inset 18px 0 32px rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.device-frame img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
}

.device-speaker {
  position: absolute;
  inset: 14px 50% auto auto;
  z-index: 3;
  width: 64px;
  height: 18px;
  transform: translateX(50%);
  border-radius: 999px;
  background: rgba(10, 8, 16, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}

.device-frame--front {
  inset: 4px 4% auto auto;
  z-index: 2;
  transform: rotate(2.5deg);
}

.device-frame--back {
  inset: 66px auto auto 4%;
  width: 230px;
  transform: rotate(-7deg);
  opacity: 0.92;
}

.portrait-visual {
  display: grid;
  min-height: 610px;
  place-items: center;
  isolation: isolate;
}

.portrait-glow {
  inset: 18% 18% 14%;
  z-index: -1;
}

.portrait-glow--gold {
  background: rgba(201, 155, 67, 0.19);
}

.device-frame--single {
  position: relative;
  width: 276px;
}

.device-frame--journey {
  transform: rotate(-2deg);
}

.section--dark .device-frame {
  border-color: rgba(244, 227, 183, 0.28);
  box-shadow:
    0 46px 100px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(201, 155, 67, 0.08);
}

.section--dark .portrait-glow {
  background: rgba(112, 66, 216, 0.32);
}

.app-art {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(79, 55, 118, 0.13);
  border-radius: 38px;
  background: #f7f6f8;
  box-shadow:
    0 42px 90px rgba(47, 29, 77, 0.2),
    0 10px 24px rgba(33, 19, 58, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.app-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.device-stage .app-art {
  position: absolute;
}

.app-art--front {
  inset: 0 1% auto auto;
  z-index: 2;
  width: 286px;
  transform: rotate(2.2deg);
}

.app-art--back {
  inset: 64px auto auto 1%;
  width: 250px;
  transform: rotate(-6deg);
  opacity: 0.94;
}

.app-art--single {
  width: min(294px, 76%);
}

.app-art--journey {
  transform: rotate(-1.5deg);
}

.app-art--community {
  border-color: rgba(139, 85, 244, 0.2);
}

.section--dark .app-art {
  border-color: rgba(244, 227, 183, 0.24);
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 155, 67, 0.07);
}

.coach-brand-visual {
  display: grid;
  min-height: 560px;
  place-items: center;
  isolation: isolate;
}

.app-art--coach {
  z-index: 2;
  width: min(340px, 76%);
  border-color: rgba(201, 155, 67, 0.28);
  border-radius: 76px;
  background: #160c32;
  box-shadow:
    0 44px 100px rgba(34, 17, 72, 0.26),
    0 0 0 12px rgba(201, 155, 67, 0.06);
}

.coach-orbit {
  position: absolute;
  inset: 12% 10%;
  z-index: -1;
  border: 1px solid rgba(112, 66, 216, 0.2);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.coach-orbit::before,
.coach-orbit::after {
  position: absolute;
  border: 1px solid rgba(201, 155, 67, 0.18);
  border-radius: 50%;
  content: "";
}

.coach-orbit::before {
  inset: 9%;
  transform: rotate(42deg);
}

.coach-orbit::after {
  inset: 22%;
  border-color: rgba(112, 66, 216, 0.24);
}

.coach-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(201, 155, 67, 0.7);
}

.coach-orbit span:nth-child(1) {
  inset: 7% 20% auto auto;
}

.coach-orbit span:nth-child(2) {
  inset: auto auto 18% 4%;
}

.coach-orbit span:nth-child(3) {
  inset: 48% 1% auto auto;
  background: var(--purple);
}

.coach-caption {
  position: absolute;
  inset: auto 50% 2% auto;
  z-index: 3;
  width: max-content;
  max-width: 84%;
  transform: translateX(50%);
  border: 1px solid rgba(112, 66, 216, 0.14);
  border-radius: 20px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(44, 29, 72, 0.14);
  text-align: center;
  backdrop-filter: blur(16px);
}

.coach-caption span,
.coach-caption strong {
  display: block;
}

.coach-caption span {
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-caption strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 13px;
}

.mini-card svg {
  width: 16px;
  height: 16px;
}

.hero-marquee {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.hero-marquee span {
  min-width: max-content;
  padding-inline-end: 30px;
  animation: marquee 26s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

[dir="rtl"] .hero-marquee span {
  animation-direction: reverse;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--paper);
}

.section:nth-of-type(odd) {
  background: #f8f5fb;
}

.section--dark {
  background:
    radial-gradient(circle at 74% 45%, rgba(112, 66, 216, 0.22), transparent 29rem),
    radial-gradient(circle at 16% 86%, rgba(201, 155, 67, 0.1), transparent 23rem),
    linear-gradient(145deg, #171124, #0c0912) !important;
  color: var(--white);
}

.section--lavender {
  background:
    radial-gradient(circle at 85% 35%, rgba(112, 66, 216, 0.13), transparent 27rem),
    linear-gradient(145deg, #f8f4ff, #f2ecfa) !important;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: 84px;
}

.split-grid--reverse .section-copy {
  order: 2;
}

.split-grid--reverse .section-visual {
  order: 1;
}

.section-copy {
  max-width: 720px;
}

.section-copy--center {
  margin-inline: auto;
  text-align: center;
}

.section-copy--center .eyebrow {
  justify-content: center;
}

.section-copy h2,
.download-shell h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section--dark .eyebrow {
  color: var(--gold);
}

.section-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}

.feature-grid:has(.feature-card:nth-child(4)) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 29px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 15px 50px rgba(10, 31, 40, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.section--dark .feature-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.feature-card::after {
  position: absolute;
  inset: auto -20% -55% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(112, 223, 242, 0.13);
  filter: blur(15px);
  content: "";
}

.feature-card--link:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(29, 158, 193, 0.35);
  box-shadow: 0 26px 60px rgba(10, 31, 40, 0.12);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(29, 158, 193, 0.18);
  border-radius: 16px;
  background: rgba(112, 223, 242, 0.12);
  color: var(--cyan-strong);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-stat {
  position: absolute;
  inset: 28px auto auto 28px;
  color: rgba(7, 23, 31, 0.27);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

[dir="ltr"] .card-stat {
  inset: 28px 28px auto auto;
}

.feature-card h3 {
  margin: 50px 0 0;
  font-size: 23px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section--dark .feature-card p {
  color: rgba(255, 255, 255, 0.62);
}

.card-link {
  position: absolute;
  inset: auto auto 24px 26px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

[dir="ltr"] .card-link {
  inset: auto 26px 24px auto;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

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

.section--dark .check-list li {
  color: rgba(255, 255, 255, 0.8);
}

.check-list li span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 50%;
  background: rgba(29, 158, 193, 0.12);
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 900;
}

.section--dark .check-list li span {
  background: rgba(112, 223, 242, 0.12);
  color: var(--cyan);
}

.section-visual .visual {
  min-height: 500px;
}

.phone-visual {
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: 270px;
  height: 548px;
  overflow: hidden;
  border: 8px solid #132b35;
  border-radius: 48px;
  background: #091b23;
  box-shadow: 0 40px 90px rgba(7, 23, 31, 0.26);
}

.section--dark .phone {
  border-color: rgba(255, 255, 255, 0.15);
}

.phone-top {
  position: absolute;
  z-index: 4;
  inset: 10px 50% auto auto;
  width: 82px;
  height: 25px;
  transform: translateX(50%);
  border-radius: 999px;
  background: #06131a;
}

.phone-screen {
  position: absolute;
  inset: 0;
  padding: 58px 22px 22px;
}

.emergency-screen {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 102, 91, 0.32), transparent 42%),
    linear-gradient(#172229, #09141a);
  color: var(--white);
  text-align: center;
}

.screen-kicker {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.emergency-orbit {
  display: grid;
  width: 174px;
  height: 174px;
  margin: 39px auto 28px;
  place-items: center;
  border: 1px solid rgba(255, 102, 91, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 102, 91, 0.23), transparent 62%);
  box-shadow:
    0 0 0 14px rgba(255, 102, 91, 0.05),
    0 0 0 30px rgba(255, 102, 91, 0.025);
}

.emergency-orbit span {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.phone-screen h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.screen-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: 34px;
  border-radius: 16px;
  padding: 0 16px;
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.mini-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.mini-card--left {
  inset: 34% auto auto 4%;
}

.mini-card--right {
  inset: 62% 0 auto auto;
}

.mini-card > span:not(.live-dot) {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(50, 185, 105, 0.13);
  color: #1a9b50;
}

.coach-screen {
  background: linear-gradient(170deg, #f9fbf7, #e8f4f3);
  color: var(--ink);
}

.coach-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7, 23, 31, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.coach-head small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.brain-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: var(--lime);
  font-size: 18px;
}

.bubble {
  width: 83%;
  margin-top: 20px;
  border-radius: 18px 18px 6px;
  padding: 13px 14px;
  font-size: 12px;
  line-height: 1.55;
  text-align: start;
}

.bubble--coach {
  margin-inline-end: auto;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 23, 31, 0.07);
}

.bubble--user {
  margin-inline-start: auto;
  border-radius: 18px 18px 18px 6px;
  background: var(--ink);
  color: var(--white);
}

.community-screen {
  background: #f8faf6;
  color: var(--ink);
  text-align: start;
}

.community-screen .screen-kicker {
  color: var(--cyan-strong);
}

.community-screen h3 {
  margin-top: 8px;
  margin-bottom: 25px;
  font-size: 30px;
}

.community-line {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid rgba(7, 23, 31, 0.08);
  border-radius: 17px;
  padding: 12px;
  background: var(--white);
  box-shadow: 0 9px 28px rgba(7, 23, 31, 0.055);
  font-size: 11px;
  line-height: 1.5;
}

.community-line b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: #d8eff2;
  color: #166c84;
}

.community-compose {
  position: absolute;
  inset: auto 18px 22px;
  border: 1px solid rgba(7, 23, 31, 0.09);
  border-radius: 999px;
  padding: 12px 15px;
  background: var(--white);
  color: #829197;
  font-size: 11px;
}

.shield-visual {
  display: grid;
  place-items: center;
}

.shield-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 260px;
  height: 290px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(112, 223, 242, 0.18);
  border-radius: 44% 44% 52% 52% / 35% 35% 62% 62%;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(112, 223, 242, 0.28), transparent 45%),
    var(--ink);
  box-shadow: 0 36px 80px rgba(7, 23, 31, 0.25);
  color: var(--white);
  text-align: center;
}

.shield-core::before,
.shield-core::after {
  position: absolute;
  inset: -26px;
  z-index: -1;
  border: 1px solid rgba(29, 158, 193, 0.15);
  border-radius: inherit;
  content: "";
}

.shield-core::after {
  inset: -53px;
  opacity: 0.55;
}

.shield-core svg {
  width: 74px;
  height: 74px;
  color: var(--cyan);
}

.shield-core strong {
  display: block;
  margin-top: 20px;
  font-size: 22px;
}

.shield-core small {
  color: rgba(255, 255, 255, 0.58);
}

.blocked-row {
  position: absolute;
  inset: 29% auto auto 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 235px;
  border: 1px solid rgba(7, 23, 31, 0.1);
  border-radius: 16px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 45px rgba(7, 23, 31, 0.14);
  color: var(--muted);
  font-size: 11px;
  direction: ltr;
}

.blocked-row b {
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 102, 91, 0.11);
  color: var(--red-deep);
  font-size: 10px;
}

.blocked-row--two {
  inset: auto 0 25% auto;
}

.timeline-visual {
  max-width: 520px;
  min-height: 390px !important;
  margin-inline: auto;
  border: 1px solid rgba(7, 23, 31, 0.1);
  border-radius: 36px;
  padding: 44px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline-number small,
.timeline-number strong {
  display: block;
}

.timeline-number small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-number strong {
  color: var(--red);
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.95;
}

.timeline-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 22px;
  margin-top: 42px;
}

.timeline-track::before,
.timeline-track span {
  position: absolute;
  inset: 50% 0 auto;
  height: 3px;
  border-radius: 99px;
  background: #dce5e7;
  content: "";
}

.timeline-track span {
  width: 12%;
  background: var(--red);
}

.timeline-track i {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #b7c7cb;
  box-shadow: 0 0 0 1px #b7c7cb;
}

.timeline-track i:first-of-type {
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.timeline-days {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.timeline-visual h3 {
  margin: 34px 0 0;
  font-size: 22px;
}

.progress-visual {
  max-width: 480px;
  min-height: 430px !important;
  margin-inline: auto;
  border: 1px solid rgba(7, 23, 31, 0.1);
  border-radius: 36px;
  padding: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.progress-visual .screen-kicker {
  color: var(--cyan-strong);
}

.progress-top {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin-top: 12px;
}

.progress-top strong {
  font-size: 64px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.progress-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 145px;
  margin-top: 30px;
  border-bottom: 1px solid var(--line);
}

.bars i {
  width: 100%;
  height: var(--h);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(to top, var(--cyan-strong), var(--cyan));
}

.bars i:last-child {
  background: linear-gradient(to top, var(--red-deep), var(--red));
}

.insight {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  border-radius: 18px;
  padding: 14px;
  background: #eff8f6;
}

.insight > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--lime);
}

.insight p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.insight b {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.faq-section {
  background: var(--paper-2) !important;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 26px 0;
  background: transparent;
  text-align: start;
  cursor: pointer;
}

.faq-item button span {
  font-size: 19px;
  font-weight: 800;
}

.faq-item button i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 21px;
  font-style: normal;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--white);
}

.faq-answer {
  max-width: 780px;
  padding: 0 0 26px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-answer .faq-note {
  margin-top: 14px;
  border-inline-start: 2px solid color-mix(in srgb, var(--gold) 55%, var(--line));
  padding-inline-start: 14px;
  color: color-mix(in srgb, var(--muted) 84%, var(--paper));
  font-size: 13px;
  line-height: 1.6;
}

.team-section {
  background: #fff !important;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
  margin: 55px auto 0;
  direction: ltr;
}

.team-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 16px;
  background: var(--paper);
  direction: rtl;
}

.team-photo {
  aspect-ratio: 0.8;
  overflow: hidden;
  border-radius: 22px;
  background: #dce5e7;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-role {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--purple-soft);
  color: var(--cyan-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 5px 0 0;
  font-size: 24px;
}

.team-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.related-section {
  background: var(--white) !important;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.related-grid > a {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.related-grid > a:hover {
  transform: translateY(-6px);
  background: var(--ink);
  color: var(--white);
}

.related-grid > a > span {
  color: var(--cyan-strong);
  font-size: 12px;
  font-weight: 900;
}

.related-grid h3 {
  margin: 42px 0 0;
  font-size: 21px;
}

.related-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.related-grid > a:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.related-grid i {
  position: absolute;
  inset: auto auto 20px 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  font-style: normal;
}

[dir="ltr"] .related-grid i {
  inset: auto 22px 20px auto;
}

.download-section {
  padding: 85px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 227, 183, 0.25), transparent 23rem),
    linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
}

.download-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
}

.download-shell .eyebrow {
  color: var(--gold-soft);
}

.download-shell h2 {
  font-size: clamp(38px, 4.2vw, 60px);
}

.download-shell p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.section-note {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.section--dark .section-note {
  color: rgba(255, 255, 255, 0.54);
}

.action-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.action-flow li {
  position: relative;
  display: grid;
  min-height: 92px;
  align-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.action-flow li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  inset-inline-end: -9px;
  z-index: 1;
  color: var(--gold);
  content: "←";
  transform: translateY(-50%);
}

[dir="ltr"] .action-flow li:not(:last-child)::after {
  content: "→";
}

.action-flow span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-deep);
  font-size: 11px;
}

.reviews-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(133, 82, 216, 0.11), transparent 28rem),
    var(--paper);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.reviews-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin-inline: auto;
}

.review-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  border: 1px solid rgba(67, 38, 104, 0.1);
  border-radius: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 60px rgba(48, 24, 70, 0.08);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.review-card cite {
  margin-top: 28px;
  color: var(--purple);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.store-buttons {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.store-button {
  display: inline-flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0;
  background: transparent;
  box-shadow: 0 15px 40px rgba(35, 18, 51, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(35, 18, 51, 0.26);
}

.store-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.store-button img {
  display: block;
  width: auto;
  max-width: none;
}

.store-button--apple img {
  height: 52px;
}

.store-button--google img {
  height: 64px;
}

.site-footer {
  padding: 75px 0 22px;
  background: var(--ink);
  color: var(--white);
}

.legal-page {
  background:
    radial-gradient(circle at 82% 4%, rgba(112, 223, 242, 0.1), transparent 26rem),
    #eef1ed;
}

.legal-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 12px;
  background: rgba(6, 19, 26, 0.94);
  color: var(--white);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.legal-nav,
.language-switch,
.legal-footer .shell {
  display: flex;
  align-items: center;
}

.legal-nav {
  justify-content: space-between;
  gap: 24px;
}

.language-switch {
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px;
  direction: ltr;
}

.language-switch button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--white);
  color: var(--ink);
}

.legal-main {
  padding: 62px 0 90px;
}

.legal-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 32px;
}

.legal-aside {
  position: sticky;
  inset-block-start: 92px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 55px rgba(7, 23, 31, 0.06);
}

.legal-back {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 900;
}

.legal-aside > span {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-aside > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.legal-aside > a[href^="mailto"] {
  display: inline-block;
  margin-top: 10px;
  color: var(--cyan-strong);
  font-size: 12px;
  direction: ltr;
}

.legal-aside nav {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}

.legal-aside nav a {
  border-radius: 12px;
  padding: 9px 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.legal-aside nav a:hover,
.legal-aside nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.legal-document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(7, 23, 31, 0.08);
}

.legal-title {
  padding: 50px 54px 38px;
  background:
    radial-gradient(circle at 82% 10%, rgba(112, 223, 242, 0.16), transparent 19rem),
    var(--ink);
  color: var(--white);
}

.legal-title > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-title h1 {
  margin: 16px 0 0;
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.legal-title p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.legal-content {
  padding: 48px 54px 58px;
}

.legal-content section + section {
  margin-top: 37px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.legal-content h2 {
  margin: 0 0 13px;
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  color: #50626a;
  font-size: 15px;
  line-height: 1.85;
}

.legal-content p {
  margin: 10px 0 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding-inline-start: 23px;
}

.legal-content a {
  color: #0d7e9d;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-footer {
  padding: 22px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.48);
}

.legal-footer .shell {
  justify-content: space-between;
  gap: 22px;
  font-size: 11px;
}

.legal-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.legal-footer .shell > span {
  margin-inline-end: auto;
}

@media (max-width: 820px) {
  .legal-main {
    padding-top: 28px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-aside,
  .legal-versions,
  .legal-document {
    width: 100%;
    min-width: 0;
  }

  .legal-aside {
    position: static;
  }

  .legal-aside nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .legal-aside nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  .legal-nav .brand span {
    display: none;
  }

  .legal-title {
    padding: 38px 25px 30px;
  }

  .legal-content {
    padding: 35px 25px 42px;
  }

  .legal-content h2 {
    font-size: 20px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 14px;
  }

  .legal-footer .shell {
    flex-wrap: wrap;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 60px;
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.footer-grid h2 {
  margin: 5px 0 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--cyan);
}

.footer-bottom {
  justify-content: space-between;
  gap: 30px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.reveal {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 650ms ease;
}

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

@media (max-width: 1050px) {
  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .visual {
    min-height: 440px;
  }

  .feature-grid:has(.feature-card:nth-child(4)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .team-card {
    grid-template-columns: 125px 1fr;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .site-header,
  .site-header.is-scrolled {
    padding-block: 10px;
    border-bottom: 1px solid rgba(46, 33, 75, 0.08);
    background: rgba(251, 250, 247, 0.92);
    color: var(--ink);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .menu-button {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 68px 16px auto;
    display: grid;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    border: 1px solid rgba(46, 33, 75, 0.1);
    border-radius: 25px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(45, 29, 74, 0.16);
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease;
  }

  .primary-nav.is-open {
    max-height: 520px;
    padding-block: 16px;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav > a {
    padding: 12px;
  }

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

  .nav-cta {
    justify-content: space-between;
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 76px;
  }

  .hero-grid,
  .split-grid,
  .download-shell,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

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

  .hero-smart-download {
    display: inline-flex;
  }

  .hero-actions .store-buttons--compact {
    display: none;
  }

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

  .page-kind-home .hero h1,
  [dir="ltr"] .page-kind-home .hero h1 {
    max-width: 630px;
    font-size: clamp(46px, 11.7vw, 62px);
    line-height: 0.98;
  }

  .page-kind-home .hero h1 em {
    margin-top: 10px;
  }

  .hero-copy > p {
    font-size: 18px;
  }

  .page-kind-home .hero-copy > p {
    max-width: 610px;
    font-size: 17px;
    line-height: 1.6;
  }

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

  .visual.device-stage {
    min-height: 570px;
    max-width: 520px;
    margin-inline: auto;
  }

  .visual.portrait-visual {
    min-height: 580px;
  }

  .visual {
    min-height: 420px;
  }

  .visual--screens {
    transform: none;
  }

  .store-shot--back {
    inset: 24px auto auto 3%;
    width: 80%;
  }

  .store-shot--front {
    inset: auto 2% 24px auto;
    width: 92%;
  }

  .floating-proof {
    inset: auto 4% 5px auto;
  }

  .section {
    padding: 86px 0;
  }

  .section-copy h2,
  .download-shell h2 {
    font-size: clamp(36px, 9.5vw, 54px);
  }

  .section-lead {
    font-size: 17px;
  }

  .split-grid--reverse .section-copy,
  .split-grid--reverse .section-visual {
    order: initial;
  }

  .section-visual {
    margin-top: 12px;
  }

  .feature-grid,
  .feature-grid:has(.feature-card:nth-child(4)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 250px;
  }

  .faq-layout {
    gap: 42px;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .download-shell {
    gap: 40px;
  }

  .store-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 520px);
  }

  .brand {
    font-size: 16px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  .page-kind-home .hero h1,
  [dir="ltr"] .page-kind-home .hero h1 {
    font-size: clamp(42px, 12.7vw, 56px);
    line-height: 0.98;
  }

  .page-kind-home .hero h1 em {
    margin-top: 9px;
    font-size: 1.07em;
  }

  .hero-copy > p {
    margin-top: 22px;
    font-size: 17px;
  }

  .page-kind-home .hero-copy > p {
    margin-top: 20px;
    font-size: 16.5px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-kind-home .hero-actions {
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .hero-chips {
    gap: 6px;
  }

  .page-kind-home .hero-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 20px;
  }

  .hero-chips li {
    font-size: 11px;
  }

  .page-kind-home .hero-chips li {
    justify-content: center;
    padding-inline: 8px;
    text-align: center;
  }

  .visual {
    min-height: 350px;
  }

  .visual.device-stage {
    min-height: 480px;
  }

  .device-frame--front {
    width: 212px;
    inset-inline-end: 3%;
  }

  .device-frame--back {
    width: 184px;
    inset: 54px auto auto 1%;
  }

  .device-frame {
    border-radius: 39px;
    padding: 6px;
  }

  .device-frame img,
  .device-frame::after {
    border-radius: 32px;
  }

  .device-frame::after {
    inset: 6px;
  }

  .device-speaker {
    inset-block-start: 11px;
    width: 52px;
    height: 15px;
  }

  .visual.portrait-visual,
  .section-visual .visual.portrait-visual {
    min-height: 505px;
  }

  .device-frame--single {
    width: 224px;
  }

  .store-shot {
    border-radius: 17px;
  }

  .store-shot--back {
    inset: 25px auto auto 1%;
    width: 88%;
  }

  .store-shot--front {
    width: 96%;
  }

  .floating-proof {
    inset: auto 1% 0 auto;
    padding: 9px 11px;
    font-size: 10px;
  }

  .hero-marquee {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .feature-grid,
  .feature-grid:has(.feature-card:nth-child(4)),
  .related-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 230px;
    border-radius: 23px;
    padding: 24px;
  }

  .feature-card h3 {
    margin-top: 38px;
  }

  .section-visual .visual {
    min-height: 440px;
  }

  .phone {
    width: 245px;
    height: 500px;
    border-radius: 42px;
  }

  .phone-screen {
    padding-inline: 19px;
  }

  .emergency-orbit {
    width: 150px;
    height: 150px;
  }

  .mini-card--left {
    inset-inline-start: -4%;
  }

  .mini-card--right {
    inset-inline-end: -3%;
  }

  .shield-core {
    width: 225px;
    height: 250px;
  }

  .blocked-row {
    min-width: 205px;
    font-size: 9px;
  }

  .timeline-visual,
  .progress-visual {
    min-height: 370px !important;
    border-radius: 26px;
    padding: 28px;
  }

  .timeline-number strong {
    font-size: 82px;
  }

  .team-card {
    grid-template-columns: 105px 1fr;
    gap: 16px;
    border-radius: 24px;
  }

  .team-card h3 {
    font-size: 20px;
  }

  .team-card p {
    font-size: 12px;
  }

  .related-grid > a {
    min-height: 210px;
  }

  .download-section {
    padding: 70px 0;
  }

  .action-flow {
    grid-template-columns: 1fr;
  }

  .action-flow li {
    min-height: 70px;
  }

  .action-flow li:not(:last-child)::after,
  [dir="ltr"] .action-flow li:not(:last-child)::after {
    top: auto;
    bottom: -12px;
    inset-inline-end: 16px;
    content: "↓";
    transform: none;
  }

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

  .review-card {
    min-height: 0;
    border-radius: 24px;
    padding: 24px;
  }

  .store-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .store-button {
    width: max-content;
    max-width: 100%;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .visual.device-stage {
    min-height: 500px;
  }

  .app-art {
    border-radius: 29px;
  }

  .app-art--front {
    inset-inline-end: 0;
    width: 220px;
  }

  .app-art--back {
    inset: 58px auto auto 0;
    width: 190px;
  }

  .app-art--single {
    width: min(244px, 82%);
  }

  .portrait-visual--community .app-art--single {
    width: min(252px, 86%);
  }

  .coach-brand-visual {
    min-height: 455px;
  }

  .app-art--coach {
    width: min(268px, 78%);
    border-radius: 60px;
  }

  .coach-caption {
    bottom: 0;
    width: min(278px, 92%);
  }
}

@media (max-width: 360px) {
  .page-kind-home .hero h1,
  [dir="ltr"] .page-kind-home .hero h1 {
    font-size: 41px;
  }

  .page-kind-home .hero-copy > p {
    font-size: 16px;
  }

  .page-kind-home .hero-chips li {
    gap: 5px;
    font-size: 10.5px;
  }

  .visual.device-stage {
    min-height: 455px;
  }

  .app-art--front {
    width: 202px;
  }

  .app-art--back {
    width: 174px;
  }

  .app-art--single,
  .portrait-visual--community .app-art--single {
    width: min(226px, 84%);
  }
}

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

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

  .reveal {
    transform: none;
    opacity: 1;
  }
}

@media print {
  .site-header,
  .hero-marquee,
  .download-section,
  .site-footer,
  .menu-button {
    display: none !important;
  }

  .hero,
  .section {
    min-height: auto;
    padding: 30px 0;
    background: #fff !important;
    color: #000 !important;
  }

  .hero p,
  .section-lead {
    color: #333 !important;
  }
}
