@font-face {
  /* Один вариативный файл вместо четырёх OTF: латиница + кириллица, 96 КБ.
     Покрывает все начертания 100–900, включая промежуточные (650, 720, 750). */
  font-family: 'Inter';
  src: url('/fonts/Inter/Inter-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-700: #245ef2;
  --blue-600: #2f6bff;
  --blue-500: #3e7bff;
  --blue-100: #edf2ff;
  --yellow: #ffcf4a;
  --yellow-soft: #fff1b8;
  --navy: #121b34;
  --navy-soft: #1d2b53;
  --ink: #15171c;
  --ink-soft: #3f4551;
  --muted: #717783;
  --canvas: #f3f2ef;
  --paper: #fbfaf6;
  --white: #ffffff;
  --sage: #88a995;
  --sage-soft: #e8efea;
  --line: rgba(47, 107, 255, 0.12);
  --shadow:
    0 30px 80px rgba(28, 39, 70, 0.12),
    0 3px 12px rgba(28, 39, 70, 0.05);
  --shadow-small: 0 16px 42px rgba(28, 39, 70, 0.11);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 8% 2%, rgba(255, 207, 74, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(47, 107, 255, 0.08), transparent 29rem),
    var(--canvas);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(circle, rgba(47, 107, 255, 0.08) 0 1px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), transparent 44%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), transparent 44%);
  content: "";
  pointer-events: none;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

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

.site-shell {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
}

.masthead {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  padding: 10px 8px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 11px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 9px 22px rgba(47, 107, 255, 0.12);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Onest", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 9px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 550;
}

.main-nav a,
.site-footer nav a {
  transition: color 0.18s ease;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--blue-700);
}

.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(47, 107, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 650;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.header-action:hover {
  background: var(--white);
  box-shadow: 0 12px 26px rgba(47, 107, 255, 0.1);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(610px, 1.16fr);
  gap: clamp(28px, 4vw, 62px);
  min-height: 704px;
  margin-top: 0;
  padding: clamp(24px, 3.5vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 38px;
  background:
    radial-gradient(circle at 47% 4%, rgba(255, 207, 74, 0.08), transparent 18rem),
    rgba(251, 250, 246, 0.9);
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -150px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(47, 107, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(47, 107, 255, 0.025),
    0 0 0 108px rgba(47, 107, 255, 0.018);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-left: clamp(0px, 1vw, 14px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(82, 116, 96, 0.14);
  border-radius: 999px;
  background: rgba(232, 239, 234, 0.78);
  color: #557161;
  font-size: 12px;
  font-weight: 600;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(136, 169, 149, 0.14);
}

.hero h1,
.section-heading h2,
.family-copy h2,
.start-copy h2 {
  font-family: "Onest", "Inter", sans-serif;
}

.hero h1 {
  max-width: 640px;
  margin: 26px 0 22px;
  font-size: clamp(58px, 5.5vw, 82px);
  font-weight: 720;
  line-height: 0.96;
  letter-spacing: -0.067em;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue-600);
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0.03em;
  left: -0.02em;
  height: 0.13em;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.1deg);
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(47, 107, 255, 0.25);
}

.button-primary:hover {
  box-shadow: 0 21px 38px rgba(47, 107, 255, 0.31);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink-soft);
}

.button-secondary:hover {
  border-color: rgba(47, 107, 255, 0.22);
  background: var(--white);
  box-shadow: 0 13px 28px rgba(28, 39, 70, 0.08);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding-left: 16px;
}

.hero-trust li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  color: var(--blue-600);
  content: "✓";
  font-weight: 800;
}

.product-story {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  height: 642px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(47, 107, 255, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    #e3eaff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 26px 55px rgba(47, 107, 255, 0.12);
  isolation: isolate;
}

.product-story::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.32) 42.3%, transparent 42.7%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.76) 0 1.3px, transparent 1.8px);
  background-size: auto, 18px 18px;
  content: "";
  opacity: 0.58;
}

.stage-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.2px);
  pointer-events: none;
}

.stage-orb-yellow {
  z-index: -1;
  top: 72px;
  left: -64px;
  width: 286px;
  height: 286px;
  background: rgba(255, 207, 74, 0.9);
  box-shadow: 0 20px 70px rgba(255, 207, 74, 0.18);
}

.stage-orb-blue {
  z-index: -2;
  right: -98px;
  bottom: -72px;
  width: 330px;
  height: 330px;
  background: rgba(47, 107, 255, 0.32);
}

.stage-dots {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 8% 15%, #fff 0 5px, transparent 6px),
    radial-gradient(circle at 91% 13%, rgba(47, 107, 255, 0.58) 0 4px, transparent 5px),
    radial-gradient(circle at 82% 83%, #fff 0 6px, transparent 7px);
  pointer-events: none;
}

.list-fragment {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 18%;
  width: 65%;
  height: 592px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 29px;
  background: var(--white);
  box-shadow:
    0 38px 66px rgba(18, 27, 52, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotate(-2.1deg);
}

.list-fragment::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.94));
  content: "";
  pointer-events: none;
}

.list-fragment img {
  width: 100%;
  height: auto;
}

.fragment-status {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(47, 107, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 700;
  box-shadow: 0 9px 20px rgba(28, 39, 70, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.fragment-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.1);
}

.voice-fragment,
.sync-fragment {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 48px rgba(18, 27, 52, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.voice-fragment {
  position: absolute;
  z-index: 5;
  bottom: 31px;
  left: 12px;
  width: min(390px, 52%);
  padding: 14px;
  border-color: rgba(216, 218, 222, 0.86);
  border-radius: 28px;
  background: rgba(253, 253, 254, 0.94);
  transform: rotate(1.8deg);
}

.voice-sheet-handle {
  width: 40px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(216, 218, 222, 0.9);
}

.voice-sheet-title {
  display: block;
  color: #1f2328;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.voice-sheet-hints {
  margin: 8px 0 16px;
  color: #666d76;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.voice-sheet-wave {
  position: relative;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(216, 218, 222, 0.78);
  border-radius: 18px;
  background: rgba(253, 253, 254, 0.76);
  box-shadow:
    0 7px 16px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.voice-sheet-wave::before {
  position: absolute;
  inset: 10px 12px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 3px,
    rgba(255, 69, 72, 0.62) 3px 5px,
    transparent 5px 8px
  );
  content: "";
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 38%, transparent 76%);
  mask-image: radial-gradient(ellipse at center, #000 0 38%, transparent 76%);
}

.voice-sheet-status {
  display: block;
  margin: 10px 0 12px;
  color: #666d76;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  text-align: center;
}

.voice-sheet-recognized {
  min-height: 52px;
  padding: 14px;
  border: 1px solid rgba(216, 218, 222, 0.78);
  border-radius: 20px;
  background: rgba(253, 253, 254, 0.8);
  color: #1f2328;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.voice-added {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(232, 239, 234, 0.72);
}

.voice-added > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.voice-added div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.voice-added strong {
  color: #466956;
  font-size: 9px;
}

.voice-added small {
  overflow: hidden;
  color: #6f8075;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sync-fragment {
  position: absolute;
  z-index: 6;
  top: 72px;
  right: 12px;
  display: grid;
  justify-items: center;
  width: min(270px, 37%);
  padding: 18px 17px 15px;
  border-radius: 24px;
  text-align: center;
  transform: rotate(3.2deg);
}

.sync-avatars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sync-avatars img {
  width: 42px;
  height: 42px;
  border: 3px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(18, 27, 52, 0.14);
}

.sync-pulse {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 17px;
  box-shadow: 0 8px 18px rgba(47, 107, 255, 0.23);
}

.sync-slides {
  position: relative;
  width: 100%;
  height: 36px;
  margin-top: 11px;
  overflow: hidden;
}

.sync-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
}

.sync-slide:first-child {
  opacity: 1;
  transform: translateY(0);
}

.sync-slide strong {
  color: var(--blue-700);
  font-family: "Onest", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.sync-slide span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.sync-progress {
  display: flex;
  gap: 7px;
  margin-top: 5px;
}

.sync-progress i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.2);
}

.sync-progress i:first-child {
  background: var(--blue-600);
  transform: scaleX(2.8);
}

.done-stack {
  position: absolute;
  z-index: 7;
  right: 8px;
  bottom: 35px;
  width: min(400px, 53%);
}

.product-item-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 104px;
  padding: 11px;
  border: 0.95px solid rgba(216, 218, 222, 0.82);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(240, 242, 244, 0.92)
    );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.09),
    0 5px 16px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  font-family: "Inter", sans-serif;
}

.product-item-card-back {
  position: absolute;
  z-index: 1;
  right: 17px;
  bottom: 72%;
  width: 93%;
  border-color: rgba(196, 200, 208, 0.88);
  background:
    linear-gradient(
      145deg,
      rgba(242, 243, 245, 0.97),
      rgba(218, 221, 227, 0.94)
    );
  box-shadow: 0 17px 34px rgba(18, 27, 52, 0.13);
  opacity: 0.78;
  transform: rotate(2.3deg);
}

.product-item-card-front {
  z-index: 2;
  min-height: 154px;
  transform: rotate(-1.6deg);
}

.product-item-card-back::after {
  position: absolute;
  inset: 0;
  background: rgba(69, 76, 91, 0.07);
  content: "";
  pointer-events: none;
}

.product-card-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  min-height: 40px;
  gap: 10px;
}

.product-checkbox {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 3px solid #087ff5;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.product-checkbox-checked {
  color: var(--yellow);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 #087ff5;
}

.product-name {
  overflow: hidden;
  color: #111318;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.is-checked .product-name {
  color: #8e8e93;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.product-chevron {
  position: relative;
  width: 34px;
  height: 34px;
}

.product-chevron::before,
.product-chevron::after {
  position: absolute;
  top: 14px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #087ff5;
  content: "";
}

.product-chevron::before {
  left: 2px;
  transform: rotate(45deg);
}

.product-chevron::after {
  right: 2px;
  transform: rotate(-45deg);
}

.product-chevron-muted::before,
.product-chevron-muted::after {
  background: #8e8e93;
}

.product-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 24px;
  gap: 8px;
  margin: -3px 44px 0 50px;
  color: rgba(17, 19, 24, 0.56);
  font-size: 12px;
}

.product-meta strong {
  color: rgba(17, 19, 24, 0.72);
  font-weight: 600;
}

.product-meta span {
  font-weight: 500;
}

.product-art {
  position: absolute;
  z-index: 1;
  top: 1px;
  right: 36px;
  width: 102px;
  height: 102px;
  object-fit: contain;
  opacity: 0.42;
}

.product-discussion {
  position: absolute;
  z-index: 4;
  top: 50px;
  right: 11px;
  width: 36px;
  height: 36px;
}

.product-discussion::before,
.product-discussion::after {
  position: absolute;
  border-radius: 5px;
  background: #087ff5;
  content: "";
}

.product-discussion::before {
  bottom: 5px;
  left: 1px;
  width: 22px;
  height: 17px;
}

.product-discussion::after {
  right: 0;
  bottom: 10px;
  width: 21px;
  height: 17px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.86);
}

.product-discussion i {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #087ff5;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.86);
}

.product-discussion i::before {
  color: #fff;
  content: "→";
  font-size: 13px;
  font-style: normal;
}

.product-discussion-muted {
  filter: grayscale(0.38);
  opacity: 0.76;
}

.product-labels {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 2px 44px 0 50px;
}

.product-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  gap: 5px;
  padding: 4.5px 8px;
  overflow: hidden;
  border: 1px solid;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.product-label i {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background: currentColor;
  font-style: normal;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 502 501'%3E%3Cpath d='M226 455L17 246Q0 229 0 198V117Q0 101 4.5 92.5Q9 84 22 71L71 21Q84 8 92.5 4Q101 0 117 0H198Q229 0 246 17L456 226Q502 273 455 320L320 455Q272 501 226 455ZM131.5 162.5Q140 171 153 171Q166 171 174 162.5Q182 154 182 142Q182 130 173.5 121Q165 112 153 112Q140 112 131.5 121Q123 130 123 142Q123 154 131.5 162.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 502 501'%3E%3Cpath d='M226 455L17 246Q0 229 0 198V117Q0 101 4.5 92.5Q9 84 22 71L71 21Q84 8 92.5 4Q101 0 117 0H198Q229 0 246 17L456 226Q502 273 455 320L320 455Q272 501 226 455ZM131.5 162.5Q140 171 153 171Q166 171 174 162.5Q182 154 182 142Q182 130 173.5 121Q165 112 153 112Q140 112 131.5 121Q123 130 123 142Q123 154 131.5 162.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.product-label-add {
  border-color: rgba(142, 142, 147, 0.35);
  background: rgba(255, 255, 255, 0.62);
  color: #8e8e93;
}

.product-label-pink {
  border-color: rgba(218, 70, 190, 0.55);
  background: rgba(218, 70, 190, 0.14);
  color: #da46be;
}

.product-label-aqua {
  border-color: rgba(67, 207, 198, 0.55);
  background: rgba(67, 207, 198, 0.14);
  color: #43cfc6;
}

.product-label-yellow {
  border-color: rgba(224, 190, 62, 0.55);
  background: rgba(255, 207, 74, 0.14);
  color: #d8b931;
}

.product-story figcaption {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.journey {
  margin-top: 18px;
  padding: clamp(54px, 6vw, 86px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(251, 250, 246, 0.78);
  box-shadow: 0 18px 54px rgba(28, 39, 70, 0.07);
}

.journey-link {
  display: block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.journey-link:hover {
  border-color: rgba(47, 107, 255, 0.24);
  box-shadow: 0 24px 62px rgba(28, 39, 70, 0.11);
  transform: translateY(-3px);
}

.journey-link:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.28);
  outline-offset: 4px;
}

.journey-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.journey-more i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  font-style: normal;
  transition: transform 180ms ease;
}

.journey-link:hover .journey-more i {
  transform: translateX(3px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 80px);
}

.section-heading > span,
.statement-label,
.start-copy > span {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 840px;
  margin: -8px 0 0;
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 660;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.journey-grid li {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(47, 107, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.journey-grid li:hover {
  border-color: rgba(47, 107, 255, 0.23);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.journey-grid li:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0, rgba(47, 107, 255, 0.09), transparent 48%),
    rgba(255, 255, 255, 0.68);
}

.journey-grid li:nth-child(3) {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 207, 74, 0.17), transparent 45%),
    rgba(255, 255, 255, 0.68);
}

.journey-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(47, 107, 255, 0.42);
  font-family: "Onest", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.journey-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 23px;
  font-weight: 750;
}

.journey-icon-voice {
  position: relative;
}

.journey-icon-voice::before {
  width: 10px;
  height: 19px;
  border: 2px solid var(--blue-600);
  border-radius: 999px;
  content: "";
}

.journey-icon-voice::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  height: 11px;
  border-bottom: 2px solid var(--blue-600);
  border-radius: 0 0 999px 999px;
  content: "";
}

.journey-icon-done {
  background: var(--yellow-soft);
  color: var(--navy);
}

.journey-grid h3 {
  margin: 46px 0 10px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.journey-grid p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.more-tools {
  margin-top: 18px;
  padding: clamp(54px, 6vw, 86px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0, rgba(47, 107, 255, 0.06), transparent 30rem),
    rgba(251, 250, 246, 0.8);
  box-shadow: 0 18px 54px rgba(28, 39, 70, 0.07);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.tool-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(47, 107, 255, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  isolation: isolate;
}

.tool-card-link {
  display: block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.tool-card-link::after {
  position: absolute;
  z-index: 8;
  top: 24px;
  right: 24px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(47, 107, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue-700);
  content: "↗";
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(28, 39, 70, 0.08);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.tool-card-link:hover {
  border-color: rgba(47, 107, 255, 0.24);
  box-shadow: 0 20px 46px rgba(28, 39, 70, 0.11);
  transform: translateY(-4px);
}

.tool-card-link:hover::after {
  background: var(--blue-600);
  color: var(--white);
  transform: translate(2px, -2px);
}

.tool-card-link:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.28);
  outline-offset: 4px;
}

.tool-card::before {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.tool-card-chat::before {
  right: -88px;
  bottom: -138px;
  width: 470px;
  height: 470px;
  background: rgba(47, 107, 255, 0.12);
}

.tool-card-payments::before {
  right: -100px;
  bottom: -130px;
  width: 480px;
  height: 480px;
  background: rgba(255, 207, 74, 0.2);
}

.tool-copy {
  position: relative;
  z-index: 4;
  max-width: 400px;
  padding: 34px 34px 0;
}

.tool-label {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-copy h3 {
  max-width: 360px;
  margin: 13px 0 12px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(30px, 3.1vw, 43px);
  font-weight: 660;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.tool-copy p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.tool-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tool-copy li {
  padding: 6px 9px;
  border: 1px solid rgba(47, 107, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 600;
}

.tool-art {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 350px;
  overflow: hidden;
}

.tool-art::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(47, 107, 255, 0.12) 0 1.2px, transparent 1.7px);
  background-size: 17px 17px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 30%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%);
}

.chat-screen-crop,
.payment-screen-crop {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: var(--white);
  box-shadow: 0 28px 58px rgba(18, 27, 52, 0.19);
}

.chat-screen-crop {
  right: 34px;
  bottom: 22px;
  width: min(330px, 53%);
  height: 324px;
  border-radius: 27px;
  transform: rotate(2.4deg);
}

.chat-screen-crop img {
  width: 100%;
  height: auto;
}

.chat-reaction {
  position: absolute;
  z-index: 3;
  right: 29px;
  bottom: 75px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(47, 107, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 15px;
  box-shadow: 0 13px 28px rgba(18, 27, 52, 0.12);
}

.chat-reaction span {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 750;
}

.chat-context {
  position: absolute;
  z-index: 3;
  bottom: 54px;
  left: 28px;
  display: grid;
  max-width: 240px;
  gap: 4px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(18, 27, 52, 0.15);
  transform: rotate(-2deg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chat-context small {
  color: var(--muted);
  font-size: 8px;
}

.chat-context strong {
  font-size: 11px;
}

.payment-screen-crop {
  right: 31px;
  bottom: -76px;
  width: min(320px, 52%);
  height: 432px;
  border-radius: 27px;
  transform: rotate(2.2deg);
}

.payment-screen-crop img {
  width: 100%;
  height: auto;
}

.payment-reminder {
  position: absolute;
  z-index: 3;
  bottom: 68px;
  left: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: min(310px, 51%);
  gap: 11px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 42px rgba(18, 27, 52, 0.16);
  transform: rotate(-2.4deg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.payment-bell {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  background: var(--yellow-soft);
  color: var(--yellow);
  font-size: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 207, 74, 0.3);
}

.payment-reminder div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.payment-reminder small,
.payment-reminder span {
  color: var(--muted);
  font-size: 8px;
}

.payment-reminder strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.family-statement {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: clamp(44px, 7vw, 104px);
  margin-top: 18px;
  padding: clamp(58px, 7vw, 100px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 207, 74, 0.19), transparent 26rem),
    radial-gradient(circle at 0 100%, rgba(47, 107, 255, 0.23), transparent 30rem),
    linear-gradient(142deg, var(--navy), var(--navy-soft));
  color: var(--white);
  box-shadow: var(--shadow);
}

.family-statement::after {
  position: absolute;
  top: -120px;
  right: -86px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.02),
    0 0 0 100px rgba(255, 255, 255, 0.013);
  content: "";
}

.family-copy,
.family-facts {
  position: relative;
  z-index: 1;
}

.statement-label {
  color: var(--yellow);
}

.family-copy h2 {
  max-width: 750px;
  margin: 17px 0 20px;
  font-size: clamp(46px, 5.6vw, 72px);
  font-weight: 660;
  line-height: 1;
  letter-spacing: -0.062em;
}

.family-copy h2 span {
  color: var(--yellow);
}

.family-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.65;
}

.family-facts {
  display: grid;
  align-content: center;
  gap: 10px;
}

.family-facts article {
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  min-height: 80px;
  gap: 17px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.family-facts span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.family-facts strong {
  font-size: 14px;
  font-weight: 580;
}

.start-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 46px;
  margin-top: 18px;
  padding: clamp(42px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(251, 250, 246, 0.88);
  box-shadow: 0 18px 54px rgba(28, 39, 70, 0.07);
}

.start-orb {
  position: absolute;
  right: 19%;
  bottom: -105px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 207, 74, 0.38);
  filter: blur(2px);
}

.start-copy,
.start-actions {
  position: relative;
  z-index: 1;
}

.start-copy h2 {
  max-width: 830px;
  margin: 13px 0 12px;
  font-size: clamp(37px, 4.6vw, 58px);
  font-weight: 660;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.start-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.start-actions {
  display: grid;
  justify-items: stretch;
  min-width: 245px;
  gap: 12px;
}

.start-actions small {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 116px;
  gap: 28px;
  margin: 18px 0;
  padding: 24px 30px;
  border: 1px solid rgba(47, 107, 255, 0.09);
  border-radius: 26px;
  background: rgba(251, 250, 246, 0.66);
  color: var(--muted);
}

.footer-brand {
  justify-self: start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-copyright {
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  justify-self: end;
  gap: 22px;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
    padding: 34px 30px 6px;
  }

  .product-story {
    width: min(820px, 100%);
    margin: 0 auto;
  }

  .family-statement {
    grid-template-columns: 1fr;
  }

  .family-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .family-facts article {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 6px;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 20px, 720px);
    margin-top: 10px;
  }

  .masthead {
    grid-template-columns: 1fr auto;
    border-radius: 20px;
  }

  .main-nav {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 22px;
    border-radius: 30px;
  }

  .hero-copy {
    padding: 38px 12px 4px;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(48px, 10.5vw, 70px);
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .journey,
  .more-tools,
  .family-statement,
  .start-card {
    border-radius: 29px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading h2 {
    margin-top: 0;
  }

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

  .journey-grid li {
    min-height: 225px;
  }

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

  .tool-card {
    min-height: 600px;
  }

  .family-facts {
    grid-template-columns: 1fr;
  }

  .family-facts article {
    grid-template-columns: 105px 1fr;
  }

  .start-card {
    grid-template-columns: 1fr;
  }

  .start-actions {
    width: min(100%, 340px);
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 580px) {
  .site-shell {
    width: calc(100% - 12px);
    margin-top: 6px;
  }

  .masthead {
    min-height: 66px;
    padding: 8px 10px 8px 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 10px;
  }

  .header-action span {
    display: none;
  }

  .hero {
    gap: 24px;
    margin-top: 6px;
    padding: 16px 10px 10px;
    border-radius: 25px;
  }

  .hero-copy {
    padding: 38px 8px 4px;
  }

  .eyebrow {
    min-height: 32px;
    font-size: 10px;
  }

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

  .hero-lead {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    gap: 7px 13px;
    font-size: 9px;
  }

  .product-story {
    height: 740px;
    border-radius: 23px;
  }

  .stage-orb-yellow {
    top: 100px;
    left: -100px;
  }

  .list-fragment {
    top: 54px;
    left: 17%;
    width: 77%;
    height: 620px;
    border-radius: 23px;
  }

  .fragment-status {
    top: 11px;
    right: 9px;
    font-size: 7px;
  }

  .voice-fragment {
    bottom: 18px;
    left: 6px;
    width: 82%;
    padding: 10px;
    border-radius: 22px;
  }

  .voice-sheet-handle {
    width: 34px;
    height: 4px;
    margin-bottom: 10px;
  }

  .voice-sheet-title {
    font-size: 16px;
  }

  .voice-sheet-hints {
    margin: 6px 0 10px;
    font-size: 10px;
  }

  .voice-sheet-wave {
    height: 38px;
    border-radius: 14px;
  }

  .voice-sheet-wave::before {
    inset: 8px 10px;
  }

  .voice-sheet-status {
    margin: 7px 0 8px;
    font-size: 10px;
  }

  .voice-sheet-recognized {
    min-height: 44px;
    padding: 10px;
    border-radius: 16px;
    font-size: 12px;
  }

  .voice-added {
    margin-top: 10px;
    padding: 7px 8px;
  }

  .sync-fragment {
    top: 25px;
    right: 4px;
    width: 61%;
    padding: 12px 10px 10px;
    border-radius: 18px;
  }

  .sync-avatars img {
    width: 34px;
    height: 34px;
  }

  .sync-pulse {
    width: 28px;
    height: 28px;
  }

  .sync-slides {
    height: 31px;
    margin-top: 7px;
  }

  .sync-slide strong {
    font-size: 9px;
  }

  .sync-slide span {
    font-size: 7px;
  }

  .sync-progress {
    gap: 6px;
    margin-top: 3px;
  }

  .done-stack {
    right: 2px;
    bottom: 320px;
    width: 84%;
  }

  .product-item-card {
    padding: 8px;
    border-radius: 18px;
  }

  .product-item-card-front {
    min-height: 145px;
  }

  .product-item-card-back {
    right: 10px;
    bottom: 72%;
  }

  .product-card-header {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    min-height: 32px;
    gap: 7px;
  }

  .product-checkbox {
    width: 30px;
    height: 30px;
    border-width: 2.5px;
  }

  .product-checkbox-checked {
    font-size: 22px;
  }

  .product-name {
    font-size: 14px;
  }

  .product-chevron {
    width: 28px;
    height: 28px;
  }

  .product-chevron::before,
  .product-chevron::after {
    top: 11px;
    width: 15px;
    height: 2.5px;
  }

  .product-art {
    right: 28px;
    width: 78px;
    height: 78px;
  }

  .product-meta {
    height: 20px;
    margin: -2px 34px 0 39px;
    font-size: 10px;
  }

  .product-discussion {
    top: 39px;
    right: 6px;
    transform: scale(0.82);
    transform-origin: top right;
  }

  .product-labels {
    gap: 4px 5px;
    margin: 2px 34px 0 39px;
  }

  .product-label {
    min-height: 21px;
    padding: 4px 6px;
    border-radius: 8px;
    font-size: 8px;
  }

  .journey,
  .more-tools,
  .family-statement,
  .start-card {
    margin-top: 6px;
    padding: 46px 24px;
    border-radius: 25px;
  }

  .section-heading h2,
  .start-copy h2 {
    font-size: 37px;
  }

  .journey-grid {
    margin-top: 34px;
  }

  .tools-grid {
    margin-top: 34px;
  }

  .tool-card {
    min-height: 570px;
    border-radius: 22px;
  }

  .tool-copy {
    padding: 27px 23px 0;
  }

  .tool-copy h3 {
    font-size: 32px;
  }

  .tool-art {
    height: 320px;
  }

  .chat-screen-crop {
    right: 16px;
    bottom: 16px;
    width: 58%;
    height: 286px;
    border-radius: 21px;
  }

  .chat-context {
    bottom: 38px;
    left: 12px;
    max-width: 52%;
    padding: 11px 12px;
  }

  .chat-reaction {
    right: 10px;
    bottom: 61px;
  }

  .payment-screen-crop {
    right: 15px;
    bottom: -72px;
    width: 58%;
    height: 385px;
    border-radius: 21px;
  }

  .payment-reminder {
    bottom: 55px;
    left: 12px;
    width: 57%;
    padding: 12px;
  }

  .family-copy h2 {
    font-size: 43px;
  }

  .family-facts article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin: 6px 0;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .site-footer nav {
    gap: 12px 18px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .list-fragment {
    animation: list-float 7s ease-in-out infinite;
  }

  .voice-fragment {
    animation: voice-float 6.4s ease-in-out infinite;
  }

  .sync-fragment {
    animation: sync-float 5.8s ease-in-out infinite;
  }

  .sync-slide {
    animation: sync-slide 12s ease-in-out infinite;
  }

  .sync-slide:nth-child(2) {
    animation-delay: -9s;
  }

  .sync-slide:nth-child(3) {
    animation-delay: -6s;
  }

  .sync-slide:nth-child(4) {
    animation-delay: -3s;
  }

  .done-stack {
    animation: done-float 6.8s ease-in-out infinite;
  }

  .sync-progress i {
    animation: sync-dot 12s ease-in-out infinite;
  }

  .sync-progress i:nth-child(2) {
    animation-delay: -9s;
  }

  .sync-progress i:nth-child(3) {
    animation-delay: -6s;
  }

  .sync-progress i:nth-child(4) {
    animation-delay: -3s;
  }

}

@keyframes list-float {
  0%,
  100% {
    transform: rotate(-2.1deg) translateY(0);
  }
  50% {
    transform: rotate(-1.5deg) translateY(-6px);
  }
}

@keyframes voice-float {
  0%,
  100% {
    transform: rotate(1.8deg) translateY(0);
  }
  50% {
    transform: rotate(1.2deg) translateY(-5px);
  }
}

@keyframes sync-float {
  0%,
  100% {
    transform: rotate(3.2deg) translateY(0);
  }
  50% {
    transform: rotate(2.5deg) translateY(5px);
  }
}

@keyframes done-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes sync-slide {
  0%,
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  24%,
  96% {
    opacity: 0;
    transform: translateY(-5px);
  }
  97% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sync-dot {
  0%,
  20% {
    background: var(--blue-600);
    transform: scaleX(2.8);
  }
  24%,
  96% {
    background: rgba(47, 107, 255, 0.2);
    transform: scaleX(1);
  }
  97%,
  100% {
    background: var(--blue-600);
    transform: scaleX(2.8);
  }
}

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

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