/* ============================================================
   RestroMate — landing page
   Dark, cinematic, photography-led. Motion is continuous:
   parallax on every image, drifting ambient light, a device that
   tilts to the cursor, counters that run, a marquee that never
   stops. All of it collapses under prefers-reduced-motion.
   ============================================================ */

:root {
  --bg:        #0c0806;   /* near-black, warm */
  --bg-2:      #14100c;
  --bg-3:      #1c1611;
  --ink:       #fdf8f3;
  --ink-2:     #c7b8aa;
  --ink-3:     #8d7f72;
  --line:      rgba(255, 225, 200, .12);
  --line-2:    rgba(255, 225, 200, .22);

  /* Heat. Amber is the brand; chili is the punctuation. */
  --hot:       #ff6b2c;
  --hot-2:     #ffa53d;
  --chili:     #e8312f;
  --gold:      #ffd08a;
  --mint:      #4ade9f;   /* "settled" — money in, only */

  --fs-1: clamp(1.05rem, 1rem + .3vw, 1.25rem);
  --fs-2: clamp(1.9rem, 1.3rem + 2.6vw, 3.6rem);
  --fs-3: clamp(2.9rem, 1.6rem + 5.6vw, 7.2rem);

  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --gut: clamp(1.15rem, 4vw, 4.5rem);
  --maxw: 1280px;

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-1);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--hot); color: #140d08; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--hot); color: #140d08; padding: .7rem 1.1rem;
  font-weight: 600; text-decoration: none;
}
.skip:focus { left: .5rem; top: .5rem; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.shell { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
  margin: 0;
  text-wrap: balance;
}

.h2 { font-size: var(--fs-2); }
.h2--mid { text-align: center; }

.kicker {
  font-family: var(--mono);
  font-size: .82rem;
  color: var(--hot-2);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--hot);
  flex: none;
}
.pricing .kicker { justify-content: center; }

.lede {
  font-size: clamp(1.02rem, .97rem + .3vw, 1.2rem);
  color: var(--ink-2);
  max-width: 48ch;
  margin: 1.3rem 0 0;
  line-height: 1.65;
}

/* ---------- ambient drifting light ---------- */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.orb--1 { width: 46vw; height: 46vw; left: -12vw; top: -8vw;  background: #ff6b2c55; animation: drift1 26s ease-in-out infinite; }
.orb--2 { width: 38vw; height: 38vw; right: -10vw; top: 34vh; background: #e8312f44; animation: drift2 32s ease-in-out infinite; }
.orb--3 { width: 30vw; height: 30vw; left: 30vw; bottom: -12vw; background: #ffa53d33; animation: drift3 38s ease-in-out infinite; }

@keyframes drift1 { 50% { transform: translate3d(8vw, 6vh, 0) scale(1.15); } }
@keyframes drift2 { 50% { transform: translate3d(-7vw, -8vh, 0) scale(1.2); } }
@keyframes drift3 { 50% { transform: translate3d(5vw, -6vh, 0) scale(.85); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  color: #170d07;
  background: linear-gradient(135deg, var(--hot-2), var(--hot));
  padding: .85rem 1.7rem;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .22s cubic-bezier(.2,.9,.3,1), box-shadow .22s ease;
  box-shadow: 0 8px 26px rgba(255,107,44,.28);
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55), transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 38px rgba(255,107,44,.42); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }

.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }
.btn--sm { padding: .55rem 1.15rem; font-size: .9rem; }
.btn--line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn--line:hover { background: rgba(255,255,255,.07); box-shadow: none; }
button.btn { font-family: var(--sans); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .85rem var(--gut);
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.topbar.is-stuck {
  background: rgba(12,8,6,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: .6rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; font-family: var(--display);
  font-weight: 800; font-size: 1.12rem; letter-spacing: -.03em;
}
.brand__mark {
  width: 27px; height: 27px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--hot-2), var(--hot));
  color: #140d08; border-radius: 8px;
  font-family: var(--mono); font-size: .9rem; font-weight: 500;
}
.topnav { display: flex; gap: 1.6rem; margin-left: auto; font-size: .95rem; }
.topnav a { text-decoration: none; color: var(--ink-2); position: relative; padding-block: 2px; }
.topnav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--hot); transition: width .25s ease;
}
.topnav a:hover { color: var(--ink); }
.topnav a:hover::after { width: 100%; }
@media (max-width: 880px) { .topnav { display: none; } .topbar .btn { margin-left: auto; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* min-height, not height: on a short window the stats row would
     otherwise be clipped a few pixels below the fold, which reads as a
     broken page rather than an invitation to scroll. Letting the hero
     grow past the viewport costs nothing and keeps the row whole. */
  height: auto;
  padding: 6rem var(--gut) 5.5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: -12% 0; z-index: -2; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(12,8,6,.97) 8%, rgba(12,8,6,.82) 42%, rgba(12,8,6,.35) 72%, rgba(12,8,6,.72) 100%),
    linear-gradient(to top, var(--bg) 2%, transparent 45%);
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 62% 45%, transparent 30%, rgba(12,8,6,.75) 100%);
}

.hero__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__head { font-size: var(--fs-3); margin-bottom: 1.7rem; }
.hero__head .line { display: block; overflow: hidden; }
.hero__head .line > span { display: block; }
.line--hot > span {
  background: linear-gradient(100deg, var(--hot-2), var(--hot) 45%, var(--chili));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.hero__sub { font-size: clamp(1.02rem, .96rem + .42vw, 1.25rem); color: var(--ink-2); max-width: 44ch; margin: 0 0 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3rem; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3.2rem); }
.stat { display: flex; flex-direction: column; gap: .1rem; }
.stat b {
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.6rem);
  font-weight: 500; line-height: 1; color: var(--gold);
}
.stat span { font-size: .88rem; color: var(--ink-3); }

/* --- floating device --- */
.hero__device { position: relative; display: flex; justify-content: center; perspective: 1100px; }
.device {
  position: relative;
  width: min(310px, 84%);
  border-radius: 30px;
  padding: 11px;
  background: linear-gradient(150deg, rgba(255,255,255,.16), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(0,0,0,.35);
  transform-style: preserve-3d;
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes float {
  50% { transform: translateY(-16px); }
}
.device__glow {
  position: absolute; inset: -30% -18%;
  background: radial-gradient(ellipse, rgba(255,107,44,.5), transparent 66%);
  filter: blur(40px); z-index: -1;
  animation: pulseGlow 5s ease-in-out infinite;
}
@keyframes pulseGlow { 50% { opacity: .55; transform: scale(1.1); } }

.device__screen {
  background: linear-gradient(175deg, #171009, #0d0906);
  border-radius: 21px;
  padding: 1rem .95rem 1.05rem;
  font-size: .84rem;
}
.dsc__bar {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: .72rem; color: var(--ink-3);
  padding-bottom: .8rem; border-bottom: 1px solid var(--line);
}
.dsc__live { display: inline-flex; align-items: center; gap: .38rem; color: var(--mint); }
.dsc__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); animation: blip 1.8s ease-in-out infinite; }
@keyframes blip { 50% { opacity: .2; transform: scale(.7); } }

.dsc__rows { padding: .3rem 0; }
.dsc__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem .1rem; border-bottom: 1px dashed var(--line);
  font-size: .86rem;
}
.dsc__row b { font-family: var(--mono); font-weight: 500; color: var(--ink-2); }
.dsc__row--late { color: var(--hot-2); }
.dsc__note { font-size: .74rem; color: var(--ink-3); font-style: italic; padding: .3rem .1rem; }
.dsc__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .85rem .1rem .1rem; color: var(--ink-3); font-size: .8rem;
}
.dsc__amt { font-size: 1.22rem; color: var(--ink); }
.dsc__cta {
  margin-top: .9rem; text-align: center;
  background: linear-gradient(135deg, var(--hot-2), var(--hot));
  color: #170d07; font-weight: 600; font-size: .85rem;
  padding: .6rem; border-radius: 100px;
}

.device__chip {
  position: absolute;
  font-family: var(--mono); font-size: .72rem;
  padding: .45rem .85rem; border-radius: 100px;
  background: rgba(20,14,10,.78);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.device__chip--1 { top: 12%; left: -4%; color: var(--mint); animation: float 6s ease-in-out infinite .8s; }
.device__chip--2 { bottom: 16%; right: -2%; color: var(--gold); animation: float 8s ease-in-out infinite .3s; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .7rem; color: var(--ink-3);
}
.hero__scroll span {
  width: 1px; height: 34px;
  background: linear-gradient(var(--hot), transparent);
  animation: dropLine 2s ease-in-out infinite;
}
@keyframes dropLine { 50% { transform: scaleY(.4); transform-origin: top; } }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 5rem; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__device { order: -1; margin-bottom: 1rem; }
  .device { width: min(260px, 72%); }
  .hero__scroll { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--bg-2), var(--bg-3), var(--bg-2));
  overflow: hidden; padding: .95rem 0; position: relative; z-index: 1;
}
.strip__track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.strip:hover .strip__track { animation-play-state: paused; }
.strip__list {
  display: flex; gap: 2.8rem; margin: 0; padding: 0 1.4rem;
  list-style: none; font-size: .95rem; color: var(--ink-2); white-space: nowrap;
}
.strip__list li { display: flex; align-items: center; gap: .75rem; }
.strip__list li::before {
  content: ""; width: 6px; height: 6px; flex: none;
  border-radius: 50%; background: var(--hot);
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   REVEALS — used by every section
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s cubic-bezier(.2,.8,.25,1), transform .75s cubic-bezier(.2,.8,.25,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============================================================
   SERVICE
   ============================================================ */
.service { padding: clamp(4.5rem, 10vw, 9rem) 0; position: relative; z-index: 1; }
.service__layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
.steps { list-style: none; margin: 0; padding: 0 0 26vh; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem;
  padding: clamp(1.7rem, 3.2vw, 2.8rem) 0;
  border-top: 1px solid var(--line);
  opacity: .3;
  transition: opacity .45s ease;
}
.step:first-child { border-top: 0; }
.step.is-active { opacity: 1; }
.step__no {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--line-2); border-radius: 50%;
  font-family: var(--mono); font-size: .9rem; color: var(--ink-3);
  transition: background .4s ease, color .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.step.is-active .step__no {
  background: linear-gradient(135deg, var(--hot-2), var(--hot));
  border-color: transparent; color: #170d07;
  box-shadow: 0 0 26px rgba(255,107,44,.5);
}
.step__head { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.7rem); margin-bottom: .5rem; }
.step__body { margin: 0; color: var(--ink-2); max-width: 44ch; font-size: 1rem; }
.step__body em { color: var(--gold); font-style: italic; }

.service__stage { position: sticky; top: calc(50vh - 215px); }
.stage { position: relative; height: 430px; display: grid; place-items: center; }
.scene {
  grid-area: 1 / 1; width: 100%;
  display: flex; justify-content: center;
  opacity: 0; transform: translateY(22px) scale(.96);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.25,1);
  pointer-events: none;
}
.scene.is-on { opacity: 1; transform: none; }

.pane {
  width: min(310px, 100%);
  background: linear-gradient(165deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 1rem 1.05rem 1.1rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.pane--dark { background: linear-gradient(165deg, #16100b, #0b0805); }
.pane__bar {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: .74rem; color: var(--ink-3);
  padding-bottom: .75rem; margin-bottom: .3rem; border-bottom: 1px solid var(--line);
}

.floor { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; padding-top: .4rem; }
.tbl {
  aspect-ratio: 1; border: 1px solid var(--line-2); border-radius: 10px;
  display: grid; place-content: center; font-family: var(--mono);
  font-size: .82rem; color: var(--ink-2); background: rgba(255,255,255,.03);
}
.tbl i { display: block; font-style: normal; font-size: .62rem; color: var(--ink-3); text-align: center; }
.tbl.is-busy { background: rgba(255,107,44,.09); color: var(--ink-3); }
.tbl.is-target {
  border-color: var(--hot); color: var(--hot-2);
  box-shadow: 0 0 0 3px rgba(255,107,44,.18), 0 0 22px rgba(255,107,44,.35);
}
.scene.is-on .tbl.is-target { animation: tap 1.3s ease-out .3s; }
@keyframes tap { 40% { transform: scale(.9); } }

.kds__row {
  display: grid; grid-template-columns: 42px 1fr auto; gap: .7rem;
  align-items: center; padding: .68rem .1rem;
  border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: .82rem;
}
.kds__row:last-child { border-bottom: 0; }
.kds__age { color: var(--ink-3); font-size: .74rem; }
.kds__row.is-old .kds__age { color: var(--chili); }
.kds__tbl { color: var(--hot-2); font-size: .74rem; }
.kds__note { grid-column: 2 / -1; color: var(--ink-3); font-size: .72rem; font-style: italic; }
.kds__row.is-new { animation: newRow .55s ease-out; }
@keyframes newRow {
  from { opacity: 0; transform: translateY(-10px); background: rgba(255,107,44,.14); }
}

.calc { font-family: var(--mono); font-size: .85rem; padding-top: .3rem; }
.calc__row { display: flex; justify-content: space-between; padding: .48rem 0; }
.calc__row--hot { color: var(--hot-2); }
.scene.is-on .calc__row--hot { animation: slideIn .5s ease-out both; }
.scene.is-on .calc__row--hot:nth-of-type(2) { animation-delay: .3s; }
.scene.is-on .calc__row--hot:nth-of-type(3) { animation-delay: .48s; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-14px); } }
.calc__row--tot {
  border-top: 1px solid var(--line-2); margin-top: .35rem;
  padding-top: .7rem; font-size: 1.05rem; color: var(--ink);
}
.seal {
  margin-top: 1rem; text-align: center; font-family: var(--mono); font-size: .76rem;
  color: var(--mint); border: 1px solid var(--mint); border-radius: 100px; padding: .5rem;
}
.scene.is-on .seal { animation: popIn .55s cubic-bezier(.2,1.5,.4,1) .45s both; }
@keyframes popIn { from { opacity: 0; transform: scale(.7); } }

@media (max-width: 900px) {
  .service__layout { grid-template-columns: 1fr; }
  .service__stage { position: static; margin-bottom: 1.5rem; }
  .stage { height: 360px; }
  .steps { padding-bottom: 0; }
  .step { opacity: 1; }
  .step.is-active .step__no, .step__no {
    background: linear-gradient(135deg, var(--hot-2), var(--hot));
    border-color: transparent; color: #170d07;
  }
}

/* ============================================================
   PHOTO BAND
   ============================================================ */
.band {
  position: relative; height: clamp(300px, 46vw, 520px);
  overflow: hidden; display: grid; place-items: center;
  z-index: 1;
}
.band__img { position: absolute; inset: -18% 0; width: 100%; height: 136%; object-fit: cover; }
.band__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--bg), rgba(12,8,6,.55) 30%, rgba(12,8,6,.55) 70%, var(--bg)),
    radial-gradient(ellipse at center, rgba(255,107,44,.16), transparent 62%);
}
.band__line {
  position: relative;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 1rem + 3vw, 3.4rem);
  letter-spacing: -.035em; line-height: 1.05;
  text-align: center; max-width: 16ch;
  margin: 0; padding-inline: var(--gut);
  text-shadow: 0 4px 40px rgba(0,0,0,.8);
}

/* ============================================================
   FEATURES
   ============================================================ */
.feat { padding: clamp(4.5rem, 10vw, 9rem) 0; position: relative; z-index: 1; }
.feat__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem; margin-top: clamp(2.2rem, 4vw, 3.2rem);
}
.card {
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.25,1), border-color .35s ease, background .35s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(255,107,44,.16), transparent 70%);
  opacity: 0; transition: opacity .35s ease;
}
.card:hover {
  transform: translateY(-7px);
  border-color: var(--line-2);
  background: linear-gradient(165deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
}
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.2rem; margin-bottom: .55rem; position: relative; }
.card p { margin: 0; color: var(--ink-2); font-size: .96rem; line-height: 1.62; position: relative; }

@media (max-width: 900px) { .feat__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feat__grid { grid-template-columns: 1fr; } }

/* ============================================================
   KITCHEN
   ============================================================ */
.kitchen { position: relative; padding: clamp(4.5rem, 10vw, 9rem) 0; overflow: hidden; z-index: 1; }
.kitchen__bg { position: absolute; inset: -14% 0; width: 100%; height: 128%; object-fit: cover; }
.kitchen__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg), rgba(12,8,6,.93) 22%, rgba(12,8,6,.93) 78%, var(--bg));
}
.kitchen__grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.ticks { list-style: none; margin: 2rem 0 0; padding: 0; color: var(--ink-2); font-size: .98rem; }
.ticks li { padding: .6rem 0 .6rem 1.8rem; position: relative; border-top: 1px solid var(--line); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 1.15rem;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--hot); box-shadow: 0 0 12px var(--hot);
}

.kds {
  background: linear-gradient(170deg, #17110c, #0a0705);
  border: 1px solid var(--line-2); border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.65);
  font-family: var(--mono);
}
.kds__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 1.05rem; border-bottom: 1px solid var(--line);
  font-size: .82rem; color: var(--ink-3);
}
.kds__list { min-height: 310px; }
.kds__list .kds__row { padding: .78rem 1.05rem; }

@media (max-width: 900px) { .kitchen__grid { grid-template-columns: 1fr; } }

/* ============================================================
   BILLING
   ============================================================ */
.billing { padding: clamp(4.5rem, 10vw, 9rem) 0; position: relative; z-index: 1; }
.billing__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.facts {
  margin: 2.2rem 0 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .8rem;
}
.facts > div {
  background: rgba(255,255,255,.035); border: 1px solid var(--line);
  border-radius: 12px; padding: .85rem 1rem;
}
.facts dt { font-family: var(--mono); font-size: .74rem; color: var(--hot-2); margin-bottom: .2rem; }
.facts dd { margin: 0; font-size: .94rem; color: var(--ink-2); }

.split {
  background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  border: 1px solid var(--line-2); border-radius: 20px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.split__bar {
  display: flex; height: 150px; border-radius: 12px; overflow: hidden;
  background: rgba(0,0,0,.3);
}
.split__seg {
  width: 0; display: flex; flex-direction: column; justify-content: flex-end;
  gap: .15rem; padding: .7rem .6rem; overflow: hidden; white-space: nowrap;
  transition: width 1.2s cubic-bezier(.2,.8,.25,1);
}
.split__seg span { font-size: .76rem; color: rgba(23,13,7,.72); }
.split__seg b { font-size: .85rem; font-weight: 500; color: #170d07; }
.split__seg--base { background: linear-gradient(160deg, #4a3524, #35251a); }
.split__seg--base span { color: var(--ink-3); }
.split__seg--base b { color: var(--ink-2); }
.split__seg--c { background: linear-gradient(160deg, var(--hot-2), var(--hot)); }
.split__seg--s { background: linear-gradient(160deg, var(--hot), var(--chili)); }

.split__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
  color: var(--ink-3); font-size: .95rem;
}
.split__amount { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--gold); }
.split__amount::before { content: "₹"; font-size: .6em; opacity: .55; margin-right: .08em; }

@media (max-width: 900px) { .billing__grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: clamp(4.5rem, 10vw, 9rem) 0; position: relative; z-index: 1; }
.plans {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem; margin-top: clamp(2.4rem, 4vw, 3.4rem);
}
.plan {
  background: linear-gradient(170deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.5rem, 2.6vw, 2rem);
  display: flex; flex-direction: column; position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.25,1), border-color .35s ease;
}
.plan:hover { transform: translateY(-8px); border-color: var(--line-2); }
.plan--free {
  border-color: rgba(255,107,44,.45);
  background: linear-gradient(170deg, rgba(255,107,44,.14), rgba(255,255,255,.015));
  box-shadow: 0 0 50px rgba(255,107,44,.14);
}
.plan__tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--hot-2), var(--hot));
  color: #170d07; font-size: .7rem; font-weight: 600;
  padding: .25rem .8rem; border-radius: 100px; white-space: nowrap;
}
.plan__name { font-size: 1.22rem; margin-bottom: .7rem; }
/* A priced tier and a "Contact us" tier set at different sizes, so
   without a shared floor the cards' buttons land on different lines.
   One min-height on both puts every CTA on the same baseline. */
.plan__price, .plan__tbd { min-height: 2.2rem; display: flex; align-items: baseline; gap: .3rem; }
.plan__price { font-family: var(--mono); font-size: clamp(1.7rem, 3vw, 2.2rem); line-height: 1; color: var(--gold); }
.plan__price small { font-family: var(--sans); font-size: .8rem; color: var(--ink-3); }
.plan__tbd { font-size: 1.1rem; color: var(--ink-3); align-items: center; }
.plan__lines { list-style: none; margin: 1.4rem 0 1.7rem; padding: 0; display: grid; gap: .6rem; font-size: .94rem; color: var(--ink-2); }
.plan__lines li { display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: baseline; }
.plan__lines li::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--hot); transform: translateY(-1px); }
.plan__cta { margin-top: auto; }
.plan__cta .btn { display: block; text-align: center; }
.pricing__note { text-align: center; color: var(--ink-3); font-size: .92rem; margin: 2.2rem auto 0; max-width: 52ch; }

@media (max-width: 980px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .plans { grid-template-columns: 1fr; } }

/* ============================================================
   START / FORM
   ============================================================ */
.start { position: relative; padding: clamp(4.5rem, 10vw, 9rem) 0; overflow: hidden; z-index: 1; }
.start__bg { position: absolute; inset: -14% 0; width: 100%; height: 128%; object-fit: cover; }
.start__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg), rgba(12,8,6,.95) 20%, rgba(12,8,6,.95) 80%, var(--bg));
}
.start__grid {
  position: relative; display: grid; grid-template-columns: .88fr 1.12fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.start__alt { margin-top: 1.6rem; color: var(--ink-3); font-size: .96rem; }
.start__alt a { color: var(--hot-2); }

.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--line-2); border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
}
.field { display: flex; flex-direction: column; }
.field--wide, .form__foot { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 500; margin-bottom: .4rem; }
.opt { color: var(--ink-3); font-weight: 400; }
.field input, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: rgba(0,0,0,.3); border: 1px solid var(--line-2);
  border-radius: 11px; padding: .72rem .85rem; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--hot);
  box-shadow: 0 0 0 3px rgba(255,107,44,.18);
  background: rgba(0,0,0,.45);
}
.field.is-bad input, .field.is-bad textarea { border-color: var(--chili); }
.err { font-size: .83rem; color: #ff8a86; margin: .35rem 0 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__foot { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .3rem; }
.form__msg { font-size: .94rem; margin: 0; color: var(--ink-2); }
.form__msg.is-ok { color: var(--mint); }
.form__msg.is-bad { color: #ff8a86; }

@media (max-width: 900px) { .start__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { border-top: 1px solid var(--line); padding: clamp(2rem, 4vw, 3rem) 0; position: relative; z-index: 1; }
.foot__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; }
.foot__brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--display); font-weight: 800; }
.foot__line { margin: 0; color: var(--ink-3); font-size: .93rem; flex: 1 1 260px; }
.foot__nav { display: flex; gap: 1.5rem; font-size: .93rem; }
.foot__nav a { color: var(--ink-2); text-decoration: none; }
.foot__nav a:hover { color: var(--hot-2); }

/* ============================================================
   REDUCED MOTION — everything still, everything visible
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .scene { opacity: 0; }
  .scene.is-on { opacity: 1; transform: none; }
  .step { opacity: 1; }
  .orb { animation: none; }
  .hero__img { animation: none; }
}

/* No-JS fallback */
.no-js [data-reveal] { opacity: 1; transform: none; }
.no-js .scene[data-scene="0"] { opacity: 1; transform: none; }
.no-js .step { opacity: 1; }
.no-js .split__seg--base { width: 82%; }
.no-js .split__seg--c { width: 9%; }
.no-js .split__seg--s { width: 9%; }
