:root {
  --bg: #07090f;
  --glass: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.15);
  --text: #f5f7fa;
  --muted: #9aa3b2;

  --grad: linear-gradient(135deg,#ff7a18,#ffb347,#ff3cac,#784bff,#2afadf);
}

/* base */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* glowing blobs */

.bg-blur {
  position: fixed;
  width: 600px;
  height: 600px;
  filter: blur(120px);
  opacity: .25;
  z-index: -1;
}

.blob1 { background:#ff3cac; top:-200px; left:-200px; }
.blob2 { background:#784bff; bottom:-200px; right:-150px; }
.blob3 { background:#2afadf; top:40%; left:40%; }

/* nav */

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 60px;
}

.brand {
  font-weight: 800;
  font-size: 1.3rem;
}

.links a {
  color: var(--muted);
  margin-left: 20px;
  text-decoration: none;
  transition: .2s;
}

.links a:hover {
  color: white;
}

/* hero */

.hero {
  padding-bottom: 50px;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(120, 75, 255, 0.08) 100%);
}

.hero-inner {
  text-align: center;
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 15px 0;
  animation: fadeInUp 0.8s ease-out;
  letter-spacing: -2px;
}

.hero-title .emoji-icon {
  display: inline-block;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: currentColor !important;
  background-clip: unset !important;
  color: var(--text) !important;
}

.hero-title .gradient-title-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin: 15px 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta {
  margin-top: 28px;
}

/* buttons */

.btn {
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: .25s;
  margin: 8px;
}

.primary {
  background: var(--grad);
  color: black;
  border: none;
  box-shadow: 0 0 30px rgba(255, 100, 200, .4);
}

.primary:hover {
  transform: translateY(-3px);
}

.ghost {
  background: transparent;
  color: white;
}

.ghost:hover {
  background: var(--glass);
}

/* burger stack animation */

.command-section {
  text-align: left;
  max-width: 700px;
  margin: 25px auto 0;
  padding: 24px;
}

.command-header {
  margin-bottom: 16px;
}

.command-intro {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.command-section pre {
  overflow-x: auto;
  font-size: .9rem;
  margin: 16px 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.command-section code {
  color: #2afadf;
  font-weight: 500;
  font-family: 'Courier New', 'Monaco', monospace;
  display: block;
}

.command-footer {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 12px 0 0;
  text-align: center;
  line-height: 1.5;
}

/* stats section */

.stats-section {
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(120, 75, 255, 0.08) 0%, transparent 100%);
  border-top: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 0 auto;
  max-width: 800px;
  padding: 0 40px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  border-radius: 16px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.stat-item {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

/* menu section */

.menu-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.menu-item {
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(120,75,255,.3);
}

.item-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.menu-item h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.item-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.item-price {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.featured-meal {
  grid-column: span 1;
  box-shadow: 0 0 40px rgba(255, 122, 24, .3) !important;
}

.featured-meal .item-price {
  font-size: 1.5rem;
}

.burger-stack {
  margin: 60px auto 0;
  width: 160px;
}

.burger-stack div {
  height: 18px;
  border-radius: 12px;
  margin: 6px 0;
  animation: float 3s ease-in-out infinite alternate;
}

.burger-stack div:nth-child(1){background:#ffb347;height:26px}
.burger-stack div:nth-child(2){background:#2ecc71}
.burger-stack div:nth-child(3){background:#6b3e26}
.burger-stack div:nth-child(4){background:#e74c3c}
.burger-stack div:nth-child(5){background:#6b3e26}
.burger-stack div:nth-child(6){background:#ffb347;height:26px}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

/* divider */

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--grad), transparent);
  margin: 30px auto;
  max-width: 600px;
  position: relative;
}

.divider::before {
  content: '✨';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg);
  padding: 0 10px;
  font-size: 1.2rem;
}

/* sections */

.section {
  padding: 50px 40px;
  max-width: 100%;
  margin: auto;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* grid */

.grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* glass cards */

.glass {
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}

.card h3 {
  margin-bottom: 10px;
}

/* code block */

.code {
  text-align: left;
  max-width: 700px;
  margin: auto;
}

pre {
  overflow-x: auto;
  font-size: .9rem;
}

/* pricing */

.price-num {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 10px 0 15px;
}

.featured {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(120,75,255,.4);
}

/* footer */

.footer-burger {
  margin: 40px auto;
  width: 140px;
}

footer {
  text-align: center;
  color: var(--muted);
  padding: 30px 20px;
}
