:root {
  /* Palette близко к референсу: премиум светлый фон + графит + мягкий неон */
  --bg-0: #f4f3f1;
  --bg-1: #eceae7;
  --ink: #0f1720;
  --ink-2: #1a2633;
  --muted: rgba(15, 23, 32, .68);

  --line: rgba(15, 23, 32, .12);
  --glass: rgba(255, 255, 255, .55);
  --glass-2: rgba(255, 255, 255, .36);

  --shadow: 0 18px 60px rgba(15, 23, 32, .12);
  --shadow2: 0 30px 90px rgba(15, 23, 32, .14);

  --r: 24px;
  --r2: 34px;

  --neonA: #9ad7ff;
  /* холодный */
  --neonB: #c9b8ff;
  /* сиреневый */
  --neonC: #ffc7a6;
  /* теплый */

  --max: 1120px;

  --t: 220ms cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button,
input {
  font: inherit
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 18px
}

.muted {
  color: var(--muted)
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== Background ambience ===== */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2
}

.bg__grid {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 0, 0, .06), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, .06), transparent 35%),
    linear-gradient(to right, rgba(15, 23, 32, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 32, .05) 1px, transparent 1px);
  background-size: auto, auto, 62px 62px, 62px 62px;
  opacity: .35;
  filter: blur(.2px);
}

.bg__glow {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  mix-blend-mode: multiply;
}

.bg__glow--a {
  left: -240px;
  top: -260px;
  background: radial-gradient(circle, var(--neonB), transparent 60%)
}

.bg__glow--b {
  right: -260px;
  top: -220px;
  background: radial-gradient(circle, var(--neonA), transparent 60%)
}

.bg__glow--c {
  left: 30%;
  bottom: -340px;
  background: radial-gradient(circle, var(--neonC), transparent 60%)
}

.bg__noise {
  position: absolute;
  inset: -20%;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

/* ===== Glass + micro glow ===== */
.glass {
  background: linear-gradient(180deg, var(--glass), var(--glass-2));
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hoverLift {
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), filter var(--t);
}

.hoverLift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow2);
  border-color: rgba(255, 255, 255, .75);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, .2));
  box-shadow: 0 0 0 4px rgba(154, 215, 255, .25), 0 0 24px rgba(154, 215, 255, .25);
}

.dot--soft {
  box-shadow: 0 0 0 4px rgba(201, 184, 255, .20), 0 0 20px rgba(201, 184, 255, .20)
}

.dot--neon {
  box-shadow: 0 0 0 4px rgba(255, 199, 166, .22), 0 0 22px rgba(255, 199, 166, .26)
}

.rosette {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      rgba(15, 23, 32, .16), rgba(15, 23, 32, .02), rgba(15, 23, 32, .16),
      rgba(15, 23, 32, .02), rgba(15, 23, 32, .16), rgba(15, 23, 32, .02),
      rgba(15, 23, 32, .16), rgba(15, 23, 32, .02));
  mask: radial-gradient(circle at center, transparent 42%, #000 44%);
  opacity: .65;
}

.rosette--sm {
  width: 34px;
  height: 34px;
  opacity: .55
}

.rosette--abs {
  position: absolute;
  left: -8px;
  top: -12px
}

.rosette--abs2 {
  position: absolute;
  right: 14px;
  bottom: 18px;
  opacity: .55
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(244, 243, 241, .65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 32, .06);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
}

.brand__mark {
  font-size: 20px;
  letter-spacing: -.02em;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(15, 23, 32, .08);
  box-shadow: 0 10px 34px rgba(15, 23, 32, .10);
}

.brand__name {
  font-size: 18px;
  letter-spacing: -.02em
}

.brand--sm .brand__mark {
  padding: 8px 10px;
  border-radius: 12px
}

.brand--sm .brand__name {
  font-size: 16px
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__link {
  font-size: 13px;
  color: rgba(15, 23, 32, .75);
  transition: color var(--t), transform var(--t);
  position: relative;
}

.nav__link:hover {
  color: rgba(15, 23, 32, .95);
  transform: translateY(-1px)
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 32, .34), transparent);
  opacity: 0;
  transition: opacity var(--t);
}

.nav__link:hover::after {
  opacity: 1
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 32, .08);
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 14px 40px rgba(15, 23, 32, .10);
  display: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(15, 23, 32, .78);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg)
}

.burger.is-open span:nth-child(2) {
  opacity: 0
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg)
}

/* Mobile nav overlay */
.mnav {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 32, .18);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

.mnav.is-open {
  opacity: 1;
  pointer-events: auto
}

.mnav__panel {
  width: min(520px, calc(100% - 24px));
  margin: 14px auto 0;
  border-radius: var(--r2);
  padding: 16px;
}

.mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.mnav__close {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 32, .10);
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.mnav__links {
  display: grid;
  gap: 10px;
  margin-top: 14px
}

.mnav__link {
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 32, .08);
  background: rgba(255, 255, 255, .45);
  transition: transform var(--t), border-color var(--t);
}

.mnav__link:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 32, .14)
}

.mnav__cta {
  margin-top: 14px
}

.mnav__cta .muted {
  margin: 10px 2px 0
}

/* body lock when menu opened */
body.is-locked {
  overflow: hidden
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 32, .12);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  user-select: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(15, 23, 32, .92), rgba(15, 23, 32, .72));
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 50px rgba(15, 23, 32, .22);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(15, 23, 32, .26)
}

.btn--ghost {
  background: rgba(255, 255, 255, .55);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow2)
}

.btn--dark {
  background: rgba(15, 23, 32, .92);
  color: #fff;
  border-color: rgba(255, 255, 255, .14);
}

.btn--dark:hover {
  transform: translateY(-2px)
}

.btn--sm {
  height: 38px;
  padding: 0 14px;
  font-size: 13px
}

.btn--block {
  width: 100%
}

.icon {
  font-style: normal;
  opacity: .9
}

/* ===== Sections ===== */
.section {
  padding: 56px 0
}

.section--tight {
  padding: 44px 0
}

.h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0 0 12px;
}

.h3 {
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0 0 10px;
}

.accent {
  background: linear-gradient(90deg, rgba(15, 23, 32, .95), rgba(15, 23, 32, .55));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sectionHead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sectionHead p {
  margin: 0
}

/* ===== Hero ===== */
.hero {
  padding: 34px 0 24px
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  width: fit-content;
  margin-bottom: 14px;
}

.hero__title {
  font-size: clamp(40px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0 0 12px;
}

.hero__titleAccent {
  font-weight: 900;
  opacity: .7;
}

.hero__sub {
  margin: 0 0 18px;
  color: rgba(15, 23, 32, .70);
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
}

.hero__icons {
  display: flex;
  gap: 8px
}

.pill {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 32, .10);
  background: rgba(255, 255, 255, .55);
  font-size: 12px;
  transition: transform var(--t);
}

.pill:hover {
  transform: translateY(-2px)
}

.hero__stats {
  display: flex;
  gap: 26px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stat__num {
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -.03em;
  font-weight: 800;
}

.stat__label {
  font-size: 12px;
  color: rgba(15, 23, 32, .62);
  margin-top: 4px;
  max-width: 220px
}

/* hero right card */
.heroCard {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  max-height: 520px;
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: var(--shadow2);
}

.heroCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.02);
  transform: scale(1.02);
}

.heroCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(154, 215, 255, .35), transparent 40%),
    radial-gradient(circle at 55% 55%, rgba(201, 184, 255, .28), transparent 42%),
    linear-gradient(180deg, rgba(244, 243, 241, .05), rgba(15, 23, 32, .22));
  pointer-events: none;
}

.heroCard__pins .pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .22), 0 0 28px rgba(154, 215, 255, .30);
  opacity: .95;
}

.pin--a {
  left: 56%;
  top: 34%
}

.pin--b {
  left: 70%;
  top: 46%
}

.pin--c {
  left: 62%;
  top: 58%
}

.pin--d {
  left: 78%;
  top: 66%
}

.heroCard__widget {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 220px;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .62);
}

.widget__top {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.widget__title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(15, 23, 32, .78)
}

.widget__tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 32, .10);
  background: rgba(255, 255, 255, .60);
}

.bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 46px;
  margin: 10px 0 8px;
}

.bars span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 23, 32, .85), rgba(15, 23, 32, .45));
  opacity: .78;
}

.bars span:nth-child(1) {
  height: 16px
}

.bars span:nth-child(2) {
  height: 28px
}

.bars span:nth-child(3) {
  height: 22px
}

.bars span:nth-child(4) {
  height: 36px
}

.bars span:nth-child(5) {
  height: 26px
}

.widget__foot {
  font-size: 12px
}

.heroCard__chip {
  position: absolute;
  left: 16px;
  bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .62);
}

.chip__avatars {
  display: flex
}

.chip__avatars span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 23, 32, .20), rgba(15, 23, 32, .06));
  border: 1px solid rgba(255, 255, 255, .65);
  margin-left: -8px;
  box-shadow: 0 10px 20px rgba(15, 23, 32, .10);
}

.chip__avatars span:first-child {
  margin-left: 0
}

.chip__title {
  font-size: 12px;
  font-weight: 700
}

.chip__meta {
  font-size: 12px;
  color: rgba(15, 23, 32, .62)
}

.hero__band {
  margin-top: 28px
}

.band__row {
  display: flex;
  justify-content: center;
  gap: 18px;
  opacity: .7
}

/* ===== SplitCard (How it works) ===== */
.splitCard {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .70);
}

.splitCard__media img {
  max-height: 500px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.splitCard__content {
  padding: 22px 22px 20px;
  position: relative;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  width: fit-content;
}

.lead {
  margin: 14px 0 16px;
  color: rgba(15, 23, 32, .70);
  max-width: 560px
}

.miniGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini {
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .62);
}

.mini__icon {
  /* width: 42px; */
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
  opacity: .92
}

.mini__title {
  font-weight: 800;
  letter-spacing: -.02em
}

.mini__meta {
  font-size: 12px;
  margin-top: 4px
}

.splitCard__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ===== Nutrition ===== */
.nutrition {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: center;
}

.seg {
  margin: 14px 0 14px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .62);
  width: fit-content;
}

.seg__btn {
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  color: rgba(15, 23, 32, .70);
  transition: background var(--t), color var(--t), transform var(--t), border-color var(--t);
}

.seg__btn:hover {
  transform: translateY(-1px)
}

.seg__btn.is-active {
  background: rgba(15, 23, 32, .92);
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
}

.nutrition__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.nutritionCard {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .70);
  box-shadow: var(--shadow2);
  min-height: 360px;
}

.nutritionCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  max-height: 500PX;
}

.nutritionCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(201, 184, 255, .28), transparent 46%),
    radial-gradient(circle at 75% 65%, rgba(255, 199, 166, .28), transparent 48%),
    linear-gradient(180deg, rgba(244, 243, 241, .12), rgba(15, 23, 32, .20));
  pointer-events: none;
}

.cal {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 220px;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .62);
}

.cal__title {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 32, .78)
}

.cal__value {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.03em;
  margin: 6px 0 8px
}

.cal__bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(15, 23, 32, .06);
  overflow: hidden;
}

.cal__bar span {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 23, 32, .88), rgba(15, 23, 32, .55));
}

.cal__note {
  margin-top: 8px;
  font-size: 12px
}

/* ===== Yoga Grid ===== */
.yogaGrid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.yoga {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .70);
  background: linear-gradient(180deg, rgb(171 171 171 / 55%), var(--glass-2));
}

.yoga__media {
  position: relative;
  height: 370px;
  overflow: hidden;
}

.yoga__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: contrast(1.03) saturate(1.02);
}

.yoga__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .78);
  text-shadow: 0 18px 60px rgba(15, 23, 32, .35);
  mix-blend-mode: overlay;
  font-size: 44px;
}

.yoga__foot {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yoga__name {
  font-weight: 900;
  letter-spacing: -.02em
}

.yoga__go {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 32, .12);
  background: rgba(255, 255, 255, .55);
  transition: transform var(--t);
}

.yoga__go:hover {
  transform: translateY(-2px)
}

/* ===== AI Card (extra modern section) ===== */
.aiCard {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, .70);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  position: relative;
}

.aiCard__left {
  padding: 22px
}

.aiPills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 16px
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .48);
  font-size: 12px;
  font-weight: 700;
}

.chip--neon {
  background: linear-gradient(180deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .36));
  box-shadow: 0 18px 50px rgba(154, 215, 255, .12);
}

.aiCard__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px
}

.aiCard__right {
  padding: 22px;
  position: relative;
}

.aiBlob {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 215, 255, .28), transparent 62%);
  filter: blur(18px);
  opacity: .9;
  pointer-events: none;
}

.dash {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .70);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.dash::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 10%, rgba(201, 184, 255, .26), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 199, 166, .22), transparent 55%);
  filter: blur(10px);
  pointer-events: none;
}

.dash__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative
}

.dash__title {
  font-weight: 900;
  letter-spacing: -.02em
}

.dash__tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 32, .10);
  background: rgba(255, 255, 255, .55);
}

.dash__items {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  position: relative
}

.dashItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 32, .08);
  background: rgba(255, 255, 255, .45);
}

.dashItem__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 32, .85);
  box-shadow: 0 0 0 4px rgba(154, 215, 255, .18);
}

.dashItem__dot--b {
  box-shadow: 0 0 0 4px rgba(201, 184, 255, .18)
}

.dashItem__dot--c {
  box-shadow: 0 0 0 4px rgba(255, 199, 166, .18)
}

.dashItem__name {
  font-weight: 900;
  letter-spacing: -.02em
}

.dashItem__meta {
  font-size: 12px
}

.dashItem__pill {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.dash__chart {
  position: relative;
  display: flex;
  gap: 7px;
  align-items: flex-end;
  height: 56px;
  margin-top: 14px;
}

.dash__chart span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 23, 32, .85), rgba(15, 23, 32, .35));
  opacity: .55;
}

.dash__chart span:nth-child(1) {
  height: 18px
}

.dash__chart span:nth-child(2) {
  height: 34px
}

.dash__chart span:nth-child(3) {
  height: 26px
}

.dash__chart span:nth-child(4) {
  height: 46px
}

.dash__chart span:nth-child(5) {
  height: 30px
}

.dash__chart span:nth-child(6) {
  height: 40px
}

/* ===== Events ===== */
.eventsHead__marquee {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: clamp(26px, 4.5vw, 56px);
  opacity: .20;
  user-select: none;
  overflow: hidden;
  white-space: nowrap;
}

.eventsList {
  margin-top: 10px;
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, .70);
  overflow: hidden;
}

.eventRow {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid rgba(15, 23, 32, .06);
}

.eventRow:first-child {
  border-top: none
}

.eventRow__idx {
  font-weight: 900;
  opacity: .60
}

.eventRow__title {
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: lowercase
}

.eventRow__meta {
  font-size: 12px;
  margin-top: 4px
}

/* ===== Testimonials ===== */
.tCard {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, .70);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.tCard__left {
  padding: 22px
}

.tCard__right {
  padding: 22px;
  display: grid;
  gap: 12px
}

.tChips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 16px
}

.quote {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .70);
  padding: 14px;
}

.quote p {
  margin: 0 0 12px;
  color: rgba(15, 23, 32, .74)
}

.quote__by {
  display: flex;
  gap: 10px;
  align-items: center
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .75), rgba(15, 23, 32, .10));
  border: 1px solid rgba(255, 255, 255, .70);
}

.avatar--b {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .75), rgba(201, 184, 255, .18))
}

.quote__name {
  font-weight: 900
}

/* ===== Final CTA ===== */
.final {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, .70);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.final__left {
  max-width: 620px
}

.final__form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.input {
  height: 44px;
  width: 280px;
  border-radius: 999px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .70);
  outline: none;
}

.input:focus {
  border-color: rgba(154, 215, 255, .70);
  box-shadow: 0 0 0 6px rgba(154, 215, 255, .18);
}

/* ===== Footer ===== */
.footer {
  padding: 28px 0 18px;
  border-top: 1px solid rgba(15, 23, 32, .06);
  position: relative;
  overflow: hidden;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.footer__links a {
  color: rgba(15, 23, 32, .72)
}

.footer__links a:hover {
  color: rgba(15, 23, 32, .95)
}

.footer__big {
  margin-top: 18px;
  font-weight: 900;
  letter-spacing: -.08em;
  font-size: clamp(72px, 18vw, 220px);
  line-height: .8;
  opacity: .08;
  transform: translateY(10px);
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity 520ms cubic-bezier(.2, .7, .2, 1),
    transform 520ms cubic-bezier(.2, .7, .2, 1),
    filter 520ms cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-in {
  opacity: 2;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav {
    display: none
  }

  .mini__icon{
    display: none;
  }
  .splitCard__media{
    display: none
  }

  .burger {
    display: block
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .heroCard {
    min-height: 480px
  }

  .splitCard {
    grid-template-columns: 1fr
  }

  .miniGrid {
    grid-template-columns: 1fr;
  }

  .nutrition {
    grid-template-columns: 1fr
  }

  .yogaGrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .aiCard {
    grid-template-columns: 1fr
  }

  .tCard {
    grid-template-columns: 1fr
  }

  .final {
    flex-direction: column;
    align-items: stretch
  }

  .final__form {
    justify-content: flex-start
  }

  .input {
    width: min(420px, 100%)
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px))
  }

  .hero__stats {
    gap: 16px
  }

  .yogaGrid {
    grid-template-columns: 1fr
  }

  .eventRow {
    grid-template-columns: 42px 1fr;
    grid-auto-rows: auto
  }

  .eventRow .btn {
    grid-column: 1 / -1;
    justify-self: start
  }
}