/* ═══════════════════════════════════════════════════
   CAFE ORIX — HERO SECTION CSS
   Brand: Fredoka One / Nunito / Poppins
   Palette: #312C51 / #48426D / #F0C38E / #F1AA9B / #FAF8F5
═══════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --dark:    #312C51;
  --purple:  #48426D;
  --peach:   #F0C38E;
  --pink:    #F1AA9B;
  --cream:   #FAF8F5;
  --dark-90: rgba(49, 44, 81, 0.9);
  --peach-30: rgba(240, 195, 142, 0.3);
  --peach-10: rgba(240, 195, 142, 0.1);
  --pink-10:  rgba(241, 170, 155, 0.1);
  --white:    #ffffff;
  --nav-h:    70px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background:#241d3f;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--peach); border-radius: 4px; }

/* ═══════════════════════════════════════════════════
   HERO — BACKGROUND SYSTEM
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Base gradient */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero{
  position:relative;
  width:100%;
  min-height:100vh;
  background: 
    radial-gradient(circle at 15% 20%, rgba(240,195,142,.10) 0%, transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(241,170,155,.08) 0%, transparent 22%),
    radial-gradient(circle at 50% 75%, rgba(240,195,142,.06) 0%, transparent 28%),
    linear-gradient(180deg, #1d1833 0%, #241d3f 30%, #2c2450 65%, #312C51 100%);
  overflow:hidden;
}

/* ═══════════════════════════════════════════════════
   HERO — MAIN GRID
═══════════════════════════════════════════════════ */
.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
align-items:start;
max-width: 1400px;
  width: 100%;
  margin: 0 auto;
padding: 20px 5% 80px;}


/* ═══════════════════════════════════════════════════
   HERO — LEFT COLUMN
═══════════════════════════════════════════════════ */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width:680px;
  width:100%;
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,195,142,0.1);
  border: 1.5px solid rgba(240,195,142,0.25);
  border-radius: 50px;
  padding: 8px 18px 8px 12px;
  width: fit-content;
  position: relative;
  overflow: hidden;

  /* initial anim state */
  opacity: 0;
  transform: translateY(18px);
}
.trust-badge.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}
.trust-badge i {
  color: var(--peach);
  font-size: 0.82rem;
}
.trust-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--peach);
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
.badge-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(240,195,142,0.12) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: badgeSweep 3.5s ease-in-out infinite 1s;
}
@keyframes badgeSweep {
  0%   { transform: translateX(-100%); }
  40%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.t-line{
  display:flex;
  align-items:flex-start;
  gap:16px;
  flex-wrap:nowrap;
  width:100%;
}
.t-word {
  display:inline-block;
  transform:translateY(0);
  opacity:1;
}
.t-word.revealed{
  animation:
  wordRise .75s var(--ease-out) forwards;
}
.accent-w { color: var(--peach); }
@keyframes wordRise {
  to { transform: translateY(0); opacity: 1; }
}

/* Sub */
.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  max-width: 460px;

  opacity: 0;
  transform: translateY(18px);
}
.hero-sub.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s var(--ease-out);
}


/* CTAs */
.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;

  opacity: 0;
  transform: translateY(18px);
}
.hero-cta.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s var(--ease-out);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%);
  color: var(--dark);
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  padding:14px 34px;
  border-radius: 50px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(240,195,142,0.3);
}
.btn-primary i { font-size: 0.95rem; }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 44px rgba(240,195,142,0.45);
}
.btn-primary:active { transform: scale(0.97); }
.btn-shine {
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: shineSweep 3.5s ease-in-out infinite 2s;
}
@keyframes shineSweep {
  0%   { left: -80%; }
  30%  { left: 130%; }
  100% { left: 130%; }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding:13px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.22);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.btn-outline i { font-size: 0.9rem; }
.btn-outline:hover {
  border-color: var(--peach);
  color: var(--peach);
  background: rgba(240,195,142,0.07);
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 4px;

  opacity: 0;
  transform: translateY(16px);
}
.hero-stats.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s var(--ease-out);
}
.stat-item { text-align: left; }
.stat-val {
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem;
  color: var(--peach);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.stat-unit {
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: rgba(240,195,142,0.7);
  margin-left: 2px;
}
.stat-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  white-space: nowrap;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════
   HERO — RIGHT COLUMN (VISUAL STAGE)
═══════════════════════════════════════════════════ */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.82) translateX(30px);
}
.hero-right.revealed {
  opacity: 1;
  transform: scale(1) translateX(0);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-spring);
}

.visual-stage {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}
.hero-title{
  font-family:'Fredoka One',cursive;

  display:flex;
  flex-direction:column;

  width:100%;
  max-width:620px;

  font-size:clamp(2.8rem,4.5vw,5rem);

  line-height:1.02;

  letter-spacing:-1px;

  color:#fff;

  gap:10px;
}

.t-line{
  width:100%;
  display:flex;

  align-items:center;
}

.t-word{
  display:block;
  white-space:nowrap;
}

.accent-w{
  color:var(--peach);
}

/* Rings */
.ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform-origin: center;
}

.ring-outer {
  width: 380px; height: 380px;
  margin-top: -190px; margin-left: -190px;
  border: 1.5px dashed rgba(240,195,142,0.25);
  animation: ringRotateCW 24s linear infinite;
}
.ring-mid {
  width: 280px; height: 280px;
  margin-top: -140px; margin-left: -140px;
  border: 1.5px solid rgba(241,170,155,0.18);
  animation: ringRotateCCW 18s linear infinite;
}
.ring-inner {
  width: 190px; height: 190px;
  margin-top: -95px; margin-left: -95px;
  border: 1px solid rgba(240,195,142,0.12);
  background: radial-gradient(circle, rgba(240,195,142,0.03) 0%, transparent 70%);
  animation: ringRotateCW 12s linear infinite;
}
@keyframes ringRotateCW  { to { transform: rotate( 360deg); } }
@keyframes ringRotateCCW { to { transform: rotate(-360deg); } }

/* Ring nodes */
.ring-node {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(49,44,81,0.9);
  border: 1.5px solid rgba(240,195,142,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%; left: 50%;
  animation: nodeCounterCW 24s linear infinite; /* counter-rotate so they stay upright */
  box-shadow: 0 0 16px rgba(240,195,142,0.15), inset 0 0 8px rgba(0,0,0,0.3);
}
.ring-node i {
  font-size: 0.78rem;
  color: var(--peach);
}
/* Position nodes at 120° intervals */
.rn-1 { transform: translate(-50%, -50%) translate(0, -190px); }
.rn-2 { transform: translate(-50%, -50%) rotate(120deg) translate(0, -190px) rotate(-120deg); }
.rn-3 { transform: translate(-50%, -50%) rotate(240deg) translate(0, -190px) rotate(-240deg); }

/* Keep icons upright by counter-rotating the ring */
.rn-1 { animation: node1Counter 24s linear infinite; }
.rn-2 { animation: node2Counter 24s linear infinite; }
.rn-3 { animation: node3Counter 24s linear infinite; }

@keyframes node1Counter {
  0%   { transform: translate(-50%,-50%) rotate(  0deg) translate(0,-190px) rotate(  0deg); }
  100% { transform: translate(-50%,-50%) rotate(360deg) translate(0,-190px) rotate(-360deg); }
}
@keyframes node2Counter {
  0%   { transform: translate(-50%,-50%) rotate(120deg) translate(0,-190px) rotate(-120deg); }
  100% { transform: translate(-50%,-50%) rotate(480deg) translate(0,-190px) rotate(-480deg); }
}
@keyframes node3Counter {
  0%   { transform: translate(-50%,-50%) rotate(240deg) translate(0,-190px) rotate(-240deg); }
  100% { transform: translate(-50%,-50%) rotate(600deg) translate(0,-190px) rotate(-600deg); }
}

/* Center piece */
.visual-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.center-glow-bg {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,195,142,0.2) 0%, transparent 70%);
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.3); opacity: 1; }
}

.center-glass {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(240,195,142,0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  box-shadow:
    0 0 0 8px rgba(240,195,142,0.04),
    0 0 0 16px rgba(240,195,142,0.02),
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 20px 60px rgba(0,0,0,0.3);
}

.cup-icon {
  font-size: 2.8rem;
  color: var(--peach);
  filter: drop-shadow(0 4px 16px rgba(240,195,142,0.4));
  animation: cupBob 4s ease-in-out infinite;
}
@keyframes cupBob {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-6px); }
}

/* Steam */
.steam-group {
  position: absolute;
  top: -30px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.steam-curl {
  width: 4px;
  height: 26px;
  border-radius: 10px;
  background: linear-gradient(to top, rgba(240,195,142,0.5), transparent);
  transform-origin: bottom center;
}
.steam-1 { animation: steamRise 2.2s ease-in-out infinite 0s; }
.steam-2 { animation: steamRise 2.2s ease-in-out infinite 0.5s; }
.steam-3 { animation: steamRise 2.2s ease-in-out infinite 1s; }
@keyframes steamRise {
  0%   { transform: scaleY(0.5) translateY(10px); opacity: 0; }
  30%  { opacity: 0.8; }
  80%  { opacity: 0.3; }
  100% { transform: scaleY(1.2) translateY(-16px); opacity: 0; }
}

/* Floating pills */
.float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  padding: 9px 16px;
  white-space: nowrap;
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-pill:hover {
  background: rgba(240,195,142,0.1);
  border-color: rgba(240,195,142,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.float-pill i {
  font-size: 0.8rem;
  color: var(--peach);
}
.float-pill span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.pill-top-right {
  top: 20px; right: -10px;
  animation: pillFloat1 5s ease-in-out infinite;
}
.pill-bottom-left {
  bottom: 30px; left: -20px;
  animation: pillFloat2 6s ease-in-out infinite 0.8s;
}
.pill-right {
  top: 50%; right: -25px;
  transform: translateY(-50%);
  animation: pillFloat3 4.5s ease-in-out infinite 1.5s;
}
@keyframes pillFloat1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pillFloat2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}
@keyframes pillFloat3 {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-50%) translateX(8px); }
}


/* ═══════════════════════════════════════════════════
   SCROLL HINT
═══════════════════════════════════════════════════ */
.scroll-hint {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.6s ease 2.5s;
}
.scroll-hint.show { opacity: 1; }
.scroll-mouse {
  width: 22px; height: 34px;
  border-radius: 11px;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--peach);
  animation: scrollDotMove 2s ease-in-out infinite;
}
@keyframes scrollDotMove {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
.scroll-hint i {
  font-size: 0.72rem;
  animation: chevBounce 2s ease-in-out infinite;
}
@keyframes chevBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}


/* ═══════════════════════════════════════════════════
   HERO TICKER
═══════════════════════════════════════════════════ */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  height: 48px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(240,195,142,0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ticker-item i { color: var(--peach); font-size: 0.75rem; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════
   FEATURE STRIP
═══════════════════════════════════════════════════ */
.feature-strip {
background:

linear-gradient(
180deg,
#312C51 0%,
#2d2748 100%
);  border-top: 1px solid rgba(240,195,142,0.1);
}
.fs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: stretch;
}
.fs-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: background 0.3s ease;
}
.fs-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.fs-item:hover { background: rgba(255,255,255,0.03); }
.fs-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(240,195,142,0.1);
  border: 1px solid rgba(240,195,142,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.fs-item:hover .fs-icon {
  background: rgba(240,195,142,0.18);
  transform: scale(1.08);
}
.fs-icon i {
  color: var(--peach);
  font-size: 1rem;
}
.fs-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fs-text strong {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.fs-text span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
}
.fs-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .visual-stage { width: 360px; height: 360px; }
  .ring-outer  { width: 320px; height: 320px; margin-top: -160px; margin-left: -160px; }
  .ring-mid    { width: 240px; height: 240px; margin-top: -120px; margin-left: -120px; }
  .ring-inner  { width: 160px; height: 160px; margin-top:  -80px; margin-left:  -80px; }
  .rn-1 { transform: translate(-50%,-50%) rotate(  0deg) translate(0,-160px) rotate(  0deg); }
  .rn-2 { transform: translate(-50%,-50%) rotate(120deg) translate(0,-160px) rotate(-120deg); }
  .rn-3 { transform: translate(-50%,-50%) rotate(240deg) translate(0,-160px) rotate(-240deg); }
  @keyframes node1Counter {
    0%   { transform: translate(-50%,-50%) rotate(  0deg) translate(0,-160px) rotate(  0deg); }
    100% { transform: translate(-50%,-50%) rotate(360deg) translate(0,-160px) rotate(-360deg); }
  }
  @keyframes node2Counter {
    0%   { transform: translate(-50%,-50%) rotate(120deg) translate(0,-160px) rotate(-120deg); }
    100% { transform: translate(-50%,-50%) rotate(480deg) translate(0,-160px) rotate(-480deg); }
  }
  @keyframes node3Counter {
    0%   { transform: translate(-50%,-50%) rotate(240deg) translate(0,-160px) rotate(-240deg); }
    100% { transform: translate(-50%,-50%) rotate(600deg) translate(0,-160px) rotate(-600deg); }
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding: 50px 5% 100px;
  }
  .hero-left {
    align-items: center;
    order: 2;
  }
  .hero-right { order: 1; }
  .hero-sub   { max-width: 100%; }
  .hero-features { align-items: flex-start; text-align: left; }
  .hero-stats { justify-content: center; }
  .nav-links, .nav-reserve { display: none; }
  .nav-ham { display: flex; }
  .visual-stage { width: 300px; height: 300px; }
  .ring-outer  { width: 270px; height: 270px; margin-top: -135px; margin-left: -135px; }
  .ring-mid    { width: 200px; height: 200px; margin-top: -100px; margin-left: -100px; }
  .ring-inner  { width: 136px; height: 136px; margin-top:  -68px; margin-left:  -68px; }
  @keyframes node1Counter {
    0%   { transform: translate(-50%,-50%) rotate(  0deg) translate(0,-135px) rotate(  0deg); }
    100% { transform: translate(-50%,-50%) rotate(360deg) translate(0,-135px) rotate(-360deg); }
  }
  @keyframes node2Counter {
    0%   { transform: translate(-50%,-50%) rotate(120deg) translate(0,-135px) rotate(-120deg); }
    100% { transform: translate(-50%,-50%) rotate(480deg) translate(0,-135px) rotate(-480deg); }
  }
  @keyframes node3Counter {
    0%   { transform: translate(-50%,-50%) rotate(240deg) translate(0,-135px) rotate(-240deg); }
    100% { transform: translate(-50%,-50%) rotate(600deg) translate(0,-135px) rotate(-600deg); }
  }
  .pill-right { display: none; }
  .fs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .fs-divider:nth-child(4) { display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.4rem; }
 .hero-grid{
  padding:18px 6% 90px;
  gap:38px;
}
.trust-badge{
  transform:scale(.88);
  transform-origin:center;
}

.trust-badge{
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  width:fit-content;
  max-width:92%;
  padding:10px 18px;
  transform:none;
}
.fs-item{

  padding:16px 14px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(240,195,142,.08);
  min-height:88px;
  gap:12px;
}

.fs-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  flex-shrink:0;
}

.fs-icon i{
  font-size:.92rem;
}

.fs-text strong{
  font-size:.82rem;
  line-height:1.2;
}

.fs-text span{
  font-size:.68rem;
  line-height:1.3;
}

.fs-divider{
  display:none;
}
.feature-strip{
  padding-bottom:8px;
}
/* MOBILE STATS FIX */
.hero-stats{

  width:100%;

  justify-content:center;

  gap:18px;

  flex-wrap:nowrap;

  padding-top:18px;

  position:relative;

  z-index:5;
}

.stat-item{

  flex:1;

  text-align:center;
}

.stat-val{

  justify-content:center;

  font-size:1.9rem;
}

.stat-lbl{

  font-size:.72rem;

  white-space:normal;
}

.stat-sep{

  height:34px;
}

/* HIDE SCROLL TEXT ON MOBILE */
.scroll-hint{
  display:none;
}

.trust-badge span{

  font-size:.78rem;

  text-align:center;
}

.hero-left{

  align-items:center;

  justify-content:center;
}

  .visual-stage { width: 250px; height: 250px; }
  .ring-outer  { width: 228px; height: 228px; margin-top: -114px; margin-left: -114px; }
  .ring-mid    { width: 168px; height: 168px; margin-top:  -84px; margin-left:  -84px; }
  .ring-inner  { width: 114px; height: 114px; margin-top:  -57px; margin-left:  -57px; }
  .center-glass { width: 110px; height: 110px; }
  .cup-icon { font-size: 2.2rem; }
  .pill-bottom-left { display: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .fs-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding:18px 6% 30px;
}
  .fs-divider { display: none; }
  /* MOBILE HERO FIX */

.hero-left{

  align-items:center;

  text-align:center;

  width:100%;
}
.hero-title{

  max-width:100%;

  font-size:2.7rem;

  line-height:1;

  align-items:center;

  text-align:center;

  gap:6px;
}

.t-line{

  justify-content:center;

  width:100%;
}

/* FORCE 3 PERFECT LINES */
.t-line:nth-child(1){
  justify-content:center;
}

.t-line:nth-child(2){
  justify-content:center;
}

.t-line:nth-child(3){
  justify-content:center;
}
.hero-sub{

  text-align:center;

  font-size:.96rem;

  line-height:1.7;

  max-width:100%;
}

.hero-features{

  align-items:center;

  text-align:left;
}
/* SAME SIZE MOBILE BUTTONS */
.hero-cta{

  width:100%;

  display:flex;

  flex-direction:row;

  justify-content:center;

  align-items:center;

  gap:12px;

  padding:0 6%;
}

.btn-primary,
.btn-outline{

  width:160px;

  height:56px;

  flex:none;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:8px;

  padding:0;

  border-radius:18px;

  font-size:.9rem;

  text-align:center;
}

.btn-primary span,
.btn-outline span{

  white-space:nowrap;
}
  @keyframes node1Counter {
    0%   { transform: translate(-50%,-50%) rotate(  0deg) translate(0,-114px) rotate(  0deg); }
    100% { transform: translate(-50%,-50%) rotate(360deg) translate(0,-114px) rotate(-360deg); }
  }
  @keyframes node2Counter {
    0%   { transform: translate(-50%,-50%) rotate(120deg) translate(0,-114px) rotate(-120deg); }
    100% { transform: translate(-50%,-50%) rotate(480deg) translate(0,-114px) rotate(-480deg); }
  }
  @keyframes node3Counter {
    0%   { transform: translate(-50%,-50%) rotate(240deg) translate(0,-114px) rotate(-240deg); }
    100% { transform: translate(-50%,-50%) rotate(600deg) translate(0,-114px) rotate(-600deg); }
  }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 16px; }
  .stat-val   { font-size: 1.4rem; }
}

/* ═════════════════════════════
   FLOATING FOOD ICONS
═════════════════════════════ */

.floating-icons{

  position:absolute;

  inset:0;

  overflow:hidden;

  pointer-events:none;

  z-index:1;
}

/* ICON */

.fi{

  position:absolute;

  color:
  rgba(240,195,142,.18);

  font-size:34px;


  animation:
  floatIcon linear infinite;
}

/* POSITIONS */

.fi1{
  top:14%;
  left:8%;
  font-size:28px;
  animation-duration:14s;
}

.fi2{
  top:24%;
  right:12%;
  font-size:22px;
  animation-duration:18s;
}

.fi3{
  bottom:20%;
  left:14%;
  font-size:30px;
  animation-duration:16s;
}

.fi4{
  top:62%;
  right:18%;
  font-size:24px;
  animation-duration:20s;
}

.fi5{
  top:40%;
  left:46%;
  font-size:34px;
  animation-duration:17s;
}

.fi6{
  bottom:12%;
  right:8%;
  font-size:22px;
  animation-duration:15s;
}

.fi7{
  top:10%;
  left:55%;
  font-size:28px;
  animation-duration:19s;
}

.fi8{
  bottom:34%;
  left:72%;
  font-size:24px;
  animation-duration:18s;
}

/* ANIMATION */

@keyframes floatIcon{

  0%{
    transform:
    translateY(0px)
    rotate(0deg);

    opacity:.12;
  }

  50%{
    transform:
    translateY(-22px)
    rotate(8deg);

    opacity:.22;
  }

  100%{
    transform:
    translateY(0px)
    rotate(0deg);

    opacity:.12;
  }
}

.hero-bubbles{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  overflow:hidden;
}

.bubble{
  position:absolute;
  border-radius:50%;
  backdrop-filter:blur(3px);
box-shadow:
0 0 20px rgba(240,195,142,.08);
background:
radial-gradient(
circle,
rgba(255,255,255,.20) 0%,
rgba(240,195,142,.10) 40%,
transparent 100%
);  width:38px;
  height:38px;
  animation: floatBubble linear infinite;
}

.b1{top:10%; left:12%; width:24px; height:24px; animation-duration:14s;}
.b2{top:50%; left:30%; width:18px; height:18px; animation-duration:18s;}
.b3{top:25%; left:70%; width:20px; height:20px; animation-duration:16s;}
.b4{top:70%; left:50%; width:22px; height:22px; animation-duration:20s;}
.b5{top:60%; left:80%; width:16px; height:16px; animation-duration:12s;}

@keyframes floatBubble{
  0%{ transform: translateY(0px) rotate(0deg); opacity:.08;}
  50%{ transform: translateY(-20px) rotate(10deg); opacity:.16;}
  100%{ transform: translateY(0px) rotate(0deg); opacity:.08;}
}

/* PREMIUM HERO BG */

.hero::before{

  content:'';

  position:absolute;

  inset:0;

  background:

  radial-gradient(
  circle at 15% 20%,
  rgba(240,195,142,.16) 0%,
  transparent 24%
  ),

  radial-gradient(
  circle at 82% 18%,
  rgba(241,170,155,.12) 0%,
  transparent 22%
  ),

  radial-gradient(
  circle at 50% 78%,
  rgba(240,195,142,.08) 0%,
  transparent 28%
  );

  animation:
  heroGlow 12s ease-in-out infinite alternate;

  z-index:0;
}

@keyframes heroGlow{

  0%{
    transform:scale(1);
    opacity:1;
  }

  100%{
    transform:scale(1.08);
    opacity:.85;
  }
}

.t-word{

  white-space:nowrap;
}


.t-line{

  gap:12px;
}

.hero-left{

  align-items:flex-start;

  text-align:left;
}

.hero-sub{

  text-align:left;

  font-size:1.02rem;

  line-height:1.8;
}

.hero-features{

  width:100%;
}

.hero-cta{

  display:flex;

  align-items:center;

  gap:18px;

  flex-wrap:wrap;

  width:auto;
}