/* ============================================
   avxone.ru — светлая жизнерадостная тема
   ============================================ */

/* ---------- Токены ---------- */
:root {
  /* Цвета */
  --bg: #fdfcfa;
  --bg-soft: #f5f2eb;
  --surface: #ffffff;
  --line: #ebe7df;
  --line-strong: #d8d3c7;

  --text: #1a1733;
  --muted: #6b6781;
  --muted-2: #908ca0;

  --primary: #7c5cff;
  --primary-soft: #efeaff;
  --primary-deep: #5a3fd9;

  --cyan: #22d3ee;
  --cyan-soft: #d6f7fb;
  --cyan-deep: #0891a8;

  --amber: #f59e0b;
  --amber-soft: #fff3d6;

  --ok: #34d399;
  --danger: #ef4444;

  /* Тени */
  --shadow-sm: 0 1px 2px rgba(40, 30, 80, .05);
  --shadow: 0 4px 14px rgba(40, 30, 80, .06);
  --shadow-lg: 0 18px 40px rgba(40, 30, 80, .10);

  /* Радиусы */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Скорости */
  --t: 200ms cubic-bezier(.2, .7, .2, 1);

  /* Шрифты */
  --f-display: 'Geist', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- Базовый сброс ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
a:hover { color: var(--primary); }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- Контейнер ---------- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- HEADER ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.hdr.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(253, 252, 250, 0.95);
}
.hdr__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--text); }
.logo__mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff8 0%, transparent 50%),
    conic-gradient(from 0deg, var(--primary), var(--cyan), var(--amber), var(--primary));
  box-shadow: 0 0 0 1px rgba(124, 92, 255, .15), 0 4px 10px rgba(124, 92, 255, .25);
  position: relative;
  flex-shrink: 0;
}
.logo__mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--bg);
  border-radius: 50%;
}
.logo__txt { font-weight: 700; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  color: var(--muted);
}
.nav a {
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--text); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav a:hover::after { transform: scaleX(1); }

.hdr__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.hdr__handle {
  font-family: var(--f-mono);
  font-size: 13px;
  opacity: .8;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.nav-mobile a {
  padding: 12px 8px;
  border-radius: 10px;
  font-size: 16px;
  color: var(--text);
}
.nav-mobile a:hover { background: var(--bg-soft); }
.nav-mobile__cta {
  margin-top: 8px;
  background: var(--cyan);
  color: #062a30;
  text-align: center;
  font-weight: 500;
}
.nav-mobile__cta:hover { background: var(--cyan-deep); color: #fff; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(124, 92, 255, .35);
}
.btn--primary:hover {
  background: var(--primary-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(124, 92, 255, .45);
}
.btn--cyan {
  background: var(--cyan);
  color: #062a30;
  box-shadow: 0 8px 22px rgba(34, 211, 238, .3);
}
.btn--cyan:hover {
  background: var(--cyan-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(34, 211, 238, .45);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ---------- Утилитарные ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}
.eyebrow--center { justify-content: center; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
  display: inline-block;
}
.dot--ok { background: var(--ok); box-shadow: 0 0 0 4px rgba(52, 211, 153, .18); }
.dot--amber { background: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); }

.grad {
  background: linear-gradient(120deg, var(--primary) 0%, var(--cyan) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.h1 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.h2--center { text-align: center; }
.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 18px;
  line-height: 1.55;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.cta-row--center { justify-content: center; }
.link {
  color: var(--primary);
  border-bottom: 1px dashed transparent;
  transition: border-color var(--t);
}
.link:hover { border-bottom-color: var(--primary); }
.link--big { font-size: 18px; font-weight: 500; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 500;
  font-size: 15px;
}
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow svg { transition: transform var(--t); }

/* ---------- Секции ---------- */
.sec {
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
}
.sec__head {
  max-width: 760px;
  margin: 0 0 48px;
}
.sec__head .h2 { margin-bottom: 16px; }
.sec__lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 640px;
}
.sec__lead--center { margin: 0 auto; text-align: center; }
.sec__hint {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bg-soft);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--muted);
}
.sec__hint--center {
  display: flex;
  justify-content: center;
  width: 100%;
}
.sec__more {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* ---------- Reveal on scroll ---------- */
.rv {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
}
.rv.is-in {
  opacity: 1;
  transform: none;
}
.sec__head.rv { transition-delay: 0s; }
.sec__head.rv + * .rv,
.sec__head.rv ~ .rv { transition-delay: .08s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 40px) 0 clamp(50px, 7vw, 90px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    /* мягкая виньетка снизу, чтобы hero плавно уходил в фон следующей секции */
    linear-gradient(180deg, transparent 0%, transparent 60%, var(--bg) 100%),
    /* лёгкий тёплый оверлей поверх картинки, чтобы тон совпадал с темой */
    linear-gradient(180deg, rgba(253, 252, 250, .15), rgba(253, 252, 250, .4)),
    /* сама картинка */
    url('img/hero1.jpg') center/cover no-repeat;
  background-blend-mode: normal, normal, normal;
}
/* blob'ы больше не нужны — фон даёт нужные акценты */
.hero__blob { display: none; }

/* Подложка под текст hero для читаемости на любых участках фона */
.hero__txt {
  position: relative;
}
.hero__txt::before {
  content: "";
  position: absolute;
  inset: -32px -64px -28px -32px;
  background: radial-gradient(
    ellipse at 65% 40%,
    rgba(253, 252, 250, .82) 0%,
    rgba(253, 252, 250, .55) 45%,
    rgba(253, 252, 250, 0) 75%
  );
  z-index: -1;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: clamp(560px, 70vh, 720px);
}
.hero__eyebrow {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.85vw, 24px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 26ch;
  position: relative;
  padding-left: 14px;
}
.hero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--primary), var(--cyan));
}

.lead--sub {
  font-size: clamp(14.5px, 1.35vw, 17px);
  color: var(--muted);
  border-left: 2px dashed var(--line-strong);
  padding-left: 14px;
  margin-bottom: 28px;
}

.hero__note {
  font-size: 14px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.hero__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff8 0%, transparent 50%),
    conic-gradient(from 45deg, var(--amber), var(--primary), var(--cyan), var(--amber));
  display: inline-grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.15);
  flex-shrink: 0;
}

/* Орбита */
.orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  animation: orbit-rotate 90s linear infinite;
}
.orbit__center {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--line);
  z-index: 2;
  animation: orbit-rotate-rev 90s linear infinite;
}
.orbit__core {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.orbit__sub {
  font-family: var(--f-mono);
  font-size: 10.5px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 0;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(124, 92, 255, .25);
  pointer-events: none;
}
.orbit::before {
  width: 80%;
  height: 80%;
  border-color: rgba(124, 92, 255, .22);
}
.orbit::after {
  width: 100%;
  height: 100%;
  border-color: rgba(34, 211, 238, .18);
  border-style: dotted;
}

.orbit__list {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.orbit__node {
  --angle: calc(var(--i) * 45deg);
  position: absolute;
  top: 50%; left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  background: var(--surface);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  animation: orbit-rotate-rev 90s linear infinite;
  transform: rotate(var(--angle)) translateY(-180px) rotate(calc(-1 * var(--angle)));
}
.orbit__node span {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  font-family: var(--f-mono);
  font-size: 10.5px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--t), transform var(--t);
}
.orbit__node:hover {
  transform: rotate(var(--angle)) translateY(-180px) rotate(calc(-1 * var(--angle))) scale(1.18);
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--primary);
  z-index: 3;
}
.orbit__node:hover span {
  opacity: 1;
  transform: translate(-50%, 14px);
}
.orbit__node:nth-child(odd) {
  background: linear-gradient(140deg, #fff 60%, var(--primary-soft));
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbit-rotate-rev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* ---------- Шаги ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 26px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.step__icon {
  font-size: 32px;
  margin-bottom: 18px;
}
.step__num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
}
.step__h {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step__p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Каталог ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  position: relative;
  padding: 26px 24px 28px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.card__emoji { font-size: 30px; }
.card__h {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card__p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  align-self: flex-start;
}
.card__btn {
  align-self: flex-start;
  padding: 10px 16px;
  font-size: 14px;
}
.card--cta {
  background: linear-gradient(140deg, var(--primary-soft), #fff 70%);
  border-color: rgba(124, 92, 255, .25);
}
.card--cta:hover {
  border-color: var(--primary);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.tag--cherry { background: #f3eaff; color: #6c3fc9; }
.tag--hermes { background: #d8f5ec; color: #0e7a55; }
.tag--nano   { background: #fff0d6; color: #b46a08; }
.tag--any    { background: #ecedf2; color: #5a5e74; }

/* ---------- Таймлайн ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.tl-item {
  position: relative;
  z-index: 1;
}
.tl-marker {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.tl-h {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.tl-p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Стек ---------- */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stack-card {
  padding: 22px 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.stack-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.stack-card__dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 0 0 4px rgba(0,0,0,.03);
}
.stack-card__h {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.stack-card__p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.stack-note {
  max-width: 820px;
  padding: 20px 24px;
  background: linear-gradient(120deg, var(--amber-soft), #fff 70%);
  border: 1px solid rgba(245, 158, 11, .25);
  border-radius: var(--r-lg);
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}

/* ---------- Цены ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.price {
  position: relative;
  padding: 28px 26px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.price:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.price--feat {
  background: linear-gradient(160deg, #fff, var(--primary-soft) 130%);
  border-color: rgba(124, 92, 255, .3);
  box-shadow: 0 14px 32px rgba(124, 92, 255, .14);
}
.price__badge {
  position: absolute;
  top: -12px;
  right: 22px;
  padding: 5px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 16px rgba(124, 92, 255, .35);
}
.price__top { margin-bottom: 14px; }
.price__emoji {
  display: block;
  font-size: 30px;
  margin-bottom: 12px;
}
.price__h {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}
.price__cost {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price__cost strong {
  background: linear-gradient(120deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.price__list {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.price__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%2322d3ee' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5L20 7'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.price__for {
  font-size: 13px;
  color: var(--muted-2);
  font-style: italic;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  line-height: 1.5;
}

.pricing__hint {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing__cta {
  display: flex;
  justify-content: center;
}

/* ---------- Почему я ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-soft), var(--cyan-soft));
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.why-card__h {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.why-card__p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Данные ---------- */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.data-card {
  padding: 32px 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.data-card--biz {
  background: linear-gradient(160deg, #fff, var(--primary-soft) 130%);
  border-color: rgba(124, 92, 255, .2);
}
.data-card--personal {
  background: linear-gradient(160deg, #fff, var(--cyan-soft) 130%);
  border-color: rgba(34, 211, 238, .22);
}
.data-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.data-card__emoji { font-size: 28px; }
.data-card__h {
  font-size: 22px;
  font-weight: 600;
}
.data-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.data-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.55;
}
.data-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 600;
}
.data-card--personal .data-card__list li::before { color: var(--cyan-deep); }

/* ---------- Обо мне ---------- */
.about__wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}
.about__txt p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.about__txt p strong { color: var(--text); font-weight: 600; }

.about__card {
  padding: 28px 26px;
  background: linear-gradient(160deg, var(--surface), #faf6ec 130%);
  border: 1px solid rgba(245, 158, 11, .25);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}
.about__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff8 0%, transparent 50%),
    conic-gradient(from 45deg, var(--amber), var(--primary), var(--cyan), var(--amber));
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
  margin-bottom: 22px;
  box-shadow: var(--shadow-lg);
}
.about__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.about__row:last-child { border-bottom: none; padding-bottom: 0; }
.about__row span { color: var(--muted-2); font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.about__row b { font-weight: 500; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t), box-shadow var(--t);
}
.faq__item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%231a1733' stroke-width='2' stroke-linecap='round' d='M6 9l6 6 6-6'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--t), background-color var(--t);
}
.faq__item[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--primary-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%237c5cff' stroke-width='2' stroke-linecap='round' d='M6 9l6 6 6-6'/></svg>");
}
.faq__item p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Финальный CTA ---------- */
.sec--final {
  padding: clamp(70px, 10vw, 130px) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(124, 92, 255, .12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(34, 211, 238, .12), transparent 50%),
    var(--bg);
}
.final__wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

/* ---------- Блог ---------- */
.blog-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-teaser__card {
  padding: 24px 24px 26px;
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.blog-teaser__card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  border-style: solid;
  box-shadow: var(--shadow);
}
.blog-teaser__cat {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--bg-soft);
  color: var(--muted);
  border-radius: 999px;
  margin-bottom: 14px;
}
.blog-teaser__h {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-teaser__p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- FOOTER ---------- */
.ftr {
  padding: 50px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.ftr__row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ftr__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
}
.ftr__sub {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  margin-left: 6px;
}
.ftr__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}
.ftr__nav a:hover { color: var(--text); }
.ftr__copy {
  font-size: 13px;
  color: var(--muted-2);
}
.ftr__note {
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--muted-2);
  text-align: center;
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}

/* ============================================
   АДАПТИВ
   ============================================ */

/* Планшеты */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__txt { text-align: left; max-width: 640px; }
  .orbit { max-width: 420px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .data-grid { grid-template-columns: 1fr; }
  .about__wrap { grid-template-columns: 1fr; }
  .about__card { position: static; }
  .blog-teaser { grid-template-columns: repeat(2, 1fr); }
}

/* Мобильные */
@media (max-width: 720px) {
  .wrap { padding: 0 18px; }
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hdr__cta .hdr__handle { display: none; }

  .hero { padding-top: 30px; }
  .h1 { font-size: clamp(32px, 9vw, 42px); }
  .h2 { font-size: clamp(26px, 7vw, 34px); }

  .orbit { max-width: 320px; }
  .orbit__center { width: 100px; height: 100px; }
  .orbit__core { font-size: 18px; }
  .orbit__sub { font-size: 9px; }
  .orbit__node { width: 52px; height: 52px; margin: -26px 0 0 -26px; font-size: 22px; transform: rotate(var(--angle)) translateY(-130px) rotate(calc(-1 * var(--angle))); }
  .orbit__node:hover { transform: rotate(var(--angle)) translateY(-130px) rotate(calc(-1 * var(--angle))) scale(1.18); }
  .orbit__node span { font-size: 9.5px; }

  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-teaser { grid-template-columns: 1fr; }
  .data-card { padding: 24px 20px; }

  .sec__hint { font-size: 13px; padding: 10px 14px; }
  .cta-row { width: 100%; }
  .cta-row .btn { width: 100%; }

  .ftr__row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .orbit { max-width: 280px; }
  .orbit__node { transform: rotate(var(--angle)) translateY(-110px) rotate(calc(-1 * var(--angle))); }
  .orbit__node:hover { transform: rotate(var(--angle)) translateY(-110px) rotate(calc(-1 * var(--angle))) scale(1.18); }
}

/* Печать */
@media print {
  .hdr, .ftr, .hero__bg, .orbit { display: none; }
  body { background: #fff; color: #000; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .orbit, .orbit__center, .orbit__node { animation: none; }
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}