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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #0a0c10;
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* animated gradient bg */
.bg-glow {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 230, 230, 0.4),
    rgba(255, 255, 255, 0) 70%
  );
}

.blob {
  position: fixed;
  width: 500px;
  height: 500px;
  background: #ff3b3b;
  filter: blur(150px);
  opacity: 0.08;
  border-radius: 50%;
  z-index: -1;
  animation: floatBlob 18s infinite alternate;
}

.blob2 {
  left: 70%;
  top: 40%;
  width: 400px;
  height: 400px;
  background: #ff9f4a;
  opacity: 0.07;
  animation-duration: 22s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(5%, 8%) scale(1.2);
  }
}

/* navbar */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 14px 0;
  transition: all 0.25s;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive Logo Image */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 82px;
  width: 100%;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #c20000, #ff5e5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.logo-text span {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #1e293b;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-weight: 600;
  color: #1f2937;
  transition: 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: #c20000;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2.5px;
  background: #c20000;
  left: 0;
  bottom: -6px;
  transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 12px 28px;
  background: #c20000;
  color: white;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.25s;
  box-shadow: 0 8px 18px rgba(194, 0, 0, 0.2);
}
.nav-btn:hover {
  transform: translateY(-3px);
  background: #a00000;
  box-shadow: 0 12px 24px rgba(194, 0, 0, 0.3);
}

.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1e293b;
}

/* hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tag {
  display: inline-flex;
  gap: 10px;
  background: rgba(194, 0, 0, 0.08);
  color: #c20000;
  border: 1px solid rgba(194, 0, 0, 0.2);
  padding: 10px 20px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(194, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(194, 0, 0, 0);
  }
}

.hero h1 {
  font-size: 72px;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -2px;
  background: linear-gradient(to right, #0f172a, #2d3a5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 span {
  background: linear-gradient(135deg, #c20000, #ff7b2c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 40px;
  max-width: 550px;
}

/* waitlist card */
.waitlist-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 38px;
  padding: 28px;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}
.waitlist-card:hover {
  transform: translateY(-5px);
}

.input-group {
  margin-bottom: 20px;
  position: relative;
}
.input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #c20000;
  font-size: 18px;
}
.input-group input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border-radius: 28px;
  border: 1.5px solid #e9eef3;
  background: #fcfcfd;
  font-size: 16px;
  transition: all 0.25s;
  outline: none;
}
.input-group input:focus {
  border-color: #c20000;
  box-shadow: 0 0 0 4px rgba(194, 0, 0, 0.1);
  background: white;
}

.waitlist-btn {
  width: 100%;
  background: #c20000;
  border: none;
  padding: 16px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  box-shadow: 0 6px 14px rgba(194, 0, 0, 0.25);
}
.waitlist-btn:hover {
  background: #9a0000;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(194, 0, 0, 0.3);
}
.waitlist-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.joined {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
  color: #5b6e8c;
  font-weight: 500;
}

/* phone mock */
.hero-card {
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
.phone {
  background: #fff;
  border-radius: 48px;
  padding: 18px;
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.phone-header {
  background: linear-gradient(105deg, #c00000, #ff6a4b);
  border-radius: 32px;
  padding: 24px;
  color: white;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.phone-header h3 {
  font-size: 26px;
  text-align: center;
}
.phone-header::after {
  content: "🍕";
  font-size: 100px;
  position: absolute;
  right: -10px;
  bottom: -20px;
  opacity: 0.2;
  animation: wiggle 7s infinite;
}
@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.food-scroll {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 6px;
}
.food-scroll::-webkit-scrollbar {
  width: 4px;
}
.food-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.food-scroll::-webkit-scrollbar-thumb {
  background: #c20000;
  border-radius: 10px;
}

.food-item {
  background: #fafafc;
  border-radius: 26px;
  padding: 14px;
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(20px);
  animation: slideFood 0.5s ease forwards;
}

@keyframes slideFood {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.food-item:hover {
  transform: translateX(8px) scale(1.01);
  border-color: #ffcbcb;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.food-image {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.food-item:hover .food-image {
  transform: scale(1.05);
}
.food-info h4 {
  font-size: 17px;
  font-weight: 800;
}
.food-price {
  color: #c20000;
  font-weight: 800;
}
.food-info p {
  font-size: 12px;
}

/* features */
.features {
  padding: 100px 0;
}
.section-title h2 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -1px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.feature-card {
  background: white;
  padding: 36px 28px;
  border-radius: 36px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.02);
}
.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: #ffb7b7;
  box-shadow: 0 32px 48px -24px rgba(194, 0, 0, 0.2);
}
.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  background: #fff1f0;
  padding: 12px;
  border-radius: 28px;
  transition: 0.2s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.05) rotate(5deg);
}
.feature-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

/* stats */
.stats-section {
  background: #fef6f5;
  border-radius: 56px;
  margin: 40px 0 60px;
  padding: 48px 30px;
  text-align: center;
}
.stats-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.stat-item {
  flex: 1;
}
.stat-number {
  font-size: 46px;
  font-weight: 900;
  color: #c20000;
  animation: countPulse 2s ease infinite;
}
@keyframes countPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* cta */
.cta {
  padding-bottom: 100px;
}
.cta-box {
  background: linear-gradient(125deg, #c20000, #ff6b35);
  border-radius: 58px;
  padding: 80px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "🍔🍟🥤";
  font-size: 180px;
  position: absolute;
  bottom: -40px;
  right: -40px;
  opacity: 0.1;
  white-space: nowrap;
}
.cta-box::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotateGlow 20s linear infinite;
}
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cta-box h2 {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}
.cta-btn {
  background: white;
  border: none;
  padding: 16px 42px;
  border-radius: 48px;
  font-weight: 800;
  color: #c20000;
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  z-index: 2;
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* loading overlay for redirect */
.redirect-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  color: white;
  font-weight: 600;
}
.redirect-overlay.active {
  opacity: 1;
  visibility: visible;
}
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #ff6b35;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.redirect-text {
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
}

footer {
  border-top: 1px solid #ecf0f5;
  padding: 42px 0;
  text-align: center;
  color: #5c6f87;
}

/* responsive logo adjustments */
@media (max-width: 1000px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero h1 {
    font-size: 54px;
  }
  .section-title h2 {
    font-size: 42px;
  }
  .cta-box h2 {
    font-size: 36px;
  }
  .logo-img {
    height: 36px;
  }
  .logo-text {
    font-size: 24px;
  }
}
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 28px;
    display: none;
    border-bottom: 1px solid #eee;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .hero h1 {
    font-size: 42px;
  }
  .stats-grid {
    flex-direction: column;
  }
  .cta-box {
    padding: 50px 25px;
  }
  .logo-img {
    height: 32px;
  }
  .logo-text {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .logo-img {
    height: 60px;
  }
  .logo-text {
    font-size: 18px;
  }
}
