@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ---------------------------------------------------------------------------
   Design tokens — mirrored from the Flutter app (lib/theme/app_theme.dart)
   so the site and the product read as one brand. The app is dark-only, so
   this page is too.

   Motion system (from ui-ux-pro-max motion DB + 21st.dev patterns):
   - easing: expo-out cubic-bezier(0.16,1,0.3,1)
   - ambient aurora blobs: blur 60-80px, opacity ~0.10-0.14, slow drift
   - spotlight cards: cursor-tracked radial glow + masked border reveal
   - reveals: small y offsets (12-24px), stagger ≤ 0.08s per child
--------------------------------------------------------------------------- */
:root {
  --bg: #0f0e0d;
  --surface: #171512;
  --surface-alt: #1c1a17;
  --input: #211e1b;
  --stroke: rgba(255, 255, 255, 0.07);
  --stroke-strong: rgba(255, 255, 255, 0.14);

  --text-primary: #f5f1ec;
  --text-secondary: #a8a099;
  --text-tertiary: #6e665e;

  --accent: #e8482b;
  --accent-light: #f2613f;
  --gold: #f5b544;
  --green: #16a34a;
  --green-soft: #5fcb7c;
  --blue: #4a8cff;

  --grad-accent: linear-gradient(145deg, var(--accent-light), var(--accent));

  --r-screen: 30px;
  --r-card: 18px;
  --r-field: 14px;
  --r-button: 15px;
  --r-chip: 11px;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1180px;
  --gutter: 24px;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
  /* pre-reveal translateX offsets must never widen the page; clip (unlike
     hidden) doesn't create a scroll container, so position:sticky survives */
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain over everything, extremely faint */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* ----------------------------- scroll progress ---------------------------- */

.progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 2.5px;
  z-index: 95;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(232, 72, 43, 0.6);
}

/* --------------------------------- layout -------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 116px);
  position: relative;
}

.section--tint {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018) 18%, rgba(255, 255, 255, 0.018) 82%, transparent);
}

.section__head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.7s var(--ease) 0.15s;
}

.reveal.in .eyebrow::before,
.reveal.in ~ * .eyebrow::before {
  transform: scaleX(1);
}

.section__head--center .eyebrow::before {
  display: none;
}

h2.section__title {
  font-size: clamp(30px, 4.4vw, 46px);
}

.section__sub {
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: clamp(15.5px, 1.5vw, 17.5px);
  line-height: 1.65;
}

.section__sub strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ----------------------------------- nav --------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(15, 14, 13, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.nav.is-stuck {
  border-bottom-color: var(--stroke);
  background: rgba(15, 14, 13, 0.9);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo__mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(232, 72, 43, 0.34);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.logo:hover .logo__mark {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 6px 22px rgba(232, 72, 43, 0.5);
}

.logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav__links {
  display: flex;
  gap: 26px;
  margin-inline-start: auto;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav__links a {
  position: relative;
  transition: color 0.2s ease;
  cursor: pointer;
  padding-block: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.35s var(--ease);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__links a.active {
  color: var(--text-primary);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  margin-inline-start: auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--text-primary);
  cursor: pointer;
  place-items: center;
}

.nav__toggle svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

/* --------------------------------- buttons ------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--r-button);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
}

.btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 6px 22px rgba(232, 72, 43, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 72, 43, 0.45), 0 0 42px rgba(232, 72, 43, 0.22);
}

.btn--primary:active {
  transform: translateY(0) scale(0.97);
}

/* shine sweep across primary buttons on hover */
.btn--beam::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}

.btn--beam:hover::after {
  left: 130%;
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--stroke-strong);
  color: var(--text-primary);
}

.btn--ghost:hover {
  background: var(--surface-alt);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.btn--ghost:active {
  transform: translateY(0) scale(0.97);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 13.5px;
}

/* ---------------------------------- hero --------------------------------- */

.hero {
  position: relative;
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}

/* aurora blobs (21st.dev "aurora hero" pattern, brand-toned) */
.hero__blobs {
  position: absolute;
  inset: -140px 0 0;
  pointer-events: none;
  will-change: transform;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}

.blob--1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(232, 72, 43, 0.34), transparent 68%);
  top: -140px;
  inset-inline-start: 2%;
  animation: drift-a 21s ease-in-out infinite alternate;
}

.blob--2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(245, 181, 68, 0.2), transparent 68%);
  top: 60px;
  inset-inline-end: -60px;
  animation: drift-b 27s ease-in-out infinite alternate;
}

.blob--3 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(242, 97, 63, 0.22), transparent 66%);
  bottom: -240px;
  inset-inline-start: 34%;
  animation: drift-c 24s ease-in-out infinite alternate;
}

@keyframes drift-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(90px, 50px) scale(1.14); }
}

@keyframes drift-b {
  from { transform: translate(0, 0) scale(1.08); }
  to { transform: translate(-70px, 80px) scale(0.94); }
}

@keyframes drift-c {
  from { transform: translate(0, 0) scale(0.96); }
  to { transform: translate(-90px, -60px) scale(1.1); }
}

.hero__glow {
  position: absolute;
  inset-inline-start: 50%;
  top: -320px;
  width: 900px;
  height: 640px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(232, 72, 43, 0.17), transparent 66%);
  pointer-events: none;
  filter: blur(20px);
}

/* cursor-follow spotlight (desktop only, driven by JS --mx/--my) */
.hero__cursor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 38%), rgba(242, 97, 63, 0.075), transparent 62%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero.has-cursor .hero__cursor {
  opacity: 1;
}

.hero__inner {
  position: relative;
  min-height: clamp(540px, 72vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

/* --- hero entrance sequence (staggered, gated on html.is-ready) --- */

.hero [data-seq] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

html.is-ready .hero [data-seq] {
  opacity: 1;
  transform: none;
}

html.is-ready .hero h1 .grad { transition-delay: 0.42s; }
html.is-ready .hero h1 .h1-reel { transition-delay: 0.55s; }
html.is-ready .hero__lede { transition-delay: 0.62s; }
html.is-ready .hero__actions { transition-delay: 0.74s; }
html.is-ready .hero__meta { transition-delay: 0.86s; }

/* dishes pop in around the type, back to front */
.dish[data-seq] {
  transform: translateY(26px) scale(0.82);
}

/* after entrance, dishes hand their transform to the parallax vars (the
   generic is-ready rule would otherwise pin them to transform:none) */
html.is-ready .hero .dish[data-seq] {
  transform: translate(calc(var(--px, 0) * var(--depth, 1) * 18px), calc(var(--py, 0) * var(--depth, 1) * 13px));
}

html.is-ready .dish--chai { transition-delay: 0.5s; }
html.is-ready .dish--biryani { transition-delay: 0.62s; }
html.is-ready .dish--jamun { transition-delay: 0.74s; }
html.is-ready .dish--kebab { transition-delay: 0.86s; }

/* char-split headline (JS wraps letters in .char) */
.hero h1 {
  font-size: clamp(46px, 7.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  perspective: 700px;
}

.hero h1 .line {
  display: block;
}

/* a tiny live reel embedded in the headline — "Watch." made literal */
.h1-reel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: 0.06em;
  width: clamp(74px, 8.6vw, 118px);
  height: clamp(40px, 4.7vw, 62px);
  margin-inline-start: clamp(12px, 1.6vw, 22px);
  border-radius: clamp(12px, 1.6vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  position: relative;
  transform: rotate(-3deg);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 34px rgba(232, 72, 43, 0.18);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
  cursor: pointer;
}

.h1-reel:hover {
  transform: rotate(-1deg) scale(1.07);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6), 0 0 50px rgba(232, 72, 43, 0.3);
}

.h1-reel__scene {
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(90% 90% at 24% 20%, rgba(245, 181, 68, 0.5), transparent 55%),
    radial-gradient(80% 80% at 78% 45%, rgba(232, 72, 43, 0.55), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(255, 122, 32, 0.5), transparent 65%),
    linear-gradient(160deg, #3c1d12, #150d08);
  animation: h1-reel-pan 7s ease-in-out infinite alternate;
}

@keyframes h1-reel-pan {
  from { transform: translate(0, 0) scale(1.05); }
  to { transform: translate(-5%, 4%) scale(1.16); }
}

.h1-reel svg {
  position: relative;
  width: 30%;
  height: auto;
  stroke: #fff;
  fill: rgba(255, 255, 255, 0.25);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.42em) rotateX(-58deg);
  transform-origin: 50% 100%;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: transform;
}

html.is-ready .hero h1 .char {
  opacity: 1;
  transform: none;
}

/* no-JS fallback: if chars were never split, lines are plain spans and visible */
.hero h1 .grad {
  display: inline-block;
  background: linear-gradient(110deg, var(--accent-light) 20%, var(--accent) 38%, #ffc98f 50%, var(--accent) 62%, var(--accent-light) 80%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite 1.4s;
}

@keyframes shimmer {
  0% { background-position: 130% 0; }
  55% { background-position: -90% 0; }
  100% { background-position: -90% 0; }
}


.hero__lede {
  margin: 26px auto 0;
  font-size: clamp(16px, 1.7vw, 18.5px);
  color: var(--text-secondary);
  line-height: 1.68;
  max-width: 600px;
}

.hero__lede strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

.hero__meta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 13.5px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__meta svg {
  width: 15px;
  height: 15px;
  stroke: var(--green-soft);
}

/* ---------------------------- dish medallions ------------------------------
   Floating hand-built CSS dishes around the headline (the 21st.dev
   "floating food hero" pattern, photo-free). Each is a top-down plate with
   its own micro-scene, a place label, mouse-parallax (JS sets --px/--py)
   and an idle bob. */

.hero__dishes {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.dish {
  position: absolute;
  width: calc(var(--s, 130px) * var(--k, 1));
  margin: 0;
  pointer-events: auto;
  transform: translate(calc(var(--px, 0) * var(--depth, 1) * 18px), calc(var(--py, 0) * var(--depth, 1) * 13px));
}

/* idle bob rides the independent translate channel so it composes with the
   JS parallax transform instead of fighting it */
.dish__disc {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 32% 26%, #262019, #131009 72%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.6),
    inset 0 2px 10px rgba(255, 255, 255, 0.06),
    0 0 44px rgba(232, 72, 43, 0.1);
  animation: dish-bob 6.5s ease-in-out infinite;
  transition: box-shadow 0.35s ease, scale 0.35s var(--ease);
}

.dish:hover .dish__disc {
  scale: 1.07;
  box-shadow:
    0 30px 64px rgba(0, 0, 0, 0.66),
    inset 0 2px 10px rgba(255, 255, 255, 0.08),
    0 0 60px rgba(232, 72, 43, 0.22);
}

.dish--kebab .dish__disc { animation-delay: -1.2s; }
.dish--jamun .dish__disc { animation-delay: -3.1s; }
.dish--chai .dish__disc { animation-delay: -4.6s; }
.dish--biryani .dish__disc { animation-delay: -2s; }

@keyframes dish-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -11px; }
}

.dish__disc i {
  position: absolute;
  display: block;
}

.dish__label {
  position: absolute;
  top: calc(100% + 11px);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(15, 14, 13, 0.82);
  border: 1px solid var(--stroke-strong);
  backdrop-filter: blur(8px);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-secondary);
}

/* positions (desktop) */
.dish--kebab { bottom: 16%; inset-inline-start: 3%; }
.dish--jamun { top: 13%; inset-inline-end: 5%; }
.dish--chai { top: 15%; inset-inline-start: 7%; }
.dish--biryani { bottom: 22%; inset-inline-end: 4%; }

/* out-of-focus plates far behind the type */
.dish-far {
  position: absolute;
  border-radius: 50%;
  filter: blur(7px);
  opacity: 0.4;
  background: radial-gradient(circle at 35% 30%, #2c231a, #17110b 75%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: dish-bob 9s ease-in-out infinite;
}

.dish-far--1 { width: 64px; height: 64px; top: 44%; inset-inline-start: 16%; animation-delay: -2s; }
.dish-far--2 { width: 46px; height: 46px; top: 56%; inset-inline-end: 18%; animation-delay: -5s; }

/* ---- kebab plate (top-down) ---- */

.dk-plate {
  inset: 7%;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #1f1812, #0f0b07 74%);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.dk-glow {
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 32, 0.4), transparent 68%);
  animation: glow-breathe 3.2s ease-in-out infinite alternate;
}

.dk-rod {
  inset-inline: 12%;
  height: 13%;
  border-radius: 999px;
  background: linear-gradient(90deg,
    #3a1c12 0 16%, #57291a 16% 30%, #2c130c 30% 47%,
    #5e2e1d 47% 63%, #35180f 63% 80%, #522718 80% 100%);
  box-shadow:
    0 -2px 4px rgba(255, 130, 45, 0.4) inset,
    0 3px 7px rgba(0, 0, 0, 0.6);
}

.dk-rod::after {
  content: '';
  position: absolute;
  inset-inline: 4%;
  top: -1px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 160, 70, 0.6) 35%, rgba(255, 160, 70, 0.2) 65%, transparent);
}

.dk-rod--1 { top: 36%; transform: rotate(-14deg); }
.dk-rod--2 { top: 56%; transform: rotate(11deg); }

.dk-ember {
  width: 7%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffb066;
  box-shadow: 0 0 6px 1px rgba(255, 140, 50, 0.85);
  opacity: 0;
  animation: dk-ember 3.6s linear infinite;
}

.dk-ember:nth-child(4) { bottom: 24%; inset-inline-start: 30%; --dx: 8px; }
.dk-ember:nth-child(5) { bottom: 20%; inset-inline-start: 56%; --dx: -10px; animation-delay: 1.2s; }
.dk-ember:nth-child(6) { bottom: 28%; inset-inline-start: 70%; --dx: 6px; animation-delay: 2.3s; width: 5%; }

@keyframes dk-ember {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translate(var(--dx, 0), -74px) scale(0.4); opacity: 0; }
}

.dk-smoke {
  bottom: 30%;
  inset-inline-start: 30%;
  width: 42%;
  height: 46%;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.15), transparent 70%);
  filter: blur(8px);
  opacity: 0;
  animation: smoke-rise 5.5s ease-in infinite;
}

@keyframes smoke-rise {
  0% { transform: translate(0, 0) scale(0.55); opacity: 0; }
  25% { opacity: 0.32; }
  100% { transform: translate(12px, -90px) scale(1.5); opacity: 0; }
}

/* ---- gulab jamun bowl (top-down) ---- */

.dj-bowl {
  inset: 9%;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #3a2113, #1d0f07 76%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 6px 16px rgba(0, 0, 0, 0.65);
}

.dj-ball {
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, #c06a3e 0%, #8a4526 34%, #572512 70%, #38160a 100%);
  box-shadow:
    inset -5px -8px 12px rgba(0, 0, 0, 0.55),
    inset 3px 4px 7px rgba(255, 170, 90, 0.28),
    0 6px 10px rgba(0, 0, 0, 0.5);
}

.dj-ball::after {
  content: '';
  position: absolute;
  top: 16%;
  inset-inline-start: 22%;
  width: 34%;
  height: 22%;
  border-radius: 50%;
  background: rgba(255, 236, 200, 0.55);
  filter: blur(2px);
  transform: rotate(-18deg);
}

.dj-ball--1 { top: 22%; inset-inline-start: 17%; }
.dj-ball--2 { top: 34%; inset-inline-start: 45%; width: 38%; z-index: 1; }
.dj-ball--3 { top: 52%; inset-inline-start: 22%; width: 30%; }

.dj-sheen {
  inset: 9%;
  border-radius: 50%;
  background: radial-gradient(60% 40% at 34% 24%, rgba(255, 214, 150, 0.16), transparent 70%);
}

.dj-spark {
  width: 9%;
  aspect-ratio: 1;
  background: #ffd9a0;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  opacity: 0;
  animation: twinkle 2.8s ease-in-out infinite;
}

.dj-spark:nth-child(6) { top: 20%; inset-inline-end: 20%; }
.dj-spark:nth-child(7) { bottom: 22%; inset-inline-end: 30%; animation-delay: 1.4s; width: 7%; }

/* ---- chai cup (top-down) ---- */

.dc-saucer {
  inset: 4%;
  border-radius: 50%;
  border: 2px solid rgba(245, 181, 68, 0.14);
  background: radial-gradient(circle at 36% 30%, #221710, #120c06 78%);
}

.dc-cup {
  inset: 17%;
  border-radius: 50%;
  background: #1d1208;
  box-shadow:
    inset 2px 3px 4px rgba(255, 186, 110, 0.25),
    0 6px 14px rgba(0, 0, 0, 0.55);
}

.dc-tea {
  inset: 25%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #b06a2e, #6e3a14 74%);
  box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.5);
}

/* crema swirl on the chai */
.dc-swirl {
  inset: 31%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255, 226, 180, 0.4);
  border-inline-end-color: rgba(255, 226, 180, 0.18);
  filter: blur(1px);
  animation: swirl-spin 7s linear infinite;
}

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

.dc-steam {
  inset-inline-start: 42%;
  top: 6%;
  width: 7%;
  height: 40%;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent 6%, rgba(255, 244, 230, 0.4) 50%, transparent 94%);
  filter: blur(4px);
  opacity: 0;
  transform-origin: 50% 100%;
  animation: steam-rise 3.8s ease-in-out infinite;
}

.dc-steam--2 { inset-inline-start: 56%; animation-delay: 1.6s; height: 32%; }

@keyframes steam-rise {
  0% { transform: translate(0, 14px) scaleY(0.55); opacity: 0; }
  35% { opacity: 0.5; }
  100% { transform: translate(var(--sx, 8px), -30px) scaleY(1.2); opacity: 0; }
}

/* ---- biryani handi (top-down) ---- */

.db-pot {
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #2c1c12, #150d07 76%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.6);
}

.db-rice {
  inset: 17%;
  border-radius: 50%;
  background-color: #c9a061;
  background-image:
    radial-gradient(2px 3.5px at 24% 30%, #e8c88f 40%, transparent 41%),
    radial-gradient(2px 3.5px at 58% 22%, #b98a4b 40%, transparent 41%),
    radial-gradient(2px 3.5px at 76% 46%, #ead0a0 40%, transparent 41%),
    radial-gradient(2px 3.5px at 38% 58%, #d9b27a 40%, transparent 41%),
    radial-gradient(2px 3.5px at 62% 72%, #b3843f 40%, transparent 41%),
    radial-gradient(2px 3.5px at 30% 78%, #ead0a0 40%, transparent 41%),
    radial-gradient(2px 3.5px at 80% 74%, #d9b27a 40%, transparent 41%),
    radial-gradient(2px 3.5px at 48% 40%, #f0dcb4 40%, transparent 41%);
  background-size: 46% 46%;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.35);
}

.db-saffron {
  height: 9%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 116, 43, 0.85), rgba(245, 181, 68, 0.7));
  filter: blur(1px);
}

.db-saffron--1 { top: 34%; inset-inline-start: 28%; width: 34%; transform: rotate(-18deg); }
.db-saffron--2 { top: 56%; inset-inline-start: 40%; width: 28%; transform: rotate(14deg); }

.db-mint {
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50% 0;
  background: #4e8f4a;
  transform: rotate(45deg);
}

.db-mint:nth-child(6) { top: 28%; inset-inline-start: 56%; }
.db-mint:nth-child(7) { top: 62%; inset-inline-start: 30%; transform: rotate(80deg); }
.db-mint:nth-child(8) { top: 48%; inset-inline-end: 22%; transform: rotate(15deg); }

/* twinkle shared with jamun sparkles */
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  50% { opacity: 0.9; transform: scale(1) rotate(24deg); }
}

/* --------------------------- the coal bed ---------------------------------
   A tandoor glow along the bottom of the hero with sparks drifting up. */

.hero__coals {
  position: absolute;
  inset-inline: -5%;
  bottom: -2%;
  height: 42%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(58% 90% at 50% 100%, rgba(232, 72, 43, 0.17), rgba(232, 72, 43, 0.05) 55%, transparent 75%);
}

.hero__coals .ember {
  position: absolute;
  bottom: 6%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffb066;
  box-shadow: 0 0 7px 1.5px rgba(255, 140, 50, 0.8);
  opacity: 0;
  animation: ember-rise 5.2s linear infinite;
}

@keyframes ember-rise {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 0.9; }
  70% { opacity: 0.6; }
  100% { transform: translate(var(--dx, 0px), -300px) scale(0.35); opacity: 0; }
}

.hero__coals .ember:nth-child(1) { inset-inline-start: 6%; --dx: 20px; }
.hero__coals .ember:nth-child(2) { inset-inline-start: 18%; --dx: -14px; animation-delay: 1.4s; }
.hero__coals .ember:nth-child(3) { inset-inline-start: 30%; --dx: 22px; animation-delay: 2.8s; width: 3px; height: 3px; }
.hero__coals .ember:nth-child(4) { inset-inline-start: 44%; --dx: -18px; animation-delay: 0.7s; }
.hero__coals .ember:nth-child(5) { inset-inline-start: 55%; --dx: 14px; animation-delay: 3.6s; width: 5px; height: 5px; }
.hero__coals .ember:nth-child(6) { inset-inline-start: 66%; --dx: -24px; animation-delay: 2s; }
.hero__coals .ember:nth-child(7) { inset-inline-start: 76%; --dx: 12px; animation-delay: 4.4s; width: 3px; height: 3px; }
.hero__coals .ember:nth-child(8) { inset-inline-start: 86%; --dx: -12px; animation-delay: 1s; }
.hero__coals .ember:nth-child(9) { inset-inline-start: 94%; --dx: 16px; animation-delay: 3.2s; }

/* ---------------------------------- stats -------------------------------- */

.stats {
  border-block: 1px solid var(--stroke);
  background: var(--surface);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--stroke);
}

.stat {
  background: var(--surface);
  padding: 30px 20px;
  text-align: center;
  transition: background 0.3s ease;
}

.stat:hover {
  background: var(--surface-alt);
}

.stat__n {
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}

.stat__l {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* --------------------------------- marquee ------------------------------- */

.marquee {
  overflow: hidden;
  padding-block: 22px;
  border-bottom: 1px solid var(--stroke);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__group span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-tertiary);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.marquee__group span:hover {
  color: var(--accent-light);
}

.marquee__group i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  margin-inline: 22px;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ------------------------- spotlight / glow cards -------------------------
   Adapted from the 21st.dev "spotlight card" pattern: a cursor-tracked radial
   highlight on the card body plus a masked ring that lights the border. --mx
   and --my are set per-card by JS. Hover-capable pointers only. */

.glow-card {
  position: relative;
}

.glow-card::before,
.glow-card::after {
  content: '';
  position: absolute;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.glow-card::before {
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(242, 97, 63, 0.1), transparent 62%);
}

.glow-card::after {
  inset: -1px;
  padding: 1px;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(242, 97, 63, 0.55), transparent 64%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

@media (hover: hover) and (pointer: fine) {
  .glow-card:hover::before,
  .glow-card:hover::after {
    opacity: 1;
  }
}

/* --------------------------------- pillars ------------------------------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar {
  padding: 32px 28px;
  border-radius: var(--r-card);
  background: var(--surface);
  border: 1px solid var(--stroke);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.35s var(--ease);
}

.pillar:hover {
  border-color: var(--stroke-strong);
  transform: translateY(-4px);
}

.pillar__n {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.pillar h3 {
  font-size: 20px;
  margin-bottom: 11px;
}

.pillar p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.62;
}

/* -------------------------------- features ------------------------------- */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feat {
  padding: 28px 26px;
  border-radius: var(--r-card);
  background: var(--surface);
  border: 1px solid var(--stroke);
  transition: border-color 0.25s ease, transform 0.35s var(--ease), background 0.25s ease;
}

.feat:hover {
  border-color: var(--stroke-strong);
  background: var(--surface-alt);
  transform: translateY(-4px);
}

.feat__icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(232, 72, 43, 0.13);
  border: 1px solid rgba(232, 72, 43, 0.22);
  margin-bottom: 18px;
  transition: transform 0.35s var(--ease);
}

.feat:hover .feat__icon {
  transform: scale(1.12) rotate(-5deg);
}

.feat__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-light);
}

.feat--gold .feat__icon {
  background: rgba(245, 181, 68, 0.12);
  border-color: rgba(245, 181, 68, 0.22);
}

.feat--gold .feat__icon svg {
  stroke: var(--gold);
}

.feat--green .feat__icon {
  background: rgba(95, 203, 124, 0.12);
  border-color: rgba(95, 203, 124, 0.22);
}

.feat--green .feat__icon svg {
  stroke: var(--green-soft);
}

.feat--blue .feat__icon {
  background: rgba(74, 140, 255, 0.12);
  border-color: rgba(74, 140, 255, 0.22);
}

.feat--blue .feat__icon svg {
  stroke: var(--blue);
}

.feat h3 {
  font-size: 17px;
  margin-bottom: 9px;
  letter-spacing: -0.015em;
}

.feat p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.62;
}

/* ------------------------------ business types --------------------------- */

.biz-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}

.biz-type {
  padding: 24px 18px;
  border-radius: var(--r-card);
  background: var(--surface);
  border: 1px solid var(--stroke);
  text-align: center;
  transition: border-color 0.25s ease, transform 0.35s var(--ease);
}

.biz-type:hover {
  border-color: rgba(232, 72, 43, 0.4);
  transform: translateY(-4px);
}

.biz-type svg {
  width: 25px;
  height: 25px;
  stroke: var(--accent-light);
  margin: 0 auto 13px;
  transition: transform 0.35s var(--ease);
}

.biz-type:hover svg {
  transform: scale(1.15);
}

.biz-type h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 5px;
}

.biz-type p {
  font-size: 12.5px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* -------------------------------- split card ----------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.panel {
  padding: clamp(28px, 3.4vw, 40px);
  border-radius: var(--r-card);
  background: var(--surface);
  border: 1px solid var(--stroke);
}

.panel--accent {
  background: linear-gradient(155deg, rgba(232, 72, 43, 0.11), rgba(23, 21, 18, 0.9) 52%);
  border-color: rgba(232, 72, 43, 0.24);
}

.panel h3 {
  font-size: clamp(20px, 2.3vw, 25px);
  margin-bottom: 14px;
}

.panel > p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.64;
}

.checks {
  margin-top: 24px;
  display: grid;
  gap: 13px;
}

.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.checks li b {
  color: var(--text-primary);
  font-weight: 600;
}

.checks svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-soft);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------- steps --------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  padding: 28px 26px;
  border-radius: var(--r-card);
  background: var(--surface);
  border: 1px solid var(--stroke);
  transition: border-color 0.25s ease, transform 0.35s var(--ease);
}

.step:hover {
  border-color: var(--stroke-strong);
  transform: translateY(-4px);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--grad-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 17px;
  box-shadow: 0 4px 14px rgba(232, 72, 43, 0.3);
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ------------------------------- architecture ---------------------------- */

.arch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.arch-card {
  padding: 30px 28px;
  border-radius: var(--r-card);
  background: var(--surface);
  border: 1px solid var(--stroke);
  transition: border-color 0.25s ease, transform 0.35s var(--ease);
}

.arch-card:hover {
  border-color: var(--stroke-strong);
  transform: translateY(-3px);
}

.arch-card__top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}

.arch-card__top svg {
  width: 21px;
  height: 21px;
  stroke: var(--accent-light);
  flex-shrink: 0;
}

.arch-card h3 {
  font-size: 18px;
}

.arch-card__tag {
  margin-inline-start: auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 4px 9px;
  border-radius: var(--r-chip);
  background: var(--input);
  border: 1px solid var(--stroke);
  white-space: nowrap;
}

.arch-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.62;
  margin-bottom: 17px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tags span {
  padding: 5px 11px;
  border-radius: var(--r-chip);
  background: var(--input);
  border: 1px solid var(--stroke);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.tags span:hover {
  border-color: rgba(232, 72, 43, 0.4);
  color: var(--text-primary);
}

/* ---------------------------------- FAQ ---------------------------------- */

.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.qa {
  border-radius: var(--r-card);
  background: var(--surface);
  border: 1px solid var(--stroke);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.qa[open] {
  border-color: var(--stroke-strong);
}

.qa summary {
  padding: 21px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.qa summary:hover {
  color: var(--accent-light);
}

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

.qa summary::after {
  content: '';
  inset-inline-start: auto;
  margin-inline-start: auto;
  width: 10px;
  height: 10px;
  border-inline-end: 2px solid var(--text-tertiary);
  border-block-end: 2px solid var(--text-tertiary);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.qa[open] summary::after {
  transform: rotate(-135deg);
}

.qa__body {
  padding: 0 24px 22px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.68;
}

.qa[open] .qa__body {
  animation: qa-in 0.4s var(--ease);
}

@keyframes qa-in {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* -------------------------------- contact --------------------------------- */

.split--contact {
  align-items: center;
}

.contact-mail {
  color: var(--accent-light);
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-mail:hover {
  color: var(--text-primary);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-field {
  display: grid;
  gap: 7px;
}

.cf-field span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--r-field);
  background: var(--input);
  border: 1px solid var(--stroke);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='m1 1.5 5 5 5-5' stroke='%23a8a099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-inline-end: 38px;
  cursor: pointer;
}

.cf-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--text-tertiary);
  font-weight: 500;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: rgba(242, 97, 63, 0.55);
  box-shadow: 0 0 0 3px rgba(232, 72, 43, 0.14);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 2px;
}

.cf-note {
  font-size: 12.5px;
  color: var(--text-tertiary);
}

.cf-error {
  font-size: 13px;
  font-weight: 600;
  color: #f87171;
}

.cf-success {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-soft);
}

/* honeypot — off-screen for humans, present for bots */
.cf-hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------------------------------- CTA ---------------------------------- */

.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-screen);
  padding: clamp(44px, 6vw, 76px) clamp(26px, 4vw, 60px);
  text-align: center;
  background: linear-gradient(150deg, rgba(242, 97, 63, 0.16), rgba(23, 21, 18, 0.94) 56%);
  border: 1px solid rgba(232, 72, 43, 0.26);
}

.cta::before {
  content: '';
  position: absolute;
  top: -180px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(232, 72, 43, 0.28), transparent 68%);
  pointer-events: none;
}

.cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta__blob--1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232, 72, 43, 0.3), transparent 66%);
  inset-inline-start: -80px;
  bottom: -140px;
  animation: drift-b 19s ease-in-out infinite alternate;
}

.cta__blob--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 181, 68, 0.2), transparent 66%);
  inset-inline-end: -60px;
  top: -100px;
  animation: drift-c 23s ease-in-out infinite alternate;
}

.cta > h2,
.cta > p,
.cta > .cta__actions {
  position: relative;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.cta p {
  margin: 18px auto 0;
  max-width: 540px;
  color: var(--text-secondary);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
}

.cta__actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}

/* --------------------------------- footer -------------------------------- */

.footer {
  border-top: 1px solid var(--stroke);
  padding-block: 56px 34px;
  background: var(--surface);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 44px;
}

.footer__about p {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.64;
  max-width: 320px;
}

.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.footer ul {
  display: grid;
  gap: 11px;
}

.footer li a,
.footer li span {
  font-size: 14.5px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer li a:hover {
  color: var(--text-primary);
}

.footer__bar {
  border-top: 1px solid var(--stroke);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-tertiary);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.footer__legal a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--text-primary);
}

.footer__bar .langs {
  display: flex;
  gap: 9px;
}

.footer__bar .langs span {
  padding: 4px 11px;
  border-radius: var(--r-chip);
  background: var(--input);
  border: 1px solid var(--stroke);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --------------------------------- reveal --------------------------------
   Variants via data-reveal: (default up) | left | right | scale */

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

.reveal[data-reveal='left'] {
  transform: translateX(-30px);
}

.reveal[data-reveal='right'] {
  transform: translateX(30px);
}

.reveal[data-reveal='scale'] {
  transform: scale(0.93);
}

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

/* ------------------------------- responsive ------------------------------ */

/* Dishes shrink as side space tightens, then drop to a tidy row under the
   copy where floating would collide with the headline. */
@media (max-width: 1240px) {
  .dish {
    --k: 0.78;
  }

  .dish--kebab { inset-inline-start: 0.5%; }
  .dish--jamun { inset-inline-end: 1%; }
  .dish--chai { inset-inline-start: 2%; }
  .dish--biryani { inset-inline-end: 1%; }
}

@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    min-height: 0;
    padding-bottom: 10px;
  }

  .hero__dishes {
    position: static;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(20px, 5vw, 42px);
    margin-top: 46px;
    order: 2;
  }

  .dish {
    position: static;
    width: 84px !important;
    transform: none !important;
  }

  .dish__label {
    position: static;
    display: block;
    transform: none;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: none;
    backdrop-filter: none;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }

  .dish-far {
    display: none;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .biz-types {
    grid-template-columns: repeat(3, 1fr);
  }

  .feat-grid,
  .pillars,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .arch {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: grid;
  }

  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    inset-inline: 0;
    flex-direction: column;
    gap: 0;
    padding: 10px var(--gutter) 18px;
    background: rgba(15, 14, 13, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--stroke);
    margin: 0;
  }

  .nav__links.is-open a {
    padding: 13px 0;
    border-bottom: 1px solid var(--stroke);
    font-size: 15.5px;
  }

  .nav__links.is-open a::after {
    display: none;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .arch {
    grid-template-columns: 1fr;
  }

  /* side-entrance reveals read poorly stacked — fall back to fade-up */
  .reveal[data-reveal='left'],
  .reveal[data-reveal='right'] {
    transform: translateY(24px);
  }

  .reveal[data-reveal='left'].in,
  .reveal[data-reveal='right'].in {
    transform: none;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
  }

  .stats__grid,
  .feat-grid,
  .pillars,
  .steps {
    grid-template-columns: 1fr;
  }

  .biz-types {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .marquee__group span {
    font-size: 13.5px;
  }

  .marquee__group i {
    margin-inline: 15px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    justify-self: stretch;
  }

  /* four dishes must fit a 375px row */
  .hero__dishes {
    gap: 12px;
  }

  .dish {
    width: 68px !important;
  }

  .dish__label {
    font-size: 9.5px;
  }
}

/* ----------------------------- reduced motion ----------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .hero [data-seq],
  .hero h1 .char {
    opacity: 1;
    transform: none;
  }

  .dish,
  .dish[data-seq] {
    transform: none;
  }

  .hero h1 .grad {
    animation: none;
    background-position: 50% 0;
  }

  .marquee__track {
    animation: none;
    flex-wrap: wrap;
  }

  .hero__cursor {
    display: none;
  }
}
