/* ============================================
   RIFI BURGER · MAIN STYLES
   Inspirado 100% en los menús reales
   ============================================ */

:root {
  --bg-deepest: #020617;
  --bg-dark: #050e2e;
  --bg-mid: #0a1847;
  --bg-light: #142463;
  --panel: rgba(15, 30, 80, 0.55);
  --panel-border: rgba(61, 240, 240, 0.25);
  --cyan: #3DF0F0;
  --cyan-glow: #6FFFFF;
  --cyan-bg: rgba(61, 240, 240, 0.08);
  --cyan-line: rgba(61, 240, 240, 0.2);
  --white: #FFFFFF;
  --text: #E8F4FA;
  --text-dim: rgba(232, 244, 250, 0.65);
  --text-faint: rgba(232, 244, 250, 0.4);
  --whatsapp: #25D366;

  --font-display: 'Syncopate', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-width: 1440px;
  --nav-height: 90px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--cyan); color: var(--bg-dark); }

html { scroll-behavior: smooth; background: var(--bg-dark); }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* SITE BG como en el menú: brillos diagonales + líneas animadas */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 90% 10%, rgba(61, 240, 240, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 50% at 10% 90%, rgba(61, 240, 240, 0.12), transparent 60%),
    radial-gradient(ellipse at 50% 50%, var(--bg-mid) 0%, var(--bg-dark) 60%, var(--bg-deepest) 100%);
  overflow: hidden;
}

.site-bg::before,
.site-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 500px;
  background: linear-gradient(115deg, transparent, rgba(61, 240, 240, 0.3), transparent);
  filter: blur(40px);
  pointer-events: none;
}

.site-bg::before {
  top: -150px;
  right: -80px;
  transform: rotate(20deg);
  animation: flashRotateA 12s ease-in-out infinite;
}

.site-bg::after {
  bottom: -150px;
  left: -80px;
  transform: rotate(-160deg);
  opacity: 0.6;
  animation: flashRotateB 15s ease-in-out infinite;
}

@keyframes flashRotateA {
  0%, 100% { transform: rotate(20deg) translateX(0); opacity: 1; }
  50% { transform: rotate(30deg) translateX(-60px); opacity: 0.6; }
}

@keyframes flashRotateB {
  0%, 100% { transform: rotate(-160deg) translateX(0); opacity: 0.6; }
  50% { transform: rotate(-150deg) translateX(60px); opacity: 1; }
}

/* Grid de líneas que viajan tipo Tron */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(61, 240, 240, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 240, 240, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  animation: gridDrift 25s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 70px 70px; }
}

/* Líneas horizontales que atraviesan la pantalla */
.bg-lines {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-lines::before,
.bg-lines::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-glow), transparent);
  box-shadow: 0 0 8px var(--cyan);
  opacity: 0.5;
}

.bg-lines::before {
  top: 30%;
  animation: lineTravel 8s linear infinite;
}

.bg-lines::after {
  bottom: 25%;
  animation: lineTravel 10s linear infinite reverse;
  animation-delay: 3s;
}

@keyframes lineTravel {
  0% { transform: translateX(-100%); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* Segunda capa de líneas verticales */
.bg-verticals {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-verticals::before,
.bg-verticals::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 10px var(--cyan);
  opacity: 0.3;
}

.bg-verticals::before {
  left: 20%;
  animation: vLineTravel 12s ease-in-out infinite;
}

.bg-verticals::after {
  right: 25%;
  animation: vLineTravel 14s ease-in-out infinite reverse;
  animation-delay: 4s;
}

@keyframes vLineTravel {
  0%, 100% { transform: translateY(-100%); opacity: 0; }
  50% { transform: translateY(0); opacity: 0.6; }
}

/* PARTICLES FLOTANTES */
.particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particles span.p-small {
  width: 2px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

.particles span.p-mid {
  width: 3px;
  height: 3px;
  background: var(--cyan-glow);
  box-shadow: 0 0 10px var(--cyan-glow);
}

.particles span.p-glow {
  width: 4px;
  height: 4px;
  background: var(--white);
  box-shadow: 0 0 12px var(--cyan), 0 0 20px var(--cyan);
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% {
    transform: translateY(-100vh) translateX(var(--drift, 20px));
    opacity: 0;
  }
}

.stardust {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.stardust span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 5s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 0.7; transform: scale(1); box-shadow: 0 0 4px var(--white); }
}

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deepest);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  width: 180px;
  filter: drop-shadow(0 0 20px var(--cyan)) drop-shadow(0 0 40px rgba(61, 240, 240, 0.5));
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5, 14, 46, 0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--cyan-line);
}

.nav-logo {
  height: 60px;
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease-out);
}

.nav-logo img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(61, 240, 240, 0.4));
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dim);
  position: relative;
  padding: 10px 0;
  transition: color 0.3s;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.nav-link span {
  font-size: 9px;
  color: var(--cyan);
  font-weight: 400;
  font-family: var(--font-mono);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--whatsapp);
  border-radius: 100px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 40px) 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: var(--cyan-bg);
  border: 1px solid var(--cyan);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(61, 240, 240, 0.15);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 32px;
  color: var(--white);
}

.hero-title .title-accent {
  display: inline-block;
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 0 30px rgba(61, 240, 240, 0.5);
}

.hero-title .title-outline {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-subtitle strong {
  color: var(--cyan);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg-deepest);
  box-shadow: 0 0 30px rgba(61, 240, 240, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(61, 240, 240, 0.6);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(37, 211, 102, 0.6);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.btn-outline:hover {
  background: var(--cyan);
  color: var(--bg-deepest);
  box-shadow: 0 0 30px rgba(61, 240, 240, 0.4);
}

/* HERO BADGES - como en el menú real */
.hero-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.badge-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: rgba(15, 30, 80, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 0 20px rgba(61, 240, 240, 0.2), inset 0 0 15px rgba(61, 240, 240, 0.1);
  position: relative;
  flex-shrink: 0;
}

.badge-circle .badge-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px var(--cyan));
}

.badge-circle strong {
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1;
}

.badge-circle span {
  font-size: 9px;
  color: var(--cyan);
  letter-spacing: 2px;
  font-family: var(--font-mono);
  font-weight: 600;
  margin-top: 3px;
}

/* HERO RIGHT - el logo oficial */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
}

.hero-logo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-glow {
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, rgba(61, 240, 240, 0.5), transparent 65%);
  filter: blur(50px);
  animation: glowBreath 4s ease-in-out infinite;
}

@keyframes glowBreath {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-logo-img {
  position: relative;
  width: 85%;
  max-width: 480px;
  z-index: 2;
  filter: drop-shadow(0 0 25px rgba(61, 240, 240, 0.7)) drop-shadow(0 0 60px rgba(61, 240, 240, 0.4));
  animation: logoFloat 6s ease-in-out infinite;
}

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

.hero-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan), 0 0 24px var(--cyan);
  animation: sparkTwinkle 3s ease-in-out infinite;
}

.hero-spark-1 { top: 15%; left: 10%; animation-delay: 0s; }
.hero-spark-2 { top: 25%; right: 8%; animation-delay: 0.7s; }
.hero-spark-3 { bottom: 20%; left: 15%; animation-delay: 1.4s; }
.hero-spark-4 { bottom: 30%; right: 12%; animation-delay: 2.1s; }

@keyframes sparkTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.4); }
}

.hero-flash {
  position: absolute;
  width: 250px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--white), var(--cyan), transparent);
  filter: blur(1px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-flash-tr { top: 10%; right: -50px; transform: rotate(-30deg); }
.hero-flash-bl { bottom: 10%; left: -50px; transform: rotate(-30deg); }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cyan-line);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-faint);
  z-index: 5;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cyan);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* SECTION */
.section {
  padding: 100px 40px;
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(61, 240, 240, 0.15), rgba(15, 30, 80, 0.8));
  border: 1px solid var(--cyan);
  border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: 0 0 30px rgba(61, 240, 240, 0.2), inset 0 0 20px rgba(61, 240, 240, 0.05);
}

.section-pill-icon {
  width: 28px;
  height: 28px;
  color: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan));
}

.section-pill-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title .accent {
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 0 30px rgba(61, 240, 240, 0.4);
}

.section-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}

.section-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 600px;
}

/* FEATURED */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.featured-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(61, 240, 240, 0.2);
}

.featured-card:hover::before { opacity: 1; }

.featured-img {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--bg-deepest);
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
  transition: transform 0.6s var(--ease-out);
}

.featured-card:hover .featured-img img {
  transform: scale(1.1);
}

.featured-info { flex: 1; min-width: 0; }

.featured-bullet {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.featured-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.featured-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 16px;
}

.featured-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--cyan);
  color: var(--bg-deepest);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 100px;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(61, 240, 240, 0.4);
}

.featured-prices {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.featured-price-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.featured-price-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 2px;
}

.featured-price-val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.featured-cta {
  text-align: center;
  margin-top: 50px;
}

/* FRIES NOTICE - papas fritas incluidas */
.fries-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px auto 0;
  max-width: 720px;
  padding: 20px 32px;
  background: linear-gradient(135deg, rgba(255, 179, 0, 0.15), rgba(255, 92, 0, 0.08));
  border: 1px solid rgba(255, 179, 0, 0.5);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 179, 0, 0.15);
  flex-wrap: wrap;
}

.fries-notice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 0, 0.12), transparent);
  animation: friesNoticeShine 3s linear infinite;
  pointer-events: none;
}

@keyframes friesNoticeShine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.fries-notice strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.fries-notice-icon {
  font-size: 24px;
  filter: drop-shadow(0 0 8px rgba(255, 179, 0, 0.6));
  animation: frieBounce 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.fries-notice-icon:last-of-type {
  animation-delay: 1s;
}

@keyframes frieBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-4px) rotate(5deg); }
}

.fries-notice-plus {
  font-family: var(--font-display);
  font-size: 18px;
  color: #FFB300;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.fries-notice-highlight {
  font-family: var(--font-display);
  font-size: 14px;
  color: #FFB300;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
  position: relative;
  z-index: 1;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  padding: 36px 28px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(61, 240, 240, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: rgba(61, 240, 240, 0.1);
  box-shadow: 0 0 20px rgba(61, 240, 240, 0.2);
}

.value-icon svg {
  width: 30px;
  height: 30px;
  color: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan));
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.value-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* MARQUEE */
.marquee {
  padding: 20px 0;
  background: linear-gradient(90deg, transparent, var(--cyan-bg), transparent);
  border-top: 1px solid var(--cyan-line);
  border-bottom: 1px solid var(--cyan-line);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(61, 240, 240, 0.5);
}

.marquee-star {
  color: var(--white);
  font-size: 16px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CTA STRIP */
.cta-strip {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: var(--panel);
  backdrop-filter: blur(15px);
  border: 1px solid var(--cyan);
  border-radius: 30px;
  box-shadow: 0 0 60px rgba(61, 240, 240, 0.15), inset 0 0 40px rgba(61, 240, 240, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-strip-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61, 240, 240, 0.15), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-strip-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-strip-content h2 em {
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
}

.cta-strip-content p {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.6;
}

.cta-strip-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--cyan-line);
}

.cta-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}

/* FOOTER */
.footer {
  padding: 80px 40px 30px;
  background: var(--bg-deepest);
  border-top: 1px solid var(--cyan-line);
  position: relative;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(61, 240, 240, 0.1);
}

.footer-brand img {
  width: 160px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(61, 240, 240, 0.4));
}

.footer-brand p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 2px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 1px;
}

/* PAGE HEADER */
.page-header {
  padding: calc(var(--nav-height) + 80px) 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-header .hero-eyebrow {
  margin-bottom: 24px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--white);
}

.page-title .accent {
  color: var(--cyan);
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 0 30px rgba(61, 240, 240, 0.5);
}

.page-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 160px;
  }
  .hero-right {
    order: -1;
    max-width: 420px;
  }
  .hero-scroll { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 70px; }
  .nav-logo { height: 44px; }
  .nav-links { display: none; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
  .hero {
    padding: calc(70px + 20px) 20px 80px;
    gap: 30px;
  }
  .hero-right { max-width: 300px; }
  .hero-stats { gap: 20px; padding-top: 24px; }
  .hero-stat strong { font-size: 24px; }
  .section { padding: 60px 20px; }
  .featured-card {
    flex-direction: column;
    text-align: left;
    padding: 20px;
  }
  .featured-img { width: 100%; height: 220px; }
  .values-grid { grid-template-columns: 1fr; gap: 14px; }
  .cta-strip { padding: 40px 20px; }
  .cta-strip-inner { padding: 32px 24px; }
  .footer { padding: 60px 20px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .page-header { padding: calc(70px + 40px) 20px 40px; }
  .badge-circle { width: 78px; height: 78px; }
  .badge-circle strong { font-size: 12px; }
  .badge-circle span { font-size: 8px; }
  .badge-circle .badge-icon { width: 26px; height: 26px; }
  .fries-notice {
    padding: 16px 20px;
    gap: 10px;
    font-size: 11px;
  }
  .fries-notice strong {
    font-size: 11px;
  }
  .fries-notice-highlight {
    font-size: 12px;
  }
  .fries-notice-icon {
    font-size: 20px;
  }
}
