:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --bg-deep: #eff1fb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #161826;
  --text-soft: #596078;
  --border: rgba(103, 88, 171, 0.12);
  --shadow: 0 30px 80px rgba(78, 59, 156, 0.12);
  --shadow-soft: 0 20px 50px rgba(64, 48, 135, 0.08);
  --brand-900: #24135e;
  --brand-700: #5630d7;
  --brand-500: #6f3dff;
  --brand-400: #8d63ff;
  --brand-200: #eee7ff;
  --accent: #ff7b8f;
  --success: #33b88a;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
  --header-height: 86px;
  --transition: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(111, 61, 255, 0.12), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(255, 123, 143, 0.13), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 48%, #f5f7fe 100%);
  min-width: 360px;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand-500);
  color: #fff;
  z-index: 30;
}

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

.section {
  position: relative;
  padding: 88px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(111, 61, 255, 0.08);
  color: var(--brand-700);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand-500));
  box-shadow: 0 0 0 6px rgba(111, 61, 255, 0.08);
}

h1,
h2,
h3 {
  font-family: "Inter", "Manrope", sans-serif;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.05em;
}

h1 {
  margin-top: 22px;
  font-size: clamp(2.6rem, 4.2vw, 4.5rem);
  max-width: 720px;
}

h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  box-shadow: 0 18px 35px rgba(91, 53, 220, 0.28);
}

.button-primary-telegram {
  background: #00a6e5;
  color: #fff;
  box-shadow: 0 18px 35px rgba(91, 53, 220, 0.28);
}

.button-primary-max {
  background: radial-gradient(136.12% 140.74% at 99.77% 99.04%, #8d28c8 0%, #7c42fa 20%, #007aff 80%, #609ceb 100%);
  color: #fff;
  box-shadow: 0 18px 35px rgba(91, 53, 220, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(111, 61, 255, 0.14);
  color: var(--brand-700);
  box-shadow: var(--shadow-soft);
}

.button-large {
  min-height: 64px;
  padding-inline: 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(58, 67, 106, 0.1);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(20, 24, 38, 0.06);
  border-bottom-color: rgba(58, 67, 106, 0.14);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding: 0;
  position: relative;
}

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

.brand img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color var(--transition), background var(--transition);
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-700);
  background: rgba(111, 61, 255, 0.06);
}

.site-nav a.is-active {
  color: var(--brand-500);
  background: rgba(111, 61, 255, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(111, 61, 255, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(64, 48, 135, 0.06);
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--brand-700);
  border-radius: 999px;
  transform-origin: center;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(91, 53, 220, 0.18);
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  box-shadow: 0 18px 34px rgba(91, 53, 220, 0.24);
}

.footer-brand img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.hero {
  padding-top: 26px;
  padding-bottom: 68px;
}

.hero-grid,
.telegram-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

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

.hero-heading-card {
  margin-top: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(111, 61, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 60px rgba(56, 39, 118, 0.08);
}

.hero-heading-card h1 {
  margin-top: 0;
  font-size: clamp(2.7rem, 3.7vw, 3.95rem);
  line-height: 0.96;
}

.hero-title-line {
  display: block;
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

.hero-title-accent {
  display: block;
  margin-top: 7px;
  color: var(--brand-500);
  font-weight: 600;
}

.hero-lead {
  margin-top: 22px;
  max-width: 540px;
  font-size: 1.06rem;
  line-height: 1.68;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  max-width: 460px;
}

.hero-benefits li {
  position: relative;
  padding-left: 42px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(111, 61, 255, 0.14), rgba(255, 123, 143, 0.14));
  box-shadow: inset 0 0 0 1px rgba(111, 61, 255, 0.08);
}

.hero-benefits li::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--brand-500);
  border-bottom: 2px solid var(--brand-500);
  transform: rotate(-45deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-actions .button-primary {
  min-width: 270px;
}

.hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.72);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  min-width: 0;
}

.hero-proof-avatars {
  display: flex;
  align-items: center;
  padding-left: 10px;
  flex: 0 0 auto;
}

.hero-proof-avatar {
  width: 34px;
  height: 34px;
  margin-left: -10px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  object-fit: cover;
  background: #eceff8;
  box-shadow: 0 8px 18px rgba(45, 34, 95, 0.1);
}

.hero-note {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  margin-top: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-counter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: flex-end;
  gap: 0.04em;
  color: var(--brand-500);
  font-size: clamp(1.28rem, 2.1vw, 1.7rem);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hero-counter-slot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.68em;
  height: 1.05em;
  overflow: hidden;
}

.hero-counter-slot.is-separator {
  min-width: 0.34em;
}

.hero-counter-digit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  height: 100%;
  transform: translateY(0);
}

.hero-counter-slot.is-animating .hero-counter-digit.is-old {
  animation: counter-digit-out 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-counter-slot.is-animating .hero-counter-digit.is-new {
  position: absolute;
  inset: 0;
  animation: counter-digit-in 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Rollback note: remove `hero-refined` from the hero section in index.html to return close to the previous first-screen look. */
.hero.hero-refined {
  padding-top: 34px;
  padding-bottom: 56px;
}

.hero-refined .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr);
  gap: 42px;
  align-items: center;
}

.hero-refined .hero-copy {
  position: relative;
  max-width: 660px;
}

.hero-refined .hero-copy::before {
  content: "";
  position: absolute;
  inset: -28px auto auto -24px;
  width: 188px;
  height: 188px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 61, 255, 0.1), rgba(111, 61, 255, 0));
  pointer-events: none;
  z-index: -1;
}

.hero-refined .eyebrow {
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(111, 61, 255, 0.1);
  box-shadow: 0 14px 34px rgba(74, 54, 143, 0.08);
}

.hero-refined .hero-heading-card {
  position: relative;
  margin-top: 18px;
  padding: 28px 30px 26px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 255, 0.92)),
    var(--surface);
  border-color: rgba(111, 61, 255, 0.1);
  box-shadow: 0 28px 70px rgba(56, 39, 118, 0.1);
  overflow: hidden;
}

.hero-refined .hero-heading-card::after {
  content: "";
  position: absolute;
  inset: auto -34px -36px auto;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 61, 255, 0.08), rgba(111, 61, 255, 0));
  pointer-events: none;
}

.hero-refined .hero-heading-card h1 {
  font-size: clamp(2.9rem, 4.1vw, 4.25rem);
}

.hero-refined .hero-title-accent {
  margin-top: 10px;
}

.hero-refined .hero-lead {
  margin-top: 18px;
  max-width: 59ch;
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero-refined .hero-actions {
  gap: 14px;
  margin-top: 24px;
}

.hero-refined .hero-actions .button-primary {
  min-width: 292px;
  box-shadow: 0 20px 42px rgba(91, 53, 220, 0.24);
}

.hero-refined .hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(111, 61, 255, 0.18);
}

.hero-refined .hero-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 100%;
  margin-top: 26px;
}

.hero-refined .hero-benefits li {
  min-height: 100%;
  padding: 14px 16px 14px 48px;
  border: 1px solid rgba(111, 61, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 32px rgba(64, 48, 135, 0.06);
  line-height: 1.42;
}

.hero-refined .hero-benefits li::before {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-refined .hero-benefits li::after {
  left: 24px;
  top: 50%;
  transform: translateY(-56%) rotate(-45deg);
}

.hero-refined .hero-proof {
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 12px;
}

.hero-refined .hero-note {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  background: transparent;
}

.hero-refined .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-refined .hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 8% 8%;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(111, 61, 255, 0.12), rgba(111, 61, 255, 0));
  filter: blur(28px);
  pointer-events: none;
}

.hero-refined .comparison-card {
  width: 100%;
  max-width: 590px;
  padding: 18px;
  transform: rotate(1.5deg);
}

.hero-refined .comparison-paper {
  padding: 16px 16px 20px;
  border-radius: 14px;
  box-shadow: 0 34px 84px rgba(48, 36, 105, 0.14);
}

.hero-refined .comparison-stage {
  border-radius: 22px;
}

.hero-refined .comparison-caption {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.62;
}

@keyframes counter-digit-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-115%);
    opacity: 0;
  }
}

@keyframes counter-digit-in {
  from {
    transform: translateY(115%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.comparison-card,
.tokens-shell,
.story-card,
.story-quote,
.final-cta {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.comparison-card {
  max-width: 560px;
  margin-left: auto;
  padding: 16px;
  border-radius: 36px;
  transform: rotate(2deg);
}

.comparison-paper {
  padding: 14px 14px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(48, 36, 105, 0.12);
}

.comparison-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.92;
  background: #ececf2;
  user-select: none;
}

.comparison-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.comparison-after {
  clip-path: inset(0 42% 0 0);
  transition: clip-path 80ms linear;
  z-index: 2;
}

.comparison-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-image-before {
  filter: grayscale(1) contrast(1.04) brightness(1.03);
}

.comparison-chip {
  position: absolute;
  top: 18px;
  z-index: 4;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(20, 24, 38, 0.12);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.comparison-chip-after {
  left: 18px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
}

.comparison-chip-before {
  right: 18px;
  background: rgba(38, 44, 70, 0.7);
}

.comparison-chip-before.is-hidden {
  opacity: 0;
  transform: translateY(-10px);
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(111, 61, 255, 0.08);
  z-index: 5;
  pointer-events: none;
}

.divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 14px 30px rgba(40, 31, 91, 0.18);
  pointer-events: none;
}

.divider-handle::before,
.divider-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--brand-500);
  border-right: 2px solid var(--brand-500);
  transform: translateY(-50%) rotate(45deg);
}

.divider-handle::before {
  left: 15px;
  transform: translateY(-50%) rotate(225deg);
}

.divider-handle::after {
  right: 15px;
}

.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 6;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}

.comparison-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: ew-resize;
}

.comparison-range::-moz-range-thumb {
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: ew-resize;
}

.comparison-caption {
  margin-top: 16px;
  padding: 0 10px;
  text-align: center;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.stats-grid,
.tokens-grid,
.defects-grid,
.reviews-grid {
  display: grid;
  gap: 18px;
}

.stat-card,
.timeline-item,
.defect-card,
.review-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 30px;
}

.stat-card strong {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.trust {
  padding-top: 78px;
  padding-bottom: 78px;
}

.trust-head {
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
}

.trust-head .section-label {
  margin-inline: auto;
}

.trust-head h2 {
  max-width: 920px;
  margin-inline: auto;
}

.trust-title-accent {
  color: var(--brand-500);
}

.trust-head p {
  max-width: 820px;
  margin: 18px auto 0;
}

.trust-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.trust-benefit {
  text-align: center;
}

.trust-icon-box {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(111, 61, 255, 0.12), rgba(111, 61, 255, 0.06));
  color: var(--brand-500);
}

.trust-icon {
  width: 28px;
  height: 28px;
}

.trust-benefit h3 {
  margin-top: 0;
  font-size: 1.34rem;
  line-height: 1.28;
  text-wrap: balance;
}

.trust-benefit p {
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.trust-cta {
  margin-top: 44px;
  text-align: center;
}

.trust-cta .button {
  min-width: min(100%, 420px);
}

.trust-cta p {
  max-width: 540px;
  margin: 14px auto 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.gallery-section {
  overflow: hidden;
  background: transparent;
}

.gallery-section::before {
  display: none;
}

.gallery-section > * {
  position: relative;
  z-index: 1;
}

.gallery-head {
  max-width: none;
  margin: 0 auto 24px;
  text-align: center;
}

.gallery-heading-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  justify-items: center;
}

.gallery-copy {
  display: grid;
  justify-items: center;
  max-width: 980px;
}

.gallery-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.gallery-title-accent {
  color: var(--brand-500);
}

.gallery-copy p {
  margin-top: 18px;
  max-width: 940px;
  text-align: center;
  text-wrap: balance;
}

.gallery-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(111, 61, 255, 0.08);
  color: var(--brand-700);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.gallery-hint::after {
  content: "↘";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(111, 61, 255, 0.26);
  color: var(--brand-500);
  font-size: 1rem;
}

.examples-showcase {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  padding-bottom: 2px;
}

.examples-marquee {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  padding-block: 16px 78px;
  touch-action: pan-x;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 42px, #000 calc(100% - 42px), transparent 100%);
}

.examples-marquee::before,
.examples-marquee::after {
  display: none;
}

.examples-track {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  width: max-content;
  min-width: 100%;
  justify-content: center;
  padding: 18px 0 12px;
  will-change: transform;
}

.examples-marquee.is-draggable {
  cursor: grab;
}

.examples-marquee.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.examples-marquee.is-dragging .example-story-card {
  pointer-events: none;
}

.examples-track[data-marquee-ready="true"] {
  animation: examples-marquee 34s linear infinite;
}

.examples-marquee:hover .examples-track[data-marquee-ready="true"],
.examples-marquee:focus-within .examples-track[data-marquee-ready="true"] {
  animation-play-state: paused;
}

.example-story-card {
  --card-rotation: -4deg;
  --card-lift: 8px;
  --media-position: 50% 18%;
  --media-fit: cover;
  --media-filter: saturate(0.96) contrast(1.05) brightness(1.02);
  position: relative;
  flex: 0 0 clamp(178px, 17vw, 248px);
  aspect-ratio: 0.73;
  padding: 12px;
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 56px rgba(83, 56, 138, 0.14);
  cursor: pointer;
  text-align: center;
  transform: rotate(var(--card-rotation)) translateY(var(--card-lift));
  transition: transform var(--transition), box-shadow var(--transition);
  isolation: isolate;
}

.example-story-card::before,
.example-story-card::after {
  content: "";
  position: absolute;
  inset: 14px 12px 58px;
  border-radius: 26px;
  z-index: -1;
}

.example-story-card::before {
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(-8deg);
}

.example-story-card::after {
  background: rgba(237, 232, 255, 0.76);
  transform: rotate(6deg);
}

.example-story-card:hover,
.example-story-card:focus-visible {
  transform: rotate(var(--card-rotation)) translateY(calc(var(--card-lift) - 10px));
  box-shadow: 0 34px 72px rgba(83, 56, 138, 0.18);
}

.example-story-card:focus-visible {
  outline: 3px solid rgba(111, 61, 255, 0.32);
  outline-offset: 5px;
}

.example-story-card.is-archive {
  --media-filter: grayscale(1) contrast(1.08) brightness(1.06);
}

.example-story-card.is-close {
  --media-position: 50% 10%;
}

.example-story-card.is-soft {
  --media-filter: saturate(0.92) brightness(1.03) contrast(1.01);
}

.example-story-card.is-tilted {
  --card-rotation: 7deg;
}

.example-story-card.is-final {
  --media-filter: saturate(1) contrast(1.08) brightness(1.03);
}

.example-story-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f2fb, #ebe7f7);
  box-shadow: inset 0 0 0 1px rgba(30, 26, 44, 0.06);
}

.example-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(20, 16, 44, 0.58));
}

.example-story-media img {
  width: 100%;
  height: 100%;
  object-fit: var(--media-fit);
  object-position: var(--media-position);
  filter: var(--media-filter);
  transform: scale(1.03);
}

.example-story-meta {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.example-story-chip {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.example-story-name {
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.18;
  text-shadow: 0 10px 26px rgba(10, 10, 18, 0.45);
}

.gallery-cta {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 0;
  padding: 0 24px 2px;
  text-align: center;
}

.gallery-cta p {
  max-width: 560px;
  font-size: 0.96rem;
}

.examples-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  overflow-y: auto;
  padding: 16px 0;
}

.examples-modal[hidden] {
  display: none;
}

.examples-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 22, 20, 0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity var(--transition);
}

.examples-modal-dialog {
  position: relative;
  width: min(calc(100% - 32px), 920px);
  max-height: calc(100vh - 32px);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 44px 120px rgba(18, 16, 30, 0.34);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition), opacity var(--transition);
  overflow: auto;
  overscroll-behavior: contain;
}

.examples-modal.is-open .examples-modal-backdrop {
  opacity: 1;
}

.examples-modal.is-open .examples-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.examples-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(111, 61, 255, 0.1);
  color: var(--brand-700);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.examples-modal-head {
  max-width: none;
  margin-bottom: 20px;
  padding-right: 84px;
}

.examples-modal-head h3 {
  margin-top: 0;
  max-width: 100%;
  font-size: clamp(1.42rem, 1.95vw, 2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.examples-modal-copy {
  margin-top: 12px;
  max-width: 760px;
}

.examples-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.examples-modal-frame {
  margin: 0;
  display: grid;
  align-content: start;
  padding: 12px 12px 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #faf7ff);
  box-shadow: inset 0 0 0 1px rgba(88, 63, 147, 0.08);
}

.examples-modal-image-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #ece8f7;
  height: clamp(320px, 42vw, 560px);
  min-height: 0;
  padding: 0;
}

.examples-modal-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.examples-modal-frame figcaption {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.exit-offer-modal {
  position: fixed;
  inset: 0;
  z-index: 42;
  display: grid;
  place-items: center;
  padding: 16px;
}

.exit-offer-modal[hidden] {
  display: none;
}

.exit-offer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 17, 35, 0.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity var(--transition);
}

.exit-offer-dialog {
  position: relative;
  width: min(calc(100% - 16px), 430px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(111, 61, 255, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 255, 0.96));
  box-shadow: 0 40px 110px rgba(15, 13, 34, 0.34);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: transform var(--transition), opacity var(--transition);
}

.exit-offer-modal.is-open .exit-offer-backdrop {
  opacity: 1;
}

.exit-offer-modal.is-open .exit-offer-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.exit-offer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(38, 32, 68, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(38, 32, 68, 0.76);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(28, 24, 52, 0.08);
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}

.exit-offer-close:hover,
.exit-offer-close:focus-visible {
  border-color: rgba(86, 48, 215, 0.34);
  background: rgba(255, 255, 255, 0.98);
  color: var(--brand-700);
  transform: scale(1.03);
}

.exit-offer-head {
  padding: 28px 56px 18px;
  text-align: center;
}

.exit-offer-head h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 0.96;
}

.exit-offer-visual {
  padding: 0 20px;
}

.exit-offer-frame {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f4f1ff, #eeebfb);
  box-shadow: inset 0 0 0 1px rgba(111, 61, 255, 0.08);
}

.exit-offer-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.76;
  border-radius: 16px;
  background: #e7e3f4;
}

.exit-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exit-offer-media span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exit-offer-copy {
  padding: 18px 28px 0;
  text-align: center;
}

.exit-offer-copy p {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.58;
}

.exit-offer-actions {
  display: grid;
  gap: 12px;
  padding: 22px 28px 28px;
}

.exit-offer-button {
  min-height: 58px;
}

.exit-offer-dismiss {
  border: 0;
  background: transparent;
  color: rgba(89, 96, 120, 0.9);
  font-size: 0.96rem;
  cursor: pointer;
}

@keyframes examples-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--marquee-shift, -240px), 0, 0);
  }
}

.review-card h3,
.timeline-item h3,
.defect-card h3 {
  margin-top: 18px;
}

.tokens-shell,
.final-cta {
  padding: 36px;
}

.how-section {
  background: transparent;
}

.how-head {
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 26px;
  text-align: center;
}

.how-head p {
  margin-inline: auto;
}

.how-head h2 {
  text-wrap: balance;
  margin-bottom: 20px;
}

.how-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.how-title-accent {
  color: var(--brand-700);
  font-weight: 500;
}

.how-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.how-visual {
  display: grid;
  align-content: start;
  gap: 18px;
}

.how-photo-frame {
  position: relative;
  align-self: start;
  overflow: hidden;
  border-radius: 28px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 255, 0.92)),
    var(--bg);
  border: 1px solid rgba(111, 61, 255, 0.1);
  box-shadow: 0 24px 64px rgba(46, 33, 95, 0.12);
}

.how-photo-frame img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.how-visual-note {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
}

.how-visual-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(111, 61, 255, 0.12);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.how-steps {
  display: grid;
  gap: 0;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  height: 100%;
}

.how-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-content: start;
  padding: 16px 0 18px;
  border-bottom: 1px solid rgba(34, 25, 66, 0.1);
}

.how-step:first-child {
  padding-top: 0;
}

.how-step:last-of-type {
  border-bottom: 0;
}

.how-step-number {
  color: var(--brand-700);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.how-step-copy h3 {
  margin: 0;
  font-size: clamp(1.34rem, 1.9vw, 1.82rem);
  line-height: 1.04;
}

.how-step-copy p {
  margin: 12px 0 0;
  max-width: 48ch;
}

.how-step-cta {
  margin-top: 12px;
}

.how-step-cta-button {
  min-width: 0;
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.98rem;
}

.how-step-link {
  display: inline-flex;
  margin-top: 12px;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.how-step-link:hover,
.how-step-link:focus-visible {
  color: var(--brand-700);
}

.tokens-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.tokens-shell.tokens-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 0;
}

.tokens-head {
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

.tokens-head h2 {
  margin-bottom: 20px;
}

.tokens-title-accent {
  color: var(--brand-700);
}

.tokens-head p {
  margin-inline: auto;
  max-width: 68ch;
}

.tokens-grid.tokens-grid--tools {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.token-tool-card {
  min-height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 255, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.token-tool-icon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  box-shadow: 0 18px 34px rgba(86, 48, 215, 0.22);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.token-tool-card h3 {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.token-tool-card p {
  margin-top: 12px;
}

.tokens-summary {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
  color: var(--text-soft);
}

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

.defects-head {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.defects-head p {
  margin-inline: auto;
  max-width: 62ch;
}

.defects-title-accent {
  color: var(--brand-700);
}

.defects-head h2 {
  margin-bottom: 24px;
}

.feature-tile,
.glass-card,
.review-card,
.defect-card {
  padding: 24px;
}

.defect-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 255, 0.92)),
    var(--surface);
}

.defect-card h3 {
  margin-top: 0;
  text-wrap: balance;
}

.defect-card p {
  margin-top: 10px;
  color: var(--text-soft);
}

.defects-grid,
.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ai-vs-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.ai-vs-head h2 {
  margin-bottom: 24px;
}

.ai-vs-head p {
  max-width: 68ch;
  margin-inline: auto;
}

.ai-vs-title-accent {
  color: var(--brand-700);
}

.ai-vs-table-wrap {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(111, 61, 255, 0.1);
  border-radius: calc(var(--radius-xl) + 2px);
  background: transparent;
  box-shadow: 0 24px 48px rgba(82, 47, 197, 0.08);
}

.ai-vs-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
}

.ai-vs-table th,
.ai-vs-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(111, 61, 255, 0.08);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.ai-vs-table th {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.28;
  background: rgba(111, 61, 255, 0.05);
}

.ai-vs-table td {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.ai-vs-table td:first-child {
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.97);
}

.ai-vs-table th.ai-vs-col-ai {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
}

.ai-vs-table th.ai-vs-col-ai span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  margin-top: 8px;
  margin-inline: 0;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
}

.ai-vs-table th.ai-vs-col-manual {
  color: #6f7896;
  background: rgba(99, 110, 146, 0.07);
}

.ai-vs-table th.ai-vs-col-manual span {
  display: block;
  margin-top: 8px;
  color: #7b84a2;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.ai-vs-table tbody td:nth-child(2) {
  color: var(--text);
  font-weight: 700;
  background: rgba(111, 61, 255, 0.08);
}

.ai-vs-table tbody td:nth-child(3) {
  color: #6f7896;
  background: rgba(99, 110, 146, 0.04);
}

.ai-vs-table tr:last-child td {
  border-bottom: 0;
}

.ai-vs-table tr:first-child th:first-child {
  border-top-left-radius: calc(var(--radius-xl) + 1px);
}

.ai-vs-table tr:first-child th:last-child {
  border-top-right-radius: calc(var(--radius-xl) + 1px);
}

.ai-vs-table tr:last-child td:first-child {
  border-bottom-left-radius: calc(var(--radius-xl) + 1px);
}

.ai-vs-table tr:last-child td:last-child {
  border-bottom-right-radius: calc(var(--radius-xl) + 1px);
}

.seo-section {
  padding-top: 34px;
}

.seo-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.seo-shell h2 {
  max-width: 28ch;
  margin-inline: auto;
}

.seo-lead {
  max-width: 74ch;
  margin: 20px auto 0;
  color: var(--text-soft);
}

.seo-preview-list {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.seo-preview-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.68;
}

.seo-preview-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-700);
}

.seo-disclosure {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(111, 61, 255, 0.1);
}

.seo-toggle {
  display: inline-grid;
  grid-template-columns: auto 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  color: var(--brand-700);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.seo-toggle::-webkit-details-marker {
  display: none;
}

.seo-toggle-label {
  grid-column: 1;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 6px;
}

.seo-toggle-arrow {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  font-size: 1.02rem;
  line-height: 1;
  transform-origin: center;
  transition: transform var(--transition);
}

.seo-toggle-arrow::before {
  content: "\2193";
}

.seo-disclosure[open] .seo-toggle-arrow {
  transform: rotate(180deg);
}

.seo-toggle-close {
  display: none;
}

.seo-disclosure[open] .seo-toggle-open {
  display: none;
}

.seo-disclosure[open] .seo-toggle-close {
  display: inline;
}

.seo-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 28px auto 0;
  text-align: left;
}

.seo-content p {
  color: var(--text-soft);
  line-height: 1.72;
}

.seo-content h3 {
  margin-top: 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.seo-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--text-soft);
}

.seo-list li {
  line-height: 1.66;
}

.seo-list-ordered {
  padding-left: 24px;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(111, 61, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.seo-table th,
.seo-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(111, 61, 255, 0.08);
  vertical-align: top;
  text-align: left;
  line-height: 1.6;
}

.seo-table th {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 800;
  background: rgba(111, 61, 255, 0.06);
}

.seo-table td {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.seo-table tr:last-child td {
  border-bottom: 0;
}

.telegram-copy .button {
  margin-top: 28px;
}

.telegram-section {
  overflow: hidden;
  background: transparent;
}

.telegram-head {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.telegram-head h2 {
  margin-bottom: 22px;
}

.telegram-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.telegram-head p {
  max-width: 63ch;
  margin-inline: auto;
}

.telegram-title-accent {
  color: var(--brand-700);
}

.telegram-panel {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 34px;
  align-items: center;
}

.telegram-copy,
.telegram-mockup {
  min-width: 0;
}

.telegram-mockup {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.telegram-copy {
  display: flex;
  align-items: center;
}

.telegram-copy-card {
  width: 100%;
  max-width: 640px;
  padding: 34px 36px;
  border: 1px solid rgba(111, 61, 255, 0.1);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 255, 0.9)),
    var(--surface);
  box-shadow: 0 28px 58px rgba(82, 47, 197, 0.09);
}

.telegram-eyebrow {
  margin: 0 0 14px;
  color: var(--brand-700);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.telegram-copy-card h3 {
  margin: 0;
  font-size: clamp(1.72rem, 2.5vw, 2.2rem);
  line-height: 1.08;
}

.telegram-copy-card > p:last-of-type {
  margin-top: 18px;
  max-width: 52ch;
}

.telegram-points {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.telegram-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(111, 61, 255, 0.12);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.telegram-actions {
  margin-top: 24px;
}

.telegram-actions .button {
  margin-top: 0;
}

.telegram-note {
  margin: 14px 0 0;
  max-width: 44ch;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.58;
}

.telegram-mockup {
  position: relative;
}

.telegram-mockup::before {
  content: "";
  position: absolute;
  inset: 16% 14% auto;
  height: 48%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 61, 255, 0.18), rgba(111, 61, 255, 0));
  filter: blur(24px);
  opacity: 0.78;
  z-index: 0;
}

.tariffs-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.tariffs-head h2 {
  margin-bottom: 22px;
}

.tariffs-head p {
  margin-inline: auto;
  max-width: 38ch;
}

.tariffs-title-accent {
  color: var(--brand-700);
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.tariff-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 26px 24px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 248, 255, 0.92)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.tariff-card-popular {
  border-color: rgba(111, 61, 255, 0.42);
  border-width: 2px;
  padding-top: 46px;
  padding-bottom: 34px;
  transform: translateY(-18px);
  box-shadow: 0 30px 64px rgba(82, 47, 197, 0.18);
}

.tariff-badge {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 220px;
  padding: 10px 18px;
  border-radius: 999px 999px 18px 18px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--brand-500), #b51cff);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  text-align: center;
}

.tariff-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.tariff-card-head h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.18;
}

.tariff-tokens {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 1rem;
}

.tariff-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.tariff-icon-mini {
  background: linear-gradient(135deg, #18c4a0, #00a67d);
}

.tariff-icon-basic {
  background: linear-gradient(135deg, #5f79ff, #3c56ee);
}

.tariff-icon-popular {
  background: linear-gradient(135deg, #9d54ff, #6f3dff);
}

.tariff-icon-max {
  background: linear-gradient(135deg, #ff9d0a, #ff6d00);
}

.tariff-price {
  color: var(--text);
  font-size: clamp(2.15rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.tariff-price span {
  font-size: 0.46em;
  font-weight: 700;
  color: var(--text-soft);
}

.tariff-rate {
  color: #8a92ab;
  font-size: 0.98rem;
}

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

.tariff-features li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 24px;
  padding-left: 30px;
  color: var(--text-soft);
  line-height: 1.45;
}

.tariff-features li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
}

.tariff-features li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-55%) rotate(-45deg);
}

.tariff-card-mini .tariff-features li::before {
  background: linear-gradient(135deg, #18c4a0, #00a67d);
}

.tariff-card-basic .tariff-features li::before {
  background: linear-gradient(135deg, #5f79ff, #3c56ee);
}

.tariff-card-standard .tariff-features li::before {
  background: linear-gradient(135deg, #9d54ff, #6f3dff);
}

.tariff-card-max .tariff-features li::before {
  background: linear-gradient(135deg, #ff9d0a, #ff6d00);
}

.tariff-volume {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(103, 88, 171, 0.12);
}

.tariff-volume span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef5ff;
  color: #3467ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.tariff-volume span:nth-child(2) {
  background: #f6ecff;
  color: #933dff;
}

.tariff-button {
  width: 100%;
  margin-top: auto;
}

.tariff-button-neutral {
  background: linear-gradient(180deg, #1c1d22, #090a0d);
  box-shadow: 0 16px 28px rgba(18, 20, 28, 0.18);
}

.tariff-button-neutral:hover,
.tariff-button-neutral:focus-visible {
  background: linear-gradient(180deg, #111216, #000000);
  box-shadow: 0 18px 32px rgba(18, 20, 28, 0.22);
}

.tariffs-meta {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  text-align: center;
}

.tariffs-meta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.tariffs-meta-points span {
  position: relative;
  padding-left: 16px;
  color: var(--text-soft);
}

.tariffs-meta-points span::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1cc85d;
}

.tariffs-meta p {
  color: #8a92ab;
}

.reviews-head {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.reviews-head h2 {
  margin-bottom: 28px;
}

.reviews-title-tail {
  display: block;
}

.reviews-head p {
  margin-top: 0;
  max-width: 72ch;
  margin-inline: auto;
}

.reviews-title-accent {
  color: var(--brand-700);
}

.reviews-section,
.reviews-marquee {
  background: transparent;
}

.reviews-marquee {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.96) 7%, rgba(0, 0, 0, 0.96) 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.96) 7%, rgba(0, 0, 0, 0.96) 93%, transparent 100%);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 18px;
  background: transparent;
}

.reviews-track-forward {
  animation: reviews-marquee-forward 44s linear infinite;
}

.reviews-track-reverse {
  animation: reviews-marquee-reverse 48s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.reviews-lane {
  display: flex;
  gap: 18px;
  background: transparent;
}

.review-card-marquee {
  display: grid;
  align-content: space-between;
  width: clamp(300px, 31vw, 470px);
  min-height: 236px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 248, 255, 0.93)),
    var(--surface);
  border-color: rgba(111, 61, 255, 0.12);
}

.review-quote {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(111, 61, 255, 0.16), rgba(111, 61, 255, 0.28));
  color: var(--brand-800);
  font-weight: 800;
  font-size: 1rem;
  flex: 0 0 44px;
}

.review-author h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.review-author p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

@keyframes reviews-marquee-forward {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@keyframes reviews-marquee-reverse {
  from {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track-forward,
  .reviews-track-reverse {
    animation: none;
  }
}

.phone-shell {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0 auto;
  padding: 24px 18px 18px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(30, 34, 60, 0.98), rgba(49, 27, 108, 0.98)),
    #0f1222;
  box-shadow: 0 35px 90px rgba(39, 30, 102, 0.26);
}

.telegram-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
}

.telegram-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ae08f;
  box-shadow: 0 0 0 4px rgba(74, 224, 143, 0.18);
}

.phone-top {
  width: 34%;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.chat-card,
.chat-preview {
  border-radius: 24px;
  margin-top: 12px;
}

.chat-card {
  padding: 14px 16px;
  font-size: 0.96rem;
  line-height: 1.55;
}

.chat-card.incoming {
  margin-right: 42px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.chat-card.outgoing {
  margin-left: 42px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
}

.chat-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-thumb {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border-radius: 18px;
}

.before-thumb {
  background: rgba(255, 255, 255, 0.08);
}

.after-thumb {
  background: rgba(255, 255, 255, 0.08);
}

.preview-thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.preview-thumb-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-900);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(23, 18, 52, 0.18);
}

.faq-head {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.faq-head h2 {
  margin-bottom: 24px;
}

.faq-head p {
  max-width: 68ch;
  margin-inline: auto;
}

.faq-title-accent {
  color: var(--brand-700);
}

.faq-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 34px auto 0;
}

.faq-item {
  overflow: hidden;
  border-color: rgba(111, 61, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 248, 255, 0.92)),
    var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.faq-item:hover {
  border-color: rgba(111, 61, 255, 0.22);
  box-shadow: 0 22px 40px rgba(81, 59, 179, 0.08);
}

.faq-item.is-open {
  border-color: rgba(111, 61, 255, 0.24);
  box-shadow: 0 24px 44px rgba(81, 59, 179, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.faq-question > span:first-child {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 42px;
}

.faq-icon {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(111, 61, 255, 0.08);
  border: 1px solid rgba(111, 61, 255, 0.14);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.faq-item.is-open .faq-icon {
  background: linear-gradient(135deg, rgba(111, 61, 255, 0.16), rgba(111, 61, 255, 0.22));
  border-color: rgba(111, 61, 255, 0.24);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-700);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-answer p {
  overflow: hidden;
  padding: 0 28px 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 28px;
}

.final-cta {
  text-align: center;
}

.final-cta-panel {
  position: relative;
  padding: 52px 44px;
  border: 1px solid rgba(111, 61, 255, 0.14);
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    radial-gradient(circle at top center, rgba(111, 61, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.94)),
    var(--surface);
  box-shadow: 0 28px 56px rgba(82, 47, 197, 0.1);
  overflow: hidden;
}

.final-cta-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius-xl) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.final-cta h2,
.final-cta p,
.final-cta .section-label,
.final-cta .button,
.final-cta-note,
.final-cta-points {
  margin-inline: auto;
}

.final-cta h2 {
  max-width: 15ch;
  margin-top: 18px;
}

.final-cta-accent {
  color: var(--brand-700);
}

.final-cta p {
  max-width: 760px;
  margin-top: 20px;
}

.final-cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.final-cta-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(111, 61, 255, 0.08);
  border: 1px solid rgba(111, 61, 255, 0.12);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.final-cta .button {
  margin-top: 30px;
  min-width: min(100%, 360px);
}

.final-cta-note {
  max-width: 640px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.site-footer {
  padding: 28px 0 18px;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(111, 61, 255, 0.08);
}

.footer-grid,
.footer-links,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-grid {
  gap: 18px;
}

.footer-brand {
  max-width: 480px;
}

.footer-brand p {
  margin-top: 10px;
  max-width: 40ch;
  line-height: 1.58;
}

.footer-links {
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-700);
}

.footer-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(111, 61, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.footer-response-time {
  position: relative;
  padding-left: 16px;
  color: var(--text-soft);
}

.footer-response-time::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #42c46b;
  transform: translateY(-50%);
}

.telegram-channel-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  width: min(calc(100vw - 32px), 304px);
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18px 18px, rgba(78, 166, 255, 0.24) 0 1.6px, transparent 1.8px),
    radial-gradient(circle at 56px 34px, rgba(78, 166, 255, 0.18) 0 1.2px, transparent 1.4px),
    radial-gradient(circle at 84px 16px, rgba(78, 166, 255, 0.16) 0 1.2px, transparent 1.4px),
    linear-gradient(180deg, #a8d6ff 0%, #9dd1ff 100%);
  border: 1px solid rgba(78, 166, 255, 0.24);
  box-shadow: 0 28px 66px rgba(72, 134, 209, 0.2);
  color: var(--text);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.96);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
  will-change: opacity, transform;
}

.telegram-channel-widget.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
  box-shadow:
    0 0 0 16px rgba(120, 190, 255, 0.04),
    0 0 56px rgba(120, 190, 255, 0.12),
    0 18px 42px rgba(72, 134, 209, 0.12),
    0 28px 66px rgba(72, 134, 209, 0.2);
}

.telegram-channel-widget[hidden] {
  display: none;
}

.telegram-channel-widget::before,
.telegram-channel-widget::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.telegram-channel-widget::before {
  top: -42px;
  right: -24px;
  width: 116px;
  height: 116px;
  background: rgba(255, 255, 255, 0.14);
}

.telegram-channel-widget::after {
  bottom: -34px;
  left: -34px;
  width: 108px;
  height: 108px;
  background: rgba(255, 255, 255, 0.12);
}

.telegram-channel-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(123, 138, 167, 0.26);
  color: #7b8aa7;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transition: color var(--transition), background var(--transition), transform var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.telegram-channel-close,
.telegram-channel-close * {
  cursor: pointer;
}

.telegram-channel-close span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
  pointer-events: none;
}

.telegram-channel-close:hover,
.telegram-channel-close:focus-visible {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(123, 138, 167, 0.42);
  color: #566784;
  transform: scale(1.04);
}

.telegram-channel-surface {
  position: relative;
  z-index: 1;
  padding: 20px 18px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(70, 128, 200, 0.14);
}

.telegram-channel-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.telegram-channel-icon,
.telegram-channel-button-icon {
  display: grid;
  place-items: center;
  color: inherit;
}

.telegram-channel-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 22px rgba(87, 70, 170, 0.14);
}

.telegram-channel-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.telegram-channel-title,
.telegram-channel-name,
.telegram-channel-text {
  margin: 0;
}

.telegram-channel-title {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
}

.telegram-channel-name {
  margin-top: 3px;
  color: #7383a0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.telegram-channel-text {
  position: relative;
  margin-top: 16px;
  max-width: 100%;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.52;
  text-align: center;
}

.telegram-channel-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2e8eff, #7b41ff);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(83, 93, 220, 0.22);
  transition: transform var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.telegram-channel-button:hover,
.telegram-channel-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(83, 93, 220, 0.28);
}

.cookies-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 36;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  max-width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(111, 61, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 56px rgba(57, 48, 106, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease;
}

.cookies-banner.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.cookies-banner[hidden] {
  display: none;
}

.cookies-banner-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.cookies-banner-copy a {
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cookies-banner-button {
  min-width: 132px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(111, 61, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cookies-banner-button:hover,
.cookies-banner-button:focus-visible {
  border-color: rgba(111, 61, 255, 0.4);
  color: var(--brand-700);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(111, 61, 255, 0.12);
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1200px) {
  .hero-grid,
  .telegram-grid,
  .tokens-shell,
  .how-shell {
    grid-template-columns: 1fr;
  }

  .telegram-panel {
    justify-items: center;
  }

  .telegram-copy,
  .telegram-mockup {
    width: 100%;
    justify-self: center;
  }

  .telegram-copy {
    justify-content: center;
  }

  .telegram-copy-card,
  .telegram-mockup,
  .phone-shell {
    margin-inline: auto;
  }

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

  .hero-copy,
  .comparison-card {
    max-width: 100%;
  }

  .comparison-card {
    margin: 0 auto;
    transform: none;
  }

  .how-step-copy p {
    max-width: 100%;
  }

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

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

  .tokens-summary {
    max-width: 100%;
  }

  .how-steps {
    grid-template-rows: none;
    height: auto;
  }

  .how-visual-note {
    flex-wrap: wrap;
  }

  .stats-grid,
  .timeline,
  .defects-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card-marquee {
    width: clamp(280px, 44vw, 410px);
    min-height: 224px;
  }

  .gallery-heading-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-hint {
    margin-top: 0;
  }

  .example-story-card {
    flex-basis: clamp(200px, 28vw, 240px);
  }

  .examples-modal-dialog {
    width: min(calc(100% - 28px), 860px);
  }

  .comparison-stage {
    min-height: 0;
  }

  .how-photo-frame img {
    aspect-ratio: 1.18;
  }

  .hero-refined .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-refined .hero-copy {
    max-width: 100%;
  }

  .hero-refined .hero-proof {
    width: 100%;
  }

  .hero-refined .comparison-card {
    max-width: 560px;
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
    align-items: center;
    min-height: 76px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: 25;
    gap: 2px;
    margin-top: 0;
    padding: 12px 24px 14px;
    border: 1px solid rgba(111, 61, 255, 0.08);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 36px rgba(43, 31, 96, 0.08);
    justify-items: stretch;
    justify-content: start;
    align-content: start;
  }

  .site-nav.is-open a {
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 44px;
    padding-inline: 16px;
    justify-content: flex-start !important;
    align-items: center;
    justify-self: stretch;
    place-self: start stretch;
    text-align: left;
    border-radius: 10px;
    font-size: 0.98rem;
    box-sizing: border-box;
    margin: 0;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a:focus-visible,
  .site-nav.is-open a.is-active {
    width: 100%;
    background: rgba(111, 61, 255, 0.08);
  }

  .hero-benefits,
  .tokens-grid {
    grid-template-columns: 1fr;
  }

  .tariffs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 58px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-actions .button-primary {
    min-width: 0;
  }

  .section {
    padding: 72px 0;
  }

  .how-head {
    margin-bottom: 26px;
  }

  .how-visual {
    gap: 14px;
  }

  .how-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .how-step-copy h3 {
    font-size: clamp(1.28rem, 4.8vw, 1.7rem);
  }

  .how-photo-frame img {
    aspect-ratio: 1.08;
  }

  .examples-track {
    width: max-content;
    min-width: max-content;
    padding-inline: 24px;
    scroll-snap-type: none;
  }

  .examples-marquee {
    overflow-x: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
    padding-bottom: 0;
    background: transparent;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
  }

  .examples-marquee::after {
    display: none;
  }

  .examples-marquee::-webkit-scrollbar {
    display: none;
  }

  .example-story-card {
    flex-basis: clamp(190px, 48vw, 232px);
  }

  .examples-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .trust {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .trust-head {
    margin-bottom: 34px;
  }

  .trust-benefits {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trust-benefit {
    max-width: 420px;
    margin: 0 auto;
  }

  .trust-cta {
    margin-top: 34px;
  }

  .trust-cta .button {
    width: 100%;
    min-width: 0;
  }

  .brand img {
    width: 134px;
  }

  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 0.76rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .site-nav.is-open {
    gap: 0;
    padding: 10px 16px 12px;
  }

  .site-nav.is-open a {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 0.96rem;
    justify-self: stretch;
    place-self: start stretch;
    justify-content: flex-start !important;
    text-align: left;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a:focus-visible,
  .site-nav.is-open a.is-active {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .hero-heading-card {
    padding: 18px 18px 20px;
  }

  .hero-heading-card h1 {
    font-size: clamp(2.2rem, 8.8vw, 3.05rem);
    line-height: 0.98;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .hero.hero-refined {
    padding-top: 24px;
    padding-bottom: 46px;
  }

  .hero-refined .hero-heading-card {
    padding: 22px 20px 20px;
    border-radius: 28px;
  }

  .hero-refined .hero-heading-card h1 {
    font-size: clamp(2.35rem, 9.2vw, 3.15rem);
  }

  .hero-refined .hero-lead {
    max-width: 100%;
    margin-top: 16px;
  }

  .hero-refined .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .hero-refined .hero-benefits li {
    display: flex;
    align-items: center;
    padding: 13px 14px 13px 46px;
    min-height: 88px;
  }

  .hero-refined .hero-benefits li::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-refined .hero-benefits li::after {
    top: 50%;
    transform: translateY(-56%) rotate(-45deg);
  }

  .hero-refined .hero-proof {
    margin-top: 16px;
    padding: 0;
    gap: 10px;
  }

  .hero-refined .comparison-card {
    padding: 10px;
  }

  .hero-refined .comparison-paper {
    padding: 10px 10px 16px;
  }

  .hero-proof-avatars {
    padding-left: 8px;
  }

  .hero-proof-avatar {
    width: 30px;
    height: 30px;
    margin-left: -8px;
  }

  .hero-note {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .hero-counter {
    font-size: clamp(1.08rem, 5vw, 1.34rem);
  }

  .stats-grid,
  .timeline,
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .defect-card {
    padding: 20px 16px;
  }

  .telegram-head {
    margin-bottom: 28px;
  }

  .telegram-copy-card {
    padding: 24px 22px;
    border-radius: 28px;
  }

  .telegram-copy-card h3 {
    font-size: 1.62rem;
  }

  .telegram-actions .button {
    width: 100%;
  }

  .telegram-note {
    max-width: 100%;
  }

  .telegram-mockup {
    width: 100%;
    justify-self: center;
    justify-content: center;
    margin-inline: auto;
  }

  .phone-shell {
    width: min(100%, 390px);
    margin-inline: auto;
    padding: 22px 16px 16px;
    border-radius: 32px;
  }

  .ai-vs-table-wrap {
    margin-top: 26px;
    overflow-x: clip;
    border-radius: var(--radius-xl);
  }

  .ai-vs-table th,
  .ai-vs-table td {
    padding: 12px 10px;
    font-size: 0.8rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .ai-vs-table th.ai-vs-col-ai,
  .ai-vs-table th.ai-vs-col-manual {
    display: table-cell;
    vertical-align: top;
  }

  .ai-vs-table th.ai-vs-col-ai span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-left: 0;
    margin-top: 4px;
    margin-inline: 0;
    padding: 4px 8px;
    font-size: 0.7rem;
    text-align: center;
    white-space: nowrap;
  }

  .ai-vs-table th.ai-vs-col-manual span {
    display: block;
    margin-top: 4px;
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .ai-vs-table {
    display: table;
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .ai-vs-table th:first-child,
  .ai-vs-table td:first-child {
    width: 28%;
  }

  .ai-vs-table th:nth-child(2),
  .ai-vs-table td:nth-child(2) {
    width: 37%;
  }

  .ai-vs-table th:nth-child(3),
  .ai-vs-table td:nth-child(3) {
    width: 35%;
  }

  .ai-vs-table td:first-child {
    font-size: 0.78rem;
  }

  .ai-vs-table th {
    font-size: 0.74rem;
    line-height: 1.24;
  }

  .reviews-marquee {
    gap: 14px;
    margin-top: 26px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .reviews-track,
  .reviews-lane {
    gap: 14px;
  }

  .review-card-marquee {
    width: 84vw;
    min-height: 210px;
    padding: 24px 20px;
  }

  .review-quote {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .review-author {
    gap: 12px;
    margin-top: 22px;
  }

  .review-avatar {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .faq-list {
    margin-top: 28px;
    gap: 14px;
  }

  .faq-question {
    gap: 14px;
    padding: 20px;
    font-size: 0.98rem;
  }

  .faq-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .faq-answer p {
    padding: 0 20px 0;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .faq-question > span:first-child {
    min-height: 38px;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 22px;
  }

  .final-cta-panel {
    padding: 34px 22px 30px;
    border-radius: calc(var(--radius-xl) - 2px);
  }

  .final-cta-panel::before {
    inset: 12px;
  }

  .final-cta h2 {
    max-width: 100%;
    margin-top: 16px;
  }

  .final-cta p {
    margin-top: 16px;
  }

  .final-cta-points {
    gap: 10px;
    margin-top: 22px;
  }

  .final-cta-points span {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .final-cta .button {
    margin-top: 24px;
    width: 100%;
    min-width: 0;
  }

  .final-cta-note {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .seo-section {
    padding-top: 18px;
  }

  .seo-shell h2 {
    max-width: 100%;
  }

  .seo-lead {
    margin-top: 16px;
  }

  .seo-preview-list {
    gap: 8px;
    margin-top: 18px;
  }

  .seo-disclosure {
    margin-top: 22px;
    padding-top: 18px;
  }

  .seo-content {
    margin-top: 22px;
    gap: 16px;
  }

  .seo-content h3 {
    font-size: 1.05rem;
  }

  .seo-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .seo-table th,
  .seo-table td {
    min-width: 160px;
    padding: 12px 12px;
    font-size: 0.9rem;
  }

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

  .tariff-card {
    padding: 28px 28px 26px;
  }

  .tariff-card-popular {
    border-width: 3px;
    padding-top: 44px;
    padding-bottom: 30px;
    transform: none;
  }

  .tariff-badge {
    min-width: 0;
    width: calc(100% - 44px);
    font-size: 0.9rem;
  }

  .tariff-card-head {
    gap: 12px;
  }

  .tariff-volume {
    gap: 8px;
  }

  .tariffs-meta-points {
    gap: 12px 18px;
  }

  .comparison-card,
  .tokens-shell,
  .how-photo-frame,
  .story-card,
  .story-quote,
  .final-cta {
    padding: 24px;
  }

  .gallery-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .how-head h2 {
    max-width: 16ch;
    margin-inline: auto;
  }

  .how-title-accent {
    display: block;
    margin-top: 6px;
  }

  .how-step {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 6px 20px;
  }

  .how-step-number {
    font-size: 0.92rem;
  }

  .how-step-copy h3 {
    font-size: clamp(1.16rem, 6vw, 1.44rem);
  }

  .how-steps {
    padding-inline: 6px;
  }

  .how-visual-note {
    justify-content: center;
    gap: 8px;
  }

  .how-visual-note span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
  }

  .how-step-cta .button {
    width: 100%;
  }

  .gallery-copy h2 {
    max-width: none;
    font-size: clamp(1.62rem, 7.2vw, 2.02rem);
    white-space: nowrap;
  }

  .gallery-copy p,
  .gallery-cta p {
    max-width: 100%;
  }

  .gallery-hint {
    font-size: 0.86rem;
  }

  .gallery-cta {
    position: relative;
    z-index: 3;
    margin-top: 40px;
    padding-top: 0;
    background: transparent;
  }

  .gallery-cta::before {
    display: none;
  }

  .examples-track {
    gap: 16px;
    padding: 14px 12px 10px;
    justify-content: center;
  }

  .examples-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }

  .example-story-card {
    flex-basis: min(64vw, 224px);
    border-radius: 26px;
    transform: rotate(var(--card-rotation)) translateY(0);
  }

  .example-story-card::before,
  .example-story-card::after {
    inset: 12px 10px 54px;
    border-radius: 22px;
  }

  .example-story-meta {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .examples-modal-dialog {
    padding: 18px;
    border-radius: 24px;
    width: min(calc(100% - 16px), 920px);
    max-height: calc(100vh - 16px);
  }

  .examples-modal-head {
    margin-bottom: 16px;
    padding-right: 44px;
  }

  .examples-modal-image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 0.72;
  }

  .comparison-card {
    padding: 12px;
  }

  .comparison-paper {
    padding: 10px 10px 16px;
  }

  .comparison-chip {
    top: 12px;
    padding: 8px 12px;
  }

  .divider-handle {
    width: 52px;
    height: 52px;
  }

  .examples-modal-close {
    top: 10px;
    right: 10px;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    gap: 14px;
  }

  .footer-bottom {
    gap: 10px;
  }

  .telegram-channel-widget {
    right: 16px;
    bottom: 16px;
    width: min(calc(100vw - 24px), 286px);
    padding: 20px 18px 18px;
    border-radius: 22px;
  }

  .telegram-channel-text {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .cookies-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: none;
    padding: 16px;
    border-radius: 20px;
  }

  .cookies-banner-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    border-radius: 16px;
  }

  .exit-offer-dialog {
    width: min(calc(100% - 8px), 388px);
    border-radius: 24px;
  }

  .exit-offer-head {
    padding: 24px 52px 16px;
  }

  .exit-offer-copy {
    padding: 16px 22px 0;
  }

  .exit-offer-actions {
    padding: 20px 22px 24px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 118px;
  }

  .header-shell {
    gap: 6px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.7rem;
    letter-spacing: -0.01em;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-refined .hero-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-refined .hero-benefits li {
    min-height: 72px;
  }

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

body.not-found-page {
  min-height: 100vh;
}

.not-found-header {
  padding: 18px 0 0;
}

.not-found-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.not-found-main {
  padding: 18px 0 56px;
}

.not-found-main .container {
  display: flex;
  justify-content: center;
}

.not-found-card {
  position: relative;
  width: min(100%, 880px);
  padding: clamp(24px, 3.8vw, 40px);
  border: 1px solid rgba(111, 61, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(111, 61, 255, 0.12), transparent 28%),
    radial-gradient(circle at 10% 18%, rgba(255, 123, 143, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 248, 255, 0.92));
  box-shadow: 0 30px 80px rgba(78, 59, 156, 0.1);
  overflow: hidden;
}

.not-found-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 61, 255, 0.1), rgba(111, 61, 255, 0));
  filter: blur(12px);
  pointer-events: none;
}

.not-found-card > * {
  position: relative;
  z-index: 1;
}

.not-found-card .section-label {
  margin-bottom: 8px;
}

.not-found-card h1 {
  max-width: none;
  margin-top: 10px;
  font-size: clamp(2.25rem, 4.1vw, 4.4rem);
  line-height: 0.92;
}

.not-found-accent {
  color: var(--brand-700);
}

.not-found-card p {
  max-width: none;
  margin-top: 18px;
  font-size: 0.98rem;
  line-height: 1.62;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.not-found-actions .button-secondary {
  background: rgba(255, 255, 255, 0.74);
}

.not-found-tips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.not-found-tip {
  min-height: 100%;
  padding: 16px 16px 18px;
  border: 1px solid rgba(111, 61, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 30px rgba(69, 50, 145, 0.05);
}

.not-found-tip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.3;
}

.not-found-tip p {
  max-width: none;
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.52;
}

@media (max-width: 900px) {
  .not-found-header-shell {
    flex-wrap: wrap;
  }

  .not-found-card {
    border-radius: 28px;
  }

  .not-found-card h1 {
    max-width: none;
  }

  .not-found-tips {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .not-found-header {
    padding-top: 18px;
  }

  .not-found-header-shell {
    justify-content: center;
  }

  .not-found-header-shell .header-cta {
    width: 100%;
  }

  .not-found-main {
    padding: 14px 0 42px;
  }

  .not-found-card {
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .not-found-card h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .not-found-card p {
    font-size: 0.98rem;
  }

  .not-found-actions {
    flex-direction: column;
  }

  .not-found-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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