@import url("./tokens.css");

/* ============================================
   Lyftora — Landing Page Styles
   Tokens live in design-tokens/tokens.json and
   are generated to css/tokens.css. Do not redeclare.
   ============================================ */

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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: clip;
  cursor: none;
}

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

button,
input {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: none;
}

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

ul {
  list-style: none;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Custom cursor ---------- */
.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  transition: width .18s ease, height .18s ease, background .18s ease, opacity .2s;
  will-change: transform;
  mix-blend-mode: difference;
}

.cursor {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
}

.cursor.is-hover {
  width: 20px;
  height: 20px;
  background: var(--lime);
}

.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
}

@media (hover: none),
(max-width: 720px) {
  body {
    cursor: auto;
  }

  button,
  a {
    cursor: pointer;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 12px 12px auto 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: var(--r-pill);
}

.brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lime) 40%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }
}

.nav-links {
  display: none;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
}

.nav-links a {
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--ink);
}

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

.nav-cta {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  transition: transform .15s ease, background .2s;
}

.nav-cta:hover {
  background: var(--coral);
  transform: rotate(-2deg);
}

/* ---------- Marquee ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  margin-top: 80px;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll-x 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  white-space: nowrap;
  align-items: center;
}

.ticker-track .star {
  font-family: var(--sans);
  font-weight: 700;
  font-style: normal;
  color: var(--lime);
  font-size: 0.8em;
}

@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 48px 0 96px;
  overflow: hidden;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float 14s ease-in-out infinite;
}

.blob.b1 {
  width: 420px;
  height: 420px;
  background: var(--lime);
  top: -80px;
  right: -60px;
}

.blob.b2 {
  width: 360px;
  height: 360px;
  background: var(--coral);
  bottom: 10%;
  left: -80px;
  animation-delay: -5s;
}

.blob.b3 {
  width: 300px;
  height: 300px;
  background: var(--violet);
  top: 30%;
  right: 30%;
  animation-delay: -9s;
  opacity: 0.35;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -30px) scale(1.08);
  }

  66% {
    transform: translate(-30px, 20px) scale(0.95);
  }
}

.hero-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-top: 24px;
  position: relative;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  font-size: 13px;
  font-weight: 500;
}

.eyebrow-pill .badge {
  background: var(--ink);
  color: var(--lime);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 11px;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.hero-headline em {
  font-style: italic;
  color: var(--coral);
}

.hero-headline .word {
  display: inline-block;
  opacity: 1;
  transform: none;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 52ch;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, background .2s;
  position: relative;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--coral);
}

.btn-ghost {
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn .arrow {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  transition: transform .3s;
}

.btn:hover .arrow {
  transform: translateX(4px) rotate(-45deg);
}

/* ---------- Hero collage ---------- */
.hero-collage {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

@media (min-width: 900px) {
  .hero-collage {
    grid-template-columns: 1.2fr 0.9fr 1.1fr;
    grid-template-rows: auto;
  }
}

.card-stat {
  background: var(--ink);
  color: var(--cream);
  padding: 28px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.card-stat .sticker {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--lime);
  color: var(--ink);
}

.card-stat .big {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.card-stat .label {
  font-size: 14px;
  opacity: 0.7;
}

/* Phone mockup with 3D tilt */
.card-phone {
  background: linear-gradient(145deg, var(--lime), #B6E823);
  border-radius: var(--r-lg);
  padding: 32px 0;
  display: grid;
  place-items: center;
  perspective: 1400px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.card-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 0%, rgba(255, 255, 255, .5), transparent 60%);
}

.phone-3d {
  width: min(260px, 80%);
  aspect-ratio: 9/19;
  background: var(--ink);
  border-radius: 34px;
  padding: 8px;
  transform: rotate3d(1, -0.3, 0, 0deg);
  transition: transform .2s ease-out;
  box-shadow: 0 40px 60px -20px rgba(0, 0, 0, .3);
  position: relative;
  z-index: 1;
}

.phone-screen-2 {
  width: 100%;
  height: 100%;
  background: var(--ink-2);
  border-radius: 28px;
  overflow: hidden;
  padding: 32px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--cream);
}

.ph-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0.6;
}

.ph-title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  margin-top: 6px;
}

.ph-chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: var(--lime);
  color: var(--ink);
  margin-top: 4px;
}

.ph-rep {
  margin-top: 8px;
  background: rgba(255, 255, 255, .06);
  padding: 10px;
  border-radius: 12px;
}

.ph-rep-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.ph-rep-row strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.ph-dots {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.ph-dots span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .1);
}

.ph-dots span.on {
  background: var(--lime);
}

.ph-ring-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  padding: 10px;
  border-radius: 12px;
}

.ph-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 60%, rgba(255, 255, 255, .1) 0);
  display: grid;
  place-items: center;
  position: relative;
}

.ph-ring::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--ink-2);
}

.ph-ring span {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
}

.ph-ring-wrap small {
  font-size: 10px;
  opacity: .6;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.ph-ring-wrap strong {
  font-size: 13px;
  font-weight: 500;
}

.card-quote {
  background: var(--coral);
  color: var(--cream);
  padding: 28px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  position: relative;
}

.card-quote .q-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: .7;
  color: var(--lime);
}

.card-quote p {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  font-style: italic;
}

.card-quote .who {
  margin-top: 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-quote .who i {
  font-style: normal;
  font-family: var(--mono);
  opacity: 0.7;
}

/* Coin interaction card */
.card-coin {
  background: var(--cream-2);
  padding: 24px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}

.coin-badge {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--cream);
}

.coin-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.coin-small {
  font-size: 13px;
  color: var(--muted);
}

.coin-counter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
}

.coin-counter .rupee {
  font-size: 28px;
  color: var(--muted);
}

.coin-btn {
  margin-top: auto;
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: transform .1s;
}

.coin-btn:active {
  transform: scale(.94);
}

/* ---------- Section frame ---------- */
.sec {
  padding: 120px 0;
  position: relative;
}

.sec-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
  align-items: flex-start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.sec-title em {
  color: var(--coral);
  font-style: italic;
}

.sec-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 60ch;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

/* ---------- Subscription comparison ---------- */
.compare {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
  border-radius: var(--r-xl);
  margin: 0 12px;
}

.compare-head {
  color: var(--cream);
}

.compare-head .kicker {
  color: var(--lime);
}

.compare-head .sec-title em {
  color: var(--lime);
}

.compare-chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.cmp-row {
  display: grid;
  grid-template-columns: 170px 1fr 120px;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media (max-width: 720px) {
  .cmp-row {
    grid-template-columns: 110px 1fr 90px;
    gap: 10px;
    font-size: 13px;
  }
}

.cmp-app {
  font-family: var(--serif);
  font-size: 22px;
}

.cmp-app small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  opacity: .5;
  letter-spacing: .06em;
}

.cmp-track {
  height: 20px;
  background: rgba(255, 255, 255, .05);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}

.cmp-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--coral), #FFB04B);
  border-radius: var(--r-pill);
  transition: width 1.1s cubic-bezier(.2, .8, .2, 1);
  transform-origin: left;
}

.cmp-row.win .cmp-bar {
  background: var(--lime);
  box-shadow: 0 0 24px color-mix(in srgb, var(--lime) 50%, transparent);
}

.cmp-row.win .cmp-app {
  color: var(--lime);
}

.cmp-cost {
  text-align: right;
  font-family: var(--mono);
  font-size: 16px;
}

.cmp-row.win .cmp-cost {
  color: var(--lime);
  font-weight: 600;
}

.cmp-row.is-visible .cmp-bar {
  width: var(--w);
}

.cmp-row:nth-child(1) .cmp-bar {
  transition-delay: .0s;
}

.cmp-row:nth-child(2) .cmp-bar {
  transition-delay: .1s;
}

.cmp-row:nth-child(3) .cmp-bar {
  transition-delay: .2s;
}

.cmp-row:nth-child(4) .cmp-bar {
  transition-delay: .3s;
}

.cmp-row:nth-child(5) .cmp-bar {
  transition-delay: .45s;
}

.years {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.years span {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.years-pills {
  display: flex;
  gap: 6px;
}

.years-pill {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--mono);
  font-size: 13px;
  transition: all .2s;
}

.years-pill.active {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

/* ---------- Features bento ---------- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 760px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
  }

  .b-1 {
    grid-column: span 3;
    grid-row: span 2;
  }

  .b-2 {
    grid-column: span 3;
    grid-row: span 1;
  }

  .b-3 {
    grid-column: span 3;
    grid-row: span 1;
  }

  .b-4 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .b-5 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .b-6 {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.b-card {
  background: var(--cream-2);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.b-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.b-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.b-card p {
  font-size: 14px;
  color: var(--muted);
  max-width: 34ch;
}

.b-card .tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--cream);
}

.b-1 {
  background: var(--lime);
}

.b-1 h3 {
  font-size: 42px;
}

.b-3 {
  background: var(--ink);
  color: var(--cream);
}

.b-3 p {
  color: color-mix(in srgb, var(--cream) 70%, transparent);
}

.b-3 .tag {
  background: var(--cream);
  color: var(--ink);
}

.b-5 {
  background: var(--coral);
  color: var(--cream);
}

.b-5 p {
  color: color-mix(in srgb, var(--cream) 80%, transparent);
}

.b-5 .tag {
  background: var(--cream);
  color: var(--ink);
}

/* Rep counter inside a card */
.rep-card {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rep-num {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transition: transform .12s ease;
}

.rep-num.bump {
  transform: scale(1.1);
}

.rep-card button {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
}

.rep-card .hint {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Rotating stamp */
.stamp-wrap {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}

.stamp-wrap svg {
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}

.stamp-wrap::after {
  content: "\2605";
  position: absolute;
  font-size: 22px;
  color: var(--ink);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Coach chat ---------- */
.coach-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1000px) {
  .coach-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.coach-copy li {
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  transition: color .2s, padding .2s;
}

.coach-copy li:hover {
  color: var(--coral);
  padding-inline-start: 8px;
}

.coach-copy li span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.chat-box {
  background: var(--ink);
  color: var(--cream);
  padding: 28px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  min-height: 480px;
}

.chat-head-2 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 8px;
}

.ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--sky));
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  display: grid;
  place-items: center;
}

.chat-head-2 strong {
  font-size: 15px;
}

.chat-head-2 small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  opacity: .5;
}

.chat-head-2 .live {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-head-2 .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}

.bb {
  max-width: 85%;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 18px;
  line-height: 1.45;
}

.bb.user {
  align-self: flex-end;
  background: rgba(255, 255, 255, .08);
  border-bottom-right-radius: 6px;
}

.bb.coach {
  align-self: flex-start;
  background: var(--lime);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}

.bb.typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  background: var(--lime);
  color: var(--ink);
}

.bb.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  animation: tdot 1.1s ease-in-out infinite;
}

.bb.typing span:nth-child(2) {
  animation-delay: .15s;
}

.bb.typing span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes tdot {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: .5;
  }

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.send-row {
  margin-top: auto;
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.send-row input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .06);
  color: var(--cream);
  outline: none;
  font-size: 14px;
}

.send-row input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.send-row button {
  padding: 10px 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
  border-radius: var(--r-pill);
  font-size: 14px;
  transition: transform .1s;
}

.send-row button:active {
  transform: scale(.95);
}

/* ---------- Plate builder ---------- */
.plate-lab {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
  margin-top: 40px;
}

@media (min-width: 900px) {
  .plate-lab {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.plate-stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.plate-disk {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .9), rgba(245, 240, 230, .7) 55%, rgba(220, 210, 195, .9) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .06),
    inset 0 -20px 40px rgba(0, 0, 0, .08),
    0 40px 60px -30px rgba(0, 0, 0, .25);
  transform: rotate(0deg);
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.plate-stage.spin .plate-disk {
  transform: rotate(180deg);
}

.plate-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.plate-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.plate-ring circle {
  transition: stroke-dasharray .7s cubic-bezier(.2, .8, .2, 1);
}

.plate-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
}

.plate-center .k {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 400;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.plate-center .k small {
  font-family: var(--mono);
  font-size: 13px;
  opacity: .6;
  display: block;
  margin-top: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.plate-center .k em {
  font-style: italic;
  color: var(--coral);
}

/* food chips flying onto plate */
.chip-fly {
  position: absolute;
  pointer-events: none;
  font-size: 52px;
  line-height: 1;
  animation: chipFly .9s cubic-bezier(.2, 1.6, .3, 1) forwards;
  z-index: 5;
}

@keyframes chipFly {
  0% {
    transform: translate(var(--fx, 0), var(--fy, 0)) scale(.3) rotate(0);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 0) scale(1) rotate(var(--fr, 0));
    opacity: 1;
  }
}

.plate-items {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  overflow: hidden;
}

.plate-items .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: plateIn .7s cubic-bezier(.2, 1.6, .3, 1);
}

@keyframes plateIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: .92;
  }
}

/* macro bars */
.macros {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.macro-bar {
  background: rgba(0, 0, 0, .04);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
}

.macro-bar .t {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.macro-bar .t span:first-child {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.macro-bar .t span:last-child {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.macro-bar .track {
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .08);
  overflow: hidden;
}

.macro-bar .fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width .8s cubic-bezier(.2, .8, .2, 1);
}

.macro-p .fill {
  background: #FF5A3C;
}

.macro-c .fill {
  background: #F6D040;
}

.macro-f .fill {
  background: #7B5CFF;
}

/* ingredient grid */
.lab-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lab-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lab-head h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.lab-head h4 em {
  font-style: italic;
  color: var(--coral);
}

.lab-head .meal-pill {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .06);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lab-head .meal-pill button {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: all .2s;
  font-weight: 600;
}

.lab-head .meal-pill button.on {
  background: var(--ink);
  color: var(--cream);
}

.ing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.ing {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  text-align: left;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2, 1.8, .4, 1), border-color .2s, box-shadow .25s;
  overflow: hidden;
}

.ing:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 14px 26px -14px rgba(0, 0, 0, .18);
}

.ing .emoji {
  font-size: 30px;
  line-height: 1;
}

.ing .nm {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.ing .kc {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
}

.ing .count {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--coral);
  color: #fff;
  opacity: 0;
  transform: scale(.6);
  transition: all .3s cubic-bezier(.2, 1.8, .4, 1);
}

.ing.added .count {
  opacity: 1;
  transform: scale(1);
}

.ing.added {
  border-color: var(--coral);
  background: color-mix(in srgb, var(--coral) 8%, #fff);
}

.ing .pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.ing.just .pulse {
  animation: ingPulse .6s ease-out;
}

@keyframes ingPulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--coral) 60%, transparent);
  }

  100% {
    box-shadow: 0 0 0 18px transparent;
  }
}

.lab-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.lab-actions .clr {
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, .12);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  font-weight: 600;
}

.lab-actions .clr:hover {
  border-color: var(--ink);
}

.lab-actions .save {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .25s;
  cursor: pointer;
}

.lab-actions .save:hover {
  background: var(--coral);
}

.lab-actions .goal {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lab-actions .goal b {
  color: var(--ink);
  font-weight: 700;
}

/* saved chip toast */
.saved-toast {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .4s cubic-bezier(.2, 1.8, .4, 1);
  pointer-events: none;
  white-space: nowrap;
}

.saved-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--lime);
  color: var(--ink);
  padding: 80px 0;
  border-radius: var(--r-xl);
  margin: 0 12px;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.stat {
  position: relative;
}

.stat .num {
  font-family: var(--serif);
  font-size: clamp(80px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.stat .ll {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stat .dd {
  margin-top: 6px;
  font-size: 15px;
  max-width: 28ch;
}

/* ---------- Pricing ---------- */
.pricing {
  text-align: center;
  padding: 140px 0 120px;
  position: relative;
}

.price-display-2 {
  position: relative;
  display: inline-block;
  margin-top: 32px;
  padding: 8px 24px;
}

.price-display-2 .num {
  font-family: var(--serif);
  font-size: clamp(160px, 28vw, 380px);
  line-height: 0.8;
  letter-spacing: -0.06em;
  display: inline-block;
  background: linear-gradient(180deg, var(--ink), color-mix(in srgb, var(--coral) 50%, var(--ink)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: none;
  transition: transform .2s ease;
}

.price-display-2 .num:hover {
  transform: rotate(-3deg) scale(1.03);
}

.price-display-2 .rupee {
  position: absolute;
  top: 22%;
  left: -4%;
  font-family: var(--serif);
  font-size: clamp(50px, 8vw, 110px);
  color: var(--muted);
}

.price-display-2 .once {
  position: absolute;
  right: -2%;
  top: 12%;
  transform: rotate(8deg);
  font-family: var(--sans);
  font-weight: 700;
  background: var(--lime);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, .15);
}

.price-para-2 {
  margin: 28px auto 0;
  max-width: 48ch;
  font-size: 17px;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.pricing .btn {
  margin-top: 28px;
}

.price-meta {
  margin-top: 22px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .06em;
}

.price-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.price-meta svg {
  width: 14px;
  height: 14px;
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
}

.faq details {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
  overflow: hidden;
  transition: background .2s;
}

.faq details:hover {
  background: var(--cream-2);
}

.faq summary {
  list-style: none;
  padding: 28px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  font-weight: 400;
  transition: color .2s, transform .25s;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--coral);
}

.faq .plus {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  display: grid;
  place-items: center;
  transition: transform .3s ease, background .25s, color .25s;
}

.faq details[open] .plus {
  transform: rotate(135deg);
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.faq .plus svg {
  width: 16px;
  height: 16px;
}

.faq .ans {
  padding: 0 8px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  max-width: 72ch;
}

/* ---------- Final CTA ---------- */
.final {
  background: var(--ink);
  color: var(--cream);
  padding: 140px 0;
  text-align: center;
  border-radius: var(--r-xl);
  margin: 0 12px 24px;
  position: relative;
  overflow: hidden;
}

.final h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-weight: 400;
  position: relative;
}

.final h2 em {
  color: var(--lime);
  font-style: italic;
}

.final p {
  margin-top: 24px;
  color: color-mix(in srgb, var(--cream) 70%, transparent);
  font-size: 18px;
}

.final .btn-primary {
  background: var(--lime);
  color: var(--ink);
  margin-top: 32px;
}

.final .btn-primary:hover {
  background: var(--coral);
  color: var(--cream);
}

.final .btn-primary .arrow {
  background: var(--ink);
  color: var(--lime);
}

/* ---------- Footer ---------- */
footer {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.foot-brand-big {
  font-family: var(--serif);
  font-size: clamp(60px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 14px;
}

.foot-col ul li {
  padding: 6px 0;
}

.foot-col ul li a {
  font-size: 15px;
  transition: color .2s;
}

.foot-col ul li a:hover {
  color: var(--coral);
}

.foot-bottom {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

@media (min-width: 760px) {
  .foot-bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* ---------- Confetti ---------- */
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

.confetti span {
  position: absolute;
  width: 10px;
  height: 14px;
  animation: confetti-fall 1.6s ease-out forwards;
}

@keyframes confetti-fall {
  0% {
    transform: translate(0, 0) rotate(0);
    opacity: 1;
  }

  100% {
    transform: translate(var(--dx), var(--dy)) rotate(720deg);
    opacity: 0;
  }
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-headline .word {
    opacity: 1;
    transform: none;
  }
}