:root {
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --bg-card: #ffffff;
  --text: #141824;
  --text-muted: rgba(20, 24, 36, 0.62);
  --stroke: rgba(20, 24, 36, 0.1);
  --primary: #b13ff3;
  --primary-dark: #6b45d8;
  --accent: #4f8eff;
  --gradient: linear-gradient(135deg, #c850f2 0%, #8d4df0 42%, #4f8eff 100%);
  --gradient-soft: linear-gradient(135deg, rgba(200, 80, 242, 0.1), rgba(79, 142, 255, 0.08));
  --shadow-sm: 0 4px 24px rgba(20, 24, 36, 0.06);
  --shadow-md: 0 12px 48px rgba(20, 24, 36, 0.1);
  --shadow-lg: 0 24px 64px rgba(107, 69, 216, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --wrap: min(1180px, calc(100% - 40px));
  --wrap-hero: min(1320px, calc(100% - 32px));
  --yandex-blue: #0066ff;
  --yandex-green: #006600;
  --success: #22c55e;
  --danger: #ef4444;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.landing-wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.landing-wrap--hero {
  width: var(--wrap-hero);
  position: relative;
  z-index: 1;
}

.landing-gradient-text {
  display: inline;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.landing-kicker--light {
  color: rgba(255, 255, 255, 0.85);
}

/* Nav */

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
}

.landing-nav.is-scrolled {
  border-color: var(--stroke);
  box-shadow: var(--shadow-sm);
}

.landing-nav__inner {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.landing-logo {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.landing-logo img {
  height: 52px;
  width: auto;
}

.landing-logo__tagline {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.landing-logo--static {
  pointer-events: none;
}

.landing-logo--static img {
  height: 44px;
}

.landing-nav__test {
  grid-column: 2;
  justify-self: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  background: var(--gradient);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.landing-nav.is-scrolled .landing-nav__test {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.landing-nav__test:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.landing-nav.is-scrolled .landing-nav__test:hover {
  transform: translateY(-1px);
}

.landing-nav__cta {
  grid-column: 3;
  justify-self: end;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--gradient);
  color: #fff;
  transition: transform 0.2s, opacity 0.2s;
}

.landing-nav__cta:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

/* Buttons */

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

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

.landing-btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 32px rgba(177, 63, 243, 0.28);
}

.landing-btn--ghost {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
}

.landing-btn--large {
  padding: 18px 36px;
  font-size: 16px;
}

.landing-btn--inverted {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Hero */

.landing-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 128px 0 64px;
  overflow: hidden;
  background:
    linear-gradient(165deg, #faf5ff 0%, #ffffff 38%, #f0f6ff 100%);
}

.landing-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: hero-orb-float 16s ease-in-out infinite;
}

.landing-hero__orb--1 {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -60px;
  background: rgba(200, 80, 242, 0.28);
}

.landing-hero__orb--2 {
  width: 420px;
  height: 420px;
  bottom: -80px;
  left: -100px;
  background: rgba(79, 142, 255, 0.22);
  animation-delay: -5s;
}

.landing-hero__orb--3 {
  width: 300px;
  height: 300px;
  top: 35%;
  left: 42%;
  background: rgba(141, 77, 240, 0.14);
  animation-delay: -10s;
}

.landing-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(177, 63, 243, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177, 63, 243, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
}

@keyframes hero-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -16px) scale(1.05);
  }
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 40px 56px;
  align-items: center;
}

.landing-hero__offer {
  text-align: left;
}

.landing-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.landing-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.landing-hero__title {
  margin: 0 0 20px;
  max-width: 560px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.landing-hero__lead {
  margin: 0 0 32px;
  max-width: 480px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.landing-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 480px;
}

.landing-metric {
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.landing-metric__value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-metric__label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Yandex SERP mockup */

.landing-hero__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
  padding-top: 12px;
}

.landing-serp {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  transform: scale(0.92);
  transform-origin: top right;
}

.landing-serp__browser {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 36, 0.08);
  box-shadow:
    0 4px 24px rgba(20, 24, 36, 0.06),
    0 24px 64px rgba(107, 69, 216, 0.12);
  background: #fff;
}

.landing-serp__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #eef0f4;
  border-bottom: 1px solid var(--stroke);
}

.landing-serp__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.landing-serp__dot--red {
  background: #ff5f57;
}

.landing-serp__dot--yellow {
  background: #febc2e;
}

.landing-serp__dot--green {
  background: #28c840;
}

.landing-serp__url {
  flex: 1;
  margin-left: 8px;
  padding: 7px 14px;
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-serp__body {
  padding: 20px 22px 24px;
}

.landing-serp__query {
  display: block;
  width: 100%;
  margin-bottom: 28px;
  padding: 10px 16px;
  border: 2px solid #fc0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  box-shadow: 0 2px 12px rgba(255, 204, 0, 0.22);
}

.landing-serp__compare {
  position: relative;
  display: flex;
  gap: 8px;
}

.landing-serp__arrow {
  flex-shrink: 0;
  width: 48px;
  height: auto;
  align-self: center;
  color: rgba(20, 24, 36, 0.3);
}

.landing-serp__stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-serp__block {
  position: relative;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
}

.landing-serp__block--after {
  background: #fff;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.landing-serp__block--before {
  background: #f8f9fc;
  opacity: 0.92;
}

.landing-serp__ribbon {
  position: absolute;
  top: 12px;
  right: -6px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transform: rotate(8deg);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.landing-serp__ribbon--after {
  background: #fc0;
  color: #141824;
}

.landing-serp__ribbon--before {
  background: #c8cdd8;
  color: #fff;
}

.landing-serp__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.landing-serp__badge--success {
  background: var(--success);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.landing-serp__badge--danger {
  background: var(--danger);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.landing-serp__block--before .landing-serp__badge {
  margin-bottom: 0;
  margin-top: 12px;
}

.landing-serp__result {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(20, 24, 36, 0.06);
}

.landing-serp__result--dim {
  background: rgba(255, 255, 255, 0.6);
  filter: saturate(0.7);
}

.landing-serp__title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--yandex-blue);
}

.landing-serp__link {
  margin: 0 0 5px;
  font-size: 12px;
  color: var(--yandex-green);
}

.landing-serp__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Sections */

.landing-section {
  position: relative;
  padding: 100px 0;
}

.landing-section__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.landing-section__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* How */

.landing-how {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef4ff 0%, #ffffff 55%, #f7f9fc 100%);
}

.landing-how__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-how__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: hero-orb-float 18s ease-in-out infinite;
}

.landing-how__orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(79, 142, 255, 0.14);
}

.landing-how__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -60px;
  background: rgba(79, 142, 255, 0.1);
  animation-delay: -7s;
}

.landing-how__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 142, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 15%, transparent 72%);
}

.landing-how__inner {
  position: relative;
  z-index: 1;
}

.landing-how__head {
  max-width: 820px;
  margin-bottom: 52px;
}

.landing-how__title {
  max-width: 820px;
}

.landing-marker {
  position: relative;
  display: inline;
  z-index: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.06em;
}

.landing-marker--purple::before {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.12em;
  top: 0.14em;
  bottom: 0.04em;
  background: rgba(200, 80, 242, 0.34);
  transform: rotate(-2deg) skewX(-7deg);
  border-radius: 3px 11px 4px 9px;
  z-index: -1;
}

.landing-marker--purple::after {
  content: "";
  position: absolute;
  left: 0.05em;
  right: -0.1em;
  top: 0.32em;
  bottom: -0.02em;
  background: rgba(141, 77, 240, 0.22);
  transform: rotate(1.6deg) skewX(4deg);
  border-radius: 10px 3px 8px 5px;
  z-index: -2;
}

.landing-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 20px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-flow-step {
  flex: 1 1 0;
  min-width: 0;
}

.landing-flow-step__num {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-flow-step__title {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.landing-flow-step__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

.landing-flow-arrow {
  flex: 0 0 clamp(52px, 8vw, 84px);
  align-self: center;
  margin-top: 8px;
}

.landing-flow-arrow__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  transition: transform 0.3s;
}

/* Trust */

.landing-trust {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef4ff 0%, #ffffff 55%, #f7f9fc 100%);
}

.landing-trust__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-trust__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: hero-orb-float 18s ease-in-out infinite;
}

.landing-trust__orb--1 {
  width: 380px;
  height: 380px;
  top: -90px;
  right: 8%;
  background: rgba(200, 80, 242, 0.12);
}

.landing-trust__orb--2 {
  width: 340px;
  height: 340px;
  bottom: -80px;
  left: -40px;
  background: rgba(79, 142, 255, 0.12);
  animation-delay: -8s;
}

.landing-trust__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 142, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 75% at 42% 50%, black 18%, transparent 74%);
}

.landing-trust__inner {
  position: relative;
  z-index: 1;
}

.landing-trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.landing-trust__title {
  max-width: 640px;
}

.landing-trust__list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.landing-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.landing-trust__bullet {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 4px rgba(79, 142, 255, 0.12);
}

.landing-trust__text {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.landing-trust__visual {
  display: flex;
  justify-content: center;
}

.landing-trust-phone {
  width: min(100%, 276px);
  animation: trust-phone-float 7s ease-in-out infinite;
}

.landing-trust-phone__shell {
  position: relative;
  height: 560px;
  padding: 11px 9px;
  border-radius: 44px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, transparent 28%),
    linear-gradient(145deg, #4a5064 0%, #1a1d29 38%, #0f1118 100%);
  box-shadow:
    0 42px 84px rgba(20, 24, 36, 0.24),
    0 14px 28px rgba(20, 24, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45);
}

.landing-trust-phone__btn {
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(180deg, #5d6478 0%, #2f3444 45%, #1b1f2b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 0.5px rgba(0, 0, 0, 0.35);
}

.landing-trust-phone__btn--silent {
  top: 108px;
  left: -2px;
  width: 3px;
  height: 24px;
}

.landing-trust-phone__btn--vol-up {
  top: 148px;
  left: -2px;
  width: 3px;
  height: 42px;
}

.landing-trust-phone__btn--vol-down {
  top: 202px;
  left: -2px;
  width: 3px;
  height: 42px;
}

.landing-trust-phone__btn--power {
  top: 168px;
  right: -2px;
  width: 3px;
  height: 72px;
}

.landing-trust-phone__screen {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 34px;
  background: #0f1118;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 2px rgba(0, 0, 0, 0.55);
}

.landing-trust-phone__island {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 4;
  width: 92px;
  height: 27px;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateX(-50%);
}

.landing-trust-phone__glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0%, transparent 34%, transparent 100%);
}

.landing-trust-phone__home {
  flex: 0 0 auto;
  height: 18px;
  background: #f4f6f8;
}

.landing-trust-phone__home::after {
  content: "";
  display: block;
  width: 112px;
  height: 4px;
  margin: 7px auto 0;
  border-radius: 999px;
  background: rgba(20, 24, 36, 0.28);
}

.landing-trust-chat {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.landing-trust-chat__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 46px 18px 8px;
  background: linear-gradient(180deg, #2481cc 0%, #2277bc 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.landing-trust-chat__status-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.landing-trust-chat__signal,
.landing-trust-chat__wifi,
.landing-trust-chat__battery {
  display: inline-block;
  background: currentColor;
}

.landing-trust-chat__signal {
  width: 15px;
  height: 10px;
  clip-path: polygon(0 100%, 20% 55%, 40% 75%, 60% 35%, 80% 55%, 100% 0, 100% 100%);
  opacity: 0.92;
}

.landing-trust-chat__wifi {
  width: 12px;
  height: 9px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50% 50% 0 0;
  transform: translateY(1px);
  opacity: 0.92;
}

.landing-trust-chat__battery {
  position: relative;
  width: 22px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  opacity: 0.92;
}

.landing-trust-chat__battery::before {
  content: "";
  position: absolute;
  inset: 1.5px 4px 1.5px 1.5px;
  border-radius: 1px;
  background: currentColor;
}

.landing-trust-chat__battery::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -4px;
  width: 2px;
  height: 4px;
  border-radius: 0 1px 1px 0;
  background: currentColor;
}

.landing-trust-chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 12px;
  background: linear-gradient(180deg, #2277bc 0%, #1f6fb0 100%);
  color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.landing-trust-chat__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: -2px;
  color: rgba(255, 255, 255, 0.92);
}

.landing-trust-chat__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(20, 24, 36, 0.16);
}

.landing-trust-chat__avatar--small {
  width: 28px;
  height: 28px;
  font-size: 12px;
  margin-top: 2px;
}

.landing-trust-chat__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.landing-trust-chat__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.landing-trust-chat__status {
  font-size: 11px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.78);
}

.landing-trust-chat__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 14px 12px 16px;
  background:
    radial-gradient(circle at 18% 12%, rgba(79, 142, 255, 0.08) 0%, transparent 38%),
    linear-gradient(180deg, #d8e1e8 0%, #e3e9ef 100%);
}

.landing-trust-chat__date {
  display: block;
  width: fit-content;
  margin: 4px auto 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 4px rgba(20, 24, 36, 0.06);
  font-size: 11px;
  font-weight: 600;
  color: rgba(20, 24, 36, 0.52);
}

.landing-trust-chat__row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.landing-trust-chat__bubble {
  position: relative;
  max-width: 78%;
  padding: 10px 12px 8px;
  border-radius: 16px 16px 16px 4px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(20, 24, 36, 0.07);
}

.landing-trust-chat__bubble p {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

.landing-trust-chat__time {
  display: block;
  font-size: 10px;
  line-height: 1;
  color: rgba(20, 24, 36, 0.42);
  text-align: right;
}

.landing-trust-chat__composer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 10px;
  background: #f4f6f8;
  border-top: 1px solid rgba(20, 24, 36, 0.06);
}

.landing-trust-chat__attach,
.landing-trust-chat__mic {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(36, 129, 204, 0.12);
}

.landing-trust-chat__attach {
  position: relative;
}

.landing-trust-chat__attach::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid #2481cc;
  border-radius: 3px;
  transform: rotate(-45deg);
}

.landing-trust-chat__mic {
  position: relative;
}

.landing-trust-chat__mic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 8px;
  height: 12px;
  border: 2px solid #2481cc;
  border-radius: 999px;
  transform: translateX(-50%);
}

.landing-trust-chat__mic::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 12px;
  height: 6px;
  border: 2px solid #2481cc;
  border-top: none;
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.landing-trust-chat__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 9px 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 24, 36, 0.08);
  font-size: 13px;
  line-height: 1.2;
  color: rgba(20, 24, 36, 0.38);
}

@keyframes trust-phone-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Secret */

.landing-secret {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef4ff 0%, #ffffff 55%, #f7f9fc 100%);
}

.landing-secret__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-secret__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: hero-orb-float 18s ease-in-out infinite;
}

.landing-secret__orb--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -40px;
  background: rgba(79, 142, 255, 0.14);
}

.landing-secret__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  left: -60px;
  background: rgba(79, 142, 255, 0.1);
  animation-delay: -6s;
}

.landing-secret__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(177, 63, 243, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 255, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(135deg, black 0%, rgba(0, 0, 0, 0.72) 22%, rgba(0, 0, 0, 0.28) 48%, transparent 78%);
  -webkit-mask-image: linear-gradient(135deg, black 0%, rgba(0, 0, 0, 0.72) 22%, rgba(0, 0, 0, 0.28) 48%, transparent 78%);
}

.landing-secret__inner {
  position: relative;
  z-index: 1;
}

.landing-secret__head {
  max-width: 900px;
  margin-bottom: 0;
}

.landing-secret__question {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

.landing-secret__answer {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.landing-secret__points {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid rgba(79, 142, 255, 0.14);
}

.landing-secret-point {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(20, 24, 36, 0.08);
}

.landing-secret-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.landing-secret-point__title {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.landing-secret-point__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 3px;
  height: 1.1em;
  border-radius: 999px;
  background: var(--gradient);
}

.landing-secret-point__text {
  margin: 0;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Relief */

.landing-relief {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef4ff 0%, #ffffff 55%, #f7f9fc 100%);
}

.landing-relief__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-relief__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: hero-orb-float 18s ease-in-out infinite;
}

.landing-relief__orb--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -40px;
  background: rgba(79, 142, 255, 0.14);
}

.landing-relief__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  left: -60px;
  background: rgba(79, 142, 255, 0.1);
  animation-delay: -6s;
}

.landing-relief__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 142, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 15%, transparent 72%);
}

.landing-relief__inner {
  position: relative;
  z-index: 1;
}

.landing-relief__title {
  margin: 0 auto 8px;
  max-width: 900px;
  text-align: center;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.landing-relief__marquee {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 0 16px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.landing-relief__marquee::before {
  content: "";
  position: absolute;
  inset: 8px clamp(16px, 4vw, 48px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(79, 142, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.landing-relief__track {
  overflow: hidden;
  width: 100%;
}

.landing-relief__track-inner {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 0 8px;
  will-change: transform;
}

.landing-relief__track--left .landing-relief__track-inner {
  animation: relief-scroll-left 42s linear infinite;
}

.landing-relief__track--right .landing-relief__track-inner {
  animation: relief-scroll-right 36s linear infinite;
}

.landing-relief__track--slow .landing-relief__track-inner {
  animation-duration: 52s;
}

.landing-relief__track:nth-child(2) .landing-relief__track-inner {
  animation-delay: -8s;
}

.landing-relief__track:nth-child(3) .landing-relief__track-inner {
  animation-delay: -14s;
}

@keyframes relief-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes relief-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.landing-relief__phrase {
  flex-shrink: 0;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(177, 63, 243, 0.1);
  box-shadow: 0 6px 24px rgba(20, 24, 36, 0.05);
  font-size: clamp(0.95rem, 1.55vw, 1.08rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgba(20, 24, 36, 0.5);
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.28);
  text-decoration-thickness: 1.5px;
}

.landing-relief__footer {
  position: relative;
  z-index: 1;
}

.landing-relief__promise {
  max-width: 860px;
  margin: 44px auto 0;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
  text-align: center;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 142, 255, 0.14);
  box-shadow: 0 16px 48px rgba(79, 142, 255, 0.08);
  backdrop-filter: blur(14px);
}

.landing-relief__promise-lead {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
}

.landing-relief__promise-price {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-muted);
}

.landing-relief__price {
  display: inline;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* CTA */

.landing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 100px) 0;
  background: var(--gradient);
  color: #fff;
}

.landing-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-cta__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-36%, -48%) rotate(-16deg);
  font-size: clamp(11rem, 44vw, 36rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.045);
  user-select: none;
}

.landing-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.landing-cta__title {
  position: relative;
  margin: 0 auto 16px;
  max-width: 820px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.landing-cta__highlight {
  position: relative;
  display: inline;
  color: #fff;
  z-index: 0;
}

.landing-cta__highlight::before {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.14em;
  top: 0.12em;
  bottom: 0.02em;
  background: rgba(255, 232, 110, 0.78);
  transform: rotate(-2.5deg) skewX(-8deg);
  border-radius: 2px 10px 3px 8px;
  z-index: -1;
}

.landing-cta__highlight::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: -0.08em;
  top: 0.28em;
  bottom: -0.04em;
  background: rgba(255, 214, 70, 0.52);
  transform: rotate(1.8deg) skewX(5deg);
  border-radius: 9px 3px 7px 4px;
  z-index: -2;
}

.landing-cta__deadline {
  position: relative;
  margin: 0 0 32px;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
}

/* FAQ */

.landing-faq {
  background: var(--bg-soft);
  padding-bottom: 0;
}

.landing-faq__title {
  text-align: center;
  margin-bottom: 40px;
}

.landing-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.landing-faq-item {
  border: 1px solid rgba(20, 24, 36, 0.1);
  border-radius: 22px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.landing-faq-item[open] {
  border-color: rgba(79, 142, 255, 0.18);
  box-shadow: var(--shadow-sm);
}

.landing-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}

.landing-faq-item__question::-webkit-details-marker {
  display: none;
}

.landing-faq-item__question::marker {
  content: "";
}

.landing-faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.25s ease;
}

.landing-faq-item__icon::before {
  content: "+";
}

.landing-faq-item[open] .landing-faq-item__icon {
  color: var(--primary);
  transform: rotate(45deg);
}

.landing-faq-item__answer {
  padding: 0 24px 22px;
}

.landing-faq-item__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.landing-faq-request {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  padding: clamp(64px, 8vw, 88px) 0;
  background: var(--gradient);
  color: #fff;
}

.landing-faq-request__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-faq-request__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-36%, -48%) rotate(-16deg);
  font-size: clamp(11rem, 44vw, 36rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.045);
  user-select: none;
}

.landing-faq-request__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.landing-faq-request__title {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.landing-faq-request__lead {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.landing-faq-form {
  margin-top: 32px;
  text-align: left;
}

.landing-faq-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.landing-faq-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.landing-faq-form__input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(20, 24, 36, 0.08);
  font: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.landing-faq-form__input::placeholder {
  color: rgba(20, 24, 36, 0.4);
}

.landing-faq-form__input:focus {
  outline: none;
  border-color: #fff;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.22),
    0 10px 32px rgba(20, 24, 36, 0.1);
  transform: translateY(-1px);
}

.landing-faq-form__input.is-error {
  border-color: #ffb4b4;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
}

.landing-faq-form__submit {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: flex;
}

.landing-faq-form__success {
  margin: 18px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

/* Footer */

.landing-footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--stroke);
  background: var(--bg);
}

.landing-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-footer .landing-logo img {
  opacity: 0.9;
}

.landing-footer p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.landing-footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
}

.landing-footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.landing-footer__links a:hover {
  color: var(--text);
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */

@media (min-width: 1025px) {
  .landing-serp {
    max-width: none;
    transform: scale(0.9);
  }
}

@media (max-width: 1024px) {
  .landing-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-hero__visual {
    margin-top: 0;
    padding-top: 0;
  }

  .landing-serp {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    transform: scale(1);
  }

  .landing-hero__offer {
    text-align: center;
  }

  .landing-hero__title,
  .landing-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-trust__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .landing-trust__content {
    text-align: center;
  }

  .landing-trust__title {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-trust__item {
    text-align: left;
  }

  .landing-hero__actions {
    justify-content: center;
  }

  .landing-hero__metrics {
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .landing-flow {
    flex-direction: column;
    gap: 0;
  }

  .landing-flow-step {
    width: 100%;
  }

  .landing-flow-arrow {
    flex: 0 0 auto;
    align-self: center;
    width: 32px;
    margin: 8px 0 12px;
  }

  .landing-flow-arrow__svg {
    transform: rotate(90deg);
  }

  .landing-secret-point {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .landing-secret-point__text {
    max-width: none;
  }

  .landing-hero__metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .landing-hero {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .landing-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-btn {
    width: 100%;
  }

  .landing-section {
    padding: 72px 0;
  }

  .landing-serp__arrow {
    display: none;
  }

  .landing-serp__ribbon {
    position: static;
    display: inline-block;
    transform: none;
    margin-bottom: 10px;
  }

  .landing-serp__body {
    padding: 16px;
  }

  .landing-logo img {
    height: 46px;
  }

  .landing-logo__tagline {
    font-size: 10px;
    max-width: 220px;
  }

  .landing-nav__test {
    font-size: 11px;
    padding: 8px 12px;
    white-space: normal;
    max-width: 150px;
  }

  .landing-nav__cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .landing-footer__meta {
    align-items: flex-start;
  }

  .landing-footer__links {
    justify-content: flex-start;
  }

  .landing-faq-form__grid {
    grid-template-columns: 1fr;
  }

  .landing-faq-request {
    margin-top: 40px;
    padding: 56px 0;
  }

  .landing-faq-form__submit {
    max-width: none;
  }

  .landing-trust-phone {
    width: min(100%, 252px);
  }

  .landing-trust-phone__shell {
    height: 520px;
  }
}

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

  .landing-hero__badge-dot,
  .landing-hero__orb,
  .landing-how__orb,
  .landing-trust__orb,
  .landing-trust-phone,
  .landing-secret__orb,
  .landing-relief__orb,
  .landing-relief__track-inner {
    animation: none;
  }

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