﻿:root {
  --bg: #061325;
  --bg-soft: rgba(13, 31, 54, 0.8);
  --line: rgba(146, 232, 255, 0.18);
  --text: #fbfeff;
  --muted: rgba(232, 245, 255, 0.8);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(71, 214, 255, 0.28), transparent 30%),
    radial-gradient(circle at 85% 0%, rgba(124, 255, 216, 0.22), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(49, 132, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #061325 0%, #0b1d35 52%, #081425 100%);
}

body.has-glass-cursor {
  cursor: none;
}

body.has-glass-cursor a,
body.has-glass-cursor button {
  cursor: none;
}

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

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

.page-shell {
  overflow: clip;
}

.scroll-progress {
  position: fixed;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 120px), 560px);
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.012);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  transform: translateX(-50%);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 420ms ease;
  transform: translateX(-50%) translateY(-8px);
  z-index: 1200;
}

.scroll-progress.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.scroll-progress::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008));
  pointer-events: none;
}

.scroll-progress__bar {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: calc((100% - 4px) * var(--progress, 0));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  transition: width 180ms linear;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 32px 0 56px;
  border-bottom: 1px solid var(--line);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(57, 210, 255, 0.34), transparent 28%),
    radial-gradient(circle at 18% 10%, rgba(124, 255, 216, 0.26), transparent 24%);
  pointer-events: none;
}

.hero__grid,
.split-layout,
.feature-grid,
.pricing-grid,
.policy-grid,
.support-grid,
.chat-card__stats {
  display: grid;
}

.hero__grid {
  position: relative;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: stretch;
  padding-top: 40px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero__visual-column {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  align-content: stretch;
  height: 100%;
}

.eyebrow,
.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(236, 249, 255, 0.94);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-card h2 {
  margin: 20px 0 0;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.hero__lead,
.hero__hook,
.hero__note,
.section-heading p,
.feature-card p,
.step-card p,
.usage-card p,
.info-card p,
.cta-card p,
.price-card p,
.policy-card li,
.chat-card__messages p,
.site-footer p {
  color: var(--muted);
}

.hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  line-height: 1.8;
}

.hero__hook {
  max-width: 660px;
  margin: 18px 0 0;
  padding: 16px 20px;
  border: 1px solid rgba(124, 245, 201, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(69, 196, 255, 0.08), rgba(124, 245, 201, 0.08)),
    rgba(255, 255, 255, 0.03);
  color: rgba(243, 247, 251, 0.88);
  font-size: 1.02rem;
  line-height: 1.75;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.hero__note {
  max-width: 640px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button__icon,
.support-link__icon,
.info-card__icon,
.site-footer__icon,
.price-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.button__icon {
  width: 20px;
  height: 20px;
}

.button__icon svg,
.support-link__icon svg,
.info-card__icon svg,
.site-footer__icon svg,
.price-card__icon svg {
  width: 100%;
  height: 100%;
}

.button:hover,
.button:focus-visible,
.support-link:hover,
.support-link:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #f8fdff 0%, #b9fff0 45%, #7de6ff 100%);
  color: #05233d;
  box-shadow: 0 18px 50px rgba(124, 255, 216, 0.32);
}

.floating-bot-cta {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  right: 24px;
  bottom: 24px;
  z-index: 1300;
  padding: 0 26px;
  border-radius: 999px;
  box-shadow:
    0 20px 50px rgba(4, 17, 31, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.floating-bot-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.floating-bot-cta__icon svg {
  width: 100%;
  height: 100%;
}

.button--ghost,
.support-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.support-link__icon {
  width: 18px;
  height: 18px;
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
  align-items: center;
  min-height: 0;
}

.hero__preview {
  display: flex;
  justify-content: center;
}

.hero__aside {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.floating-goods {
  position: relative;
  width: min(100%, 430px);
  height: 220px;
}

.floating-goods__item {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: float-goods 4.8s ease-in-out infinite;
  transform-origin: center;
}

.floating-goods__item svg {
  width: 54%;
  height: 54%;
}

.floating-goods__item--device {
  top: 16px;
  left: 14px;
  width: 94px;
  height: 112px;
  color: rgba(193, 255, 235, 0.92);
  transform: rotate(-12deg);
  animation-delay: -0.2s;
}

.floating-goods__item--paint {
  top: 4px;
  right: 42px;
  width: 120px;
  height: 120px;
  color: rgba(169, 227, 255, 0.9);
  transform: rotate(10deg);
  animation-delay: -1.1s;
}

.floating-goods__item--car {
  left: 118px;
  bottom: 6px;
  width: 112px;
  height: 80px;
  color: rgba(255, 255, 255, 0.88);
  transform: rotate(-7deg);
  animation-delay: -2s;
}

.floating-goods__item--dress {
  right: 8px;
  bottom: -34px;
  width: 100px;
  height: 124px;
  color: rgba(205, 255, 222, 0.9);
  transform: rotate(8deg);
  animation-delay: -2.8s;
}

@keyframes float-goods {
  0%,
  100% {
    translate: 0 10px;
    scale: 0.92;
  }

  50% {
    translate: 0 -10px;
    scale: 1;
  }
}

.hero__preview-link {
  display: block;
  border-radius: var(--radius-xl);
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
  cursor: none;
  will-change: transform;
}

.hero__preview-link:focus-visible {
  outline: 2px solid rgba(196, 248, 235, 0.82);
  outline-offset: 10px;
}

.chat-card,
.feature-card,
.step-card,
.usage-card,
.info-card,
.price-card,
.policy-card,
.cta-card {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.chat-card {
  width: min(100%, 530px);
  padding: 22px;
  border-radius: var(--radius-xl);
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.price-card {
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.chat-card__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.chat-card__header p {
  margin: 0;
  color: rgba(243, 247, 251, 0.56);
  font-size: 0.85rem;
}

.chat-card__header h2 {
  margin: 4px 0 0;
  font-size: 1.4rem;
}

.status-badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 255, 216, 0.32);
  background: rgba(124, 255, 216, 0.16);
  color: #b8ffe8;
  font-size: 0.9rem;
}

.chat-card__messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.message {
  max-width: 90%;
  padding: 14px 16px;
  border-radius: 20px;
  line-height: 1.6;
}

.message--outgoing {
  align-self: flex-end;
  border-bottom-right-radius: 8px;
  background: rgba(57, 210, 255, 0.24);
}

.message--incoming {
  border-bottom-left-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.message--card {
  border: 1px solid var(--line);
  background: rgba(4, 11, 21, 0.92);
}

.message--card strong {
  display: block;
  margin: 6px 0 0;
  font-size: 1rem;
}

.message--card p {
  margin: 8px 0 0;
}

.message--card button {
  margin-top: 14px;
  padding: 11px 14px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f7fbff 0%, #cdefff 100%);
  color: #062036;
  font: inherit;
  font-weight: 700;
}

.message__label {
  color: rgba(243, 247, 251, 0.5);
  font-size: 0.82rem;
}

.chat-card__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.chat-card__stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.chat-card__stats dt {
  color: rgba(243, 247, 251, 0.56);
  font-size: 0.84rem;
}

.chat-card__stats dd {
  margin: 8px 0 0;
  font-weight: 800;
  font-size: 1.1rem;
}

.glass-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 42%, rgba(69, 196, 255, 0.14) 70%, rgba(124, 245, 201, 0.08) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 10px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.72);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease, width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
  z-index: 9999;
}

body.has-glass-cursor .glass-cursor.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

body.has-glass-cursor .glass-cursor.is-hovering-link {
  width: 56px;
  height: 56px;
  border-color: rgba(198, 248, 235, 0.56);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1) 42%, rgba(69, 196, 255, 0.18) 72%, rgba(124, 245, 201, 0.12) 100%);
}

@media (hover: hover) and (pointer: fine) {
  .hero__preview-link:hover,
  .hero__preview-link:focus-visible {
    transform: translate3d(0, -10px, 0);
  }

  .hero__preview-link:hover .chat-card,
  .hero__preview-link:focus-visible .chat-card {
    border-color: rgba(124, 245, 201, 0.34);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
    animation: phone-bob-inner 2.1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }

  .price-card:hover,
  .price-card:focus-within {
    border-color: rgba(124, 245, 201, 0.34);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  }

  .price-card:hover .price-card__inner,
  .price-card:focus-within .price-card__inner {
    animation: phone-bob-inner 2.1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }
}

@keyframes phone-bob-inner {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.section {
  padding: 88px 0;
}

.section--contrast {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}

.section-heading p,
.cta-card p,
.price-card p {
  margin: 18px 0 0;
  font-size: 1.02rem;
  line-height: 1.8;
}

.feature-grid,
.pricing-grid,
.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    var(--bg-soft);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.comparison-table {
  display: grid;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.8fr) minmax(180px, 0.95fr);
}

.comparison-row + .comparison-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-row--head {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-cell {
  padding: 20px 22px;
  line-height: 1.6;
}

.comparison-cell:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-cell--feature {
  font-weight: 700;
  color: var(--text);
}

.comparison-cell--muted {
  color: rgba(232, 245, 255, 0.72);
}

.comparison-cell--premium {
  color: #e9fff8;
  background: rgba(124, 255, 216, 0.07);
}

.comparison-yes,
.comparison-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}

.comparison-yes {
  background: rgba(124, 255, 216, 0.18);
  color: #b8ffe8;
}

.comparison-no {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(232, 245, 255, 0.7);
}

.feature-card,
.step-card,
.usage-card,
.info-card,
.price-card,
.policy-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-card__icon,
.price-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(57, 210, 255, 0.34), rgba(124, 255, 216, 0.28));
  color: #efffff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card h3,
.step-card h3,
.usage-card h3,
.info-card h3,
.price-card h3,
.policy-card h3 {
  margin: 18px 0 0;
  font-size: 1.32rem;
}

.info-card__title,
.site-footer__title--icon,
.price-card__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.info-card__icon,
.site-footer__icon {
  width: 18px;
  height: 18px;
  color: rgba(193, 255, 235, 0.92);
}

.feature-card p,
.step-card p,
.usage-card p,
.info-card p {
  margin: 12px 0 0;
  line-height: 1.75;
}

.split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.steps,
.usage-list {
  display: grid;
  gap: 16px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3f7fb 0%, #c6f8eb 100%);
  color: #062036;
  font-weight: 800;
}

.price-card__value {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price-card__title {
  margin: 18px 0 0;
}

.price-card__icon {
  width: 24px;
  height: 24px;
  color: rgba(193, 255, 235, 0.96);
}

.price-card__icon--gold {
  color: #f4c553;
}

.price-card__price-stack {
  margin-top: 16px;
}

.price-card__old-value {
  margin: 0;
  color: rgba(232, 245, 255, 0.46);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-card__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-card__price-row .price-card__value {
  margin-top: 8px;
}

.price-card__discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 197, 83, 0.24), rgba(255, 235, 164, 0.18));
  border: 1px solid rgba(244, 197, 83, 0.35);
  color: #ffe08b;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.price-card {
  padding: 0;
  overflow: hidden;
  transition: box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.price-card__inner {
  height: 100%;
  padding: 26px;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.price-card--featured {
  background: linear-gradient(180deg, rgba(57, 210, 255, 0.24), rgba(13, 31, 54, 0.9));
  border-color: rgba(124, 255, 216, 0.34);
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.policy-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.policy-card li {
  margin-top: 10px;
  line-height: 1.7;
}

.section--cta {
  padding-top: 12px;
}

.cta-card {
  padding: 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(57, 210, 255, 0.24), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(4, 11, 21, 0.42);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.site-footer__title {
  color: var(--text);
  font-weight: 700;
}

.site-footer p {
  margin: 0 0 10px;
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  filter: blur(12px);
  transition:
    opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (max-width: 1100px) {
  .hero__grid,
  .split-layout,
  .feature-grid,
  .pricing-grid,
  .policy-grid,
  .support-grid,
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__content,
  .hero__visual-column,
  .split-layout > div,
  .policy-grid > *,
  .site-footer__grid > * {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .scroll-progress {
    top: 10px;
    width: min(calc(100% - 32px), 420px);
    height: 8px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .chat-card,
  .feature-card,
  .step-card,
  .usage-card,
  .info-card,
  .policy-card,
  .cta-card {
    padding: 20px;
  }

  .price-card__inner {
    padding: 20px;
  }

  .price-card__price-row {
    align-items: flex-start;
  }

  .feature-grid,
  .pricing-grid,
  .policy-grid,
  .support-grid,
  .chat-card__stats,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    overflow: auto hidden;
  }

  .comparison-table {
    min-width: 700px;
  }

  .hero__bottom {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  .hero__actions .button,
  .support-link {
    width: 100%;
  }

  .floating-bot-cta {
    right: 16px;
    bottom: 16px;
    left: auto;
    width: 58px;
    min-width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }

  .floating-bot-cta__icon {
    width: 24px;
    height: 24px;
  }

  .floating-bot-cta__label {
    display: none;
  }

  .hero__hook,
  .hero__note {
    width: 100%;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero__preview-link:hover .chat-card,
  .hero__preview-link:focus-visible .chat-card {
    transform: translateY(-6px);
  }
}
