/* ============================================================
   AiTelo — премиальный health-tech лендинг
   ============================================================ */

/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/manrope-cyrillic-ext.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* --- Фон: очень тёмный с сине-фиолетовым отливом (как в приложении) --- */
  --bg-0: #070A14;
  --bg-1: #0B1020;
  --bg-2: #121A2E;

  /* --- Акценты --- */
  --blue: #38BDF8;   /* голубой — начало градиента */
  --violet: #8B5CF6; /* фиолетовый — конец градиента */
  --teal: #22D3EE;   /* циан: ссылки, подписи, тонкие акценты */
  --ok: #34D399;     /* статус «выполнено» */
  --warn: #FBBF24;

  /* --- Градиенты --- */
  --grad: linear-gradient(120deg, var(--blue), var(--violet));
  --grad-text: linear-gradient(100deg, #7DD3FC, #A78BFA);
  /* Кнопки темнее колец: белый текст даёт контраст выше 5:1 на всей длине */
  --grad-btn: linear-gradient(120deg, #2563EB, #7C3AED);

  /* --- Текст --- */
  --text: #F4F7FF;
  --text-2: #A9BAD6;  /* вторичный: осветлён для читаемости на солнце */
  --text-3: #7C8DAB;  /* третичный: только для мелких служебных подписей */

  /* --- Стекло --- */
  --card: rgba(255, 255, 255, 0.045);
  --card-2: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-blur: blur(14px);

  /* --- Геометрия --- */
  --radius: 20px;
  --radius-lg: 24px;
  --radius-sm: 14px;

  /* --- Свечения --- */
  --glow-blue: 0 0 30px rgba(56, 189, 248, 0.35);
  --glow-violet: 0 0 30px rgba(139, 92, 246, 0.35);

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-btn);
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 42px rgba(34, 211, 238, 0.45);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.08);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 11, 22, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.is-scrolled {
  background: rgba(5, 11, 22, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.4);
}
.header__name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.header__name span { color: var(--teal); }
.header__nav {
  display: flex;
  gap: 32px;
}
.header__nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  transition: color .2s ease;
}
.header__nav a:hover { color: var(--text); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.language-select {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.language-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 132px;
  height: 38px;
  padding: 0 11px;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.language-select__trigger:hover,
.language-select__trigger:focus-visible,
.language-select.is-open .language-select__trigger {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(34, 211, 238, 0.08);
}
.language-select__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.language-select.is-open .language-select__chevron {
  transform: translateY(2px) rotate(225deg);
}
.language-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  width: 148px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(7, 16, 30, 0.98);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.language-select__menu[hidden] { display: none; }
.language-select__menu button {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--text-2);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.language-select__menu button:hover,
.language-select__menu button:focus-visible {
  outline: none;
  background: rgba(34, 211, 238, 0.08);
  color: var(--text);
}
.language-select__menu button[aria-selected="true"] {
  background: rgba(56, 189, 248, 0.12);
  color: var(--teal);
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.header__burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Декор: blobs, кольца, пульс, точки ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: blob-float 18s ease-in-out infinite alternate;
  pointer-events: none;
}
.blob--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(15,167,255,0.35), transparent 70%);
  top: -120px; left: -140px;
}
.blob--2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(34,230,208,0.25), transparent 70%);
  top: 120px; right: -120px;
  animation-delay: -9s;
}
.blob--3 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(15,167,255,0.22), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.blob--4 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(34,230,208,0.18), transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
@keyframes blob-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

.hero__rings {
  position: absolute;
  top: 50%; right: -5%;
  width: 720px; height: 720px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.12);
  pointer-events: none;
}
.hero__rings::before,
.hero__rings::after {
  content: '';
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.1);
}
.hero__rings::after { inset: 190px; border-color: rgba(139, 92, 246, 0.08); }

.pulse-line {
  stroke: rgba(34, 211, 238, 0.5);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: pulse-draw 6s linear infinite;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.6));
}
@keyframes pulse-draw {
  0%   { stroke-dashoffset: 2400; }
  60%  { stroke-dashoffset: 0; opacity: 1; }
  85%  { opacity: 0; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
.hero__pulse {
  position: absolute;
  bottom: 12%;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
}

.neural-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle 2px at 12% 30%, rgba(34,230,208,0.6) 0, transparent 3px),
    radial-gradient(circle 2px at 25% 65%, rgba(15,167,255,0.5) 0, transparent 3px),
    radial-gradient(circle 1.5px at 45% 20%, rgba(34,230,208,0.4) 0, transparent 3px),
    radial-gradient(circle 2px at 68% 75%, rgba(15,167,255,0.5) 0, transparent 3px),
    radial-gradient(circle 1.5px at 82% 35%, rgba(34,230,208,0.55) 0, transparent 3px),
    radial-gradient(circle 2px at 92% 60%, rgba(15,167,255,0.4) 0, transparent 3px),
    radial-gradient(circle 1.5px at 55% 88%, rgba(34,230,208,0.35) 0, transparent 3px);
  animation: dots-glow 5s ease-in-out infinite alternate;
}
@keyframes dots-glow {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(8, 27, 51, 0.9), transparent),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 60%, var(--bg-0));
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.65; }
}
.hero__title {
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero__subtitle strong { color: var(--text); }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.hero__note {
  font-size: 13.5px;
  color: var(--text-2);
}

/* ---------- Мокап телефона ---------- */
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone {
  position: relative;
  width: 340px;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(139, 92, 246, 0.18);
  animation: phone-float 7s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.phone__glow {
  position: absolute;
  inset: -60px;
  z-index: -1;
  background: radial-gradient(circle, rgba(15,167,255,0.25), rgba(34,230,208,0.1) 50%, transparent 72%);
  filter: blur(30px);
  border-radius: 50%;
  animation: dots-glow 4s ease-in-out infinite alternate;
}
.phone__notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #04090f;
  border-radius: 100px;
  z-index: 2;
}
.phone__screen {
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-0));
  padding: 62px 20px 26px;
}
.phone__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.phone__logo {
  width: 40px; height: 40px;
  border-radius: 12px;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.45);
}
.phone__app-name { font-weight: 800; font-size: 16px; }
.phone__date { font-size: 12px; color: var(--text-2); }
.phone__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}
.phone__score-label {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}
.phone__metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.metric {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
}
.metric__icon {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px;
  flex-shrink: 0;
}
.metric__icon--blue { background: rgba(139, 92, 246, 0.15); }
.metric__icon--teal { background: rgba(34, 211, 238, 0.13); }
.metric__info { flex: 1; min-width: 0; }
.metric__name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  display: block;
  margin-bottom: 6px;
}
.metric__bar {
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.metric__bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 5px;
  background: var(--grad);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}
.metric__val {
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.metric__val--plus { color: var(--teal); }
.phone__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}
.tag--ok {
  background: rgba(34, 211, 238, 0.12);
  color: var(--teal);
  border: 1px solid rgba(34, 211, 238, 0.25);
}
.tag--info {
  background: rgba(139, 92, 246, 0.1);
  color: var(--blue);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

/* ---------- Круговой индикатор ---------- */
.score-ring { position: relative; }
.score-ring svg { transform: rotate(-90deg); }
.score-ring--sm { width: 120px; height: 120px; }
.score-ring--sm svg { width: 120px; height: 120px; }
.score-ring--lg { width: 240px; height: 240px; }
.score-ring--lg svg { width: 240px; height: 240px; }
.score-ring__bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 10;
}
.score-ring__fill {
  fill: none;
  stroke: var(--teal);
  stroke: url(#ringGrad);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 326.7;  /* 2πr, r=52 */
  stroke-dashoffset: 52.3;  /* 84% */
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.55));
}
.score-ring__fill--lg {
  stroke-width: 12;
  stroke-dasharray: 653.4;  /* 2πr, r=104 */
  stroke-dashoffset: 653.4;
  transition: stroke-dashoffset 1.6s cubic-bezier(.4, 0, .2, 1);
}
.score-ring__fill--lg.is-animated { stroke-dashoffset: 104.5; } /* 84% */
.score-ring__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.score-ring__value b { font-size: 30px; font-weight: 800; }
.score-ring__value span { font-size: 14px; color: var(--text-2); font-weight: 600; }
.score-ring__value--lg b { font-size: 54px; letter-spacing: -0.03em; }
.score-ring__value--lg b span { font-size: 22px; }
.score-ring__value--lg em {
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
  margin-top: 4px;
}

/* ---------- Секции ---------- */
.section {
  position: relative;
  padding: 110px 0;
}
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section__head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section__head p {
  font-size: 17px;
  color: var(--text-2);
}

/* ---------- Сетки и карточки ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) { .grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .grid--5 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 18px 50px rgba(4, 12, 24, 0.6), 0 0 30px rgba(139, 92, 246, 0.1);
}
.card__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(139, 92, 246, 0.15), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-bottom: 20px;
}
.card__icon--glow { box-shadow: 0 0 24px rgba(139, 92, 246, 0.2); }
.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 14.5px;
  color: var(--text-2);
}

/* ---------- Problem ---------- */
.problem {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1) 50%, var(--bg-0));
}
.problem__final {
  text-align: center;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  margin-top: 56px;
  letter-spacing: -0.02em;
}

/* ---------- Score section ---------- */
.score {
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(8, 27, 51, 0.8), transparent),
    var(--bg-0);
}
.score__main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto 56px;
}
.score__ring-wrap {
  position: relative;
  padding: 24px;
}
.score__ring-wrap::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
  filter: blur(20px);
}
.score__text p {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
}
.card--mini h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.card--mini ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 8px;
}
.card--mini ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-2);
  opacity: 0.6;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--teal { background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.dot--warn { background: #FFB35C; box-shadow: 0 0 10px rgba(255, 179, 92, 0.7); }
.dot--blue { background: var(--blue); box-shadow: 0 0 10px var(--blue); }

/* ---------- Audience ---------- */
.audience {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1) 50%, var(--bg-0));
}
.card--audience p { font-size: 14px; }

/* ---------- How it works ---------- */
.how__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 18px;
}
.step__num {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: var(--teal);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 14.5px;
  color: var(--text-2);
}
.step__line {
  flex: 0 0 60px;
  height: 1px;
  margin-top: 32px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.5), rgba(34, 211, 238, 0.5));
  position: relative;
}
.step__line::after {
  content: '';
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}

/* ---------- Pricing ---------- */
.pricing {
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-0), var(--bg-2) 50%, var(--bg-0));
}
.pricing__bg { position: absolute; inset: 0; pointer-events: none; }
.plans {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(142, 166, 199, 0.35);
}
.plan--premium {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(139, 92, 246, 0.15);
}
.plan--premium:hover {
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(34, 211, 238, 0.2);
}
.plan__badge {
  position: absolute;
  top: -14px;
  right: 28px;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--grad-btn);
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.4);
}
.plan__icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(139, 92, 246, 0.15), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-bottom: 18px;
}
.plan__icon--glow { box-shadow: 0 0 26px rgba(139, 92, 246, 0.3); }
.plan__name {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 10px;
}
.plan__price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.plan__price span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-2);
}
.plan__price--grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan__price--grad span {
  -webkit-text-fill-color: initial;
  color: var(--text-2);
}
.plan__sub {
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 22px;
}
.plan__accent {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 22px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(34, 211, 238, 0.07);
  border: 1px solid rgba(34, 211, 238, 0.18);
}
.plan__list {
  text-align: left;
  margin-bottom: 30px;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 14.5px;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.plan__list li:last-child { border-bottom: none; }
.plan__list li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: var(--teal);
  font-weight: 800;
}
.plan__list li.off {
  opacity: 0.55;
}
.plan__list li.off::before {
  content: '—';
  color: var(--text-2);
}
.pricing__foot {
  text-align: center;
  margin-top: 32px;
  font-size: 13.5px;
  color: var(--text-2);
}

/* ---------- Trust ---------- */
.card--trust {
  text-align: center;
  padding: 38px 26px;
}
.card--trust .card__icon { margin: 0 auto 20px; }
.card--trust h3 { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: border-color .3s ease;
  overflow: hidden;
}
.faq__item[open] { border-color: rgba(34, 211, 238, 0.35); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16.5px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--teal); }
.faq__arrow {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 2px solid var(--text-2);
  border-bottom: 2px solid var(--text-2);
  transform: rotate(45deg);
  transition: transform .3s ease;
}
.faq__item[open] .faq__arrow {
  transform: rotate(225deg);
  border-color: var(--teal);
}
.faq__item p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-2);
}

/* ---------- Final CTA ---------- */
.final {
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
}
.final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.final__pulse {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  height: 120px;
}
.final .container { position: relative; }
.final__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 20px;
}
.final__note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--text-2);
}

/* ---------- Footer ---------- */
.footer {
  padding: 60px 0 36px;
  background: var(--bg-0);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer__logo {
  width: 36px; height: 36px;
  border-radius: 10px;
}
.footer__name {
  font-size: 19px;
  font-weight: 800;
}
.footer__name span { color: var(--teal); }
.footer__tagline {
  font-size: 14px;
  color: var(--text-2);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .2s ease;
}
.footer__links a:hover { color: var(--teal); }
.footer__disclaimer {
  font-size: 12.5px;
  color: var(--text-2);
  opacity: 0.75;
  max-width: 760px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}
.footer__copy {
  font-size: 12.5px;
  color: var(--text-2);
  opacity: 0.55;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.75);
  backdrop-filter: blur(8px);
}
.modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px 36px;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid rgba(34, 211, 238, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(139, 92, 246, 0.15);
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform .3s ease;
}
.modal.is-open .modal__box { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text-2);
  font-size: 14px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.modal__close:hover { color: var(--text); border-color: rgba(34, 211, 238, 0.4); }
.modal__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.45);
}
.modal__box h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.modal__box > p {
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.modal__form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.modal__form input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: border-color .2s ease;
}
.modal__form input::placeholder { color: var(--text-2); }
.modal__form input:focus { border-color: rgba(34, 211, 238, 0.5); }
.modal__form .btn { padding: 13px 20px; font-size: 14.5px; }
.modal__done {
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}
.modal__note {
  font-size: 12.5px;
  color: var(--text-2);
  opacity: 0.8;
}

/* ---------- SVG-иконки ---------- */
.i {
  fill: none;
  stroke: url(#iconGrad);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.35));
}
.card__icon .i,
.plan__icon .i { width: 26px; height: 26px; }

/* Неоновые PNG-иконки в фирменном стиле */
/* Иконки: неоновая рамка нарисована внутри самой картинки, поэтому контейнер
   без собственного фона и границ. Кадры нормализованы — рамка занимает
   одинаковую долю у всех иконок, чёрная подложка переведена в прозрачность. */
.card__icon--img,
.plan__icon--img {
  width: 68px;
  height: 68px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.card__icon--img img,
.plan__icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.card:hover .card__icon--img img { transform: scale(1.07); }
.food-card__cam--img {
  background: none;
  border: none;
  width: 52px;
  height: 52px;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}
.food-card__cam--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.metric__icon .i { width: 17px; height: 17px; }
.food-mini__cam .i { width: 16px; height: 16px; }
.food-card__cam .i { width: 24px; height: 24px; }
.food-card__rec .i { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Scan-анимация ---------- */
.scan {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.8), transparent);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
  animation: scan-move 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan-move {
  0%, 100% { top: 8%; opacity: 0; }
  12%      { opacity: 1; }
  50%      { top: 88%; opacity: 1; }
  62%      { opacity: 0; }
  99%      { top: 8%; }
}

/* ---------- Карточка еды в телефоне ---------- */
.food-mini {
  position: relative;
  overflow: hidden;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.09), rgba(139, 92, 246, 0.06));
  border: 1px solid rgba(34, 211, 238, 0.3);
  margin-bottom: 14px;
}
.food-mini__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.food-mini__cam {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.12);
  flex-shrink: 0;
}
.food-mini__label {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
}
.food-mini__dish {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}
.food-mini__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.food-mini__row b { font-size: 14px; }
.food-mini__row span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

.phone__day {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
  margin-bottom: 12px;
}
.phone__day-text { display: flex; flex-direction: column; }
.phone__day-text b { font-size: 14px; }
.phone__day-text span {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
}
.score-ring--xs {
  width: 62px; height: 62px;
  flex-shrink: 0;
}
.score-ring--xs svg { width: 62px; height: 62px; }
.score-ring--xs .score-ring__bg,
.score-ring--xs .score-ring__fill { stroke-width: 12; }
.score-ring--xs .score-ring__value b { font-size: 19px; }

/* ---------- Секция анализа еды ---------- */
.food {
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-0), var(--bg-2) 55%, var(--bg-0));
}
.food__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.food__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1020px;
  margin: 0 auto;
}
.food__steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fstep {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.fstep:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 18px 50px rgba(4, 12, 24, 0.6), 0 0 30px rgba(139, 92, 246, 0.1);
}
.fstep__num {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 800;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: var(--teal);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.18);
}
.fstep h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.fstep p {
  font-size: 14.5px;
  color: var(--text-2);
}

.food-card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(34, 211, 238, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(139, 92, 246, 0.12);
}
.food-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.food-card__cam {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.25);
  flex-shrink: 0;
}
.food-card__head > div { flex: 1; min-width: 0; }
.food-card__head b {
  display: block;
  font-size: 16.5px;
  font-weight: 800;
}
.food-card__head span {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 600;
}
.food-card__kcal {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.food-card__kcal span { font-size: 20px; font-weight: 700; }
.food-card__macros {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
/* Клетчатка — четвёртый нутриент, выделяем среди БЖУ */
.macro--fiber {
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.12), rgba(139, 92, 246, 0.14));
  border-color: rgba(139, 92, 246, 0.35);
}
.macro--fiber .macro__name { color: #C4B5FD; }
.macro {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
}
.macro__name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 4px;
}
.macro b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.macro__bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.macro__bar i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 4px;
  background: var(--grad);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}
.food-card__rec {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.2);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

/* ---------- Финальный подзаголовок ---------- */
.final__subtitle {
  font-size: 17px;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ---------- Модалка оплаты ---------- */
.modal__form--col { flex-direction: column; }
.pay-modal__price {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
}
.pay-modal__price b {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}
.pay-consent {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  transition: border-color .2s ease;
}
.pay-consent:hover { border-color: rgba(34, 211, 238, 0.35); }
/* Нативный чекбокс скрыт, но остаётся доступным для клавиатуры */
.pay-consent input[type="checkbox"] {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: 0;
  border: 0;
  opacity: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  flex: none;
}
.pay-consent__box {
  flex-shrink: 0;
  width: 24px; height: 24px;
  margin-top: 1px;
  border-radius: 7px;
  border: 2px solid rgba(142, 166, 199, 0.7);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.pay-consent__box::after {
  content: '';
  position: absolute;
  left: 7px; top: 3px;
  width: 6px; height: 11px;
  border-right: 2.5px solid #FFFFFF;
  border-bottom: 2.5px solid #FFFFFF;
  transform: rotate(45deg) scale(0);
  transition: transform .15s ease;
}
.pay-consent input:checked ~ .pay-consent__box {
  border-color: transparent;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.45);
}
.pay-consent input:checked ~ .pay-consent__box::after { transform: rotate(45deg) scale(1); }
.pay-consent input:focus-visible ~ .pay-consent__box {
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.4);
}
.pay-consent__text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.pay-consent__text a { color: var(--teal); text-decoration: underline; }
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}
.pay-error {
  margin: 12px 0 4px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #FF9D9D;
  background: rgba(255, 110, 110, 0.08);
  border: 1px solid rgba(255, 110, 110, 0.3);
}
.plan__renew-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-2);
  text-align: center;
}
.plan__renew-note a { color: var(--teal); }

/* ---------- Переключатель тарифа: месяц / год ---------- */
.plan-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  margin: 4px 0 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
}
.plan-toggle--modal { margin: 0 0 14px; }
.plan-toggle__opt {
  flex: 1;
  padding: 10px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--text-2);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.plan-toggle__opt:hover { color: var(--text); }
.plan-toggle__opt.is-active {
  background: var(--grad-btn);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(139, 92, 246, 0.35);
}
.plan-toggle__badge {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(34, 211, 238, 0.18);
  color: var(--teal);
}
.plan-toggle__opt.is-active .plan-toggle__badge {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}

/* ---------- Поля платёжной формы ---------- */
.pay-field { text-align: left; }
.pay-field input { width: 100%; }
.pay-field__hint {
  margin: 6px 2px 0;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text-2);
}

/* ---------- Карточка AI-коуча на всю ширину ряда ---------- */
.card--feature-wide { grid-column: 1 / -1; }

/* ---------- Секция «Скачать приложение» ---------- */
.download__card {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid rgba(34, 211, 238, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(139, 92, 246, 0.12);
}
.download__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.35);
}
.download__title { margin-bottom: 14px; }
.download__text {
  font-size: 16.5px;
  color: var(--text-2);
  margin-bottom: 26px;
}
.download__text b { color: var(--text); }
.download__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.download__badge {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  white-space: nowrap;
}
.download__note {
  font-size: 13px;
  color: var(--text-2);
}

/* ---------- Подсказка в модалке оплаты ---------- */
.pay-modal__hint {
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--teal);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
}

/* ---------- Reveal при скролле ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.25, .5, .3, 1), transform .8s cubic-bezier(.25, .5, .3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Компоненты в стиле приложения
   ============================================================ */

/* ---------- Видимый фокус для клавиатуры ---------- */
:where(a, button, input, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Надзаголовок капсом ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
}
.eyebrow img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
/* ---------- Капсулы статусов ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.pill--ok { color: var(--ok); background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.3); }
.pill--cyan { color: var(--teal); background: rgba(34, 211, 238, 0.12); border: 1px solid rgba(34, 211, 238, 0.3); }
.pill--violet { color: #C4B5FD; background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.35); }
.pill--muted { color: var(--text-2); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--card-border); }

/* ---------- Двухколоночная раскладка секции ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split__visual { order: -1; }
.split__text h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.split__text > p {
  font-size: 16.5px;
  color: var(--text-2);
  margin-bottom: 16px;
}
.split__text > p:last-child { margin-bottom: 0; }
.split__text strong { color: var(--text); font-weight: 700; }

/* Список выводов с галочками */
.checklist { display: grid; gap: 12px; margin: 22px 0 0; }
.checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.16);
  border: 1px solid rgba(139, 92, 246, 0.4);
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 6px; top: 10px;
  width: 4px; height: 8px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
}
.checklist b { color: var(--text); font-weight: 700; }

/* ---------- Стеклянная карточка «как в приложении» ---------- */
.appcard {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--card-border);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  box-shadow: 0 24px 60px rgba(3, 7, 18, 0.55);
}
.appcard + .appcard { margin-top: 16px; }
.appcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.appcard__title { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.appcard__sub { font-size: 12.5px; color: var(--text-3); margin-top: 2px; }
.appcard__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ---------- Состав расчёта нормы калорий ---------- */
.calcflow { display: grid; gap: 10px; }
.calcflow__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
}
.calcflow__row--sum {
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.14), rgba(139, 92, 246, 0.18));
  border-color: rgba(139, 92, 246, 0.4);
}
.calcflow__sign {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: var(--teal);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
}
.calcflow__row--sum .calcflow__sign {
  color: #C4B5FD;
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.45);
}
.calcflow__body { flex: 1; min-width: 0; }
.calcflow__name { font-size: 14.5px; font-weight: 700; }
.calcflow__desc { font-size: 12.5px; color: var(--text-3); margin-top: 2px; }
.calcflow__val {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.calcflow__row--sum .calcflow__val {
  font-size: 18px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.calcflow__note,
.appcard__note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.55;
}

/* ---------- Строка с тонкой шкалой прогресса ---------- */
.barline + .barline { margin-top: 18px; }
.barline__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.barline__name { font-size: 14px; font-weight: 700; }
.barline__sub { font-size: 12px; color: var(--text-3); font-weight: 500; }
.barline__val {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.barline__val span { color: var(--text-3); font-weight: 600; font-size: 12.5px; }
.barline__track {
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.barline__fill {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: 100px;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.5);
}
.barline__fill--cyan { background: linear-gradient(90deg, #22D3EE, #38BDF8); }
.barline__fill--violet { background: linear-gradient(90deg, #8B5CF6, #A855F7); }

/* Из чего набралось (источники клетчатки) */
.sources {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--card-border);
}
.sources li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-2);
}
.sources--flush { margin-top: 0; padding-top: 0; border-top: 0; }
.sources b { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }
.sources__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Мини-кольца нутриентов ---------- */
.ringrow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.ringmini { text-align: center; }
.ringmini__ring {
  position: relative;
  width: 62px; height: 62px;
  margin: 0 auto 8px;
}
.ringmini__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ringmini__ring circle {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
}
.ringmini__bg { stroke: rgba(255, 255, 255, 0.08); }
.ringmini__fill {
  stroke: url(#ringGrad);
  stroke-dasharray: 163;
  stroke-dashoffset: calc(163 - 163 * var(--p, 0.7));
  filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.55));
}
.ringmini__val {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.ringmini__name {
  font-size: 11.5px;
  color: var(--text-3);
  font-weight: 600;
}

/* ---------- Факторы (восстановление) ---------- */
.factor + .factor { margin-top: 16px; }
.factor__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}
.factor__name { font-size: 14px; font-weight: 700; }
.factor__norm { font-size: 12px; color: var(--text-3); font-weight: 500; }
.factor__val { font-size: 14px; font-weight: 800; color: #C4B5FD; font-variant-numeric: tabular-nums; }

/* ---------- Крупное число-показатель ---------- */
.bigstat { text-align: center; padding: 6px 0 2px; }
.bigstat__num {
  font-size: clamp(58px, 11vw, 86px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bigstat__label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C4B5FD;
}
.bigstat__meta { margin-top: 10px; font-size: 12.5px; color: var(--text-3); }

/* ---------- Интервальное голодание ---------- */
.fastbar {
  position: relative;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  overflow: hidden;
}
.fastbar__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 60%);
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.35), rgba(139, 92, 246, 0.45));
  border-right: 2px solid rgba(196, 181, 253, 0.8);
}
.fastbar__label {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
}
.fastbar__label span { color: var(--text-3); font-weight: 600; font-size: 12px; }
.fastnote {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.07);
  border: 1px solid rgba(34, 211, 238, 0.22);
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ---------- Плиточная сетка «все возможности» ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tile {
  padding: 24px 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.tile:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 18px 44px rgba(3, 7, 18, 0.6);
}
.tile__ico {
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
}
.tile__ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tile h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.tile p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ---------- Оговорка про врача ---------- */
.medical-note {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
}
.medical-note svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.7;
}

/* ---------- Юридические страницы (общий шаблон документа) ---------- */
.doc-page {
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(139, 92, 246, 0.12), transparent 70%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 70%, var(--bg-0));
  min-height: 100vh;
}
.doc { max-width: 760px; margin: 0 auto; }
.doc h1 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.doc .doc__updated { color: var(--text-3); font-size: 13.5px; margin-bottom: 36px; }
.doc h2 { font-size: 19px; font-weight: 800; margin: 32px 0 12px; }
.doc p, .doc li { font-size: 15.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 10px; }
.doc b { color: var(--text); }
.doc ul { margin-left: 20px; list-style: disc; }
.doc a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.doc__back {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
  text-decoration: none;
}
.doc__back:hover { color: var(--teal); }
.doc-foot {
  max-width: 760px;
  margin: 56px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--card-border);
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
}
.doc-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 14px;
}
.doc-foot__links a { color: var(--text-2); font-weight: 600; }
.doc-foot__links a:hover { color: var(--teal); }
@media (max-width: 600px) {
  .doc-page { padding: 96px 0 60px; }
  .doc p, .doc li { font-size: 15px; }
}

/* ---------- Ритм секций ---------- */
.section--tight { padding: 78px 0; }
.section--glow { position: relative; overflow: hidden; }
.section--glow::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  width: min(760px, 90vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.16), transparent 70%);
  pointer-events: none;
}
.section--alt { background: linear-gradient(180deg, transparent, rgba(18, 26, 46, 0.5), transparent); }

/* ---------- Адаптив новых компонентов ---------- */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__visual { order: 0; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .section--tight { padding: 64px 0; }
}
@media (max-width: 600px) {
  .tiles { grid-template-columns: 1fr; }
  .appcard { padding: 20px 16px; }
  .calcflow__row { padding: 12px 13px; gap: 11px; }
  .calcflow__name { font-size: 13.5px; }
  .calcflow__val { font-size: 14px; }
  .ringrow { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .ringmini__ring { width: 54px; height: 54px; }
  .ringmini__name { font-size: 10.5px; }
  .eyebrow { font-size: 10.5px; letter-spacing: 0.12em; padding: 5px 13px 5px 7px; }
  .eyebrow img { width: 19px; height: 19px; }
  .split__text > p { font-size: 15.5px; }
  .appcard__head { flex-wrap: wrap; gap: 8px; }
  .sources li { align-items: flex-start; gap: 10px; }
  .factor__top, .barline__top { flex-wrap: wrap; gap: 2px 10px; }
  .medical-note { padding: 14px; font-size: 13px; }
}

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .food__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .food-card { max-width: 520px; margin: 0 auto; width: 100%; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 70px;
    text-align: center;
  }
  .hero__cta { justify-content: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__rings { right: -30%; opacity: 0.6; }
  .how__steps { flex-wrap: wrap; gap: 32px; }
  .step { flex: 1 1 40%; }
  .step__line { display: none; }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .header__inner { gap: 14px; }
  .header__nav { gap: 18px; }
  .header__actions { gap: 8px; }
  .header__actions .btn { padding-left: 14px; padding-right: 14px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 80px; }
  .grid--3 { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 520px; }
  .plan { padding: 34px 26px; }
  .score__main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .score__ring-wrap { margin: 0 auto; }

  .header__nav {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(5, 11, 22, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 24px 20px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
  }
  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header__nav a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .header__nav a:last-child { border-bottom: none; }
  .header__burger { display: flex; }
  .header__actions .btn { display: none; }

  .modal__form { flex-direction: column; }
}

@media (max-width: 480px) {
  .header__name { display: none; }
  .grid--4 { grid-template-columns: 1fr; }
  .modal { padding: 12px; }
  .modal__box { padding: 32px 20px 24px; max-height: calc(100vh - 24px); }
  .plan-toggle__opt { font-size: 12.5px; padding: 9px 8px; }
  .download__card { padding: 36px 20px; }
  .download__actions .btn { width: 100%; }
  .step { flex: 1 1 100%; }
  .phone { width: 300px; }
  .hero__cta .btn { width: 100%; }
  .food-card { padding: 24px 20px; }
  .food-card__macros { gap: 8px; }
  .macro { padding: 10px; }
  .footer__top { flex-direction: column; }
}
