/* Результат Вайб — Aura of Achievement design system */

:root {
  --surface: #fcf8f8;
  --surface-dim: #ddd9d8;
  --surface-bright: #fcf8f8;
  --surface-lowest: #ffffff;
  --surface-low: #f6f3f2;
  --surface-container: #f1edec;
  --surface-high: #ebe7e6;
  --surface-highest: #e5e2e1;
  --pearl: #fafaf8;
  --on-surface: #1c1b1b;
  --on-surface-variant: #444846;
  --outline: #747876;
  --outline-variant: #c4c7c5;
  --primary: #5d5f5d;
  --on-primary: #ffffff;
  --secondary: #5f5e5e;
  --tertiary: #494bd6;
  --tertiary-container: #fdf9ff;
  --on-tertiary-container: #5e61ec;
  --error: #ba1a1a;
  --emerald: #10b981;

  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: Inter, sans-serif;

  --container: 1200px;
  --gutter: 24px;
  --margin: 20px;
  --section: clamp(72px, 12vw, 120px);
  --stack-sm: 8px;
  --stack-md: 16px;
  --stack-lg: 32px;

  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  --glass: rgba(252, 248, 248, 0.72);
  --shadow-ambient: 0 24px 60px rgba(73, 75, 214, 0.05);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--on-surface);
  background: var(--pearl);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  user-select: none;
}

.material-symbols-outlined.fill {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.container {
  width: min(100% - (var(--margin) * 2), var(--container));
  margin-inline: auto;
}

/* Typography */
.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
}

.headline-lg {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.headline-md {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33;
  margin: 0;
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--on-surface-variant);
}

.body-md {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--on-surface-variant);
}

.eyebrow {
  display: inline-block;
  color: var(--tertiary);
  margin-bottom: var(--stack-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  text-align: center;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid var(--tertiary);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--on-surface);
  color: var(--on-primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.btn--primary:hover {
  box-shadow: 0 0 28px rgba(73, 75, 214, 0.18);
}

.btn--ghost {
  border: 1px solid var(--outline-variant);
  color: var(--primary);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.55);
}

.btn--tertiary {
  background: var(--tertiary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(73, 75, 214, 0.2);
}

.btn--tertiary:hover {
  background: #3f41c4;
}

.btn--light {
  background: #fff;
  color: var(--on-surface);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.35rem 3rem;
}

.btn--light:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.btn--full {
  width: 100%;
}

.btn--sm {
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(116, 120, 118, 0.2);
  color: var(--on-surface);
}

.btn--sm:hover {
  background: var(--surface-container);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(196, 199, 197, 0.15);
  transition: box-shadow 0.3s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-ambient);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: transform 0.2s;
}

.brand:active {
  transform: scale(0.96);
}

.brand__mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--on-surface-variant);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--tertiary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--primary);
  border-radius: var(--radius);
}

.menu-toggle:hover {
  color: var(--tertiary);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

.nav-mobile {
  position: fixed;
  inset: 64px 0 auto;
  z-index: 49;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem var(--margin) 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(196, 199, 197, 0.2);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: 0.85rem 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--on-surface);
  border-radius: var(--radius);
}

.nav-mobile a:hover {
  background: var(--surface-low);
  color: var(--tertiary);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem var(--margin) 5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  will-change: transform;
  animation: hero-breathe 12s ease-in-out infinite;
}

.hero--hub {
  background: #f7f8ff;
}

.hero--hub .hero__media img {
  object-fit: contain;
  object-position: center 58%;
  transform: scale(1.02);
  animation: hero-hub-float 10s ease-in-out infinite;
}

.hero--hub .hero__mist {
  background:
    radial-gradient(ellipse at 50% 55%, transparent 30%, rgba(247, 248, 255, 0.35) 70%),
    radial-gradient(ellipse at 50% 10%, rgba(247, 248, 255, 0.55), transparent 45%);
}

.hero--hub .hero__fade {
  background:
    linear-gradient(
      to bottom,
      rgba(247, 248, 255, 0.82) 0%,
      rgba(247, 248, 255, 0.55) 22%,
      rgba(247, 248, 255, 0.15) 48%,
      rgba(247, 248, 255, 0.45) 78%,
      rgba(250, 250, 248, 1) 100%
    );
}

.hero--hub .hero__content {
  align-self: flex-start;
  margin-top: clamp(1rem, 4vh, 3rem);
  padding-bottom: 42vh;
}

@media (max-width: 700px) {
  .hero--hub .hero__content {
    padding-bottom: 38vh;
  }

  .hero--hub .hero__media img {
    object-position: center 72%;
    transform: scale(1.15);
  }
}

@keyframes hero-hub-float {
  0%, 100% { transform: scale(1.02) translateY(0); }
  50% { transform: scale(1.04) translateY(-8px); }
}

.hero__mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(250, 250, 248, 0.35), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(73, 75, 214, 0.08), transparent 45%);
  pointer-events: none;
  animation: mist-drift 14s ease-in-out infinite alternate;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(250, 250, 248, 0.35) 0%, rgba(250, 250, 248, 0.05) 28%, rgba(250, 250, 248, 0.45) 68%, rgba(250, 250, 248, 1) 100%),
    radial-gradient(ellipse at 50% 42%, rgba(250, 250, 248, 0.25), transparent 55%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
  margin-inline: auto;
  text-align: center;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--on-surface);
  animation: fade-up 0.9s var(--ease) both;
}

.hero__tagline {
  margin: 0.65rem 0 1.35rem;
  color: var(--on-surface-variant);
  letter-spacing: 0.18em;
  opacity: 0.75;
  animation: fade-up 0.9s var(--ease) 0.05s both;
}

.hero__content .display {
  animation: fade-up 0.9s var(--ease) 0.1s both;
}

.hero__content .display em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.7;
}

.hero__lead {
  max-width: 36rem;
  margin: 1.5rem auto 0;
  animation: fade-up 0.9s var(--ease) 0.16s both;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--stack-md);
  margin-top: 2.5rem;
  animation: fade-up 0.9s var(--ease) 0.24s both;
}

@media (min-width: 600px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.45;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(93, 95, 93, 0.25);
  overflow: hidden;
  position: relative;
}

.hero__scroll-line span {
  position: absolute;
  inset: 0;
  background: var(--primary);
  animation: scroll-down 2s infinite;
}

/* Sections */
.section {
  padding: var(--section) 0;
}

.section--soft {
  background: var(--surface-low);
  border-block: 1px solid rgba(196, 199, 197, 0.12);
}

.section--muted {
  background: rgba(246, 243, 242, 0.45);
}

.section-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.section-intro .headline-lg {
  margin-top: 0.75rem;
}

.section-intro .body-lg {
  margin: 1rem auto 0;
}

/* Problem */
.problem {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .problem {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .problem__sticky {
    position: sticky;
    top: 7rem;
  }
}

.problem__callout {
  margin-top: 2rem;
  padding: var(--stack-lg);
  border-radius: var(--radius-xl);
  background: rgba(253, 249, 255, 0.55);
  border: 1px solid rgba(73, 75, 214, 0.12);
  backdrop-filter: blur(8px);
}

.problem__callout h3 {
  color: var(--tertiary);
  margin-bottom: 0.35rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

@media (min-width: 900px) {
  .timeline {
    padding-left: 3rem;
  }
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.25;
}

.timeline__item {
  position: relative;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -1.72rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--outline);
  box-shadow: 0 0 0 4px var(--surface);
}

@media (min-width: 900px) {
  .timeline__dot {
    left: -2.72rem;
  }
}

.timeline__item.is-end .timeline__dot {
  background: var(--primary);
  border-color: var(--primary);
}

.timeline__item.is-end h4 {
  color: var(--error);
}

.timeline__item h4 {
  margin: 0 0 0.35rem;
}

/* Journey */
.journey {
  position: relative;
  margin-top: 3rem;
}

.journey__line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 4rem;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--tertiary), transparent);
  opacity: 0.25;
}

@media (min-width: 800px) {
  .journey__line {
    display: block;
  }
}

.journey__step {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

@media (min-width: 800px) {
  .journey__step {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
  }

  .journey__step--left .journey__copy {
    text-align: right;
    grid-column: 1;
    grid-row: 1;
  }

  .journey__step--left .journey__node {
    grid-column: 2;
  }

  .journey__step--left .journey__spacer {
    grid-column: 3;
  }

  .journey__step--right .journey__spacer {
    grid-column: 1;
  }

  .journey__step--right .journey__node {
    grid-column: 2;
  }

  .journey__step--right .journey__copy {
    grid-column: 3;
  }
}

.journey__node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(73, 75, 214, 0.18);
  box-shadow: var(--shadow-ambient);
  color: var(--tertiary);
  z-index: 1;
}

.journey__node--accent {
  background: var(--tertiary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(73, 75, 214, 0.25);
}

.journey__copy h3 {
  margin-bottom: 0.35rem;
}

.journey__copy--accent h3 {
  color: var(--tertiary);
}

.journey__finale {
  text-align: center;
  max-width: 22rem;
  margin: 0 auto;
}

.journey__finale .journey__node {
  margin: 0 auto 1.25rem;
  background: var(--surface-high);
  border-color: transparent;
  color: var(--primary);
}

/* Stages cards */
.stages {
  display: grid;
  gap: var(--gutter);
  margin-top: 3rem;
}

@media (min-width: 700px) {
  .stages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .stages {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--stack-lg);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(196, 199, 197, 0.25);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-ambient);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}

.stage:hover,
.stage:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(73, 75, 214, 0.08);
  border-color: rgba(73, 75, 214, 0.28);
}

.stage__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: var(--stack-md);
  border: 1px solid rgba(196, 199, 197, 0.25);
}

.stage__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.stage:hover .stage__avatar img {
  transform: scale(1.08);
}

.stage h3 {
  margin-bottom: 0.5rem;
}

/* Companion */
.section--companion-hub {
  background:
    radial-gradient(ellipse at 70% 40%, rgba(99, 102, 241, 0.07), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(168, 85, 247, 0.05), transparent 45%),
    linear-gradient(180deg, #f7f8ff 0%, var(--pearl) 100%);
}

.companion-wrap {
  position: relative;
}

.companion-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(800px, 120vw);
  height: min(800px, 120vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 75, 214, 0.08), transparent 65%);
  pointer-events: none;
}

.companion {
  position: relative;
  display: grid;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(196, 199, 197, 0.28);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-ambient);
}

.companion--hub {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(129, 140, 248, 0.22);
}

@media (min-width: 900px) {
  .companion {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.companion__features {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}

.companion__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.companion__feature .material-symbols-outlined {
  color: var(--tertiary);
  margin-top: 2px;
}

.companion__feature p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.55;
}

.companion__closer {
  margin: 0 0 1.5rem;
}

.companion__visual {
  position: relative;
}

.companion__panel {
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(28, 27, 27, 0.12);
  position: relative;
}

.companion__panel--hub {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95), rgba(237, 233, 254, 0.55));
  border: 1px solid rgba(129, 140, 248, 0.28);
  box-shadow:
    0 24px 60px rgba(79, 70, 229, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.companion__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.companion__panel--hub img {
  object-fit: contain;
  object-position: center;
  padding: 6%;
  animation: companion-hub-float 9s ease-in-out infinite;
}

.companion__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(73, 75, 214, 0.12), transparent 55%);
  pointer-events: none;
}

.companion__panel--hub::after {
  background:
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(247, 248, 255, 0.35) 100%),
    linear-gradient(160deg, rgba(99, 102, 241, 0.06), transparent 50%);
}

.companion__float {
  position: absolute;
  left: -0.75rem;
  bottom: -1rem;
  max-width: 240px;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(73, 75, 214, 0.1);
  animation: float-y 4s ease-in-out infinite;
}

.companion__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.companion__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s ease-in-out infinite;
}

.companion__float p {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
}

@keyframes companion-hub-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .companion__panel--hub img {
    animation: none !important;
  }
}

/* Compare */
.compare {
  display: grid;
  gap: var(--gutter);
  margin-top: 3rem;
}

@media (min-width: 800px) {
  .compare {
    grid-template-columns: 1fr 1fr;
  }
}

.compare__card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(196, 199, 197, 0.28);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.4s, background 0.4s;
}

.compare__card--vibe {
  border-color: rgba(73, 75, 214, 0.22);
}

.compare__card--vibe:hover {
  box-shadow: 0 24px 50px rgba(73, 75, 214, 0.1);
}

.compare__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(73, 75, 214, 0.1);
  color: var(--tertiary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.compare__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(95, 94, 94, 0.08);
  color: var(--secondary);
}

.compare__card--vibe .compare__icon {
  background: rgba(73, 75, 214, 0.1);
  color: var(--tertiary);
}

.compare__card--vibe .headline-md {
  color: var(--tertiary);
}

.compare__list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.compare__list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.compare__list--muted {
  opacity: 0.7;
}

.compare__list .material-symbols-outlined {
  font-size: 20px;
  flex-shrink: 0;
}

.compare__list--muted .material-symbols-outlined {
  color: var(--error);
}

.compare__card--vibe .compare__list .material-symbols-outlined {
  color: var(--tertiary);
}

/* Product mock */
.product-mock {
  position: relative;
  margin-top: 3rem;
}

.dashboard {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(196, 199, 197, 0.3);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-ambient);
  transition: transform 0.4s var(--ease);
}

.dashboard__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .dashboard__layout {
    grid-template-columns: 200px 1fr;
  }
}

.dashboard__side {
  display: none;
  gap: 0.75rem;
  opacity: 0.45;
}

@media (min-width: 900px) {
  .dashboard__side {
    display: grid;
  }
}

.dashboard__skel {
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(93, 95, 93, 0.05);
  border: 1px solid rgba(93, 95, 93, 0.05);
}

.dashboard__skel--active {
  background: rgba(73, 75, 214, 0.08);
  border-color: rgba(73, 75, 214, 0.1);
}

.dashboard__skel--title {
  height: 14px;
  width: 70%;
  margin-bottom: 0.5rem;
}

.dashboard__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dashboard__top p {
  margin: 0.35rem 0 0;
}

.dashboard__pct {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tertiary);
}

.dashboard__tiles {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 700px) {
  .dashboard__tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dashboard__tile {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(196, 199, 197, 0.15);
}

.dashboard__tile-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  opacity: 0.55;
}

.dashboard__tile strong {
  display: block;
  font-family: var(--font-display);
}

.dashboard__bar {
  margin-top: 1rem;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--surface-container);
  overflow: hidden;
}

.dashboard__bar span {
  display: block;
  width: 66%;
  height: 100%;
  background: var(--tertiary);
  border-radius: inherit;
}

.dashboard__vibe {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.dashboard__vibe .material-symbols-outlined {
  color: var(--tertiary);
}

.dashboard__chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  height: 180px;
  padding: 1rem 1.25rem 0.75rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--surface-low), #fff);
  border: 1px solid rgba(196, 199, 197, 0.12);
}

.dashboard__chart span {
  flex: 1;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(73, 75, 214, 0.08);
}

.dashboard__chart span:nth-child(1) { height: 35%; }
.dashboard__chart span:nth-child(2) { height: 55%; }
.dashboard__chart span:nth-child(3) { height: 42%; }
.dashboard__chart span:nth-child(4) {
  height: 78%;
  background: rgba(73, 75, 214, 0.22);
  border-top: 2px solid var(--tertiary);
}
.dashboard__chart span:nth-child(5) { height: 62%; }
.dashboard__chart span:nth-child(6) { height: 48%; }

.insight-float {
  display: none;
  position: absolute;
  right: 1rem;
  bottom: 2rem;
  z-index: 2;
  max-width: 280px;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(73, 75, 214, 0.12);
  animation: float-y 4s ease-in-out infinite;
}

@media (min-width: 900px) {
  .insight-float {
    display: block;
    right: 2.5rem;
  }
}

.insight-float__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.insight-float__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tertiary);
  color: #fff;
}

.insight-float__icon .material-symbols-outlined {
  font-size: 16px;
}

.insight-float p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--secondary);
  line-height: 1.5;
}

/* Reviews */
.reviews {
  display: grid;
  gap: var(--gutter);
  margin-top: 3rem;
}

@media (min-width: 800px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .review:nth-child(2) {
    margin-top: 3rem;
  }
}

.review {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: var(--stack-lg);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(196, 199, 197, 0.25);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-ambient);
  transition: transform 0.4s var(--ease);
}

.review:hover {
  transform: translateY(-6px);
}

.review__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-container);
}

.review__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review blockquote {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--on-surface-variant);
}

.review cite {
  font-style: normal;
  color: var(--primary);
}

/* Pricing */
.pricing {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: end;
}

@media (min-width: 900px) {
  .pricing {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: var(--stack-lg);
  border-radius: var(--radius-xl);
  background: var(--surface-lowest);
  border: 1px solid rgba(196, 199, 197, 0.25);
}

.plan--featured {
  position: relative;
  border: 2px solid var(--tertiary);
  box-shadow: var(--shadow-ambient);
  z-index: 1;
}

@media (min-width: 900px) {
  .plan--featured {
    transform: scale(1.04);
  }
}

.plan__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  background: var(--tertiary);
  color: #fff;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan__price strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.plan--featured .plan__price strong {
  font-size: 2.35rem;
  color: var(--tertiary);
}

.plan__price span {
  color: var(--on-surface-variant);
}

.plan ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.plan li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--on-surface-variant);
}

.plan--featured li {
  color: var(--on-surface);
}

.plan li .material-symbols-outlined {
  color: var(--tertiary);
  font-size: 18px;
}

.plan .btn {
  margin-top: auto;
}

/* Final CTA */
.final {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section) var(--margin);
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.final__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff9e6a 0%, #b288ff 48%, #494bd6 100%);
}

.final__bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top, var(--pearl), transparent);
}

.final__content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.final__content .display {
  margin-bottom: 1.25rem;
}

.final__content .body-lg {
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-weight: 300;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 calc(5.5rem + env(safe-area-inset-bottom));
  background: var(--surface-low);
  border-top: 1px solid rgba(196, 199, 197, 0.2);
}

@media (min-width: 900px) {
  .site-footer {
    padding-bottom: 2.5rem;
  }
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 800px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__brand p {
  margin: 0.35rem 0 0;
  color: var(--secondary);
  opacity: 0.8;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer__links a {
  color: var(--on-surface-variant);
  transition: color 0.25s;
}

.site-footer__links a:hover {
  color: var(--tertiary);
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(196, 199, 197, 0.35);
  color: var(--on-surface-variant);
  transition: border-color 0.25s, color 0.25s;
}

.site-footer__social a:hover {
  border-color: var(--tertiary);
  color: var(--tertiary);
}

/* Mobile bottom bar */
.bottom-nav {
  position: fixed;
  inset: auto 0 0;
  z-index: 50;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: calc(64px + env(safe-area-inset-bottom));
  padding: 0 1rem env(safe-area-inset-bottom);
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(196, 199, 197, 0.15);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.bottom-nav a,
.bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: var(--secondary);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: var(--radius);
  transition: color 0.2s, transform 0.2s;
}

.bottom-nav a.is-active,
.bottom-nav a:first-child {
  color: var(--primary);
}

.bottom-nav a:active,
.bottom-nav button:active {
  transform: scale(0.95);
}

@media (min-width: 900px) {
  .bottom-nav {
    display: none;
  }
}

/* Form page */
.page-hero {
  padding: 8rem var(--margin) 3rem;
  text-align: center;
}

.page-hero--hub {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 48vh, 520px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7.5rem;
  background: #f7f8ff;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 78%;
  transform: scale(1.08);
}

.page-hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247, 248, 255, 0.88) 0%,
    rgba(247, 248, 255, 0.5) 35%,
    rgba(247, 248, 255, 0.2) 60%,
    rgba(250, 250, 248, 1) 100%
  );
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.form-panel {
  max-width: 520px;
  margin: 0 auto var(--section);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(196, 199, 197, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-ambient);
}

.form-field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--outline-variant);
  background: transparent;
  color: var(--on-surface);
  font: inherit;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--tertiary);
  box-shadow: 0 1px 0 0 var(--tertiary), 0 0 0 4px rgba(73, 75, 214, 0.08);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success.is-visible {
  display: block;
}

.form-success .material-symbols-outlined {
  font-size: 48px;
  color: var(--tertiary);
  margin-bottom: 1rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-down {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@keyframes hero-breathe {
  0%, 100% { transform: scale(1.05); }
  50% { transform: scale(1.08); }
}

@keyframes mist-drift {
  from { opacity: 0.55; transform: translateY(0); }
  to { opacity: 0.9; transform: translateY(-12px); }
}

.legal {
  max-width: 42rem;
  padding-bottom: var(--section);
}

.legal .headline-md {
  margin: 2rem 0 0.75rem;
}

.legal .body-md,
.legal .body-lg {
  margin: 0;
}

.legal a {
  color: var(--tertiary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero__brand,
  .hero__tagline,
  .hero__content .display,
  .hero__lead,
  .hero__actions,
  .companion__float,
  .insight-float,
  .stage,
  .review {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__media img,
  .hero__mist {
    animation: none !important;
  }
}
