/* =========================================================
   HomeFood – Landing Page
   Palette: warm cream, terracotta, deep forest, gold accents
   ========================================================= */

:root{
  --cream:        #FBF6EE;
  --cream-2:      #F5EFE3;
  --ink:          #11150F;
  --ink-2:        #1B201A;
  --ink-soft:     #3A4137;
  --muted:        #6F7669;
  --line:         #E7DFCF;

  --primary:      #E63946;   /* HomeFood red */
  --primary-2:    #F04A56;
  --primary-soft: #FDE2E4;

  --accent:       #2F5D3A;   /* deep forest */
  --accent-2:     #3E7A4D;
  --accent-soft:  #DDE9DC;

  --gold:         #D9A441;
  --gold-soft:    #F5E5C0;

  --shadow-sm: 0 1px 2px rgba(20,16,8,.06), 0 2px 8px rgba(20,16,8,.04);
  --shadow-md: 0 4px 16px rgba(20,16,8,.08), 0 12px 32px rgba(20,16,8,.06);
  --shadow-lg: 0 12px 40px rgba(20,16,8,.12), 0 24px 80px rgba(20,16,8,.10);

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;

  --container: 1240px;
  --header-h: 72px;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --hand:  'Pacifico', cursive;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}
body.loading{ overflow:hidden; }
img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font: inherit; cursor:pointer; border:0; background:none; color:inherit; }
[data-lucide]{ width:18px; height:18px; }

/* ============== Cinematic Intro Animation ============== */
.intro{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    radial-gradient(circle at 30% 40%, #FBF6EE 0%, #F5EFE3 60%, #EDE5D2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transition: opacity .5s ease, visibility .5s ease;
}
.intro.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Decorative blobs */
.intro__blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  pointer-events: none;
}
.intro__blob--a{
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(230,57,70,.4), transparent 70%);
  top: -100px; left: -100px;
}
.intro__blob--b{
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(217,164,65,.35), transparent 70%);
  bottom: -150px; right: -150px;
}
.intro__blob--c{
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(47,93,58,.25), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.intro.is-playing .intro__blob--a{ animation: introBlobA 3.6s ease-out forwards; }
.intro.is-playing .intro__blob--b{ animation: introBlobB 3.6s ease-out forwards; }
.intro.is-playing .intro__blob--c{ animation: introBlobC 3.6s ease-out forwards; }
@keyframes introBlobA{
  0%   { opacity: 0; transform: translate(-30px,-30px) scale(.8); }
  30%  { opacity: .8; transform: translate(0,0) scale(1.1); }
  100% { opacity: .5; transform: translate(20px,40px) scale(1); }
}
@keyframes introBlobB{
  0%   { opacity: 0; transform: translate(40px,40px) scale(.8); }
  35%  { opacity: .7; transform: translate(0,0) scale(1.05); }
  100% { opacity: .4; transform: translate(-30px,-20px) scale(1); }
}
@keyframes introBlobC{
  0%, 30% { opacity: 0; }
  60%     { opacity: .5; }
  100%    { opacity: .3; }
}

/* Floating food emojis spiral in */
.intro__food{
  position: absolute;
  font-size: clamp(28px, 4vw, 56px);
  opacity: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.12));
  pointer-events: none;
  will-change: transform, opacity;
}
.intro__food--1{ top: 18%; left: 12%; }
.intro__food--2{ top: 22%; right: 14%; }
.intro__food--3{ bottom: 22%; left: 16%; }
.intro__food--4{ bottom: 18%; right: 18%; }
.intro__food--5{ top: 38%; left: 8%; }
.intro__food--6{ top: 42%; right: 9%; }
.intro__food--7{ bottom: 38%; left: 7%; }
.intro__food--8{ bottom: 32%; right: 6%; }

.intro.is-playing .intro__food{ animation: introFoodFly 3.6s cubic-bezier(.2,.7,.2,1) forwards; }
.intro.is-playing .intro__food--1{ animation-delay: 0.05s; --rot: -180deg; --tx: -60px; --ty: -40px; }
.intro.is-playing .intro__food--2{ animation-delay: 0.15s; --rot:  180deg; --tx:  60px; --ty: -40px; }
.intro.is-playing .intro__food--3{ animation-delay: 0.10s; --rot: -180deg; --tx: -60px; --ty:  40px; }
.intro.is-playing .intro__food--4{ animation-delay: 0.20s; --rot:  180deg; --tx:  60px; --ty:  40px; }
.intro.is-playing .intro__food--5{ animation-delay: 0.25s; --rot: -120deg; --tx: -80px; --ty: 0;     }
.intro.is-playing .intro__food--6{ animation-delay: 0.30s; --rot:  120deg; --tx:  80px; --ty: 0;     }
.intro.is-playing .intro__food--7{ animation-delay: 0.35s; --rot: -150deg; --tx: -50px; --ty:  60px; }
.intro.is-playing .intro__food--8{ animation-delay: 0.40s; --rot:  150deg; --tx:  50px; --ty: -60px; }

@keyframes introFoodFly{
  0%   { opacity: 0; transform: scale(0) rotate(var(--rot, 0)) translate(var(--tx, 0), var(--ty, 0)); }
  35%  { opacity: 1; transform: scale(1.15) rotate(0) translate(0, 0); }
  60%  { opacity: 1; transform: scale(1) rotate(0) translate(0, -8px); }
  85%  { opacity: 1; transform: scale(1) rotate(0) translate(0, 0); }
  100% { opacity: 0; transform: scale(.6) rotate(0) translate(0, -20px); }
}

/* Steam particles */
.intro__steam{
  position: absolute;
  width: 14px; height: 14px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0;
  pointer-events: none;
}
.intro__steam--1{ top: 38%; left: 48%; }
.intro__steam--2{ top: 42%; left: 50%; }
.intro__steam--3{ top: 40%; left: 52%; }
.intro.is-playing .intro__steam{ animation: introSteam 2.5s ease-out infinite; }
.intro.is-playing .intro__steam--1{ animation-delay: 1.2s; }
.intro.is-playing .intro__steam--2{ animation-delay: 1.5s; }
.intro.is-playing .intro__steam--3{ animation-delay: 1.8s; }
@keyframes introSteam{
  0%   { opacity: 0; transform: translateY(0) scale(.6); }
  30%  { opacity: .8; transform: translateY(-30px) scale(1); }
  100% { opacity: 0; transform: translateY(-80px) scale(1.6); }
}

/* Center stage */
.intro__stage{
  position: relative;
  text-align: center;
  z-index: 2;
}

/* Video intro */
.intro__video-wrap{
  width: clamp(220px, 18vw, 320px);
  margin: 0 auto 16px;
  opacity: 0;
  transform: translateY(-30px) scale(.95);
  position: relative;
}
.intro__video{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #111;
}
.intro__video-logo{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(251,246,238,.92);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.intro__video-logo img{
  display: block;
  width: 90px;
  height: auto;
}
.intro.is-playing .intro__video-wrap{
  animation: introVideoEnter 0.8s cubic-bezier(.34,1.56,.64,1) 0.05s forwards;
}
@keyframes introVideoEnter{
  0%   { opacity: 0; transform: translateY(-30px) scale(.92); }
  60%  { opacity: 1; transform: translateY(8px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* House SVG */
.intro__house{
  width: clamp(80px, 12vw, 130px);
  height: auto;
  margin: 0 auto 20px;
  opacity: 0;
  transform-origin: center;
}
.intro.is-playing .intro__house{
  animation: introHouseEnter 1.2s cubic-bezier(.34,1.56,.64,1) 0.95s forwards;
}
@keyframes introHouseEnter{
  0%   { opacity: 0; transform: scale(0) rotate(-180deg) translateY(40px); }
  60%  { opacity: 1; transform: scale(1.15) rotate(8deg) translateY(0); }
  80%  { transform: scale(.95) rotate(-3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Wordmark */
.intro__word{
  font-family: var(--hand);
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.intro__word > span{
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(-12deg);
  will-change: transform, opacity;
}
.intro__word-h, .intro__word-o, .intro__word-m, .intro__word-e{ color: #1F1F1F; }
.intro__word-f, .intro__word-o2, .intro__word-o3, .intro__word-d{ color: #E63946; }

.intro.is-playing .intro__word > span{
  animation: introLetterIn 0.7s cubic-bezier(.34,1.56,.64,1) forwards;
}
.intro.is-playing .intro__word-h  { animation-delay: 1.3s;  }
.intro.is-playing .intro__word-o  { animation-delay: 1.4s;  }
.intro.is-playing .intro__word-m  { animation-delay: 1.5s;  }
.intro.is-playing .intro__word-e  { animation-delay: 1.6s;  }
.intro.is-playing .intro__word-f  { animation-delay: 1.8s;  }
.intro.is-playing .intro__word-o2 { animation-delay: 1.9s;  }
.intro.is-playing .intro__word-o3 { animation-delay: 2.0s;  }
.intro.is-playing .intro__word-d  { animation-delay: 2.1s;  }

@keyframes introLetterIn{
  0%   { opacity: 0; transform: translateY(60px) rotate(-12deg) scale(.7); }
  60%  { opacity: 1; transform: translateY(-8px) rotate(3deg) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

/* Tagline */
.intro__tag{
  margin: 24px 0 0;
  font-family: var(--sans);
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
}
.intro.is-playing .intro__tag{
  animation: introTagIn 0.8s ease-out 2.4s forwards;
}
@keyframes introTagIn{
  0%   { opacity: 0; transform: translateY(20px); letter-spacing: .3em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: .12em; }
}

/* Skip hint */
.intro__skip{
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  pointer-events: none;
}
.intro.is-playing .intro__skip{ animation: introSkipIn 1s ease-out 2.8s forwards; }
@keyframes introSkipIn{
  0%   { opacity: 0; }
  100% { opacity: .55; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .intro__house,
  .intro__word > span,
  .intro__tag,
  .intro__skip,
  .intro__food,
  .intro__steam,
  .intro__blob{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============== Type ============== */
h1,h2,h3,h4,h5{ font-family: var(--serif); font-weight: 600; letter-spacing:-0.02em; line-height:1.05; margin:0; }
h1{ font-size: clamp(2.5rem, 6vw, 5.25rem); }
h2{ font-size: clamp(2rem, 4.4vw, 3.6rem); }
em{ font-style: italic; color: var(--primary); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--sans);
  font-size: 12px; font-weight:600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid var(--line);
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background: var(--primary); box-shadow:0 0 0 4px rgba(200,67,28,.15); animation:pulse 2.4s ease-in-out infinite; }
.eyebrow--light{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color:#E9E3D2;}
.eyebrow--accent{ background: var(--gold-soft); border-color:#EBD9A8; color:#7B5512; }
.eyebrow--accent .dot{ background: var(--gold);}

@keyframes pulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(200,67,28,.45);} 50%{ box-shadow:0 0 0 8px rgba(200,67,28,0);} }

/* Underline brush stroke */
.ink{ position:relative; display:inline-block; color: var(--ink); }
.ink__line{
  position:absolute; left:0; bottom:-6px; width:100%; height:14px;
  color: var(--primary); pointer-events:none;
  stroke-dasharray: 320; stroke-dashoffset: 320;
  animation: draw 1.6s ease-out 1.4s forwards;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }

/* ============== Buttons ============== */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .25s ease, background .2s ease, color .2s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn i{ width:16px; height:16px; }
.btn--primary{ background: var(--ink); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover{ background: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost{ background: transparent; color: var(--ink); border:1px solid var(--line); }
.btn--ghost:hover{ background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--accent{ background: var(--gold); color: var(--ink); }
.btn--accent:hover{ background: #C99432; transform: translateY(-2px); }
.btn--lg{ padding: 16px 28px; font-size: 15px; }
.btn--block{ width:100%; justify-content:center; }

/* App store buttons */
.store-btn{
  display:inline-flex; align-items:center; gap:12px;
  padding: 12px 18px;
  background: var(--ink); color: var(--cream);
  border-radius: 16px;
  transition: transform .25s ease, background .2s ease;
}
.store-btn:hover{ transform: translateY(-3px); background: var(--ink-2); }
.store-btn small{ display:block; font-size: 10.5px; opacity: .75; letter-spacing:.04em; text-transform:uppercase; }
.store-btn b{ display:block; font-size: 15px; font-weight: 600; line-height: 1.1; }
.store-btn--dark{ background: var(--ink); }
.store-btn--light{ background: rgba(255,255,255,.08); color: var(--cream); border:1px solid rgba(255,255,255,.15); }
.store-btn--light:hover{ background: rgba(255,255,255,.14); }

/* ============== Loader ============== */
.loader{
  position: fixed; inset:0; z-index: 200;
  background: var(--cream);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s ease, visibility .6s ease;
  overflow: hidden;
}
.loader::before,
.loader::after{
  content:""; position:absolute; border-radius:50%;
  filter: blur(80px); opacity: .55;
  pointer-events: none;
}
.loader::before{
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(230,57,70,.45), transparent 70%);
  top: -120px; left: -120px;
  animation: blobA 6s ease-in-out infinite alternate;
}
.loader::after{
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(217,164,65,.4), transparent 70%);
  bottom: -140px; right: -140px;
  animation: blobB 7s ease-in-out infinite alternate;
}
@keyframes blobA{ to{ transform: translate(60px, 40px) scale(1.1); } }
@keyframes blobB{ to{ transform: translate(-50px, -30px) scale(1.15); } }

.loader.is-done{ opacity:0; visibility:hidden; }

.loader__inner{
  text-align:center; width: min(420px, 88vw);
  position: relative; z-index: 2;
}
.loader__logo{
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 28px;
  animation: logoIn .9s cubic-bezier(.2,.7,.2,1) both;
}
.loader__logo img{
  width: 320px; height: auto; display: block;
  animation: logoBob 2.4s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes logoIn{
  0%   { opacity: 0; transform: translateY(20px) scale(.85); }
  100% { opacity: 1; transform: none; }
}
@keyframes logoBob{
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-6px) rotate(1.5deg); }
}

.loader__bar{
  height: 3px; width:100%;
  background: rgba(31,31,31,.08);
  border-radius: 999px; overflow: hidden;
}
.loader__bar span{
  display:block; height:100%; width:0;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  animation: load 1.6s ease-in-out forwards;
  border-radius: 999px;
}
.loader__txt{
  margin-top: 16px; font-size: 13px;
  color: var(--ink-soft);
  letter-spacing:.06em;
  animation: txtPulse 1.8s ease-in-out infinite;
}
@keyframes load{ 0%{ width:0;} 60%{ width:80%;} 100%{ width:100%;} }
@keyframes txtPulse{ 0%,100%{ opacity:.5; } 50%{ opacity:1; } }

/* ============== Nav ============== */
.nav{
  position: fixed; top: 0; left:0; right:0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  background: rgba(251,246,238,.6);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck{
  background: rgba(251,246,238,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__brand{
  display:flex; align-items:center; gap: 10px;
  font-family: var(--serif); font-weight: 700; font-size: 19px;
  letter-spacing:-0.02em;
}
.nav__logo{
  display:inline-flex; align-items:center; justify-content:center;
  width: 34px; height:34px; border-radius: 10px;
  background: var(--ink); color: var(--cream);
}
.nav__logoimg{
  height: 58px; width: auto; display:block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.05));
}
.nav__brand--footer .nav__logoimg{
  height: 64px;
  filter: brightness(0) invert(1);
}
.nav.is-stuck .nav__logoimg{ height: 48px; transition: height .25s ease; }
.nav__links{ display:flex; gap: 4px; }
.nav__links a{
  padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--ink-soft); border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav__links a:hover{ background: rgba(0,0,0,.05); color: var(--ink); }
.nav__cta{ display:flex; gap: 8px; }
.nav__burger{ display:none; flex-direction:column; gap:5px; padding:10px; }
.nav__burger span{ width:22px; height:2px; background: var(--ink); border-radius:2px; transition: transform .3s ease, opacity .3s ease; }
.nav__burger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2){ opacity:0; }
.nav__burger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.drawer{
  position: fixed; top: var(--header-h); left:0; right:0; z-index: 95;
  background: var(--cream);
  padding: 24px;
  display: none;
  flex-direction: column; gap: 12px;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.drawer a{ padding: 10px 4px; font-weight: 500; border-bottom: 1px dashed var(--line); }
.drawer a:last-child{ border:0; margin-top: 6px; }
.drawer.is-open{ display:flex; }

/* ============== Hero ============== */
.hero{
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 72px;
  overflow: hidden;
}
.hero__bg{
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero > *:not(.hero__bg){ position: relative; z-index: 1; }

/* Animated background blobs */
.hero__bg .blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
}
.hero__bg .blob--a{
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(230,57,70,.55), transparent 70%);
  top: -160px; left: -140px;
  animation: heroBlobA 14s ease-in-out infinite alternate;
}
.hero__bg .blob--b{
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(217,164,65,.5), transparent 70%);
  bottom: -180px; right: -160px;
  animation: heroBlobB 16s ease-in-out infinite alternate;
}
.hero__bg .blob--c{
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(47,93,58,.35), transparent 70%);
  top: 40%; left: 50%; transform: translate(-50%,-50%);
  animation: heroBlobC 18s ease-in-out infinite alternate;
}
@keyframes heroBlobA{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(80px, 60px) scale(1.15); }
}
@keyframes heroBlobB{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(-60px, -40px) scale(1.1); }
}
@keyframes heroBlobC{
  0%{ transform: translate(-50%,-50%) scale(1); }
  100%{ transform: translate(-40%,-60%) scale(1.2); }
}

/* Subtle grain texture */
.hero__bg .grain{
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(0,0,0,.03) 0, transparent 1px),
                    radial-gradient(circle at 70% 80%, rgba(0,0,0,.03) 0, transparent 1px);
  background-size: 4px 4px;
  opacity: .6;
}

/* Floating food emojis */
.hero__emoji{
  position: absolute;
  font-size: 42px;
  opacity: .35;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.12));
  animation: heroFloat 9s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.hero__emoji--1{ top: 18%; left: 6%; animation-delay: 0s; }
.hero__emoji--2{ top: 70%; left: 4%; animation-delay: -2s; font-size: 36px; }
.hero__emoji--3{ top: 12%; right: 8%; animation-delay: -4s; font-size: 38px; }
.hero__emoji--4{ top: 78%; right: 6%; animation-delay: -1s; font-size: 34px; }
.hero__emoji--5{ top: 45%; left: 2%; animation-delay: -3s; font-size: 32px; }
.hero__emoji--6{ top: 50%; right: 3%; animation-delay: -5s; font-size: 30px; }
@keyframes heroFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-22px) rotate(8deg); }
}

/* Toggle pills (always visible above slider) */
.hero__toggle-wrap{
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 5;
}
.hero__toggle{
  position: relative;
  display: inline-flex;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.hero__toggle-btn{
  position: relative;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 14px; font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .25s ease;
  white-space: nowrap;
}
.hero__toggle-btn i{ width: 16px; height: 16px; }
.hero__toggle-btn.is-active{ color: var(--ink); }
.hero__toggle-pill{
  position: absolute; left: 4px; top: 4px; bottom: 4px;
  width: calc(50% - 4px);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 1;
}
.hero__toggle-btn[data-slide="1"].is-active ~ .hero__toggle-pill{
  transform: translateX(100%);
}

/* Slider viewport + track (horizontal carousel) */
.hero__viewport{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__track{
  display: flex;
  width: 100%;
  transition: transform .85s cubic-bezier(.65,.05,.36,1);
  will-change: transform;
}
.hero__slide{
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  position: relative;
  /* Subtle entry animation when becoming active */
  opacity: .35;
  transition: opacity .6s ease;
}
.hero__slide.is-active{
  opacity: 1;
}
/* Smooth content fade-in on active slide */
.hero__slide .hero__copy,
.hero__slide .hero__art{
  transition: transform .8s cubic-bezier(.2,.7,.2,1), opacity .6s ease;
}
.hero__slide:not(.is-active) .hero__copy{ transform: translateY(20px); }
.hero__slide:not(.is-active) .hero__art{ transform: translateY(20px) scale(.97); }
.hero__slide.is-active .hero__copy,
.hero__slide.is-active .hero__art{
  transform: none;
}

/* Slider dot indicators */
.hero__dots{
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.hero__dot{
  width: 10px; height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, transform .25s ease, width .35s ease;
}
.hero__dot:hover{ transform: scale(1.15); }
.hero__dot.is-active{
  background: var(--primary);
  border-color: var(--primary);
  width: 28px;
  border-radius: 999px;
}

.hero__inner{
  display:grid; grid-template-columns: 45% 55%; gap: 40px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero__copy{
  max-width: 560px;
}
.hero__title{
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 14px 0 20px;
  color: var(--ink);
}
.hero__title em{
  font-style: italic; color: var(--primary);
}
.ink{
  position: relative;
  display: inline-block;
}
.ink__line{
  position: absolute; left: -4px; bottom: -4px;
  width: 100%; height: 18px;
  color: var(--gold);
  z-index: -1;
  opacity: .6;
}
.hero__lead{
  font-size: 18px; line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero__micro{
  margin-top: 18px;
  display:flex; flex-wrap:wrap; gap: 6px 16px;
  font-size: 13px; color: var(--ink-soft);
  align-items:center;
}
.hero__micro i{ width:14px; height:14px; color: var(--accent); margin-right: 2px; vertical-align: middle; }
.hero__ctas{
  display:flex; gap: 12px; margin-top: 32px;
}
.hero__stats{
  display:flex; gap: 32px; margin-top: 48px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.hero__stats b{
  font-family: var(--serif);
  font-size: 28px; font-weight: 600;
  color: var(--ink);
}
.hero__stats span{
  font-size: 13px; color: var(--muted);
  display:block; margin-top: 4px;
}
.hero__art{
  position: relative;
  display:flex; align-items:center; justify-content:center;
}
.hero__scroll{
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap: 8px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll span{
  width: 1px; height: 24px; background: var(--line);
}
@keyframes bounce{
  0%,100%{ transform: translate(-50%,0); }
  50%{ transform: translate(-50%,6px); }
}

/* Phone mock */
.hero__art{ position: relative; height: 640px; }
.phone{
  position: relative;
  width: 320px; height: 640px;
  background: var(--ink);
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.06);
  margin: 0 auto;
}
.phone__notch{
  position:absolute; top:14px; left:50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #000; border-radius: 999px; z-index: 2;
}
.phone__screen{
  position: relative; width:100%; height:100%;
  background: linear-gradient(180deg, var(--cream-2) 0%, #fff 100%);
  border-radius: 32px; overflow: hidden;
  padding: 50px 16px 16px;
  display:flex; flex-direction:column; gap:10px;
}
.phone__top{
  position:absolute; top: 18px; left:18px; right:18px;
  display:flex; justify-content:space-between;
  font-size: 11px; font-weight: 600; color: var(--ink); z-index: 3;
}
.phone__hi small{ color: var(--muted); font-size: 11px; }
.phone__hi h4{ font-size: 19px; margin-top: 2px; }
.phone__search{
  display:flex; align-items:center; gap:8px;
  padding: 10px 12px; border-radius: 12px;
  background: var(--cream); color: var(--muted);
  font-size: 12px; border: 1px solid var(--line);
}
.phone__search i{ width:14px; height:14px; }
.phone__chip-row{ display:flex; gap:6px; overflow-x:auto; }
.chip{ padding: 6px 12px; border-radius: 999px; font-size: 11.5px; background: var(--cream); color: var(--ink-soft); border: 1px solid var(--line); white-space: nowrap; }
.chip--on{ background: var(--ink); color: var(--cream); border-color: var(--ink); }
.phone__card{
  display:grid; grid-template-columns: 56px 1fr;
  gap: 10px; padding: 8px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.phone__card-img{ width:56px; height:56px; border-radius: 10px; overflow:hidden; flex:none; }
.phone__card-img img{ width:100%; height:100%; object-fit: cover; }
.phone__card-body{ display:flex; align-items:center; justify-content:space-between; gap:6px; }
.phone__card-body b{ font-size: 13px; display:block; }
.phone__card-body small{ font-size: 11px; color: var(--muted); }
.rating{ display:inline-flex; align-items:center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--ink); }
.rating i{ width: 13px; height: 13px; color: var(--gold); fill: var(--gold); }
.rating em{ font-style:normal; color: var(--muted); font-weight: 500; }

.phone__earn{
  margin-top: auto;
  padding: 14px; border-radius: 16px;
  background: linear-gradient(135deg, #1B201A, #2F5D3A);
  color: var(--cream);
}
.phone__earn small{ font-size: 11px; opacity: .7; text-transform:uppercase; letter-spacing:.1em; }
.phone__earn b{ display:block; font-family: var(--serif); font-size: 26px; font-weight: 600; margin-top: 2px; }
.earn-trend{ font-size: 11px; color: #B6E0BB; }

/* Buyer phone variants */
.phone__card--order{
  margin-top: 12px;
}
.phone__earn--green{
  background: linear-gradient(135deg, #1B201A, #1E3A28);
}

/* Order tracking UI */
.track{
  display:flex; flex-direction:column; gap: 12px;
  margin-top: 8px;
}
.track__row{
  display:flex; align-items:flex-start; gap: 10px;
  position: relative;
}
.track__row::before{
  content:""; position:absolute; left: 5px; top: 20px; bottom: -20px;
  width: 2px; background: var(--line);
}
.track__row:last-child::before{ display:none; }
.track__dot{
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--line);
  flex: none; margin-top: 4px;
  position: relative; z-index: 2;
}
.track__row--done .track__dot{
  background: var(--primary);
}
.track__row--active .track__dot{
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(230,57,70,.2);
  animation: pulseDot 1.6s ease-out infinite;
}
.track__row div{
  flex: 1;
}
.track__row b{ font-size: 13px; display:block; margin-bottom: 2px; }
.track__row small{ font-size: 11px; color: var(--muted); }

@keyframes pulseDot{
  0%{ box-shadow: 0 0 0 0 rgba(230,57,70,.4); }
  70%{ box-shadow: 0 0 0 10px rgba(230,57,70,0); }
  100%{ box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

/* Floating tags around phone */
.float-tag{
  position: absolute;
  display:inline-flex; align-items:center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  background: #fff; color: var(--ink); font-size: 12.5px; font-weight: 600;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.float-tag i{ width: 15px; height: 15px; color: var(--primary); }
.float-tag--a{ top: 60px; left: 0; }
.float-tag--b{ top: 240px; right: 0; animation-delay: -2s; }
.float-tag--b i{ color: var(--accent); }
.float-tag--c{ bottom: 40px; left: 10px; animation-delay: -4s; }
.float-tag--c i{ color: var(--gold); }

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

/* Decorative food emojis */
.food{ position:absolute; font-size: 48px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.18)); }
.food--1{ top: 20px; right: 20px; animation: spin 18s linear infinite; }
.food--2{ bottom: 80px; right: -10px; font-size: 38px; animation: float 7s ease-in-out infinite; }
.food--3{ top: 180px; left: -30px; font-size: 32px; animation: float 8s ease-in-out infinite -3s; }
.food--4{ bottom: 0; left: 40px; font-size: 30px; animation: float 9s ease-in-out infinite -1s; }
@keyframes spin{ to{ transform: rotate(360deg);} }

/* ============== 3D Showcase ============== */
.showcase{
  position: relative;
  min-height: 220vh;          /* gives runway for the pinned scroll-driven anim */
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 50%, var(--cream) 100%);
  perspective: 1400px;
}
/* Heading sits in normal flow ABOVE the sticky stage — can never overlap */
.showcase__head{
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 24px 24px;
  text-align: center;
}
.showcase__head .section__title{ margin-top: 14px; }
.showcase__head .section__sub{ margin-top: 14px; }

/* Sticky stage block */
.showcase__sticky{
  position: sticky; top: 0;
  height: 100vh; min-height: 640px;
  display:flex; align-items:center; justify-content:center;
  overflow: hidden;
}

.stage{
  position: relative;
  width: min(1100px, 100%);
  height: 540px;
  transform-style: preserve-3d;
}
.stage__phone{
  position:absolute; left:50%; top:50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  filter: drop-shadow(0 30px 60px rgba(20,16,8,.25));
  will-change: transform;
}
.phone--3d{
  width: 280px; height: 540px;
  transform-style: preserve-3d;
}

/* Orbiting cards */
.orbit{
  position:absolute; left:50%; top:50%;
  width: 200px; padding: 12px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  will-change: transform;
  display:flex; flex-direction:column; gap: 4px;
}
.orbit img{
  width: 100%; height: 110px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #F2C28E, #C8431C);
}
.orbit--1 img{ background: linear-gradient(135deg, #B5683A, #6B2810); }
.orbit--2 img{ background: linear-gradient(135deg, #E8B16E, #8B4513); }
.orbit--3 img{ background: linear-gradient(135deg, #F2A33C, #6B2810); }
.orbit--4 img{ background: linear-gradient(135deg, #95C682, #2F5D3A); }
.orbit b{ font-family: var(--serif); font-size: 16px; font-weight: 600; }
.orbit small{ font-size: 12px; color: var(--primary); font-weight: 600; }

.orbit--1{ transform: translate(-50%, -50%) translate3d(-360px, -180px, 80px) rotateY(18deg); }
.orbit--2{ transform: translate(-50%, -50%) translate3d(360px, -160px, 120px) rotateY(-18deg); }
.orbit--3{ transform: translate(-50%, -50%) translate3d(-340px, 160px, 60px) rotateY(15deg); }
.orbit--4{ transform: translate(-50%, -50%) translate3d(340px, 180px, 100px) rotateY(-15deg); }

/* Floating chips around stage */
.stage__chip{
  position:absolute;
  display:inline-flex; align-items:center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(17,21,15,.92); color: var(--cream);
  font-size: 12.5px; font-weight: 600;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.stage__chip i{ width:14px; height:14px; color: var(--gold); }
.stage__chip--a{ left: 8%; top: 8%; }
.stage__chip--b{ right: 6%; top: 18%; }
.stage__chip--c{ left: 12%; bottom: 10%; }

@media (max-width: 900px){
  .showcase{ height: auto; }
  .showcase__sticky{ position: relative; height: auto; padding: 60px 24px; }
  .stage{ height: 460px; transform: scale(.7); }
}
@media (max-width: 560px){
  .stage{ height: 380px; transform: scale(.5); }
  .showcase__sticky{ padding: 40px 16px; }
}

/* ============== Tilt cards ============== */
.tilt{
  transform-style: preserve-3d;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.tilt > *{ transform: translateZ(0); }
.tilt .dish__img,
.tilt .kuih-card__img{ transform: translateZ(20px); }
.tilt h3, .tilt h4{ transform: translateZ(14px); }

/* ============== Marquee ============== */
.marquee{
  background: var(--ink);
  color: var(--cream);
  border-block: 1px solid #2a2e26;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee__track{
  display:flex; gap: 48px;
  width: max-content;
  animation: marq 38s linear infinite;
}
.marquee__set{
  display:flex; align-items:center; gap: 48px;
  font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); font-weight: 500;
  letter-spacing:-.01em;
}
.marquee__set span{ white-space: nowrap; }
.marquee__set i{ font-style:normal; color: var(--primary); font-size: 18px; }
@keyframes marq{ to{ transform: translateX(-50%); } }

/* ============== Section base ============== */
.section{ padding: 100px 0; position:relative; }
.section--alt{ background: var(--cream-2); }
.section--soft{ background: #F1EAD9; }
.section--dark{
  background: var(--ink);
  color: var(--cream);
}
.section--dark h2, .section--dark h3, .section--dark h4{ color: var(--cream); }
.section--dark em{ color: var(--gold); }
.section--dark .ticks li{ color: rgba(255,255,255,.85); }
.section--dark .ticks li i{ color: var(--gold); }

.section__head{ max-width: 760px; margin: 0 auto 56px; text-align:center; }
.section__head--row{
  display:flex; align-items:flex-end; justify-content: space-between;
  gap: 32px; max-width: none; text-align: left;
}
.section__head--row .section__sub{ max-width: 380px; margin:0; }
.section__title{ margin-top: 14px; }
.section__sub{
  margin: 18px auto 0; max-width: 580px;
  color: var(--ink-soft); font-size: clamp(15px, 1.2vw, 17px);
}
.section__sub--light{ color: rgba(255,255,255,.7); }
.section__sub a{ color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

/* ============== Features grid ============== */
.features{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature{
  position:relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .3s ease;
}
.feature:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__ico{
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream-2); color: var(--primary);
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.feature__ico i{ width: 22px; height: 22px; }
.feature h3{ font-size: 22px; margin-bottom: 10px; letter-spacing:-0.02em; }
.feature p{ color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.feature--lg{ grid-column: span 2; grid-row: span 2; padding: 36px; }
.feature--lg h3{ font-size: 30px; }
.feature--lg p{ font-size: 16px; }
.feature__chart{
  display:flex; align-items:flex-end; gap: 8px; height: 120px; margin-top: 28px;
}
.feature__chart span{
  flex:1; height: var(--h);
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  border-radius: 8px 8px 4px 4px;
  transform-origin: bottom;
  animation: rise 1.4s cubic-bezier(.2,.7,.2,1) both;
}
.feature__chart span:nth-child(1){ animation-delay:.05s; }
.feature__chart span:nth-child(2){ animation-delay:.10s; opacity: .9; }
.feature__chart span:nth-child(3){ animation-delay:.15s; opacity:.85; background: linear-gradient(180deg, var(--primary), var(--gold));}
.feature__chart span:nth-child(4){ animation-delay:.20s; }
.feature__chart span:nth-child(5){ animation-delay:.25s; }
.feature__chart span:nth-child(6){ animation-delay:.30s; background: linear-gradient(180deg, var(--accent-2), var(--accent)); }
.feature__chart span:nth-child(7){ animation-delay:.35s; background: linear-gradient(180deg, var(--accent-2), var(--accent)); }
@keyframes rise{ from{ transform: scaleY(0); } to{ transform: scaleY(1); } }

.feature--accent{ background: var(--ink); color: var(--cream); border-color: transparent; }
.feature--accent h3{ color: var(--cream); }
.feature--accent .feature__ico{ background: rgba(255,255,255,.1); color: var(--gold); }
.feature--accent p{ color: rgba(255,255,255,.7); }
.feature__link{
  display:inline-flex; align-items:center; gap:6px;
  margin-top: 16px; font-weight: 600; font-size: 13.5px;
  color: var(--gold);
}
.feature__link:hover i{ transform: translateX(3px); }
.feature__link i{ width:14px; height:14px; transition: transform .25s ease; }

/* ============== Steps ============== */
.steps{
  list-style:none; padding: 0; margin: 0;
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; counter-reset: step;
}
.step{
  position:relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  overflow:hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.step:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num{
  font-family: var(--serif); font-size: 64px; font-weight: 600;
  color: var(--cream-2); position:absolute; top:14px; right:18px; line-height:1;
}
.step__ico{
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--ink); color: var(--cream);
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom: 22px; transition: background .2s ease;
}
.step__ico i{ width: 22px; height: 22px; }
.step:hover .step__ico{ background: var(--primary); }
.step h3{ font-size: 22px; margin-bottom: 8px; }
.step p{ color: var(--ink-soft); font-size: 14.5px; margin:0; }
.process__cta{ text-align:center; margin-top: 56px; }

/* ============== Dishes ============== */
.dishes{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dish{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  position:relative;
}
.dish:hover{ transform: translateY(-8px) rotate(-.4deg); box-shadow: var(--shadow-lg); }
.dish__tag{
  position:absolute; top: 14px; left:14px; z-index:2;
  background: var(--ink); color: var(--cream);
  padding: 5px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform:uppercase;
}
.dish__tag--best{ background: var(--primary); }
.dish__tag--top{ background: var(--gold); color: var(--ink); }
.dish__tag--late{ background: var(--accent); }
.dish__img{
  height: 220px;
  overflow: hidden;
  background: var(--cream-2);
}
.dish__img img{
  width:100%; height:100%; object-fit: cover; display:block;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.dish:hover .dish__img img{ transform: scale(1.08); }
.dish__body{ padding: 18px; }
.dish__body h3{ font-size: 19px; margin-bottom: 4px; }
.dish__body small{ color: var(--muted); font-size: 13px; }
.dish__meta{ display:flex; align-items:center; justify-content:space-between; margin-top: 14px; }

/* ============== Kuih ============== */
.kuih{ display:grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items:center; }
.kuih__copy h2{ margin-top: 14px; }
.kuih__copy em{ color: var(--gold); font-family: var(--hand); font-style:normal; font-size: .9em; }
.ticks{ list-style:none; padding:0; margin: 28px 0; display:flex; flex-direction:column; gap: 12px; }
.ticks li{ display:flex; align-items:center; gap: 10px; font-size: 15px; }
.ticks li i{ color: var(--gold); width: 18px; height: 18px; flex:none; }
.ticks--row{ flex-direction:row; flex-wrap: wrap; gap: 16px 24px; }

.kuih__grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.kuih-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform .35s ease, background .25s ease;
}
.kuih-card:nth-child(2){ transform: translateY(28px); }
.kuih-card:nth-child(4){ transform: translateY(28px); }
.kuih-card:hover{ transform: translateY(-6px); background: rgba(255,255,255,.07); }
.kuih-card:nth-child(2):hover{ transform: translateY(22px); }
.kuih-card:nth-child(4):hover{ transform: translateY(22px); }
.kuih-card__img{
  height: 160px; border-radius: 16px; margin-bottom: 14px;
  overflow:hidden; background: rgba(255,255,255,.04);
}
.kuih-card__img img{ width:100%; height:100%; object-fit: cover; display:block; transition: transform .8s ease; }
.kuih-card:hover .kuih-card__img img{ transform: scale(1.08); }
.kuih-card h4{ font-size: 17px; margin-bottom: 2px; }
.kuih-card small{ display:block; color: rgba(255,255,255,.55); font-size: 12.5px; margin-bottom: 10px; }
.rating--light{ color: #fff; }
.rating--light em{ color: rgba(255,255,255,.55); }

/* ============== Numbers ============== */
.numbers{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.num{ padding: 40px 24px; border-right: 1px solid var(--line); }
.num:last-child{ border-right: 0; }
.num b{ font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 600; letter-spacing:-0.03em; display:block; line-height:1; }
.num b i{ color: var(--gold); font-style:normal; }
.num h4{ font-family: var(--sans); font-size: 14px; font-weight: 600; margin-top: 12px; letter-spacing:-.01em; }
.num small{ color: var(--muted); font-size: 12.5px; }

/* ============== Stories ============== */
.stories{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  transition: transform .35s ease, box-shadow .35s ease;
}
.story:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.story--accent{ background: var(--ink); color: #fff; border-color: transparent; }
.story--accent blockquote{ color: #fff !important; }
.story--accent .story__head b{ color: #fff; }
.story--accent .story__earn{ color: var(--gold); }
.story--accent .story__earn small{ color: rgba(255,255,255,.7); }
.story__head{ display:flex; align-items:center; gap: 12px; margin-bottom: 18px; }
.story__avatar{ width: 52px; height: 52px; border-radius: 50%; overflow:hidden; flex:none; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.story__avatar img{ width:100%; height:100%; object-fit: cover; display:block; }
.story__head b{ display:block; font-size: 15px; }
.story__head small{ color: var(--muted); font-size: 12.5px; }
.story--accent .story__head small{ color: rgba(255,255,255,.55); }
.story__earn{
  margin-left: auto;
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.story__earn small{ font-family: var(--sans); font-size: 11px; color: var(--muted); margin-left: 2px; }
.story blockquote{
  margin:0; font-size: 16px; line-height: 1.55; color: var(--ink-soft);
  font-family: var(--serif); font-weight: 400;
}

/* ============== Coverage ============== */
.coverage{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cov-col{ background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.cov-col--soft{ background: var(--cream-2); }
.cov-tag{
  display:inline-block; padding: 6px 12px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent); font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform:uppercase;
  margin-bottom: 22px;
}
.cov-tag--live{ background: var(--accent); color: #fff; }
.city{
  display:flex; align-items:center; gap: 12px;
  padding: 22px 0; border-top: 1px solid var(--line);
  transition: padding .25s ease;
}
.cov-col--soft .city{ border-color: rgba(0,0,0,.08); }
.city:hover{ padding-left: 8px; }
.city h3{ font-size: 24px; flex:1; }
.city small{ color: var(--muted); font-size: 13px; }
.city i{ color: var(--ink); transition: transform .25s ease; }
.city:hover i{ transform: translate(3px,-3px); }
.city--soon{ opacity: .6; }
.city--soon h3{ color: var(--ink-soft); }

/* ============== Bonuses ============== */
.bonuses{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bonus{
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.bonus:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bonus__big{
  display:block;
  font-family: var(--serif); font-size: 56px; font-weight: 600; letter-spacing:-0.03em;
  color: var(--primary); line-height: 1; margin-bottom: 8px;
}
.bonus h3{ font-size: 19px; margin-bottom: 6px; }
.bonus p{ color: var(--ink-soft); font-size: 14.5px; margin:0; }
.bonus__ico{
  position:absolute; right: 24px; bottom: 24px;
  width: 28px; height: 28px; color: var(--gold); opacity: .6;
}
.bonus--alt{ background: var(--ink); color: var(--cream); border-color: transparent; }
.bonus--alt p{ color: rgba(255,255,255,.7); }
.bonus--alt h3{ color: var(--cream); }
.bonus--alt .bonus__big{ color: var(--gold); }
.bonus--alt .bonus__ico{ color: var(--gold); opacity: .9; }

/* ============== CTA ============== */
.cta{
  position:relative;
  background: linear-gradient(135deg, #11150F 0%, #2F5D3A 100%);
  color: var(--cream);
  border-radius: 40px;
  padding: 60px;
  display:grid; grid-template-columns: 1.2fr .8fr;
  gap: 40px; align-items:center;
  overflow: hidden;
}
.cta::before{
  content:""; position:absolute; right:-100px; top:-100px;
  width: 360px; height: 360px; border-radius:50%;
  background: radial-gradient(circle, rgba(217,164,65,.5), transparent 65%); filter: blur(30px);
}
.cta::after{
  content:""; position:absolute; left:-80px; bottom:-80px;
  width: 280px; height: 280px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,67,28,.4), transparent 60%); filter: blur(30px);
}
.cta__copy{ position:relative; z-index:2; }
.cta__copy em{ color: var(--gold); }
.cta__copy .ticks{ flex-wrap: wrap; }
.cta__copy .ticks li{ font-size: 14px; }
.cta__copy .ticks li i{ color: var(--gold); }

.cta__art{ position:relative; z-index: 2; display:flex; justify-content:center; }
.phone--sm{ width: 240px; height: 460px; transform: rotate(4deg); }
.phone--sm .phone__earn{ background: var(--primary); }
.phone__map{
  position:relative;
  height: 220px;
  background:
    repeating-linear-gradient(0deg, rgba(20,16,8,.06) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(20,16,8,.06) 0 1px, transparent 1px 26px),
    var(--cream);
  border-radius: 14px; overflow: hidden;
  margin: 8px 0;
  color: var(--primary);
}
.phone__map svg{ position:absolute; inset:0; width:100%; height:100%; }
.pin{ position:absolute; width: 14px; height: 14px; border-radius:50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(200,67,28,.25); }
.pin--a{ left: 8%; bottom: 14%; }
.pin--b{ right: 6%; top: 12%; background: var(--accent); box-shadow: 0 0 0 4px rgba(47,93,58,.25); }

/* ============== FAQ ============== */
.faq__list{ max-width: 900px; margin: 0 auto; }
.faq__list details{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 10px;
  transition: background .2s ease, border-color .2s ease;
}
.faq__list details[open]{ background: var(--cream-2); border-color: transparent; }
.faq__list summary{
  list-style: none;
  display:flex; align-items:center; justify-content:space-between; gap: 16px;
  font-family: var(--serif); font-size: 18px; font-weight: 600; cursor:pointer;
  letter-spacing: -.01em;
}
.faq__list summary::-webkit-details-marker{ display:none; }
.faq__list summary i{
  width: 28px; height: 28px; border-radius:50%;
  background: var(--cream); color: var(--ink);
  display:inline-flex; align-items:center; justify-content:center; padding: 4px;
  transition: transform .3s ease, background .2s ease;
}
.faq__list details[open] summary i{ transform: rotate(45deg); background: var(--primary); color: var(--cream); }
.faq__list p{ margin-top: 14px; color: var(--ink-soft); font-size: 15px; }

/* ============== Legal Pages ============== */
.section--legal{
  padding: 120px 0 80px;
  min-height: 100vh;
}
.legal__header{
  text-align: center;
  margin-bottom: 60px;
}
.legal__header h1{
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.legal__header p{
  font-size: 16px;
  color: var(--muted);
}
.legal__content{
  max-width: 800px;
  margin: 0 auto;
}
.legal__content h2{
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 16px;
}
.legal__content h3{
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal__content p{
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.legal__content ul{
  margin: 16px 0 16px 24px;
}
.legal__content li{
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}
.legal__footer{
  text-align: center;
  margin-top: 60px;
}
.support__contact{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.support__item{
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.support__item h3{
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.support__item p{
  font-size: 16px;
  color: var(--text);
  margin: 0;
}
.support__item a{
  color: var(--primary);
  text-decoration: none;
}
.support__item a:hover{
  text-decoration: underline;
}

/* ============== Footer ============== */
.footer{ background: var(--ink); color: var(--cream); padding: 80px 0 32px; }
.footer__grid{
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p{ color: rgba(255,255,255,.6); font-size: 14px; margin-top: 16px; max-width: 320px; }
.footer__brand .nav__logo{ background: var(--primary); }
.footer__socials{ display:flex; gap: 12px; margin-top: 22px; }
.footer__socials a{
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display:inline-flex; align-items:center; justify-content:center;
  transition: background .2s ease, color .2s ease, transform .25s ease, border-color .2s ease;
}
.footer__socials a svg,
.footer__socials a i{
  width: 22px !important;
  height: 22px !important;
  color: #fff !important;
  stroke: currentColor !important;
  fill: currentColor !important;
  stroke-width: 2.5 !important;
  opacity: 1 !important;
}
.footer__socials a:hover svg,
.footer__socials a:hover i{
  stroke: currentColor !important;
  color: #fff !important;
  fill: currentColor !important;
}
.footer__socials a:hover{
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
  transform: translateY(-3px);
}
.footer__socials a svg path,
.footer__socials a svg circle,
.footer__socials a svg rect,
.footer__socials a svg polygon,
.footer__socials a svg line,
.footer__socials a svg polyline{
  stroke: #fff !important;
  fill: none !important;
}
.footer__socials a svg line,
.footer__socials a svg polyline,
.footer__socials a svg polygon{
  stroke: #fff !important;
}
.footer h5{ font-family: var(--sans); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing:.1em; color: rgba(255,255,255,.5); margin-bottom: 16px; }

.authority{
  padding: 80px 0;
}
.authority .section__head{ margin-bottom: 48px; }
.authority-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.authority-card{
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.authority-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.authority-card__img{
  flex: 0 0 60%;
}
.authority-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.authority-card__body{
  flex: 1;
  padding: 24px;
}
.authority-card__pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.authority-card h3{
  font-size: 22px;
  margin: 0 0 12px;
}
.authority-card p{
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}
.trust-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent-soft);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 48px;
  font-weight: 500;
  color: var(--ink);
}
.trust-bar div{
  text-align: center;
  flex: 1;
}
@media (max-width: 1024px){
  .authority-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-bar{
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 720px){
  .authority-grid{ grid-template-columns: 1fr; }
}
.footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 10px; }
.footer ul a{ font-size: 14px; color: rgba(255,255,255,.8); transition: color .2s ease; }
.footer ul a:hover{ color: var(--gold); }
.footer__btm{
  display:flex; justify-content:space-between; gap: 16px;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  color: rgba(255,255,255,.5);
}

/* ============== Reveal animations ============== */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in{ opacity:1; transform: translateY(0); }
.reveal-stagger > *{ opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.is-in > *{ opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(2){ transition-delay: .07s; }
.reveal-stagger.is-in > *:nth-child(3){ transition-delay: .14s; }
.reveal-stagger.is-in > *:nth-child(4){ transition-delay: .21s; }
.reveal-stagger.is-in > *:nth-child(5){ transition-delay: .28s; }
.reveal-stagger.is-in > *:nth-child(6){ transition-delay: .35s; }
.reveal-stagger.is-in > *:nth-child(7){ transition-delay: .42s; }
.reveal-stagger.is-in > *:nth-child(8){ transition-delay: .49s; }

/* ============== Responsive ============== */
@media (max-width: 1024px){
  .features{ grid-template-columns: repeat(2, 1fr); }
  .feature--lg{ grid-column: span 2; grid-row: auto; }
  .steps, .dishes, .numbers, .stories, .bonuses{ grid-template-columns: repeat(2, 1fr); }
  .num{ border-right: 0; border-bottom: 1px solid var(--line); }
  .num:nth-last-child(-n+2){ border-bottom:0; }
  .kuih{ grid-template-columns: 1fr; gap: 48px; }
  .cta{ grid-template-columns: 1fr; padding: 40px; }
  .cta__art{ display:none; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .hero__art{ min-height: 520px; }
}

@media (max-width: 820px){
  .nav__links, .nav__cta .btn--ghost{ display:none; }
  .nav__burger{ display:flex; }
  .hero{ padding: calc(var(--header-h) + 40px) 0 56px; }
  .hero__inner{ grid-template-columns: 1fr; gap: 40px; }
  .hero__art{ height: auto; min-height: 480px; }
  .hero__copy{ text-align: center; max-width: 600px; margin: 0 auto; }
  .hero__lead{ margin-left: auto; margin-right: auto; }
  .hero__micro{ justify-content: center; }
  .hero__ctas{ justify-content: center; flex-wrap: wrap; }
  .hero__stats{ justify-content: center; }
  .hero__toggle{ flex-wrap: wrap; }
  .hero__toggle-btn{ font-size: 13px; padding: 9px 14px; }
  .section__head--row{ flex-direction:column; align-items: flex-start; }
  .section{ padding: 72px 0; }
  .coverage{ grid-template-columns: 1fr; }
  .footer__btm{ flex-direction: column; }
}

@media (max-width: 560px){
  .hero{ padding-top: calc(var(--header-h) + 24px); }
  h1{ font-size: 2.4rem; }
  .features, .steps, .dishes, .stories, .bonuses, .footer__grid{ grid-template-columns: 1fr; }
  .num{ border-right:0; border-bottom: 1px solid var(--line); }
  .hero__title{ font-size: clamp(36px, 11vw, 56px); }
  .hero__lead{ font-size: 16px; }
  .hero__stats{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero__stats > div + div{ padding-left: 0; border-left: 0; }
  .hero__stats > div:nth-child(3){ grid-column: span 2; }
  .hero__toggle{ width: 100%; }
  .hero__toggle-btn{ flex: 1; justify-content: center; padding: 10px 8px; font-size: 12px; }
  .hero__toggle-btn span{ display: none; }
  .phone{ width: 280px; height: 560px; }
  .float-tag--b{ right: -10px; }
  .float-tag{ font-size: 11px; padding: 8px 12px; }
  .container{ padding: 0 18px; }
  .nav{ padding: 0 16px; }
  .cta{ padding: 32px 22px; border-radius: 28px; }
  .marquee__set{ font-size: 22px; gap: 32px; }
  .marquee__track{ gap: 32px; }
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============== Themed scrollbar ============== */
html{
  scrollbar-color: var(--primary) var(--cream-2);
  scrollbar-width: thin;
}
::-webkit-scrollbar{
  width: 12px; height: 12px;
}
::-webkit-scrollbar-track{
  background: var(--cream-2);
  border-left: 1px solid var(--line);
}
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, var(--primary), #B91C2A);
  border: 3px solid var(--cream-2);
  border-radius: 999px;
  background-clip: padding-box;
  transition: background .25s ease;
}
::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  background-clip: padding-box;
  border: 3px solid var(--cream-2);
}
::-webkit-scrollbar-corner{ background: var(--cream-2); }

/* Dark sections inherit a darker scrollbar feel where applicable (overflow scrollers) */
.section--dark ::-webkit-scrollbar-track,
.marquee ::-webkit-scrollbar-track{
  background: rgba(255,255,255,.06);
  border-left-color: rgba(255,255,255,.08);
}
.section--dark ::-webkit-scrollbar-thumb,
.marquee ::-webkit-scrollbar-thumb{
  border-color: transparent;
}

/* ============== Psychology widgets ============== */

/* Live pulse dot */
.pulse-dot{
  display:inline-block; width:8px; height:8px; border-radius:50%;
  background: #DC2626;
  box-shadow: 0 0 0 0 rgba(220,38,38,.55);
  animation: pulseDot 1.6s ease-out infinite;
  margin-right: 6px; vertical-align: middle;
}
@keyframes pulseDot{
  0%   { box-shadow: 0 0 0 0 rgba(220,38,38,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

/* Eyebrow variants */
.eyebrow--live{
  background: #FEF2F2; border-color: #FECACA; color: #B91C1C;
}
.eyebrow--live .dot{ background:#DC2626; box-shadow: 0 0 0 0 rgba(220,38,38,.55); animation: pulseDot 1.6s ease-out infinite; }
.eyebrow--warn{
  background: #FFFBEB; border-color: #FDE68A; color: #92400E;
}
.eyebrow--warn .dot{ background: #D97706; }

/* Hero micro trust line */
.hero__micro{
  margin-top: 18px;
  display:flex; flex-wrap:wrap; gap: 6px 16px;
  font-size: 13px; color: var(--ink-soft);
  align-items:center;
}
.hero__micro i{ width:14px; height:14px; color: var(--accent); margin-right: 2px; vertical-align: middle; }

/* Loss / urgency section */
.loss{
  background: linear-gradient(180deg, var(--cream) 0%, #FFF8EE 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.loss::before{
  content:""; position:absolute; right:-100px; top:-100px;
  width: 320px; height: 320px; border-radius:50%;
  background: radial-gradient(circle, rgba(230,57,70,.12), transparent 65%);
  filter: blur(20px);
}
.loss__inner{
  display:grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
.loss__copy h2{ margin-top: 12px; }
.loss__copy p{ margin: 18px 0 28px; }
.loss__copy p b{ color: var(--primary); font-weight: 700; }
.loss__stat{
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.loss__stat::before{
  content:""; position:absolute; left:-40px; top:-40px;
  width: 200px; height: 200px; border-radius:50%;
  background: radial-gradient(circle, rgba(217,164,65,.4), transparent 65%);
}
.loss__stat small{
  font-size: 12px; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .12em;
  display:block; margin-bottom: 12px;
}
.loss__big{
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600; letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #FBE5DA 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.loss__pulse{ font-size: 12px; color: rgba(255,255,255,.7); position: relative; z-index: 2; }

@media (max-width: 820px){
  .loss__inner{ grid-template-columns: 1fr; gap: 32px; }
}

/* Live activity toast */
.toast{
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 90;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  transform: translateY(120%);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.toast.is-visible{ transform: translateY(0); }
.toast__avatar{
  width: 40px; height: 40px; border-radius: 50%;
  flex: none;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  position: relative;
}
.toast__avatar::after{
  content:""; position:absolute;
  bottom: -2px; right: -2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #16A34A; border: 2px solid #fff;
}
.toast__body{ flex: 1; min-width: 0; }
.toast__body b{ display:block; font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.toast__body small{ font-size: 11.5px; color: var(--muted); }
.toast__live{
  font-size: 10.5px; font-weight: 700;
  color: #DC2626;
  text-transform: uppercase; letter-spacing: .1em;
  display:flex; align-items:center;
}
.toast__live .pulse-dot{ width:6px; height:6px; margin-right: 4px; }

@media (max-width: 560px){
  .toast{ left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

