/* ═══════════════════════════════════════════════
   PREPLATED — Restaurant Operating System
   Website Stylesheet
   Color System:
     --bg-base:   #080d18  (deepest dark)
     --bg-1:      #0d1424  (dark navy)
     --bg-2:      #111c30  (card bg)
     --bg-3:      #162038  (elevated card)
     --border:    rgba(255,255,255,0.08)
     --green:     #8b5cf6  (primary accent)
     --green-dim: #7c3aed
     --green-glow:#8b5cf640
     --blue:      #3b82f6
     --purple:    #a855f7
     --orange:    #f97316
     --text-1:    #f1f5f9  (primary text)
     --text-2:    #94a3b8  (secondary text)
     --text-3:    #475569  (muted text)
═══════════════════════════════════════════════ */

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

:root {
  --bg-base: #080d18;
  --bg-1: #0d1424;
  --bg-2: #111c30;
  --bg-3: #162038;
  --border: rgba(255,255,255,0.08);
  --green: #8b5cf6;
  --green-dim: #7c3aed;
  --green-glow: rgba(139,92,246,0.25);
  --blue: #3b82f6;
  --purple: #a855f7;
  --orange: #f97316;
  --text-1: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #475569;
  /* Light section vars */
  --light-bg: #f8f4ff;
  --light-bg2: #eef3ff;
  --light-border: rgba(100,60,180,0.12);
  --light-text-1: #1a1040;
  --light-text-2: #5a4e7a;
  --light-text-3: #9080b0;
  --purple-brand: #6c3fc4;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* Nav/card surfaces (overridden in light mode) */
  --nav-bg: rgba(8,13,24,0.92);
  --card-bg: var(--bg-2);
}

/* ═══════════════════ LIGHT THEME ═══════════════════ */
html.light {
  --bg-base: #f4f0ff;
  --bg-1: #ede8fb;
  --bg-2: #ffffff;
  --bg-3: #f9f7ff;
  --border: rgba(109,40,217,0.12);
  --green: #7c3aed;
  --green-dim: #6d28d9;
  --green-glow: rgba(124,58,237,0.2);
  --text-1: #1a1040;
  --text-2: #4c3f78;
  --text-3: #8070a8;
  --nav-bg: rgba(244,240,255,0.94);
  --card-bg: #ffffff;
  --light-bg: #ede8fb;
  --light-bg2: #e8e0f8;
  --light-text-1: #1a1040;
  --light-text-2: #4c3f78;
}

html.light body { background: var(--bg-base); color: var(--text-1); }
html.light #navbar { background: var(--nav-bg); border-bottom-color: var(--border); }
html.light #navbar.scrolled { box-shadow: 0 4px 32px rgba(109,40,217,0.1); }
html.light .nav-links a { color: var(--text-2); }
html.light .nav-links a:hover { color: var(--text-1); }
html.light .btn-ghost { color: var(--text-2); border-color: var(--border); }
html.light .btn-ghost:hover { color: var(--text-1); background: rgba(124,58,237,0.08); }
html.light .hamburger span { background: var(--text-1); }
html.light .mobile-menu { background: var(--bg-2); border-top-color: var(--border); }
html.light .mobile-menu a { color: var(--text-2); }
html.light #particles-canvas { opacity: 0.25; }

/* Hero */
html.light #hero { background: linear-gradient(135deg, #f4f0ff 0%, #ede8fb 100%); }
html.light .hero-title { color: var(--text-1); }
html.light .hero-sub { color: var(--text-2); }
html.light .hero-badge { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.2); color: var(--text-2); }
html.light .badge-dot { background: var(--green); }
html.light .stat-num, html.light .stat-suffix { color: var(--text-1); }
html.light .stat-label { color: var(--text-2); }
html.light .stat-card { background: var(--bg-2); border-color: var(--border); }

/* Dashboard mockup */
html.light .dashboard-mock { background: var(--bg-2); border-color: rgba(124,58,237,0.15); box-shadow: 0 32px 80px rgba(124,58,237,0.12); }
html.light .dash-sidebar { background: #f9f7ff; border-right-color: var(--border); }
html.light .dash-main { background: var(--bg-2); }
html.light .dash-header { border-bottom-color: var(--border); }
html.light .dash-title { color: var(--text-1); }
html.light .astat-val { color: var(--text-1); }
html.light .astat-label { color: var(--text-2); }
html.light .order-row { border-bottom-color: var(--border); }
html.light .order-row:hover { background: rgba(124,58,237,0.04); }
html.light .order-id, html.light .order-table, html.light .order-items, html.light .order-time { color: var(--text-2); }
html.light .order-amt { color: var(--text-1); }
html.light .float-notification { background: var(--bg-2); border-color: rgba(124,58,237,0.15); box-shadow: 0 8px 24px rgba(109,40,217,0.1); }
html.light .notif-text strong { color: var(--text-1); }

/* Cards, sections */
html.light .card, html.light .feature-card, html.light .ordering-card, html.light .pillar { background: var(--bg-2); border-color: var(--border); }
html.light .feature-card:hover, html.light .ordering-card:hover { box-shadow: 0 8px 32px rgba(124,58,237,0.12); }
html.light .feature-card h3, html.light .ordering-card h3, html.light .pillar h4 { color: var(--text-1); }
html.light .feature-card p, html.light .ordering-card p, html.light .pillar p { color: var(--text-2); }
html.light .section-dark { background: #ede8fb; }
html.light .section-eyebrow { color: var(--green); }
html.light .section-title { color: var(--text-1); }
html.light .section-sub { color: var(--text-2); }
html.light .pb-list li strong { color: var(--text-1); }
html.light .pb-list li span { color: var(--text-2); }

/* Flow steps */
html.light .flow-step { background: var(--bg-2); border-color: var(--border); }
html.light .flow-step h3 { color: var(--text-1); }
html.light .flow-step p { color: var(--text-2); }
html.light .step-num { color: var(--text-3); }

/* Pricing */
html.light .price-card { background: var(--bg-2); border-color: var(--border); }
html.light .price-card.featured { border-color: var(--green); }
html.light .price-card h3, html.light .pcm-amount, html.light .pcm-cur, html.light .pcm-per { color: var(--text-1); }
html.light .price-card p, html.light .pf-item { color: var(--text-2); }
html.light .pf-item.no { color: var(--text-3); }
html.light .price-toggle-wrap { background: var(--bg-1); border-color: var(--border); }

/* Contact */
html.light .contact-form-wrap { background: var(--bg-2); border-color: var(--border); }
html.light .form-group input, html.light .form-group select, html.light .form-group textarea { background: var(--bg-1); border-color: var(--border); color: var(--text-1); }
html.light .form-group label { color: var(--text-2); }
html.light .contact-info h3 { color: var(--text-1); }
html.light .contact-info p { color: var(--text-2); }

/* Ticker */
html.light .ticker-wrap { background: var(--bg-1); border-color: var(--border); }
html.light .ticker-item { color: var(--text-2); }

/* Footer */
html.light footer { background: #ede8fb; border-top-color: var(--border); }
html.light .footer-brand p, html.light .footer-col a, html.light .footer-bottom { color: var(--text-2); }
html.light .footer-col h4 { color: var(--text-1); }

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(139,92,246,0.12);
  color: var(--green);
  border-color: var(--green);
}
html.light .theme-toggle {
  background: rgba(124,58,237,0.06);
  border-color: rgba(124,58,237,0.2);
  color: var(--green);
}

html { scroll-behavior: smooth; font-size: 16px; }

html.light body,
body {
  background: var(--bg-base);
  color: var(--text-1);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 0.5s ease, color 0.4s ease;
}

/* Manrope for all text including headings */
h1, h2, h3, h4, .logo-text, .hero-title, .section-title, .cta-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ═══════════════════ CANVAS PARTICLES ═══════════════════ */
html.light #particles-canvas,
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ═══════════════════ UTILITIES ═══════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 35%, #c4b5fd 60%, #8b5cf6 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShimmer 5s ease infinite;
}
@keyframes gradientShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Ambient scroll glow overlay ─── */
#bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 20%, rgba(139,92,246,0.07) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 80%, rgba(59,130,246,0.04) 0%, transparent 45%);
  transition: background 1.2s ease;
  will-change: background;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover {
  background: #c4b5fd;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--green-glow);
}
.btn-primary.btn-xl { font-size: 1.05rem; padding: 16px 32px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

html.light .btn-ghost,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-1);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.btn-ghost.btn-xl { font-size: 1.05rem; padding: 16px 32px; }

/* ═══════════════════ REVEAL ANIMATIONS ═══════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.reveal-up:nth-child(1) { transition-delay: 0s; }
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }
.reveal-up:nth-child(5) { transition-delay: 0.35s; }
.reveal-up:nth-child(6) { transition-delay: 0.4s; }

/* ═══════════════════ SECTION SHARED ═══════════════════ */
.section { padding: 100px 0; position: relative; overflow: hidden; transition: background-color 0.6s ease; }
.section-dark { background: var(--bg-1); }

/* ─── LIGHT/DARK SECTIONS — unified per theme ─── */
.section-light {
  background: var(--bg-base);
}
/* In light mode, section-light gets the actual light background */
html.light .section-light { background: var(--light-bg); }
html.light .section-dark  { background: var(--light-bg2, #edeaf9); }

.section-light .section-eyebrow {
  color: var(--green);
}
.section-light .section-title {
  color: var(--text-1);
}
.section-light .section-sub,
.section-light p {
  color: var(--text-2);
}
.section-light .flow-step h3 {
  color: var(--text-1);
}
.section-light .flow-step p {
  color: var(--text-2);
}
.section-light .step-icon-wrap {
  background: var(--bg-3);
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(139,92,246,0.1);
}
html.light .section-light .step-icon-wrap { background: #fff; border-color: var(--light-border); }
.section-light .flow-arrow {
  color: var(--green);
}
.section-light .prebook-benefits strong {
  color: var(--text-1);
}
.section-light .prebook-benefits span {
  color: var(--text-2);
}
.section-light .phone-mockup {
  background: var(--bg-2);
  border-color: var(--border);
}
html.light .section-light .phone-mockup { background: #fff; border-color: var(--light-border); }
.section-light .booking-slot {
  background: rgba(108,63,196,0.07);
  border-color: rgba(108,63,196,0.2);
}
.section-light .bi-item {
  color: var(--text-2);
  border-color: var(--border);
}
.section-light .bi-title {
  color: var(--text-3);
}
.section-light .booking-resto {
  color: var(--text-1);
}
.section-light .phone-header {
  color: var(--text-3);
}
.section-light .slot-time { color: var(--text-1); }
.section-light .slot-people { color: var(--text-3); }
.section-light .prebook-float-1 {
  background: var(--bg-2);
  border-color: var(--border);
  color: var(--text-2);
}
html.light .section-light .prebook-float-1 { background: #fff; border-color: var(--light-border); }
.section-light .prebook-float-2 {
  background: rgba(139,92,246,0.08);
  border-color: rgba(139,92,246,0.3);
}
/* Comparison table light */
.section-light .comparison-table {
  border-color: var(--border);
}
.section-light .ct-header {
  background: var(--bg-3);
  border-color: var(--border);
}
.section-light .ct-header .ct-col {
  color: var(--text-2);
}
.section-light .ct-row {
  border-color: var(--border);
}
.section-light .ct-row:hover { background: rgba(108,63,196,0.03); }
.section-light .feature-col {
  color: var(--text-2);
}
.section-light .preplated-col {
  background: rgba(139,92,246,0.06);
  border-color: rgba(139,92,246,0.15);
}
.section-light .logo-badge { color: var(--green); }
.section-light .section-title .gradient-text,
.section-light h2 .gradient-text {
  background: linear-gradient(135deg, var(--purple-brand) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* CTA block in section */
.section-light .cta-block {
  background: var(--bg-2);
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(139,92,246,0.15);
}
html.light .section-light .cta-block { background: linear-gradient(135deg, #fff 0%, var(--light-bg2) 100%); border-color: var(--light-border); }
.section-light .cta-title {
  color: var(--text-1);
}
.section-light .cta-eyebrow { color: var(--green); }
.section-light .cta-sub { color: var(--text-2); }
.section-light .btn-ghost {
  border-color: var(--border);
  color: var(--text-1);
}
.section-light .btn-ghost:hover {
  background: rgba(139,92,246,0.08);
}
.section-light .cta-glow {
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text-1);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* ═══════════════════ NAVBAR ═══════════════════ */
html.light #navbar,
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0 24px;
}
html.light #navbar.scrolled,
#navbar.scrolled {
  background: rgba(8, 13, 24, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 70px;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
/* Navbar logo text */
.logo-text { color: #fff; font-family: 'Manrope', sans-serif; font-weight: 800; }

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
html.light .nav-links a,
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 0 24px;
  border-top: 1px solid var(--border);
  background: rgba(8, 13, 24, 0.98);
  backdrop-filter: blur(20px);
}
.mobile-menu a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.btn-primary {
  margin-top: 12px;
  color: #000;
  text-align: center;
  border: none;
  border-radius: 50px;
  padding: 14px;
}
.mobile-menu.open { display: flex; }

/* ═══════════════════ HERO ═══════════════════ */
html.light #hero,
#hero {
  width: 100%;
  padding: 100px 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* Animated gradient mesh behind the hero */
html.light #hero::before,
#hero::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(139,92,246,0.18) 0%, transparent 40%),
    radial-gradient(ellipse at 75% 30%, rgba(59,130,246,0.10) 0%, transparent 35%),
    radial-gradient(ellipse at 50% 85%, rgba(168,85,247,0.07) 0%, transparent 30%);
  animation: heroMesh 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroMesh {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-4%, 3%) scale(1.05); }
  66%  { transform: translate(4%, -2%) scale(0.97); }
  100% { transform: translate(0, 0) scale(1); }
}
.hero-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 180px);
}

.hero-inner {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-1);
  margin-bottom: 24px;
}

.typed-wrapper {
  min-height: 1.1em;
  display: inline-block;
}

/* ─── Typed text line (separate from h1, fixed height) ─── */
.hero-typed-line {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 2.2rem;           /* Fixed! Never causes layout shift */
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
  margin-top: -8px;
  margin-bottom: 28px;
}
.hero-typed-line #typed {
  color: var(--green);
  display: inline-block;
}

.typed-cursor {
  color: var(--green);
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1;
  animation: blink-caret 0.75s step-end infinite;
  display: inline-block;
  margin-left: 1px;
  vertical-align: middle;
}
@keyframes blink-caret {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-1);
}
.stat-suffix {
  font-family: 'Manrope', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-1);
}
.stat-label { font-size: 0.78rem; color: var(--text-3); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── HERO VISUAL ─── */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dashboard-float { position: relative; width: 100%; max-width: 580px; }

.dashboard-window {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  animation: float-dashboard 6s ease-in-out infinite;
}
@keyframes float-dashboard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.window-title {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-left: 8px;
  font-weight: 500;
}

.window-body { display: flex; height: 340px; overflow: hidden; }

.dash-sidebar {
  width: 150px;
  background: var(--bg-1);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  flex-shrink: 0;
}
.dash-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 20px;
  padding: 0 4px;
  font-family: 'Manrope', sans-serif;
}
.dash-logo-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.dash-nav-item i {
  width: 14px;
  text-align: center;
  font-size: 0.75rem;
}
.dash-nav-item:hover, .dash-nav-item.active {
  background: rgba(139, 92, 246, 0.12);
  color: var(--green);
}

.dash-main { flex: 1; padding: 14px; overflow-y: auto; overflow-x: hidden; }

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dash-title { font-weight: 700; font-size: 0.9rem; }
.status-badge {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.status-badge.add-btn {
  background: rgba(59,130,246,0.15);
  color: var(--blue);
  cursor: pointer;
}

.dash-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.order-col { }
.col-head {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.col-count {
  background: var(--bg-3);
  color: var(--text-2);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
}

.order-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 6px;
}
.order-card.pulse-card {
  border-color: rgba(139,92,246,0.3);
  animation: card-pulse 3s ease-in-out infinite;
}
@keyframes card-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,92,246,0); }
  50% { box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
}
.oc-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.oc-price { color: var(--green); }
.oc-meta { font-size: 0.65rem; color: var(--text-3); margin-bottom: 6px; }
.oc-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.tag {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.tag.green { background: rgba(139,92,246,0.15); color: #c4b5fd; }
.tag.blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.tag.orange { background: rgba(249,115,22,0.15); color: #fb923c; }
.tag.purple { background: rgba(168,85,247,0.15); color: #c084fc; }

/* Floating notifications */
.float-notification {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.78rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: slide-notif 0.5s ease forwards, float-notif 4s ease-in-out infinite 0.5s;
  white-space: nowrap;
}
.notif-1 { top: -20px; right: -20px; }
.notif-2 { bottom: 40px; right: -30px; animation-delay: 2s; }
@keyframes slide-notif {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float-notif {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.notif-icon {
  font-size: 1rem;
  color: var(--green);
}
.notif-text strong { display: block; font-weight: 700; color: var(--text-1); }
.notif-text span { color: var(--text-3); font-size: 0.72rem; }

.float-card.analytics-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(139,92,246,0.05));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  animation: float-notif 5s ease-in-out infinite 1s;
}
.ac-label { font-size: 0.7rem; color: var(--text-3); margin-bottom: 4px; }
.ac-value {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
}
.ac-trend { font-size: 0.7rem; color: #c4b5fd; margin-top: 2px; }

/* ═══════════════════ TICKER ═══════════════════ */
.ticker-wrap {
  background: rgba(34, 197, 94, 0.05);
  border-top: 1px solid rgba(34, 197, 94, 0.15);
  border-bottom: 1px solid rgba(34, 197, 94, 0.15);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.ticker {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll-ticker 30s linear infinite;
  width: max-content;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ticker-dot { color: var(--green); }
@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════ HOW IT WORKS ═══════════════════ */
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.flow-step:hover .step-icon-wrap { transform: scale(1.05); }

.step-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: var(--transition);
}
.step-icon { font-size: 1.5rem; color: var(--green); }
.step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--green);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step h3 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-1);
}
.flow-step p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--green);
  align-self: center;
  padding-top: 20px;
  flex-shrink: 0;
}

/* ═══════════════════ ORDERING METHODS ═══════════════════ */
.ordering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.ordering-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  overflow: hidden;
  transition: var(--transition);
}
.ordering-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}
.ordering-card:hover .card-glow { opacity: 1; }

.oc-icon-wrap { margin-bottom: 20px; }
.oc-big-icon {
  font-size: 2.2rem;
  color: var(--green);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,92,246,0.1);
  border-radius: 16px;
  border: 1px solid rgba(139,92,246,0.2);
}

.ordering-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-1);
}
.ordering-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  font-size: 0.85rem;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.8rem;
}

.card-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.4s;
}
.glow-green { background: linear-gradient(90deg, transparent, var(--green), transparent); }
.glow-blue { background: linear-gradient(90deg, transparent, var(--blue), transparent); }
.glow-purple { background: linear-gradient(90deg, transparent, var(--purple), transparent); }
.glow-orange { background: linear-gradient(90deg, transparent, var(--orange), transparent); }

/* ═══════════════════ PRE-BOOK ═══════════════════ */
.prebook-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.prebook-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.prebook-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pb-icon {
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,92,246,0.1);
  border-radius: 10px;
}
.prebook-benefits strong {
  display: block;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 2px;
}
.prebook-benefits span {
  font-size: 0.88rem;
  color: var(--text-2);
}

/* Phone mockup */
.prebook-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  animation: float-dashboard 7s ease-in-out infinite;
}

.phone-screen { padding: 20px 16px; }
.phone-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-bottom: 16px;
  font-weight: 600;
}

.phone-booking { }
.booking-resto {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--text-1);
}

.booking-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
}
.slot-icon { font-size: 1.1rem; }
.slot-time { font-size: 0.85rem; font-weight: 700; }
.slot-people { font-size: 0.72rem; color: var(--text-3); }
.slot-confirmed { color: var(--green); font-weight: 700; margin-left: auto; }

.booking-items { margin-bottom: 14px; }
.bi-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.bi-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.booking-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 500;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.status-dot.blink { animation: blink-dot 1.5s ease-in-out infinite; }
@keyframes blink-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.prebook-float-1, .prebook-float-2 {
  position: absolute;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  animation: float-notif 4s ease-in-out infinite;
}
.prebook-float-1 {
  top: 20px;
  right: -20px;
  color: var(--text-2);
}
.prebook-float-2 {
  bottom: 40px;
  right: -30px;
  color: var(--green);
  border-color: rgba(139,92,246,0.3);
  animation-delay: 2s;
}

/* ═══════════════════ FEATURES GRID ═══════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}
.feature-card:hover::before { opacity: 1; }

.feature-card.big { grid-column: span 1; }
@media (min-width: 768px) {
  .feature-card.big:first-child { grid-column: span 2; }
  .feature-card.big:last-child { grid-column: span 2; }
}

.fc-icon {
  font-size: 1.5rem;
  color: var(--green);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,92,246,0.1);
  border-radius: 12px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-1);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
}
.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.fc-tags span {
  background: rgba(139,92,246,0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(139,92,246,0.2);
}

/* ═══════════════════ COMPARISON TABLE ═══════════════════ */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.ct-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.ct-col {
  padding: 16px 20px;
  font-size: 0.85rem;
}

.ct-header .ct-col { font-weight: 700; color: var(--text-2); font-size: 0.8rem; }

.preplated-col {
  background: rgba(139,92,246,0.05);
  border-left: 1px solid rgba(139,92,246,0.15);
  border-right: 1px solid rgba(139,92,246,0.15);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
}

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.ct-row:last-child { border-bottom: none; }
.ct-row:hover { background: rgba(255,255,255,0.02); }

.feature-col { color: var(--text-2); font-size: 0.88rem; }

.check { color: var(--green); font-weight: 600; }
.cross { color: var(--text-3); }

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.pricing-card-main {
  background: var(--bg-2);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.pricing-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #c4b5fd);
}

.pcm-badge {
  display: inline-block;
  background: rgba(139,92,246,0.15);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(139,92,246,0.3);
}

.pcm-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 16px;
}

.pcm-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.pcm-rupee { font-size: 1.8rem; font-weight: 700; color: var(--green); }
.pcm-amount {
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
}
.pcm-period { font-size: 1rem; color: var(--text-3); }

.pcm-desc { font-size: 0.9rem; color: var(--text-2); margin-bottom: 28px; line-height: 1.7; }

.pcm-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pcm-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.pf-check { color: var(--green); font-weight: 700; font-size: 1rem; }

.pcm-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 12px;
}

.pricing-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.pillar:hover { transform: translateX(6px); border-color: rgba(255,255,255,0.12); }

.pillar-icon {
  font-size: 1.4rem;
  color: var(--green);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,92,246,0.1);
  border-radius: 12px;
}
.pillar h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-1);
}
.pillar p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }

/* ═══════════════════ CTA BLOCK ═══════════════════ */
.cta-block {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-2);
}
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text-1);
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 28px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-2);
}
.cp-item i {
  color: var(--green);
  width: 18px;
  text-align: center;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
}

.form-group input,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

/* ═══════════════════ FOOTER ═══════════════════ */
#footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}
.footer-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.7;
}

.footer-links { display: flex; gap: 60px; }
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-1);
  margin-bottom: 6px;
}
.fl-col a {
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.fl-col a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tagline { font-style: italic; }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .pricing-hero { grid-template-columns: 1fr; }
  .prebook-split { grid-template-columns: 1fr; gap: 40px; }
  .prebook-right { display: flex; justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.big:first-child,
  .feature-card.big:last-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-row {
    flex-direction: column;
    text-align: center;
    min-height: unset;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-inner { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .flow-arrow { display: none; }
  .flow-steps { gap: 20px; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.big:first-child,
  .feature-card.big:last-child { grid-column: span 1; }
  .ct-header, .ct-row { grid-template-columns: 1fr 1fr; }
  .others-col { display: none; }
  .dashboard-float .float-notification { display: none; }
  .prebook-float-1, .prebook-float-2 { display: none; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .ordering-grid { grid-template-columns: 1fr; }
  .pricing-card-main { padding: 28px; }
  .footer-links { flex-direction: column; gap: 24px; }
}

/* ═══════════════════ INTERACTIVE DASHBOARD SCREENS ═══════════════════ */
.dash-screen { width: 100%; }
.dash-screen.hidden { display: none; }

/* Tables screen */
.tables-area-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.area-badge {
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  font-size: 0.6rem;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: none;
}
.tables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}
.table-chip {
  border-radius: 8px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--border);
}
.table-chip.occupied { background: rgba(220,38,38,0.12); border-color: rgba(220,38,38,0.25); }
.table-chip.available { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.2); }
.tc-num { font-weight: 700; font-size: 0.85rem; color: var(--text-1); }
.tc-status { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.table-chip.occupied .tc-status { color: #f87171; }
.table-chip.available .tc-status { color: #c4b5fd; }

/* Food items screen */
.food-category {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 8px 0 4px;
}
.food-item-row, .discount-row, .inv-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
}
.fi-name { flex: 1; color: var(--text-2); }
.fi-price { color: var(--green); font-weight: 700; margin-right: 4px; }

/* Discount screen */
.discount-rule-box {
  margin-top: 8px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.drb-label { font-size: 0.65rem; color: var(--text-3); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.drb-pills { display: flex; gap: 6px; margin-bottom: 6px; }
.drb-pill { font-size: 0.68rem; padding: 3px 10px; border-radius: 20px; border: 1px solid var(--border); color: var(--text-3); }
.drb-pill.active { background: rgba(139,92,246,0.15); color: var(--green); border-color: rgba(139,92,246,0.3); }

/* Analytics screen */
.analytics-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.astat {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
}
.astat-label { font-size: 0.58rem; color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px; }
.astat-val { font-size: 0.88rem; font-weight: 800; color: var(--text-1); font-family: 'Manrope', sans-serif; }
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  background: var(--bg-3);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #8b5cf6, rgba(139,92,246,0.3));
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  transition: height 0.6s ease;
}
.astat-footer { font-size: 0.68rem; color: var(--green); font-weight: 600; }

/* Inventory screen */
.inv-row { }

/* Sidebar nav click cursor */
.dash-nav-item { cursor: pointer; user-select: none; }

/* ═══════════════════ BACKGROUND GRID ═══════════════════ */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════ SECTION BG GLOW ═══════════════════ */
.section-dark::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.04) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════ SCROLL PROGRESS ═══════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #c4b5fd);
  width: 0%;
  z-index: 2000;
  transition: width 0.1s linear;
}

/* ═══════════════════ FORM SUCCESS ═══════════════════ */
.form-success {
  text-align: center;
  padding: 48px 32px;
  animation: fadeUp 0.5s ease forwards;
}
.form-success-icon {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-1);
  margin: 0 0 10px;
}
.form-success p {
  color: var(--text-2);
  font-size: 1rem;
  margin: 0 0 8px;
}
.form-success-sub {
  font-size: 0.85rem !important;
  color: var(--text-3) !important;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════ 2026 VISUAL REFINEMENT ═══════════════════ */
:root {
  --cream: #faf1df;
  --cream-2: #efe3cd;
  --cream-3: #fffaf0;
  --ink: #080a13;
  --ink-2: #111323;
  --aubergine: #21142f;
  --brand-purple: #6437f2;
  --brand-violet: #965cff;
  --brand-lilac: #c4a8ff;
  --brand-gradient: linear-gradient(100deg, #4328d9 0%, #6f3df4 34%, #9a5cff 68%, #5633eb 100%);
  --cream-border: rgba(79, 55, 125, 0.16);
  --ink-border: rgba(255, 255, 255, 0.12);
  --soft-shadow: 0 24px 70px rgba(34, 24, 59, 0.14);
}

html.light {
  --green: var(--brand-purple);
  --green-dim: #5730d8;
  --green-glow: rgba(100, 55, 242, 0.25);
  --purple: var(--brand-violet);
  --text-1: #181225;
  --text-2: #4b425f;
  --text-3: #7b708d;
}

html.light body,
body {
  background:
    linear-gradient(180deg,
      #faf1df 0%,
      #f6ebd9 18%,
      #181322 38%,
      #080a13 52%,
      #f8efdc 73%,
      #1a1226 91%,
      #090b14 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(99, 74, 141, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 74, 141, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px);
  background-size: 48px 48px, 48px 48px, 96px 96px;
  background-position: center;
  opacity: 0.72;
}

html.light #particles-canvas,
#particles-canvas {
  opacity: 0.22;
}

#bg-glow {
  background:
    linear-gradient(120deg, rgba(100, 55, 242, 0.08), transparent 34%, rgba(16, 19, 35, 0.08) 72%, transparent),
    linear-gradient(180deg, rgba(255, 250, 240, 0.05), rgba(100, 55, 242, 0.05));
}

.container,
.hero-row,
.ticker-wrap,
#footer {
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: var(--brand-gradient);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  background: var(--brand-gradient);
  background-size: 180% 180%;
  box-shadow: 0 14px 34px rgba(100, 55, 242, 0.22);
}
.btn-primary:hover {
  background-position: 100% 50%;
  color: #fff;
  box-shadow: 0 18px 42px rgba(100, 55, 242, 0.3);
}
html.light .btn-ghost,
.btn-ghost {
  background: rgba(255, 250, 240, 0.45);
  border-color: rgba(77, 61, 105, 0.18);
  color: #241d35;
  backdrop-filter: blur(16px);
}
.section-dark .btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--ink-border);
  color: #f9f6ff;
}

/* Brand */
html.light #navbar,
#navbar {
  background: rgba(250, 241, 223, 0.66);
  border-bottom: 1px solid rgba(77, 61, 105, 0.1);
  backdrop-filter: blur(22px);
}
html.light #navbar.scrolled,
#navbar.scrolled {
  background: rgba(250, 241, 223, 0.86);
  border-bottom-color: rgba(77, 61, 105, 0.16);
  box-shadow: 0 18px 44px rgba(38, 28, 61, 0.1);
}
.nav-logo {
  gap: 11px;
}
.nav-logo-img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 8px 14px rgba(91, 52, 222, 0.18));
}
#navbar .nav-logo-img {
  animation: brandFloat 3.2s ease-in-out infinite;
}
#navbar .logo-text {
  font-size: 1.78rem;
  line-height: 1;
}
.logo-text,
.dash-brand {
  font-family: 'Fredoka', 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.035em;
  color: transparent;
  background: var(--brand-gradient);
  background-size: 190% 190%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGradient 5s ease-in-out infinite;
}
#navbar .logo-text {
  animation: none;
  background-size: 100% 100%;
}
.footer-logo {
  animation: none;
}
html.light .nav-links a,
.nav-links a {
  color: #493f5c;
}
html.light .nav-links a:hover,
.nav-links a:hover {
  color: var(--brand-purple);
}

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

@keyframes logoGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Mixed background sections */
.section {
  isolation: isolate;
}
.section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 61, 244, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 61, 244, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.7;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.section-light {
  background:
    linear-gradient(180deg, rgba(250, 241, 223, 0.96) 0%, rgba(244, 234, 215, 0.9) 54%, rgba(235, 226, 249, 0.86) 100%);
  color: #181225;
}
.section-dark {
  background:
    linear-gradient(150deg, rgba(8, 10, 19, 0.98) 0%, rgba(28, 19, 42, 0.97) 58%, rgba(250, 241, 223, 0.14) 130%);
  color: #f8f5ff;
}
html.light .section-light,
html.light .section-dark {
  background: initial;
}
html.light .section-light {
  background:
    linear-gradient(180deg, rgba(250, 241, 223, 0.96) 0%, rgba(244, 234, 215, 0.9) 54%, rgba(235, 226, 249, 0.86) 100%);
}
html.light .section-dark {
  background:
    linear-gradient(150deg, rgba(8, 10, 19, 0.98) 0%, rgba(28, 19, 42, 0.97) 58%, rgba(250, 241, 223, 0.14) 130%);
}
.section-light .section-title,
.section-light .flow-step h3,
.section-light .prebook-benefits strong,
.section-light .booking-resto,
.section-light .slot-time,
.section-light .contact-info h3 {
  color: #181225;
}
.section-light .section-sub,
.section-light p,
.section-light .prebook-benefits span,
.section-light .feature-col,
.section-light .ct-header .ct-col,
.section-light .phone-header,
.section-light .slot-people {
  color: #554a66;
}
.section-dark .section-title,
.section-dark .feature-card h3,
.section-dark .ordering-card h3,
.section-dark .price-card h3,
.section-dark .pillar h4,
.section-dark .pcm-name,
.section-dark .pcm-amount,
.section-dark .contact-left .section-title {
  color: #f9f6ff;
}
.section-dark .section-sub,
.section-dark .feature-card p,
.section-dark .ordering-card p,
.section-dark .feature-list li,
.section-dark .pillar p,
.section-dark .pcm-desc,
.section-dark .pcm-features li,
.section-dark .contact-left p,
.section-dark .cp-item,
.section-dark .form-group label {
  color: rgba(249, 246, 255, 0.72);
}
.section-dark::before {
  background:
    linear-gradient(120deg, transparent, rgba(111, 61, 244, 0.08), transparent);
  width: auto;
  height: auto;
  inset: 0;
  transform: none;
}

/* Hero */
html.light #hero,
#hero {
  background:
    linear-gradient(128deg,
      rgba(250, 241, 223, 0.98) 0%,
      rgba(248, 239, 222, 0.94) 42%,
      rgba(33, 20, 47, 0.96) 78%,
      rgba(8, 10, 19, 0.98) 100%);
}
html.light #hero::before,
#hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 61, 244, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 61, 244, 0.075) 1px, transparent 1px),
    linear-gradient(115deg, rgba(255, 255, 255, 0.28), transparent 38%, rgba(100, 55, 242, 0.1));
  background-size: 56px 56px, 56px 56px, 100% 100%;
  animation: none;
  opacity: 0.78;
}
.hero-title,
html.light .hero-title {
  color: #17111f;
}
.hero-sub,
html.light .hero-sub {
  color: #4e455f;
}
.hero-badge,
html.light .hero-badge {
  background: rgba(255, 250, 240, 0.66);
  border-color: rgba(111, 61, 244, 0.2);
  color: #5730d8;
  box-shadow: 0 14px 40px rgba(68, 49, 97, 0.08);
}
.hero-typed-line,
.hero-typed-line #typed,
.typed-cursor {
  color: var(--brand-purple);
}
.hero-stats {
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  width: fit-content;
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid rgba(77, 61, 105, 0.14);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}
.stat {
  justify-content: center;
  min-width: 112px;
}
.stat-value {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  white-space: nowrap;
  line-height: 1;
}
.stat-num,
.stat-suffix,
html.light .stat-num,
html.light .stat-suffix {
  color: #15101f;
}
.stat-label {
  color: #756a84;
}
.stat-divider {
  background: rgba(77, 61, 105, 0.16);
}
.dashboard-window {
  background: linear-gradient(145deg, rgba(17, 19, 35, 0.98), rgba(33, 20, 47, 0.98));
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 38px 110px rgba(8, 10, 19, 0.46), 0 0 0 1px rgba(255,255,255,0.04);
}
html.light .float-notification,
.float-notification,
.float-card.analytics-card {
  background: rgba(18, 20, 35, 0.9);
  border-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

/* Ticker and light cards */
html.light .ticker-wrap,
.ticker-wrap {
  background: linear-gradient(90deg, rgba(250, 241, 223, 0.78), rgba(22, 16, 32, 0.92), rgba(250, 241, 223, 0.78));
  border-color: rgba(111, 61, 244, 0.16);
}
.ticker {
  color: rgba(255, 250, 240, 0.78);
}
.ticker-dot {
  color: var(--brand-lilac);
}
.section-light .flow-step,
.section-light .phone-mockup,
.section-light .comparison-table,
.section-light .ct-header,
.section-light .prebook-float-1,
.section-light .pricing-card-main,
.section-light .pillar {
  background: rgba(255, 250, 240, 0.72);
  border-color: var(--cream-border);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}
.section-light .step-icon-wrap,
.section-light .pb-icon,
.section-light .booking-slot {
  background: rgba(111, 61, 244, 0.08);
  border-color: rgba(111, 61, 244, 0.16);
}
.section-dark .pricing-card-main,
.section-dark .pillar,
.section-dark .form-group input,
.section-dark .form-group textarea {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--ink-border);
  backdrop-filter: blur(18px);
}
.section-dark .pricing-card-main {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

/* Ordering flip cards */
.ordering-grid {
  align-items: stretch;
  perspective: 1400px;
}
.ordering-card {
  min-height: 310px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ordering-card:hover,
.ordering-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(100, 55, 242, 0.22);
}
.ordering-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 310px;
}
/* Front face — always visible as base */
.ordering-card-face {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  overflow: hidden;
}
.ordering-card-front {
  position: relative;
  min-height: 310px;
  justify-content: flex-start;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(155deg, rgba(255, 250, 240, 0.14), rgba(255, 255, 255, 0.04) 34%, rgba(100, 55, 242, 0.16)),
    rgba(12, 14, 25, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
/* Back face — slides up over the front on hover */
.ordering-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(145deg, #2a1a4e, #1a0f36);
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease;
}
.ordering-card:hover .ordering-card-back,
.ordering-card:focus .ordering-card-back,
.ordering-card:focus-within .ordering-card-back {
  transform: translateY(0);
  opacity: 1;
}
.ordering-card-back h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #f1e8ff;
}
.ordering-card-back p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #c4b5fd;
}
.ordering-number {
  width: fit-content;
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.ordering-card-front .oc-icon-wrap {
  margin: 0;
}
.ordering-card-front h3 {
  max-width: 220px;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
}
.ordering-card:hover .card-glow,
.ordering-card:focus .card-glow {
  opacity: 1;
}
.ordering-card .card-glow {
  z-index: 2;
}
.oc-big-icon {
  background: rgba(255, 250, 240, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
  color: #cbb6ff;
}

/* Feature pathway */
.features-path {
  --feature-progress: 0%;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px 0 30px;
}
.features-path::before,
.features-path::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
}
.features-path::before {
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08), transparent);
}
.features-path::after {
  height: var(--feature-progress);
  background: linear-gradient(180deg, #c4a8ff, #7c4dff, #f8efdc);
  box-shadow: 0 0 24px rgba(151, 92, 255, 0.38);
  transition: height 0.16s linear;
}
.feature-node {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: 190px;
  margin-bottom: 34px;
}
.feature-node:last-child {
  margin-bottom: 0;
}
.feature-node .feature-card {
  --feature-surface:
    linear-gradient(145deg, rgba(255, 250, 240, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(10, 12, 22, 0.86);
  width: min(100%, 420px);
  background: var(--feature-surface);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}
.feature-node:nth-child(odd) .feature-card {
  grid-column: 1;
  justify-self: end;
  margin-right: 24px;
}
.feature-node:nth-child(even) .feature-card {
  grid-column: 3;
  justify-self: start;
  margin-left: 24px;
}
.features-path .feature-node:nth-child(odd) .feature-card.big {
  grid-column: 1;
}
.features-path .feature-node:nth-child(even) .feature-card.big {
  grid-column: 3;
}
.feature-marker {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 250, 240, 0.78);
  background: linear-gradient(145deg, rgba(20, 15, 32, 0.96), rgba(70, 40, 142, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 10px rgba(100, 55, 242, 0.08), 0 18px 44px rgba(0, 0, 0, 0.26);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.feature-marker span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.feature-node.active .feature-marker {
  transform: scale(1.08);
  color: #fff;
  background: var(--brand-gradient);
}
.feature-node.active .feature-card {
  border-color: rgba(196, 168, 255, 0.42);
  box-shadow: 0 30px 90px rgba(100, 55, 242, 0.2);
}
.features-path .feature-card::before {
  opacity: 0.8;
}
.features-path .fc-icon {
  background: rgba(196, 168, 255, 0.12);
  border: 1px solid rgba(196, 168, 255, 0.18);
  color: #c4a8ff;
}
.features-path .fc-tags span {
  background: rgba(196, 168, 255, 0.12);
  border-color: rgba(196, 168, 255, 0.22);
  color: #d6c5ff;
}

#features {
  overflow: visible;
  z-index: 2;
}

#why {
  z-index: 1;
}

.feature-path-bridge {
  position: relative;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 210px;
  margin: -4px auto -78px;
  padding-bottom: 96px;
  color: #f9f6ff;
  z-index: 3;
}
.bridge-line {
  width: 2px;
  height: 118px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(196, 168, 255, 0.28), #8a55ff, rgba(250, 241, 223, 0.86));
  box-shadow: 0 0 28px rgba(138, 85, 255, 0.45);
  transform-origin: top;
  animation: bridgeFlow 2.4s ease-in-out infinite;
}
.bridge-pulse {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-top: -28px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 0 0 10px rgba(138, 85, 255, 0.12), 0 20px 50px rgba(95, 54, 220, 0.34);
  animation: bridgePulse 1.8s ease-in-out infinite;
}
.bridge-label {
  margin-top: -2px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(249, 246, 255, 0.76);
}

@keyframes bridgeFlow {
  0%, 100% { transform: scaleY(0.72); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes bridgePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

#footer {
  background:
    linear-gradient(145deg, rgba(8, 10, 19, 0.98), rgba(29, 19, 43, 0.98));
  border-top-color: rgba(255, 255, 255, 0.1);
}
#footer .footer-brand p,
#footer .fl-col a,
#footer .footer-bottom {
  color: rgba(249, 246, 255, 0.62);
}
#footer .fl-col h4 {
  color: #f9f6ff;
}

@media (max-width: 1024px) {
  .features-path {
    max-width: 840px;
  }
  .feature-node {
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  #hero {
    background:
      linear-gradient(180deg, rgba(250, 241, 223, 0.98) 0%, rgba(248, 239, 222, 0.95) 48%, rgba(27, 18, 40, 0.98) 100%);
  }
  .hero-stats {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    justify-content: center;
  }
  .stat {
    align-items: center;
  }
}

@media (max-width: 720px) {
  .features-path {
    padding-left: 0;
  }
  .features-path::before,
  .features-path::after {
    left: 27px;
  }
  .feature-node {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: auto;
    margin-bottom: 22px;
  }
  .feature-marker {
    grid-column: 1;
    width: 46px;
    height: 46px;
  }
  .feature-node:nth-child(odd) .feature-card,
  .feature-node:nth-child(even) .feature-card {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
    margin: 0;
  }
  .ordering-card {
    min-height: auto;
  }
  .ordering-card-inner {
    min-height: auto;
  }
  .ordering-card-front {
    min-height: 168px;
  }
  /* On touch devices show back below the front instead of on hover */
  .ordering-card-back {
    position: relative;
    inset: auto;
    transform: none;
    opacity: 1;
    margin-top: 2px;
    border-radius: 0 0 14px 14px;
    border-top: none;
  }
  .feature-path-bridge {
    margin-left: 0;
    margin-right: auto;
    width: 112px;
    transform: translateX(-2px);
  }
}

@media (max-width: 600px) {
  .nav-logo-img {
    width: 34px;
    height: 34px;
  }
  #navbar .logo-text {
    font-size: 1.42rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .stat-divider {
    display: block;
    width: 100%;
    height: 1px;
  }
}

/* Final contrast guardrails */
:root {
  --brand-gradient: linear-gradient(90deg, #7c3ff2 0%, #7040f1 42%, #6148ee 100%);
  --brand-purple: #6d3ff0;
  --brand-violet: #7c3ff2;
  --brand-lilac: #b79cff;
}

#navbar .nav-inner {
  height: 82px;
}

#navbar .nav-logo {
  gap: 14px;
}

#navbar .nav-logo-img {
  width: 46px;
  height: 46px;
  animation: brandFloat 2.45s ease-in-out infinite;
}

#navbar .logo-text {
  font-size: clamp(2.05rem, 3.3vw, 2.72rem);
  letter-spacing: 0;
  line-height: 0.95;
  background: linear-gradient(90deg, #7c3ff2 0%, #7040f1 42%, #6148ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  width: min(100%, 620px);
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(100deg, rgba(255, 250, 240, 0.9), rgba(244, 235, 219, 0.82));
}

.hero-stats .stat {
  min-width: 0;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.hero-stats .stat-divider {
  width: 1px;
  height: 78px;
  align-self: center;
  background: rgba(75, 66, 95, 0.18);
}

.hero-stats .stat-num,
.hero-stats .stat-suffix {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  letter-spacing: 0;
}

.hero-stats .stat-label {
  color: #4b405f;
  font-size: clamp(0.92rem, 1.6vw, 1.12rem);
  line-height: 1.2;
}

.float-card.analytics-card {
  left: 42px;
  bottom: -72px;
  z-index: 4;
}

.flow-steps {
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 16px;
}

.flow-step {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 36px 26px;
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid rgba(79, 55, 125, 0.12);
  box-shadow: 0 22px 60px rgba(49, 35, 75, 0.11);
}

.flow-step h3 {
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step p {
  margin-top: auto;
}

.flow-arrow {
  align-self: center;
  width: 28px;
  padding: 0;
  text-align: center;
}

.ordering-card {
  background: rgba(12, 14, 25, 0.92);
  transform-style: preserve-3d;
}

.ordering-card-inner {
  background: rgba(12, 14, 25, 0.92);
  border-radius: 14px;
}

.ordering-card-face {
  background-color: rgba(12, 14, 25, 0.96);
}

/* back-face colour tokens — kept in sync with main rule */
.ordering-card-back h3,
html.light .section-dark .ordering-card-back h3,
.section-dark .ordering-card-back h3 {
  color: #f1e8ff;
}

.ordering-card-back p,
html.light .section-dark .ordering-card-back p,
.section-dark .ordering-card-back p {
  color: #c4b5fd;
}

.features-path::before,
.features-path::after {
  z-index: 0;
}

.feature-node {
  z-index: 1;
}

.feature-marker {
  isolation: isolate;
  overflow: hidden;
  background: #743ff2;
  box-shadow: 0 0 0 14px rgba(15, 12, 28, 0.92), 0 18px 44px rgba(0, 0, 0, 0.34);
}

.feature-marker::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--brand-gradient);
}

.feature-node .feature-card,
.feature-node .feature-card:hover {
  background: var(--feature-surface);
}

html.light .section-dark .pricing-card-main,
.section-dark .pricing-card-main,
html.light .section-dark .pillar,
.section-dark .pillar {
  background: linear-gradient(145deg, rgba(22, 20, 36, 0.9), rgba(35, 25, 53, 0.84));
  border-color: rgba(196, 168, 255, 0.2);
  color: #fbf8ff;
}

html.light .section-dark .pillar h4,
html.light .section-dark .pillar p,
.section-dark .pillar h4,
.section-dark .pillar p {
  color: #fbf8ff;
}

html.light .section-dark .pillar p,
.section-dark .pillar p {
  color: rgba(249, 246, 255, 0.76);
}

html.light .section-dark,
.section-dark {
  color: #f9f6ff;
}

html.light .section-dark .section-title,
html.light .section-dark .section-title:not(.gradient-text),
html.light .section-dark .ordering-card-front h3,
html.light .section-dark .pricing-card-main h3,
html.light .section-dark .pcm-name,
html.light .section-dark .pcm-amount,
html.light .section-dark .pillar h4,
html.light .section-dark .contact-left .section-title,
.section-dark .section-title,
.section-dark .ordering-card-front h3,
.section-dark .pricing-card-main h3,
.section-dark .pcm-name,
.section-dark .pcm-amount,
.section-dark .pillar h4 {
  color: #fbf8ff;
}

html.light .section-dark .section-sub,
html.light .section-dark .section-sub p,
html.light .section-dark .ordering-card-front p,
html.light .section-dark .pillar p,
html.light .section-dark .pcm-desc,
html.light .section-dark .pcm-period,
html.light .section-dark .pcm-note,
html.light .section-dark .pcm-features li,
html.light .section-dark .contact-left p,
html.light .section-dark .cp-item,
html.light .section-dark .form-group label,
.section-dark .section-sub,
.section-dark .ordering-card-front p,
.section-dark .pillar p,
.section-dark .pcm-desc,
.section-dark .pcm-period,
.section-dark .pcm-note,
.section-dark .pcm-features li,
.section-dark .contact-left p,
.section-dark .cp-item,
.section-dark .form-group label {
  color: rgba(249, 246, 255, 0.76);
}

html.light .section-dark .section-eyebrow,
.section-dark .section-eyebrow {
  color: #8f63ff;
}

html.light .float-notification,
html.light .float-card.analytics-card,
.float-notification,
.float-card.analytics-card {
  background: rgba(20, 22, 38, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

html.light .notif-text strong,
html.light .float-card.analytics-card .ac-value,
.notif-text strong,
.float-card.analytics-card .ac-value {
  color: #f9f6ff;
}

html.light .notif-text span,
html.light .float-card.analytics-card .ac-label,
html.light .float-card.analytics-card .ac-trend,
.notif-text span,
.float-card.analytics-card .ac-label,
.float-card.analytics-card .ac-trend {
  color: rgba(249, 246, 255, 0.68);
}

html.light .section-light .comparison-table,
html.light .section-light .ct-header,
html.light .section-light .ct-row,
.section-light .comparison-table,
.section-light .ct-header,
.section-light .ct-row {
  color: #1b1428;
}

html.light .section-light .comparison-table .ct-col,
.section-light .comparison-table .ct-col {
  color: #514660;
}

html.light .section-light .comparison-table .preplated-col,
.section-light .comparison-table .preplated-col {
  color: #211735;
}

/* Menu journey motion and final polish */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, transparent 0 54px, rgba(109, 63, 240, 0.09) 55px 56px, transparent 57px),
    radial-gradient(circle at 91% 42%, transparent 0 72px, rgba(250, 241, 223, 0.1) 73px 74px, transparent 75px),
    linear-gradient(90deg, transparent 0 11%, rgba(109, 63, 240, 0.055) 11.2% 11.35%, transparent 11.6% 88.4%, rgba(109, 63, 240, 0.055) 88.65% 88.8%, transparent 89%),
    repeating-linear-gradient(180deg, transparent 0 92px, rgba(255, 250, 240, 0.055) 93px, transparent 94px);
  opacity: 0.75;
}

.section {
  transform-style: preserve-3d;
}

.section > .container::before {
  content: '';
  position: absolute;
  top: -34px;
  right: 18px;
  width: min(34vw, 360px);
  height: min(34vw, 360px);
  border: 1px solid rgba(126, 63, 242, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 42%, rgba(126, 63, 242, 0.045) 43% 43.5%, transparent 44% 62%, rgba(126, 63, 242, 0.035) 63% 63.5%, transparent 64%);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
  transform: translate3d(0, 28px, 0);
  transition: transform 1.2s cubic-bezier(0.18, 0.82, 0.2, 1), opacity 1.2s ease;
}

.reveal-up {
  transform: translate3d(0, -52px, 0) scale(0.985);
  filter: blur(8px);
}

.reveal-up.visible {
  animation: menuDrop 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-left.visible {
  animation: menuSlideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-right.visible {
  animation: menuSlideRight 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes menuDrop {
  0% { opacity: 0; transform: translate3d(0, -72px, 0) scale(0.98); filter: blur(10px); }
  62% { opacity: 1; transform: translate3d(0, 8px, 0) scale(1.01); filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

@keyframes menuSlideLeft {
  0% { opacity: 0; transform: translate3d(-90px, -32px, 0) rotate(-1.5deg); filter: blur(10px); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); filter: blur(0); }
}

@keyframes menuSlideRight {
  0% { opacity: 0; transform: translate3d(90px, -32px, 0) rotate(1.5deg); filter: blur(10px); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); filter: blur(0); }
}

#why {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 241, 223, 0.98), rgba(246, 236, 217, 0.96)),
    repeating-linear-gradient(0deg, transparent 0 72px, rgba(109, 63, 240, 0.06) 73px, transparent 74px);
}

#why .section-eyebrow.visible {
  animation: menuDrop 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#why .section-title.visible {
  animation: whyDock 1.25s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: left center;
}

#why .comparison-table.visible {
  animation: whyTableServe 1.18s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

@keyframes whyDock {
  0% { opacity: 0; transform: translate3d(32vw, -30vh, 0) scale(1.22); filter: blur(12px); }
  58% { opacity: 1; transform: translate3d(-18px, 8px, 0) scale(1.03); filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

@keyframes whyTableServe {
  0% { opacity: 0; transform: translate3d(0, 92px, 0) rotateX(10deg) scale(0.96); filter: blur(10px); }
  70% { opacity: 1; transform: translate3d(0, -8px, 0) rotateX(0) scale(1.01); filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotateX(0) scale(1); filter: blur(0); }
}

html.light .section-dark .ordering-card-back,
.section-dark .ordering-card-back {
  background:
    linear-gradient(155deg, rgba(24, 20, 42, 0.98), rgba(13, 15, 28, 0.98) 58%, rgba(111, 61, 244, 0.18));
}

html.light .section-dark .ordering-card-back h3,
html.light .section-dark .ordering-card-back p,
html.light .section-dark .ordering-card-back .feature-list li,
.section-dark .ordering-card-back h3,
.section-dark .ordering-card-back p,
.section-dark .ordering-card-back .feature-list li {
  color: rgba(249, 246, 255, 0.82);
}

html.light .section-dark .ordering-card-back h3,
.section-dark .ordering-card-back h3 {
  color: #fbf8ff;
}

html.light .feature-node .feature-card,
.feature-node .feature-card {
  background: var(--feature-surface);
}

html.light .feature-node .feature-card:hover,
.feature-node .feature-card:hover {
  background: var(--feature-surface);
  transform: translateY(-2px);
}

html.light .features-path::before,
html.light .features-path::after,
.features-path::before,
.features-path::after {
  z-index: 0;
}

html.light .feature-marker,
.feature-marker {
  background: #743ff2;
  box-shadow: 0 0 0 14px rgba(15, 12, 28, 0.96), 0 18px 44px rgba(0, 0, 0, 0.34);
}

html.light .section-dark .pricing-pillars .pillar,
.section-dark .pricing-pillars .pillar {
  background: linear-gradient(145deg, rgba(22, 20, 36, 0.92), rgba(35, 25, 53, 0.86));
}

@media (max-width: 900px) {
  .flow-steps {
    flex-wrap: wrap;
  }

  .flow-step {
    flex-basis: calc(50% - 16px);
  }

  .flow-arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  #navbar .nav-inner {
    height: 74px;
  }

  #navbar .nav-logo-img {
    width: 38px;
    height: 38px;
  }

  #navbar .logo-text {
    font-size: 1.72rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .hero-stats .stat-divider {
    width: 100%;
    height: 1px;
  }

  .flow-step {
    flex-basis: 100%;
    min-height: 280px;
  }
}

/* Requested refinement pass */
html.light #hero,
#hero {
  padding-top: 92px;
}

.hero-title {
  font-size: clamp(2.35rem, 3.85vw, 3.45rem);
  line-height: 1.06;
}

.hero-title .gradient-text {
  white-space: nowrap;
}

.hero-typed-line {
  font-size: 1.05rem;
  height: 1.8rem;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-ctas {
  margin-bottom: 34px;
}

.hero-stats {
  width: min(100%, 470px);
  padding: 18px 20px;
  border-radius: 18px;
}

.hero-stats .stat {
  display: grid;
  grid-template-rows: 56px auto;
  align-items: center;
  justify-items: center;
  gap: 7px;
}

.hero-stats .stat-num,
.hero-stats .stat-suffix {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  line-height: 1;
}

.hero-stats .stat-value {
  align-self: center;
}

.hero-stats .stat-label {
  min-height: 2.2em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 0.88rem;
}

.hero-stats .stat-divider {
  height: 58px;
}

.flow-step {
  border-radius: 22px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.flow-step:hover {
  transform: translateY(-10px);
  border-color: rgba(109, 63, 240, 0.22);
  box-shadow: 0 34px 80px rgba(71, 48, 112, 0.16);
}

.flow-step:hover .step-icon-wrap {
  transform: translateY(-4px) scale(1.06);
}

.step-num {
  width: 30px;
  height: 30px;
  top: -14px;
  right: -14px;
  color: #fff;
  background: var(--brand-gradient);
  border: 2px solid rgba(255, 250, 240, 0.9);
  box-shadow: 0 8px 20px rgba(109, 63, 240, 0.32);
  font-size: 0.76rem;
}

.ordering-card,
.ordering-card-inner {
  background: rgba(15, 13, 27, 0.95);
}

.ordering-card-inner {
  box-shadow: 0 24px 70px rgba(7, 6, 16, 0.46);
}

.ordering-card:hover .ordering-card-inner,
.ordering-card:focus .ordering-card-inner,
.ordering-card:focus-within .ordering-card-inner {
  box-shadow: 0 36px 90px rgba(7, 6, 16, 0.62), 0 0 0 1px rgba(126, 63, 242, 0.24);
}

.ordering-card-face {
  box-shadow: none;
}

html.light .section-dark .ordering-card-back,
.section-dark .ordering-card-back,
.ordering-card-back {
  background: linear-gradient(145deg, rgba(255, 252, 246, 0.98), rgba(238, 230, 250, 0.98));
  border-color: rgba(109, 63, 240, 0.18);
  justify-content: flex-start;
  gap: 12px;
  padding: 26px;
}

html.light .section-dark .ordering-card-back h3,
.section-dark .ordering-card-back h3,
.ordering-card-back h3 {
  color: #181225;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1) 0.16s, opacity 0.45s ease 0.16s;
}

html.light .section-dark .ordering-card-back p,
html.light .section-dark .ordering-card-back .feature-list li,
.section-dark .ordering-card-back p,
.section-dark .ordering-card-back .feature-list li,
.ordering-card-back p,
.ordering-card-back .feature-list li {
  color: #4d425e;
}

.ordering-card-back p,
.ordering-card-back .feature-list {
  opacity: 0;
  transform: translateY(18px);
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1) 0.28s, opacity 0.45s ease 0.28s;
}

.ordering-card:hover .ordering-card-back h3,
.ordering-card:focus .ordering-card-back h3,
.ordering-card:focus-within .ordering-card-back h3,
.ordering-card:hover .ordering-card-back p,
.ordering-card:focus .ordering-card-back p,
.ordering-card:focus-within .ordering-card-back p,
.ordering-card:hover .ordering-card-back .feature-list,
.ordering-card:focus .ordering-card-back .feature-list,
.ordering-card:focus-within .ordering-card-back .feature-list {
  opacity: 1;
  transform: translateY(0);
}

.feature-marker {
  position: relative;
  background: transparent;
}

.feature-marker::before {
  inset: 3px;
  z-index: 0;
  border-radius: 50%;
  transform: rotate(calc(var(--node-progress, 0) * 1turn));
  background:
    conic-gradient(from -90deg, #a98cff 0turn, #7242f2 calc(var(--node-progress, 0) * 1turn), rgba(34, 25, 58, 0.98) 0turn),
    rgba(18, 14, 30, 0.98);
  transition: background 0.4s ease, transform 0.4s ease;
}

.feature-marker::after {
  content: '';
  position: absolute;
  inset: 9px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #743ff2 0%, #5c35d8 100%);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.16);
}

.feature-node.active .feature-marker {
  transform: scale(1.08);
}

.feature-node.active .feature-marker::before {
  box-shadow: 0 0 24px rgba(126, 63, 242, 0.72);
}

.feature-marker span {
  position: relative;
  z-index: 2;
}

.feature-node .feature-card {
  width: min(100%, 330px);
  min-height: 0;
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(14px);
}

.feature-node .feature-card p {
  font-size: 0.8rem;
  line-height: 1.55;
}

.feature-node .feature-card h3 {
  font-size: 0.98rem;
}

.feature-node .fc-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}

.feature-node .fc-tags {
  margin-top: 12px;
}

.feature-node .fc-tags span {
  font-size: 0.66rem;
  padding: 3px 8px;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: clamp(2.25rem, 8vw, 3.35rem);
  }

  .hero-title .gradient-text {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .hero-stats .stat {
    grid-template-rows: auto auto;
  }
}

/* Minute fixes requested */
.step-num {
  color: rgba(255, 255, 255, 0.96);
  background: linear-gradient(135deg, #8e62ff, #683bf0);
  border-color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 8px rgba(26, 14, 61, 0.5);
}

.ordering-card,
.ordering-card-inner,
.ordering-card-face {
  border-radius: 18px;
}

.ordering-card {
  overflow: visible;
}

.ordering-card-inner {
  overflow: hidden;
}

.ordering-card-back {
  overflow: hidden;
  padding: 24px 28px;
}

.ordering-card-back h3 {
  font-size: 1.18rem;
  line-height: 1.14;
  margin-bottom: 6px;
}

.ordering-card-back p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.ordering-card-back .feature-list {
  display: grid;
  gap: 6px;
  overflow: hidden;
}

.ordering-card-back .feature-list li {
  font-size: 0.78rem;
  line-height: 1.35;
  padding-left: 15px;
}

.ordering-card-back::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(109, 63, 240, 0.12);
  border-radius: 12px;
  pointer-events: none;
}

html.light .feature-node .feature-card,
.feature-node .feature-card {
  --feature-surface:
    linear-gradient(145deg, rgba(255, 252, 246, 0.94), rgba(239, 232, 250, 0.9));
  border-color: rgba(174, 148, 226, 0.36);
  box-shadow: 0 22px 70px rgba(37, 26, 62, 0.18);
}

html.light .feature-node .feature-card h3,
.feature-node .feature-card h3 {
  color: #1c1529;
}

html.light .feature-node .feature-card p,
.feature-node .feature-card p {
  color: #514760;
}

html.light .feature-node .fc-tags span,
.feature-node .fc-tags span {
  color: #6d3ff0;
  background: rgba(109, 63, 240, 0.08);
  border-color: rgba(109, 63, 240, 0.16);
}

.feature-path-bridge {
  margin-bottom: -122px;
  padding-bottom: 142px;
}

.feature-path-bridge .bridge-line {
  height: 178px;
  background: linear-gradient(180deg, rgba(196, 168, 255, 0.26), #8a55ff 52%, rgba(250, 241, 223, 0.92));
}

.feature-path-bridge .bridge-pulse {
  margin-top: -38px;
}
