/* ============================================================
   SilaFit marketing site — Precision Kinetic (Premium 2.0)
   Full overhaul: glassmorphism, noise textures, micro-animations,
   magnetic hover effects, scroll-driven reveals.
   ============================================================ */

body { overflow-x: hidden; }

/* ----------------------------------------------------------------
   Ambient glow blobs — placed in multiple sections
   ---------------------------------------------------------------- */
.bloom {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.bloom--primary {
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--bloom-primary) 0%, transparent 60%);
}
.bloom--secondary {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--bloom-secondary) 0%, transparent 60%);
}
.bloom--blue {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--bloom-tertiary) 0%, transparent 60%);
}

/* ----------------------------------------------------------------
   Nav — glassmorphic sticky bar
   ---------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--chrome-bg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--chrome-border);
  transition: background-color 300ms ease, box-shadow 300ms ease;
}
.nav.scrolled {
  background: var(--chrome-bg-solid);
  box-shadow: var(--chrome-shadow);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--high-emphasis);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav__links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-surface-variant);
  transition: color 160ms ease, background-color 160ms ease;
  position: relative;
}
.nav__links a:hover { color: var(--high-emphasis); background: var(--hover-tint); }
.nav__links a.is-active { color: var(--accent); }
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__burger {
  display: none;
  background: none;
  border: 0;
  color: var(--high-emphasis);
  padding: 8px;
  border-radius: var(--r-inset);
  transition: background-color 150ms ease;
}
.nav__burger:hover { background: var(--surface-low); }

@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 64px;
    left: 12px; right: 12px;
    flex-direction: column;
    background: var(--menu-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--r-card);
    padding: 12px;
    border: 1px solid var(--chrome-border-strong);
    box-shadow: var(--glass-shadow);
  }
  .nav__links.is-open { display: flex; animation: slide-down 200ms cubic-bezier(0.2, 0.9, 0.3, 1.1); }
  .nav__links a { padding: 12px 16px; font-size: 15px; }
  .nav__burger { display: block; margin-left: auto; }
  .nav__cta .btn--secondary { display: none; }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------------
   Hero — full-bleed with phone mockup
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, var(--hero-glow-1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, var(--hero-glow-2) 0%, transparent 55%);
  pointer-events: none;
}
.hero .bloom--primary { top: -200px; right: -160px; }
.hero .bloom--secondary { bottom: -200px; left: -100px; }
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

/* Copy column */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--accent-dim);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}
.hero__eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__headline {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--high-emphasis);
  margin-bottom: 24px;
}
.hero__headline .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 18px;
  line-height: 29px;
  color: var(--on-surface-variant);
  max-width: 500px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__actions .btn--primary {
  position: relative;
  overflow: hidden;
}
.hero__actions .btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 500ms ease;
}
.hero__actions .btn--primary:hover::after { transform: translateX(100%); }

/* Stats row */
.hero__stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.hero__stat {
  padding: 0 32px 0 0;
  position: relative;
}
.hero__stat + .hero__stat {
  padding-left: 32px;
  border-left: 1px solid var(--surface-highest);
}
.hero__stat .stat { font-size: 40px; line-height: 44px; }
.hero__stat .eyebrow { margin-top: 4px; font-size: 11px; }

/* Visual column */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Phone frame */
.phone-mockup {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  z-index: 2;
}
.phone-mockup__frame {
  background: var(--surface-low);
  border-radius: 44px;
  padding: 12px;
  border: 1px solid var(--surface-highest);
  box-shadow: var(--phone-ring), var(--phone-shadow), var(--phone-glow);
}
.phone-mockup__screen {
  border-radius: 34px;
  overflow: hidden;
  background: var(--background);
  aspect-ratio: 9/19.5;
  position: relative;
}
.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-mockup__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: var(--surface-low);
  border-radius: 99px;
  z-index: 5;
}
.phone-mockup__screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(16,38,41,0.4));
  z-index: 2;
}

/* Floating cards around phone */
.hero__float-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-card);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  z-index: 10;
  white-space: nowrap;
}
.hero__float-card--kcal {
  left: -80px;
  bottom: 80px;
  animation: float 6s ease-in-out infinite;
}
.hero__float-card--pr {
  right: -60px;
  top: 100px;
  animation: float 7s ease-in-out infinite 1s;
}
.hero__float-card--streak {
  right: -50px;
  bottom: 140px;
  animation: float 5.5s ease-in-out infinite 0.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.float-card__icon {
  width: 38px; height: 38px; flex: none;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.float-card__icon--lime { background: var(--accent-dim); color: var(--accent); }
.float-card__icon--gold { background: var(--secondary-dim); color: var(--secondary); }
.float-card__icon--blue { background: var(--tertiary-dim); color: var(--tertiary); }
.float-card__label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--on-surface-variant); }
.float-card__value { font-size: 18px; font-weight: 700; color: var(--high-emphasis); letter-spacing: -0.02em; line-height: 1.1; }
.float-card__value .accent { color: var(--accent); }
.float-card__value .gold { color: var(--secondary); }

/* Ring widget inside float card */
.mini-ring { flex: none; }

@media (max-width: 1100px) {
  .hero__float-card--kcal { left: -40px; }
  .hero__float-card--pr { right: -30px; }
  .hero__float-card--streak { right: -30px; }
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 48px; justify-content: center; }
  .hero__float-card--kcal { left: 0; }
  .hero__float-card--pr { right: 0; }
  .hero__float-card--streak { right: 0; }
  .hero__sub { max-width: 100%; }
}
@media (max-width: 600px) {
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero__float-card { display: none; }
  .phone-mockup { width: 220px; }
}

/* ----------------------------------------------------------------
   Logoticker / trust bar
   ---------------------------------------------------------------- */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--surface-high);
  border-bottom: 1px solid var(--surface-high);
  overflow: hidden;
  position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, var(--background), transparent); }
.trust-bar::after { right: 0; background: linear-gradient(to left, var(--background), transparent); }
.trust-bar__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trust-bar__track:hover { animation-play-state: paused; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--outline);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 200ms ease;
}
.trust-item:hover { color: var(--on-surface-variant); }
.trust-item svg { flex: none; }

/* ----------------------------------------------------------------
   Sections — base
   ---------------------------------------------------------------- */
.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section--alt { background: var(--surface-lowest); }
.section--accent-edge::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-hairline-strong), transparent);
}
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head .eyebrow { margin-bottom: 16px; }
.section__head h2 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--high-emphasis);
  margin-bottom: 16px;
}
.section__head p { font-size: 17px; line-height: 27px; color: var(--on-surface-variant); }
.section__head--center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }

/* ----------------------------------------------------------------
   Features — bento grid
   ---------------------------------------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: background-color 200ms ease, transform 200ms ease;
  cursor: default;
}
.bento-card:hover { background: var(--surface-high); transform: translateY(-2px); }
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-card);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-edge), transparent 50%, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-card--wide { grid-column: span 2; }
.bento-card--tall { grid-row: span 2; }
.bento-card--gold::before {
  background: linear-gradient(135deg, var(--secondary-edge), transparent 50%, transparent);
}
.bento-card--gold:hover { background: var(--surface-high); }

.bento-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.bento-card__icon--lime {
  background: var(--accent-dim);
  color: var(--accent);
}
.bento-card__icon--gold {
  background: var(--secondary-dim);
  color: var(--secondary);
}
.bento-card__icon--blue {
  background: var(--tertiary-dim);
  color: var(--tertiary);
}
.bento-card h3 {
  font-size: 19px;
  line-height: 24px;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--high-emphasis);
  margin-bottom: 10px;
}
.bento-card p {
  font-size: 14px;
  line-height: 22px;
  color: var(--on-surface-variant);
}
.bento-card__visual {
  margin-top: 24px;
  border-radius: var(--r-inset);
  overflow: hidden;
}

/* Inline mini chart for the PR card */
.sparkline {
  height: 64px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 20px;
}
.sparkline__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--surface-highest);
  transition: background-color 200ms ease;
  min-height: 8px;
}
.sparkline__bar.is-accent { background: var(--accent); }
.sparkline__bar.is-highlight { background: var(--accent-soft); }

/* Mini ring widget */
.bento-ring-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.bento-ring-labels { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bento-ring-label { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.bento-ring-label__dot { width: 8px; height: 8px; border-radius: 3px; flex: none; }
.bento-ring-label b { margin-left: auto; font-variant-numeric: tabular-nums; color: var(--high-emphasis); }

/* Streak mini visualization */
.streak-dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.streak-dot {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--surface-high);
  position: relative;
}
.streak-dot.done { background: var(--accent); }
.streak-dot.rest { background: var(--secondary-dim); }
.streak-dot.today { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

@media (max-width: 1000px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 1; }
  .bento-card--tall { grid-row: span 1; }
}
@media (max-width: 660px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   App screenshots / how it works
   ---------------------------------------------------------------- */
.how-it-works { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .how-it-works { grid-template-columns: 1fr; } }

.steps-list { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  position: relative;
}
.step + .step { border-top: 1px solid var(--surface-high); }
.step.is-active .step__num { background: var(--accent); color: var(--on-accent); }
.step.is-active .step__title { color: var(--high-emphasis); }
.step__num {
  width: 36px; height: 36px; flex: none;
  border-radius: 10px;
  background: var(--surface-high);
  color: var(--on-surface-variant);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  transition: background-color 200ms ease, color 200ms ease;
  margin-top: 2px;
}
.step__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--on-surface-variant);
  margin-bottom: 6px;
  transition: color 200ms ease;
}
.step__desc { font-size: 14px; line-height: 21px; color: var(--outline); }
.step__progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  border-radius: 1px;
  transition: width 4s linear;
}
.step.is-active .step__progress { width: 100%; }

.how-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.screen-carousel {
  width: 280px;
  aspect-ratio: 9/19;
  background: var(--surface-low);
  border-radius: 44px;
  padding: 12px;
  border: 1px solid var(--surface-highest);
  box-shadow: var(--carousel-shadow);
  overflow: hidden;
}
.screen-carousel__inner {
  border-radius: 34px;
  overflow: hidden;
  height: 100%;
  background: var(--background);
  position: relative;
}
.screen-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 400ms ease;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  gap: 12px;
}
.screen-slide.is-active { opacity: 1; }

/* Mock screen content */
.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
}
.mock-topbar-title { font-size: 13px; font-weight: 700; color: var(--high-emphasis); }
.mock-topbar-date { font-size: 10px; color: var(--outline); }
.mock-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 14px;
}
.mock-card__label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; color: var(--outline); margin-bottom: 6px; }
.mock-card__value { font-size: 20px; font-weight: 700; color: var(--high-emphasis); letter-spacing: -0.02em; }
.mock-card__sub { font-size: 9px; color: var(--on-surface-variant); margin-top: 2px; }
.mock-progress-track { height: 4px; border-radius: 2px; background: var(--surface-highest); margin-top: 8px; overflow: hidden; }
.mock-progress-fill { height: 100%; border-radius: 2px; background: var(--accent); }
.mock-list { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.mock-list-item { background: var(--surface); border-radius: 10px; padding: 10px 12px; display: flex; align-items: center; gap: 8px; }
.mock-list-dot { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.mock-list-label { font-size: 10px; color: var(--on-surface-variant); font-weight: 500; }
.mock-list-val { margin-left: auto; font-size: 10px; font-weight: 700; color: var(--high-emphasis); }

/* ----------------------------------------------------------------
   Nutrition section — macro showcase
   ---------------------------------------------------------------- */
.meals-showcase { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .meals-showcase { grid-template-columns: 1fr; } }

.macro-panel { display: flex; flex-direction: column; gap: 24px; }
.macro-panel__ring { display: flex; align-items: center; gap: 28px; }
.macro-legend { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.macro-legend__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: var(--r-inset);
  transition: background-color 200ms ease;
}
.macro-legend__row:hover { background: var(--surface-high); }
.macro-legend__dot { width: 10px; height: 10px; border-radius: 4px; flex: none; }
.macro-legend__row b { margin-left: auto; font-variant-numeric: tabular-nums; color: var(--high-emphasis); font-size: 14px; }

.macro-bars { display: flex; flex-direction: column; gap: 16px; }
.macro-bar { display: flex; flex-direction: column; gap: 8px; }
.macro-bar__label { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; color: var(--on-surface-variant); }
.macro-bar__track { height: 10px; border-radius: var(--r-pill); background: var(--surface-high); overflow: hidden; }
.macro-bar__fill { height: 100%; border-radius: var(--r-pill); transition: width 1s cubic-bezier(0.16, 1, 0.3, 1); }

/* Meal cards grid */
.meal-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 560px) { .meal-strip { grid-template-columns: 1fr; } }
.meal-card {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background-color 200ms ease, transform 200ms ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.meal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-card);
  background: linear-gradient(135deg, var(--accent-wash) 0%, transparent);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.meal-card:hover { background: var(--surface-high); transform: translateY(-3px); }
.meal-card:hover::after { opacity: 1; }
.meal-card__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.meal-card__title { font-size: 15px; font-weight: 700; color: var(--high-emphasis); letter-spacing: -0.01em; }
.meal-card__desc { font-size: 12.5px; line-height: 18px; color: var(--on-surface-variant); }
.meal-card__macros {
  display: flex;
  gap: 0;
  margin-top: auto;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  background: var(--surface-high);
  border-radius: 8px;
  overflow: hidden;
}
.meal-card__macro {
  flex: 1;
  padding: 6px 8px;
  text-align: center;
  border-right: 1px solid var(--surface-highest);
}
.meal-card__macro:last-child { border-right: 0; }
.meal-card__macro b { display: block; font-size: 13px; color: var(--high-emphasis); font-weight: 700; }
.meal-card__macro span { color: var(--outline); font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; }

/* ----------------------------------------------------------------
   Training splits
   ---------------------------------------------------------------- */
.splits { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .splits { grid-template-columns: 1fr; } }
.splits__shot {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.splits__shot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(200deg, transparent 55%, var(--shot-fade));
}
.splits__list { display: flex; flex-direction: column; gap: 10px; }
.split-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 16px 20px;
  transition: background-color 200ms ease, transform 200ms ease;
  cursor: pointer;
}
.split-row:hover { background: var(--surface-high); transform: translateX(4px); }
.split-row__badge {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--accent-dim); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  letter-spacing: -0.02em;
}
.split-row__meta { flex: 1; }
.split-row__meta .headline-sm { font-size: 15px; }
.split-row__meta .label-sm { color: var(--on-surface-variant); margin-top: 2px; }

/* ----------------------------------------------------------------
   Pricing section
   ---------------------------------------------------------------- */
.billing-toggle {
  display: inline-flex;
  background: var(--surface);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 4px;
  margin-bottom: 44px;
  border: 1px solid var(--surface-highest);
}
.billing-toggle button {
  border: 0;
  height: 40px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--on-surface-variant);
  font-size: 14px;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease;
}
.billing-toggle button.is-active { background: var(--accent); color: var(--on-accent); }
.billing-toggle .save-badge {
  font-size: 10px;
  background: var(--secondary-dim);
  color: var(--secondary);
  border-radius: var(--r-pill);
  padding: 2px 8px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.price-card {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card--featured {
  background: var(--surface-high);
  box-shadow: var(--card-shadow-featured);
}
.price-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-card);
  padding: 1px;
  background: linear-gradient(160deg, var(--secondary), var(--secondary-hairline) 50%, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-card__badge { position: absolute; top: 20px; right: 20px; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 6px; }
.price-card__price .amount {
  font-size: 46px;
  line-height: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--high-emphasis);
  font-variant-numeric: tabular-nums;
}
.price-card__price .per { color: var(--on-surface-variant); font-size: 14px; }
.price-card__tagline { font-size: 13px; line-height: 19px; color: var(--on-surface-variant); min-height: 38px; }
.price-card ul { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card li { display: flex; gap: 10px; font-size: 14px; line-height: 20px; color: var(--on-surface); }
.price-card li .tick {
  flex: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--surface-highest);
  color: var(--on-surface-variant);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.price-card li.is-highlighted { color: var(--high-emphasis); font-weight: 500; }
.price-card li.is-highlighted .tick { background: var(--accent-dim); color: var(--accent); }
.price-card--featured li.is-highlighted .tick { background: var(--secondary-dim); color: var(--secondary); }

/* ----------------------------------------------------------------
   Social proof / testimonials
   ---------------------------------------------------------------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.quote-card {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background-color 200ms ease, transform 200ms ease;
  position: relative;
  overflow: hidden;
}
.quote-card:hover { background: var(--surface-high); transform: translateY(-3px); }
.quote-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 120px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  font-family: Georgia, serif;
}
.quote-card__stars { display: flex; gap: 4px; color: var(--secondary); font-size: 14px; }
.quote-card blockquote { font-size: 15px; line-height: 24px; color: var(--on-surface); flex: 1; font-style: italic; }
.quote-card__who { display: flex; align-items: center; gap: 12px; }
.quote-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-highest);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex: none;
  border: 2px solid var(--surface-highest);
}
.quote-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-card__name { font-size: 14px; font-weight: 700; color: var(--high-emphasis); }
.quote-card__role { font-size: 12px; color: var(--on-surface-variant); margin-top: 2px; }

/* ----------------------------------------------------------------
   CTA banner
   ---------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 32px;
  padding: 80px 56px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.08) 0%, transparent),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,0,0,0.08) 0%, transparent);
  pointer-events: none;
}
.cta-banner .eyebrow { color: var(--on-accent-muted); margin-bottom: 12px; }
.cta-banner h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--on-accent);
  margin-bottom: 16px;
}
/* on-accent-container is a dark ink in light mode (it belongs on the pale
   container, not on the accent fill), so banner copy uses the muted ink. */
.cta-banner p { color: var(--on-accent-muted); font-size: 17px; line-height: 26px; max-width: 460px; }
.cta-banner .btn {
  background: var(--on-accent);
  color: var(--accent);
  margin-top: 32px;
  font-size: 16px;
  height: 52px;
  padding: 0 32px;
}
.cta-banner .btn:hover { background: var(--on-accent-hover); }
.cta-banner__mascot {
  justify-self: center;
  width: min(260px, 55vw);
  animation: float 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) {
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    text-align: center;
  }
  .cta-banner p { margin: 0 auto; }
  .cta-banner .btn { margin: 24px auto 0; }
  .cta-banner__mascot { width: 160px; }
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.footer {
  background: var(--surface-lowest);
  padding: 72px 0 40px;
  border-top: 1px solid var(--surface-high);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand p {
  font-size: 14px;
  line-height: 22px;
  color: var(--on-surface-variant);
  margin-top: 16px;
  max-width: 280px;
}
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface-low);
  border: 0;
  color: var(--on-surface-variant);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 160ms ease, color 160ms ease;
  cursor: pointer;
}
.footer__social-btn:hover { background: var(--surface-high); color: var(--high-emphasis); }
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: var(--on-surface);
  transition: color 160ms ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer ul a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--surface-high);
  font-size: 13px;
  color: var(--outline);
  flex-wrap: wrap;
}
.footer__status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 3s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   Reveal animations
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.is-visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }

/* ----------------------------------------------------------------
   Misc utility
   ---------------------------------------------------------------- */
.muted { color: var(--on-surface-variant); }
.accent-text { color: var(--accent); }
.gold-text { color: var(--secondary); }
.num { font-variant-numeric: tabular-nums; }
.gradient-lime {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
