/* ===== VARIABLES & RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }

:root {
  --bg: #FCEDE6;
  --strip: #F4DBCF;
  --primary: #C95A3C;
  --primary-light: #DE7456;
  --primary-dark: #9C3A22;
  --text: #2C1810;
  --text-muted: #6B4636;
  --text-faint: #8A7F77;
  --font: 'Hanken Grotesk', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

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

/* ===== ANIMATIONS ===== */
@keyframes hl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.82); }
}

@keyframes hl-float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAV ===== */
.nav {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(156,58,34,.28);
}
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}

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

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-cta {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #DE7456, #C95A3C);
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(201,90,60,.3);
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--strip);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.mobile-nav.open {
  max-height: 300px;
  padding: 16px 24px;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,90,60,.1);
}

.mobile-nav a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 64px 90px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(201,90,60,.1);
  border: 1px solid rgba(201,90,60,.22);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: .02em;
}

.hero-badge-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: hl-pulse 1.8s infinite;
}

.hero-h1 {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--text);
  margin: 24px 0 0;
}

.hero-h1 span { color: var(--primary); }

.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 26px 0 0;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #DE7456, #C95A3C);
  padding: 17px 28px;
  border-radius: 15px;
  box-shadow: 0 12px 26px rgba(201,90,60,.34);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 17px 24px;
  border-radius: 15px;
  border: 1.5px solid rgba(156,58,34,.28);
  background: none;
  text-decoration: none;
  cursor: pointer;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.avatar-stack { display: flex; }

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.hero-social-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
}

.hero-social-text b { color: var(--text); }

/* Phone mockup */
.hero-phone-wrap {
  flex: none;
  position: relative;
}

.hero-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 40%, rgba(222,116,86,.35), transparent 62%);
  filter: blur(8px);
}

.hero-phone {
  position: relative;
  width: 340px;
  background: #0a0a0a;
  border-radius: 52px;
  padding: 9px;
  box-shadow: 0 50px 100px rgba(76,26,12,.4);
  transform: rotate(2deg);
}

.hero-phone-screen {
  position: relative;
  width: 322px;
  height: 698px;
  border-radius: 44px;
  overflow: hidden;
  background: radial-gradient(120% 70% at 50% -6%, #2A150E 0%, #150B08 46%, #0A0504 100%);
}

.phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 16px;
  z-index: 40;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 26px 0;
  color: #fff;
}

.phone-time { font-weight: 600; font-size: 13px; }

.phone-signal { display: flex; align-items: flex-end; gap: 6px; }

.phone-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 10px;
}

.phone-bars span {
  width: 2.5px;
  background: #fff;
  border-radius: 1px;
}

.phone-battery {
  width: 22px;
  height: 11px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 3px;
  position: relative;
}

.phone-battery::after {
  content: '';
  position: absolute;
  top: 1.5px; bottom: 1.5px; left: 1.5px; right: 3px;
  background: #fff;
  border-radius: 1px;
}

.phone-content { padding: 14px 18px 0; }

.phone-greeting {
  font-size: 12px;
  font-weight: 600;
  color: #E0A877;
  font-family: -apple-system, sans-serif;
}

.phone-title {
  font-size: 24px;
  font-weight: 800;
  color: #F5EFEA;
  letter-spacing: -.025em;
  margin-top: 7px;
  font-family: -apple-system, sans-serif;
}

.phone-next-card {
  position: relative;
  margin-top: 16px;
  border-radius: 22px;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(155deg, #DE7456 0%, #C95A3C 55%, #9C3A22 100%);
  box-shadow: 0 14px 32px rgba(156,58,34,.4);
}

.phone-next-card-glow {
  position: absolute;
  top: -50px; right: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.26), transparent 65%);
}

.phone-next-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-next-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(255,255,255,.92);
  font-family: -apple-system, sans-serif;
}

.phone-next-badge {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,.22);
  padding: 5px 10px;
  border-radius: 999px;
  font-family: -apple-system, sans-serif;
}

.phone-next-restaurant {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 13px;
}

.phone-restaurant-icon {
  width: 48px; height: 48px;
  border-radius: 15px;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 1px solid rgba(255,255,255,.25);
}

.phone-restaurant-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  font-family: -apple-system, sans-serif;
}

.phone-restaurant-detail {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.86);
  margin-top: 6px;
  font-family: -apple-system, sans-serif;
}

.phone-next-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.phone-attendees { display: flex; }

.phone-attendee {
  width: 27px; height: 27px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-left: -9px;
  font-family: -apple-system, sans-serif;
}

.phone-attendee:first-child { margin-left: 0; }

.phone-rsvp-btn {
  background: #fff;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: -apple-system, sans-serif;
}

.phone-meter-card {
  margin-top: 13px;
  border-radius: 18px;
  padding: 15px;
  background: linear-gradient(158deg, rgba(222,116,86,.14), rgba(222,116,86,.03));
  border: 1px solid rgba(222,116,86,.22);
}

.phone-meter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-meter-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: #DE7456;
  font-family: -apple-system, sans-serif;
}

.phone-meter-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3DBE69;
  animation: hl-pulse 1.8s infinite;
}

.phone-meter-avg {
  font-size: 11px;
  font-weight: 600;
  color: #8A7F77;
  font-family: -apple-system, sans-serif;
}

.phone-meter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
}

.phone-meter-name {
  font-size: 13px;
  font-weight: 600;
  color: #E8DDD3;
  font-family: -apple-system, sans-serif;
}

.phone-meter-score {
  font-size: 13px;
  font-weight: 800;
  font-family: -apple-system, sans-serif;
}

.phone-meter-bar-track {
  height: 6px;
  background: rgba(255,255,255,.07);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 8px;
}

.phone-meter-bar-fill {
  height: 100%;
  border-radius: 99px;
}

/* Floating food emoji */
.food-float {
  position: absolute;
  animation: hl-float var(--duration, 6s) ease-in-out infinite var(--delay, 0s);
  opacity: var(--opacity, 0.9);
  pointer-events: none;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--strip);
  padding: 26px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  opacity: .8;
}

.trust-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-stat {
  font-size: 15px;
  font-weight: 800;
  color: #B5897A;
}

/* ===== FEATURES ===== */
.features { padding: 96px 64px 80px; }

.section-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-heading {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--text);
  margin: 16px 0 0;
}

.features-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(201,90,60,.1);
  box-shadow: 0 14px 34px rgba(156,58,34,.07);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature-icon-orange {
  background: linear-gradient(160deg, #DE7456, #C95A3C);
  box-shadow: 0 8px 18px rgba(201,90,60,.28);
}

.feature-icon-yellow {
  background: linear-gradient(160deg, #F6B23B, #E07F18);
  box-shadow: 0 8px 18px rgba(224,127,24,.28);
}

.feature-icon-pink {
  background: linear-gradient(160deg, #FF89B5, #D43B77);
  box-shadow: 0 8px 18px rgba(212,59,119,.28);
}

.feature-card h3 {
  font-size: 23px;
  font-weight: 800;
  color: var(--text);
  margin: 22px 0 0;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.feature-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 12px 0 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(180deg, #2A150E, #150B08);
  padding: 96px 64px;
  color: #F5EFEA;
}

.how-it-works .section-eyebrow { color: #DE7456; }
.how-it-works .section-heading { color: #F5EFEA; }

.how-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step { text-align: center; }

.step-number {
  width: 70px; height: 70px;
  border-radius: 50%;
  margin: 0 auto;
  background: rgba(222,116,86,.14);
  border: 1px solid rgba(222,116,86,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #DE7456;
}

.step h3 {
  font-size: 22px;
  font-weight: 800;
  color: #F5EFEA;
  margin: 22px 0 0;
  line-height: 1.2;
}

.step p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #C8BEB6;
  margin: 11px 0 0;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 96px 64px;
  text-align: center;
}

.testimonial-emoji { font-size: 40px; margin-bottom: 24px; }

.testimonial-quote {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--text);
  max-width: 880px;
  margin: 0 auto;
}

.testimonial-quote span { color: var(--primary); }

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #7B5BC4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-faint);
  margin-top: 5px;
}

/* ===== CTA ===== */
.cta-section { padding: 0 64px 96px; }

.cta-inner {
  position: relative;
  border-radius: 36px;
  padding: 72px 64px;
  overflow: hidden;
  background: linear-gradient(150deg, #DE7456 0%, #C95A3C 52%, #9C3A22 100%);
  box-shadow: 0 30px 70px rgba(156,58,34,.36);
  text-align: center;
}

.cta-glow-1 {
  position: absolute;
  top: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 65%);
}

.cta-glow-2 {
  position: absolute;
  bottom: -100px; right: -30px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,190,.2), transparent 65%);
}

.cta-inner h2 {
  position: relative;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0;
}

.cta-inner p {
  position: relative;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
  margin: 20px auto 0;
  max-width: 480px;
}

.cta-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-app-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  background: #fff;
  padding: 17px 28px;
  border-radius: 15px;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  text-decoration: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--strip);
  padding: 48px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  overflow: hidden;
}
.footer-logo-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-copy {
  font-size: 13px;
  font-weight: 500;
  color: #A07F70;
}

/* ===== PRIVACY PAGE ===== */
.privacy-hero {
  background: linear-gradient(180deg, #2A150E, #150B08);
  padding: 64px 64px 48px;
  color: #F5EFEA;
}

.privacy-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 0 0 12px;
  color: #F5EFEA;
}

.privacy-hero p {
  font-size: 16px;
  font-weight: 400;
  color: #C8BEB6;
  margin: 0;
}

.privacy-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.privacy-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 40px 0 12px;
  letter-spacing: -.01em;
}

.privacy-body h2:first-child { margin-top: 0; }

.privacy-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.privacy-body ul {
  padding-left: 20px;
  margin: 0 0 12px;
}

.privacy-body li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.privacy-body a { color: var(--primary); }

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 15px;
}

.privacy-table th {
  text-align: left;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid rgba(201,90,60,.2);
  padding: 10px 12px;
}

.privacy-table td {
  color: var(--text-muted);
  border-bottom: 1px solid rgba(201,90,60,.1);
  padding: 10px 12px;
  vertical-align: top;
}

hr.privacy-divider {
  border: none;
  border-top: 1px solid rgba(201,90,60,.15);
  margin: 40px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .food-float { display: none; }

  .hero { padding: 40px 24px 60px; }
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-phone-wrap { order: -1; }
  .hero-phone { width: 280px; transform: none; }
  .hero-phone-screen { width: 262px; height: 568px; }
  .hero-h1 { font-size: 40px; }
  .hero-sub { font-size: 17px; }

  .trust-strip { padding: 20px 24px; }
  .trust-stats { gap: 20px; }

  .features { padding: 64px 24px 48px; }
  .features-grid { grid-template-columns: 1fr; }

  .how-it-works { padding: 64px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }

  .testimonial { padding: 64px 24px; }

  .cta-section { padding: 0 24px 64px; }
  .cta-inner { padding: 48px 28px; border-radius: 24px; }

  .footer { padding: 36px 24px; flex-direction: column; gap: 24px; }
  .footer-links { justify-content: center; }

  .privacy-hero { padding: 48px 24px 36px; }
  .privacy-body { padding: 40px 24px 64px; }
}
