@import url("/site/nav-drawer.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════ */
:root {
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --surface: #111111;
  --text: #f0f0f0;
  --text-secondary: rgba(255,255,255,0.65);
  --text-dim: rgba(255,255,255,0.65);
  --accent: #ff6b00;
  --accent-hex: #ff6b00;
  --accent-warm: #ff8a33;
  --accent-glow: rgba(255,107,0,0.12);
  --accent-glow-strong: rgba(255,107,0,0.25);
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(255,107,0,0.2);

  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast: 300ms;
  --duration-normal: 600ms;
  --duration-slow: 1000ms;

  --radius-pill: 50px;
  --radius-card: 20px;
  --radius-img: 16px;
  --surface-gradient: radial-gradient(120% 120% at 0% 0%, #1c1c1c 0%, #050505 100%);
  --border-subtle: rgba(255,255,255,0.06);

  --max-w: 1200px;
  --section-pad: 160px;
  --home-section-space: clamp(72px, 8vw, 104px);
  --home-section-space-mobile: 48px;
  --nav-h: 64px;

  /* Hero vertical rhythm */
  --hero-stack-xs: 10px;
  --hero-stack-sm: 16px;
  --hero-stack-md: 24px;
  --hero-stack-lg: 32px;
  --hero-stack-xl: 40px;
  --hero-content-max: min(68ch, 960px);
  --hero-pad-block: clamp(28px, 6svh, 72px);
}

/* ═══════════════════════════════════════════════
   RESETS
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { min-height: 100vh; position: relative; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; }

.eat-landing h1,
.eat-landing h2,
.eat-landing h3,
.eat-landing h4,
.eat-landing h5,
.eat-landing h6,
.eat-landing p,
.eat-landing a,
.eat-landing button,
.eat-landing input,
.eat-landing select,
.eat-landing textarea {
  overflow-wrap: anywhere;
}

.eat-landing a:focus-visible,
.eat-landing button:focus-visible,
.eat-landing input:focus-visible,
.eat-landing select:focus-visible,
.eat-landing textarea:focus-visible,
.eat-landing summary:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.24);
  outline-offset: 3px;
}

.el-skip-link {
  position: absolute;
  left: 20px;
  top: 12px;
  z-index: 300;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.el-skip-link:focus {
  transform: translateY(0);
}

.eat-landing {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  position: relative;
  overflow: hidden;
}

.el-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════
   SHARED: REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1000ms var(--ease-out-expo),
              transform 1000ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fallback .reveal,
.reveal-fallback .el-what__visual.reveal {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1000ms var(--ease-out-expo),
              transform 1000ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 200ms);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-fallback .reveal-right {
  opacity: 1;
  transform: translateX(0);
}

.reveal-fallback .el-mechanism__node {
  opacity: 1;
  transform: scale(1);
}
.reveal-fallback .el-mechanism__connector-line {
  stroke-dashoffset: 0;
}

/* ═══════════════════════════════════════════════
   SHARED: EDITORIAL DIVIDER
   ═══════════════════════════════════════════════ */
.el-divider {
  width: 80px;
  height: 1px;
  background: var(--border);
  margin: 48px auto;
  border: none;
}
.el-divider--wide { width: 120px; }
.el-divider--full { width: 100%; max-width: var(--max-w); }

.el-section-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  margin: 0 auto;
  border: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255,107,0,0.12) 50%, transparent 100%);
}

/* ═══════════════════════════════════════════════
   SHARED: HOMEPAGE SECTION RHYTHM
   ═══════════════════════════════════════════════ */
.el-tension,
.el-pathways,
.el-what,
.el-proof,
.el-featured-partner,
.el-home-stories,
.el-home-community,
.el-home-categories,
.el-home-org-cta,
.el-home-updates {
  padding-block: var(--home-section-space);
}

/* ═══════════════════════════════════════════════
   SHARED: EYEBROW LABEL
   ═══════════════════════════════════════════════ */
.el-eyebrow {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════
   SHARED: IMAGE TREATMENT
   ═══════════════════════════════════════════════ */
.img-editorial {
  filter: saturate(0.65) brightness(0.8);
  transition: filter var(--duration-fast) ease;
}
.img-editorial:hover {
  filter: saturate(0.65) brightness(0.9);
}

/* ═══════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════ */
@keyframes glowBreathe {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(255,107,0,0.15), 0 0 80px rgba(255,107,0,0.05); }
  50% { box-shadow: 0 0 50px rgba(255,107,0,0.25), 0 0 100px rgba(255,107,0,0.08); }
}

@keyframes drawLine {
  from { stroke-dashoffset: var(--line-length, 200); }
  to { stroke-dashoffset: 0; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes orbDrift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  33% { transform: translate(-48%, -52%) scale(1.05); opacity: 1; }
  66% { transform: translate(-52%, -48%) scale(0.97); opacity: 0.8; }
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes videoIn {
  from { opacity: 0; }
  to { opacity: 0.7; }
}

/* ═══════════════════════════════════════════════
   1. NAVIGATION
   ═══════════════════════════════════════════════ */
.el-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--duration-fast) ease, border-color var(--duration-fast) ease, backdrop-filter var(--duration-fast) ease;
  border-bottom: 1px solid transparent;
}
.el-nav.is-scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}

.el-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.el-nav__end {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.el-nav__brand { display: flex; align-items: center; gap: 10px; }
.el-nav__logo { height: 32px; width: 32px; }
.el-nav__wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.el-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.el-nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast) ease;
  position: relative;
}
.el-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 300ms var(--ease-out-expo);
}
.el-nav__link:hover {
  color: var(--text);
}
.el-nav__link:hover::after {
  width: 100%;
}

.el-nav__link.is-active {
  color: var(--accent);
}

.el-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out-expo), box-shadow var(--duration-fast) var(--ease-out-expo);
  box-shadow: inset 0 0 0 1px transparent, 0 0 0 rgba(255,107,0,0);
}
.el-nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 8px 20px rgba(255,107,0,0.4);
}
.el-nav__cta svg { width: 14px; height: 14px; }

/* Match shop/trade: true center link cluster (space-between drifts when right side is wider). */
@media (min-width: 768px) {
  .eat-landing .el-nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: start;
    flex-wrap: nowrap;
  }
  .eat-landing .el-nav__brand {
    justify-self: start;
  }
  .eat-landing .el-nav__links {
    justify-self: center;
  }
  .eat-landing .el-nav__end {
    justify-self: end;
  }
  .eat-landing .el-nav__mobile-menu {
    grid-column: 1 / -1;
  }
  .eat-landing .el-nav__menu-toggle {
    display: none !important;
  }

  /* Hero: desktop — centered stack, inset from viewport edges, readable measure */
  .el-hero {
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--nav-h) + 72px);
    padding-bottom: clamp(88px, 11svh, 132px);
    box-sizing: border-box;
  }
  .el-hero__content {
    max-width: min(1400px, 100%);
    margin-inline: auto;
    padding: 0 32px;
    align-items: center;
  }
  .el-hero__headline {
    max-width: min(1280px, 100%);
    margin-inline: auto;
  }
  .el-hero__social-proof {
    justify-content: center;
    flex-wrap: nowrap;
  }
  .el-hero__social-text {
    white-space: nowrap;
    text-wrap: unset;
    max-width: none;
  }
  .el-hero__actions {
    width: min(1360px, 100%);
    max-width: 100%;
  }
  .el-hero__partner-link {
    min-height: 120px;
  }
  .el-hero__btn-row {
    width: 420px;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════════════ */
.el-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: clamp(72px, 10svh, 120px);
  overflow: hidden;
  background: var(--bg);
  box-sizing: border-box;
}

.el-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  opacity: 0;
  animation: videoIn 1500ms ease-in-out forwards;
}

.el-hero__overlay {
  position: absolute;
  inset: 0;
  /* Stronger base tie-off so the fold never reads as a bright band above the next section */
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    var(--bg) 14%,
    rgba(5, 5, 5, 0.72) 42%,
    rgba(5, 5, 5, 0.28) 100%
  );
  pointer-events: none;
}

.el-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,107,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1000ms;
  animation-timing-function: ease;
  animation-delay: 1800ms;
  animation-fill-mode: forwards;
}

.el-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.el-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 128px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: var(--hero-stack-md);
  opacity: 0;
  transform: translateY(40px);
  animation-name: heroLineIn;
  animation-duration: 1000ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 400ms;
  animation-fill-mode: forwards;
}
.el-hero__headline-accent {
  background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  /* Inner line nowrap beats h1 text-wrap: balance (would isolate "Hunger." on its own line). */
  .el-hero__headline-line {
    white-space: nowrap;
  }
}

.el-hero__sub {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: min(920px, 100%);
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.42;
  color: var(--text-secondary);
  margin-bottom: clamp(22px, 3.6vh, 34px);
  opacity: 0;
  transform: translateY(40px);
  animation-name: fadeInUp;
  animation-duration: 1000ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 1100ms;
  animation-fill-mode: forwards;
}

.el-hero__sub-emphasis {
  font-weight: 600;
  color: var(--text);
}

.el-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(920px, 100%);
  opacity: 0;
  transform: translateY(40px);
  animation-name: fadeInUp;
  animation-duration: 1000ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-delay: 1400ms;
  animation-fill-mode: forwards;
}

.el-hero__search-form {
  width: min(860px, 100%);
}

.el-hero__search-shell {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  width: 100%;
  padding: 10px 10px 10px 18px;
  border-radius: 28px;
  border: 1px solid var(--border-subtle);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(14, 14, 14, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 14px 30px rgba(0,0,0,0.14);
}

.el-hero__search-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text-dim);
}

.el-hero__search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  outline: none;
}

.el-hero__search-input::placeholder {
  color: var(--text-dim);
}

.el-hero__search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 170px;
  min-height: 56px;
  padding: 0 22px;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out-expo), box-shadow var(--duration-fast) var(--ease-out-expo);
  box-shadow: 0 18px 40px rgba(255, 107, 0, 0.22);
}

.el-hero__search-submit:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28), 0 22px 44px rgba(255, 107, 0, 0.28);
}

.el-hero__search-submit svg {
  width: 16px;
  height: 16px;
}

.el-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--duration-fast) ease, transform var(--duration-fast) var(--ease-out-expo);
}

.el-hero__location:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.el-hero__location:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.el-hero__location svg {
  width: 18px;
  height: 18px;
}

.el-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: var(--font-body);
  font-size: clamp(11px, 0.78vw, 13px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.el-hero__stats strong {
  font-weight: 500;
  color: var(--text-dim);
}

.el-hero__stats-dot {
  color: rgba(255,255,255,0.28);
}

.el-hero__btn-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--hero-stack-sm);
  width: min(420px, 100%);
  box-sizing: border-box;
}
.el-hero__btn-row > * {
  min-width: 0;
}
.el-hero__btn-row .el-hero__btn {
  width: 100%;
  justify-content: center;
  padding: 0 16px;
  box-sizing: border-box;
}

.el-hero__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 0;
  width: 100%;
}
.el-hero__btn-wrap .el-hero__btn {
  width: 100%;
  box-sizing: border-box;
}
.el-hero__btn-wrap .el-hero__coming-soon {
  text-align: center;
}

.el-hero__coming-soon {
  display: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  text-transform: lowercase;
}

.el-hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--hero-stack-xs);
}
.el-hero__avatars {
  display: flex;
  flex-shrink: 0;
}
.el-hero__avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.el-hero__avatars img:first-child { margin-left: 0; }
.el-hero__social-text {
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
}

.el-hero__partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hero-stack-xs);
  margin-top: 0;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1200ms;
  animation-timing-function: ease;
  animation-delay: 1400ms;
  animation-fill-mode: forwards;
}
.el-hero__partner-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.el-hero__partner-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.el-hero__partner-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hero-stack-xs);
  min-width: 0;
}
.el-hero__partner-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: stretch;
  gap: clamp(var(--hero-stack-lg), 6vw, 56px);
  width: min(784px, 100%);
}
.el-hero__partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 100%;
  min-width: 0;
  border-radius: 8px;
  outline-offset: 4px;
}
.el-hero__partner-link:focus-visible {
  outline: 2px solid var(--accent);
}
.el-hero__partner-logo {
  height: 80px;
  width: auto;
  max-height: 80px;
  object-fit: contain;
  object-position: center;
  opacity: 0.7;
  transition: opacity 300ms ease;
  display: block;
}
.el-hero__partner-logo--ftc {
  height: 56px;
  max-height: 56px;
  max-width: min(246px, 100%);
}
.el-hero__partner-logo--wyde {
  height: 104px;
  max-height: 104px;
  max-width: min(440px, 100%);
}
.el-hero__partner-link:hover .el-hero__partner-logo,
.el-hero__partner-link:focus-visible .el-hero__partner-logo {
  opacity: 1;
}

.el-hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  box-sizing: border-box;
  min-width: 0;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-out-expo), box-shadow var(--duration-fast) var(--ease-out-expo);
  animation: btnGlow 3s ease-in-out infinite;
  box-shadow: inset 0 0 0 1px transparent, 0 0 0 rgba(255,107,0,0);
}
.el-hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 12px 30px rgba(255,107,0,0.4);
}
.el-hero__btn svg { width: 18px; height: 18px; }

.el-hero__btn--secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--text);
  animation: none;
  cursor: pointer;
}
.el-hero__btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 107, 0, 0.08);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.15);
}
.el-hero__btn--secondary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════
   3a. TENSION (STAT STOP)
   ═══════════════════════════════════════════════ */
.el-tension {
  position: relative;
  text-align: center;
}
.el-tension::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: orbDrift 8s ease-in-out infinite;
}
.el-tension__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.el-tension__accent {
  background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.el-tension__sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════
   3b. THREE WAYS
   ═══════════════════════════════════════════════ */
.el-pathways {
  position: relative;
}
.el-pathways::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 50%;
  width: min(760px, 80vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255,107,0,0.08) 0%, transparent 68%);
  pointer-events: none;
  opacity: 0.7;
}
.el-pathways__inner {
  position: relative;
  z-index: 1;
}
.el-pathways__header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 40px;
}
.el-pathways__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
  text-transform: none;
  margin: 0 0 14px;
}
.el-pathways__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.1vw, 24px);
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}
.el-pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.el-pathways__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 28px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  background: var(--surface-gradient);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.05),
    0 20px 40px rgba(0,0,0,0.26);
  overflow: hidden;
  transition:
    transform var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
}
.el-pathways__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,107,0,0.18) 0%, transparent 62%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
}
.el-pathways__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,0,0.3);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.08),
    0 26px 52px rgba(0,0,0,0.32),
    0 0 24px rgba(255,107,0,0.08);
}
.el-pathways__card--featured {
  border-color: var(--border-accent);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.08),
    0 24px 48px rgba(0,0,0,0.3),
    0 0 28px rgba(255,107,0,0.12);
}
.el-pathways__icon,
.el-pathways__card-title,
.el-pathways__meta,
.el-pathways__body,
.el-pathways__chip,
.el-pathways__link {
  position: relative;
  z-index: 1;
}
.el-pathways__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--accent);
  background: rgba(255,107,0,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.el-pathways__icon svg {
  width: 24px;
  height: 24px;
}
.el-pathways__card-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--text);
  margin: 0 0 20px;
}
.el-pathways__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 193, 153, 0.78);
  margin: 0 0 18px;
}
.el-pathways__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 28px;
}
.el-pathways__chip {
  margin: 0 0 26px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: rgba(10,10,10,0.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.el-pathways__chip-title {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent);
}
.el-pathways__chip-copy {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.el-pathways__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.el-pathways__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.el-pathways__link:hover {
  color: #ff9147;
}

/* ═══════════════════════════════════════════════
   3c. WHAT IS EAT?
   ═══════════════════════════════════════════════ */
.el-what {
  position: relative;
}
.el-what::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: orbDrift 10s ease-in-out infinite;
  animation-delay: -3s;
}
.el-what__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.el-what__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.el-what__coin {
  width: 280px;
  height: 280px;
  object-fit: contain;
  animation: coinGlowRing 4s ease-in-out infinite, coinFloat 6s ease-in-out infinite;
}
@keyframes coinGlowRing {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(255,107,0,0.2)) drop-shadow(0 0 80px rgba(255,107,0,0.08)); }
  50% { filter: drop-shadow(0 0 70px rgba(255,107,0,0.35)) drop-shadow(0 0 140px rgba(255,107,0,0.15)); }
}
.el-what__visual.reveal {
  opacity: 0;
  transform: scale(0.7) rotate(-5deg);
  transition: opacity 1200ms var(--ease-out-expo), transform 1200ms var(--ease-out-expo);
}
.el-what__visual.reveal.is-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.el-what__content {
  text-align: left;
}
.el-what__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 32px;
}
.el-what__headline-accent {
  background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.el-what__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.el-what__body:last-child {
  margin-bottom: 0;
}
.el-what__content .el-what__body:last-of-type {
  margin-bottom: 0;
}
.el-what__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}
/* Trade CTA: same component as hero primary — only focus ring scoped to this usage */
.el-what__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════
   4. MECHANISM (HOW IT WORKS)
   ═══════════════════════════════════════════════ */
.el-mechanism {
  position: relative;
  padding: var(--section-pad) 0;
}
.el-mechanism__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: orbDrift 12s ease-in-out infinite;
  animation-delay: -5s;
}

.el-mechanism__header {
  text-align: center;
  margin-bottom: 80px;
}
.el-mechanism__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.el-mechanism__title-accent {
  background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.el-mechanism__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.el-mechanism__node {
  flex: 0 0 280px;
  background: var(--surface-gradient);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
  opacity: 0;
  transform: scale(0.85) translateY(30px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo), border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  position: relative;
  overflow: hidden;
}
.el-mechanism__node::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,107,0,0.2) 0%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 600ms ease;
}
.el-mechanism__node.is-visible::after {
  opacity: 1;
}
.el-mechanism__node:nth-child(1) { transition-delay: 0ms; }
.el-mechanism__node:nth-child(3) { transition-delay: 150ms; }
.el-mechanism__node:nth-child(5) { transition-delay: 300ms; }
.el-mechanism__node:hover {
  transform: translateY(-4px) !important;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 20px 40px rgba(0,0,0,0.4);
}
.el-mechanism__node.is-visible {
  opacity: 1;
  transform: scale(1);
}
.el-mechanism__node:hover {
  border-color: rgba(255,107,0,0.3);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,107,0,0.05);
}

.el-mechanism__node-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}
.el-mechanism__node-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.el-mechanism__connector {
  flex: 0 0 60px;
  height: 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.el-mechanism__connector svg {
  width: 60px;
  height: 20px;
  overflow: visible;
}
.el-mechanism__connector-line {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: var(--line-length, 50);
  stroke-dashoffset: var(--line-length, 50);
  transition: stroke-dashoffset 1.2s var(--ease-out-soft);
}
.el-mechanism__connector.is-drawn .el-mechanism__connector-line {
  stroke-dashoffset: 0;
}
.el-mechanism__connector-arrow {
  fill: var(--accent);
}

.el-mechanism__summary {
  text-align: center;
  margin-top: 64px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dim);
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════
   5. PROOF (LIVE METRICS)
   ═══════════════════════════════════════════════ */
.el-proof {
  position: relative;
  background: var(--bg-elevated);
}
.el-proof__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 800px;
  background: radial-gradient(ellipse 500px 400px at 50% 50%, rgba(255,107,0,0.08) 0%, rgba(255,107,0,0.02) 40%, transparent 100%);
  pointer-events: none;
  animation: glowBreathe 5s ease-in-out infinite;
}

.el-proof__header {
  text-align: center;
  margin-bottom: 48px;
}
.el-proof__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.el-proof__title-accent {
  background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.el-proof__metrics {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 32px;
  position: relative;
}

.el-proof__metric {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  background: var(--surface-gradient);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
  transition: transform var(--duration-normal) var(--ease-out-expo), box-shadow var(--duration-normal) var(--ease-out-expo);
  overflow: hidden;
}
.el-proof__metric::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,107,0,0.2) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.el-proof__metric:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 20px 40px rgba(0,0,0,0.4);
}

.el-proof__metric-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 12px;
  transition: transform 300ms var(--ease-out-expo);
}
.el-proof__metric:hover .el-proof__metric-number {
  transform: scale(1.03);
}

.el-proof__metric-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.el-proof__live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.el-proof__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulseGlow 1.5s ease-in-out infinite;
}
.el-proof__live-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════
   6. POST-PROOF HOMEPAGE CHAPTERS
   ═══════════════════════════════════════════════ */
.el-home-chapter__header {
  max-width: 760px;
  margin: 0 auto 36px;
}
.el-home-chapter__header--center {
  text-align: center;
}
.el-home-chapter__eyebrow {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.el-home-chapter__title {
  margin-top: 18px;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text);
}
.el-home-chapter__body {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.el-home-chapter__footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.el-home-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-warm);
  transition: color var(--duration-fast) ease, transform var(--duration-fast) var(--ease-out-expo);
}
.el-home-inline-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}
.el-home-inline-link svg {
  width: 16px;
  height: 16px;
}

.el-home-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent) 100%);
  color: #050505;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid rgba(255,107,0,0.18);
  transition: transform var(--duration-fast) var(--ease-out-expo), box-shadow var(--duration-fast) ease, border-color var(--duration-fast) ease;
}
.el-home-pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255,107,0,0.18);
}
.el-home-pill-link--secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--border-subtle);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.04);
}
.el-home-pill-link--secondary:hover {
  border-color: rgba(255,107,0,0.18);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08);
}

.el-featured-partner {
  position: relative;
}
.el-featured-partner__surface {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 56px);
  border-radius: calc(var(--radius-card) + 10px);
  border: 1px solid rgba(255,107,0,0.18);
  background:
    radial-gradient(circle at top right, rgba(255,138,51,0.3) 0%, rgba(255,138,51,0.08) 22%, transparent 56%),
    linear-gradient(135deg, rgba(255,107,0,0.22) 0%, rgba(35,18,8,0.85) 38%, rgba(10,10,10,0.98) 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.07),
    0 30px 80px rgba(0,0,0,0.28);
}
.el-featured-partner__surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 38%);
  pointer-events: none;
}
.el-featured-partner__eyebrow {
  position: relative;
  z-index: 1;
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.84);
}
.el-featured-partner__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  gap: 28px;
  margin-top: 24px;
  align-items: stretch;
}
.el-featured-partner__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.el-featured-partner__title {
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--text);
}
.el-featured-partner__body {
  max-width: 64ch;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.76);
}
.el-featured-partner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.el-featured-partner__btn {
  min-height: 56px;
}
.el-featured-partner__stats {
  display: grid;
  gap: 16px;
  align-content: stretch;
}
.el-featured-partner__stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  min-height: 132px;
  padding: 22px 22px 20px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7,7,7,0.3);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}
.el-featured-partner__stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}
.el-featured-partner__stat-value {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.el-home-stories,
.el-home-community,
.el-home-categories,
.el-home-org-cta,
.el-home-updates {
  position: relative;
}
.el-home-stories {
}

.el-home-stories__grid,
.el-home-community__grid,
.el-home-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.el-home-story__card,
.el-home-community__card,
.el-home-category,
.el-home-org-cta__surface,
.el-home-updates__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  background: var(--surface-gradient);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}

.el-home-story__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  min-height: 260px;
  padding: 24px;
  transition: transform var(--duration-fast) var(--ease-out-expo), border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}
.el-home-story__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,0,0.18);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), 0 22px 40px rgba(0,0,0,0.26);
}
.el-home-story__media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.03);
}
.el-home-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.88);
}
.el-home-story__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}
.el-home-story__org {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-warm);
}
.el-home-story__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
}
.el-home-story__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.el-home-community__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 246px;
  padding: 24px;
}
.el-home-community__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: var(--accent-warm);
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.12);
}
.el-home-community__icon svg {
  width: 22px;
  height: 22px;
}
.el-home-community__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}
.el-home-community__body {
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.el-home-category {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 22px 20px;
  transition: transform var(--duration-fast) var(--ease-out-expo), border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}
.el-home-category:hover {
  transform: translateY(-3px);
  border-color: rgba(255,107,0,0.16);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), 0 18px 30px rgba(0,0,0,0.22);
}
.el-home-category__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,107,0,0.08);
  color: var(--accent-warm);
  border: 1px solid rgba(255,107,0,0.1);
}
.el-home-category__icon svg {
  width: 20px;
  height: 20px;
}
.el-home-category__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.el-home-category__name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}
.el-home-category__count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}

.el-home-org-cta__surface {
  padding: clamp(28px, 4.5vw, 44px);
  background:
    radial-gradient(circle at top right, rgba(255,107,0,0.15) 0%, transparent 38%),
    var(--surface-gradient);
}
.el-home-org-cta__title {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
.el-home-org-cta__body {
  max-width: 70ch;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.el-home-org-cta__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.el-home-org-cta__stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.el-home-org-cta__stat strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}
.el-home-org-cta__stat span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.el-home-org-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.el-home-updates {
  padding-bottom: var(--section-pad);
}
.el-home-updates__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 42px);
  text-align: center;
}
.el-home-updates__title {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text);
}
.el-home-updates__body {
  max-width: 56ch;
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-secondary);
}
.el-home-updates__note {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.el-home-updates__shell {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.03);
}
.el-home-updates__input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
}
.el-home-updates__input::placeholder {
  color: rgba(255,255,255,0.44);
}
.el-home-updates__button {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,107,0,0.12);
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent) 100%);
  color: #050505;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: default;
}

/* ═══════════════════════════════════════════════
   7. GALLERY (IMPACT STRIP)
   ═══════════════════════════════════════════════ */
.el-gallery {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.el-gallery__strip {
  display: flex;
  gap: 8px;
  width: max-content;
}
.el-gallery__item {
  width: 30vw;
  min-width: 280px;
  max-width: 400px;
  height: 320px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-img);
}
.el-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.8);
  transition: filter var(--duration-fast) ease;
}
.el-gallery__item:hover img {
  filter: saturate(0.65) brightness(0.9);
}

.el-gallery__vignette {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.el-gallery__vignette--left {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.el-gallery__vignette--right {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.el-gallery__caption {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--text-dim);
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════
   7. CTA (CLOSE)
   ═══════════════════════════════════════════════ */
.el-cta {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(64px, 12vw, var(--section-pad)) 32px;
}
.el-cta::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: orbDrift 9s ease-in-out infinite;
  animation-delay: -2s;
}

.el-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: clamp(24px, 4vw, 40px);
  position: relative;
  z-index: 1;
}
.el-cta__headline-accent {
  background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.el-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 64px;
  padding: 0 40px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: transform var(--duration-fast) var(--ease-out-expo), box-shadow var(--duration-fast) var(--ease-out-expo);
  animation: btnGlow 3s ease-in-out infinite;
  box-shadow: inset 0 0 0 1px transparent, 0 0 0 rgba(255,107,0,0);
}
.el-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 12px 30px rgba(255,107,0,0.4);
}
.el-cta__btn svg { width: 20px; height: 20px; }

.el-cta__social {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════
   8. FOOTER
   ═══════════════════════════════════════════════ */
.el-footer {
  position: relative;
  margin-top: 40px;
  background: #080808;
  border-top: 1px solid var(--border-subtle);
}
.el-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
}
.el-footer__main {
  position: relative;
  z-index: 1;
  padding: 28px 32px 24px;
}
.el-footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px 36px;
}
.el-footer__brand {
  display: flex;
  flex-shrink: 0;
  opacity: 0.95;
  transition: opacity var(--duration-fast) ease;
}
.el-footer__brand:hover {
  opacity: 1;
}
.el-footer__brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.el-footer__cols {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 24px 28px;
  flex: 1;
  min-width: min(100%, 720px);
}
.el-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.el-footer__col-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}
.el-footer__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.el-footer__section.has-divider {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}
.el-footer__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(177, 177, 177, 0.95);
  transition: color var(--duration-fast) ease;
}
.el-footer__link:hover {
  color: var(--text);
}
.el-footer__legal {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin: 14px 0 0;
  padding: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: TABLET (< 1200px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1199px) {
  :root {
    --section-pad: 120px;
  }
  .el-footer__cols {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    min-width: 100%;
  }
  .el-featured-partner__grid {
    grid-template-columns: 1fr;
  }
  .el-featured-partner__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .el-home-stories__grid,
  .el-home-community__grid,
  .el-home-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .el-home-updates__inner {
    max-width: 680px;
  }
  .el-mechanism__node { flex: 0 0 220px; padding: 32px 24px; }
  .el-mechanism__connector { flex: 0 0 40px; }
  .el-mechanism__connector svg { width: 40px; }
  .el-proof__metric-number { margin-bottom: 8px; }
  .el-gallery__item { height: 260px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: MOBILE (< 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --section-pad: 56px;
    --nav-h: 56px;
  }

  .el-section-divider { display: none; }

  /* No horizontal reveal shift on narrow screens (prevents overflow during scroll animation) */
  .reveal-right {
    transform: translateY(28px);
  }
  .reveal-right.is-visible {
    transform: translateY(0);
  }
  .reveal-fallback .reveal-right {
    transform: translateY(0);
  }

  .el-container { padding: 0 20px; }
  .el-nav__inner { padding: 0 20px; }
  .el-nav__links { display: none; }
  .el-nav__cta { display: none; }

  /* Hero — content-sized section (no full-viewport dead band); stack centered below nav */
  .el-hero {
    min-height: auto;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + var(--hero-stack-sm));
    padding-bottom: clamp(40px, 8svh, 72px);
    box-sizing: border-box;
  }
  .el-hero__content {
    text-align: center;
    align-items: stretch;
    padding: 0 20px;
    max-width: 100%;
    margin-inline: auto;
    width: 100%;
    box-sizing: border-box;
  }
  .el-hero__headline {
    font-size: clamp(28px, 9vw, 52px);
    margin-bottom: var(--hero-stack-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .el-hero__sub {
    gap: 8px;
    font-size: clamp(14px, 3.8vw, 18px);
    margin-bottom: 18px;
    line-height: 1.38;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .el-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .el-hero__search-form {
    width: 100%;
  }
  .el-hero__search-shell {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 14px;
    border-radius: 22px;
  }
  .el-hero__search-icon {
    grid-column: 1;
    grid-row: 1;
    width: 20px;
    height: 20px;
  }
  .el-hero__search-input {
    grid-column: 2;
    grid-row: 1;
    font-size: clamp(16px, 4.1vw, 18px);
    min-height: 48px;
  }
  .el-hero__search-submit {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 0 20px;
    font-size: clamp(15px, 3.9vw, 17px);
  }
  .el-hero__search-submit svg {
    width: 14px;
    height: 14px;
  }
  .el-hero__location {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
  }
  .el-hero__stats {
    gap: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .el-hero__partner {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }
  .el-hero__partner-line { display: none; }
  .el-hero__partner-label { font-size: 10px; }
  .el-hero__partner-link {
    min-height: 72px;
  }
  .el-hero__partner-logos {
    width: min(680px, 100%);
    gap: 16px 20px;
  }
  .el-hero__partner-logo--ftc {
    height: 44px;
    max-height: 44px;
    max-width: min(180px, 100%);
  }
  .el-hero__partner-logo--wyde {
    height: 72px;
    max-height: 72px;
    max-width: min(280px, 100%);
  }
  .el-hero__video { opacity: 0; animation-name: videoInMobile; }
  @keyframes videoInMobile {
    from { opacity: 0; }
    to { opacity: 0.5; }
  }

  /* Tension stat */
  .el-tension {
    padding: 56px 0;
    overflow-x: clip;
  }
  .el-tension::before {
    width: min(420px, 140vw);
    height: min(420px, 140vw);
  }
  .el-tension__headline {
    font-size: clamp(24px, 7vw, 40px);
    line-height: 1.12;
    padding: 0 4px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .el-tension__sub {
    font-size: 16px;
    line-height: 1.55;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Three ways */
  .el-pathways {
    padding-block: var(--home-section-space-mobile);
  }
  .el-pathways__header {
    margin-bottom: 24px;
  }
  .el-pathways__title {
    font-size: clamp(26px, 8vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    white-space: normal;
    padding: 0 8px;
  }
  .el-pathways__sub {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 6px;
  }
  .el-pathways__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .el-pathways__card {
    padding: 22px 20px;
    border-radius: 18px;
  }
  .el-pathways__card-title {
    font-size: clamp(26px, 7vw, 38px);
    margin-bottom: 14px;
  }
  .el-pathways__meta {
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.22em;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .el-pathways__body {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .el-pathways__icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    margin-bottom: 20px;
  }
  .el-pathways__icon svg {
    width: 22px;
    height: 22px;
  }
  .el-pathways__chip {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 18px;
  }
  .el-pathways__chip-title {
    font-size: 16px;
  }
  .el-pathways__chip-copy {
    font-size: 13px;
  }
  .el-pathways__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    background: rgba(255, 107, 0, 0.08);
    font-size: 15px;
    gap: 10px;
  }

  /* What is EAT — coin first, then headline + copy (narrow screens) */
  .el-what { padding-block: var(--home-section-space-mobile); }
  .el-what__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: clip;
    min-width: 0;
  }
  .el-what__visual {
    order: 1;
  }
  .el-what__content {
    text-align: center;
    order: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .el-what__headline {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .el-what__coin { width: min(160px, 52vw); height: min(160px, 52vw); }
  .el-what__body {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.65;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .el-what__actions {
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .el-what__btn {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    min-height: 52px;
    height: auto;
    box-sizing: border-box;
    padding: 0 clamp(16px, 5vw, 28px);
    font-size: clamp(14px, 3.8vw, 16px);
    min-width: 0;
  }

  /* Mechanism -- vertical stack */
  .el-mechanism {
    padding: 48px 0 var(--section-pad);
  }
  .el-mechanism__header {
    margin-bottom: 32px;
    padding: 0 8px;
  }
  .el-mechanism__flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
    width: 100%;
    max-width: min(440px, 100%);
    margin-inline: auto;
    box-sizing: border-box;
  }
  .el-mechanism__node {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 22px 20px;
    box-sizing: border-box;
  }
  .el-mechanism__connector {
    flex: none;
    width: 100%;
    height: 36px;
    transform: none;
    margin: 2px 0;
  }
  .el-mechanism__connector svg {
    width: 60px;
    height: 20px;
    transform: rotate(90deg);
  }
  .el-mechanism__summary {
    margin-top: 32px;
    padding: 0 20px;
    line-height: 1.55;
  }

  /* Proof -- vertical stack */
  .el-proof {
    padding-block: var(--home-section-space-mobile);
  }
  .el-proof__header {
    margin-bottom: 22px;
    padding: 0 16px;
  }
  .el-proof__metrics {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 16px 24px;
    max-width: 420px;
    margin-inline: auto;
  }
  .el-proof__metric {
    flex: none;
    padding: 22px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .el-proof__metric-number {
    font-size: clamp(28px, 8vw, 44px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .el-proof__metric-label {
    font-size: 13px;
  }
  .el-proof__live {
    margin-top: 18px;
    padding-bottom: 8px;
  }

  .el-featured-partner {
    padding-block: var(--home-section-space-mobile);
  }
  .el-featured-partner__surface {
    padding: 24px 22px;
    border-radius: 22px;
  }
  .el-featured-partner__eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .el-featured-partner__title {
    font-size: clamp(34px, 10vw, 52px);
  }
  .el-featured-partner__body {
    font-size: 15px;
    line-height: 1.7;
  }
  .el-featured-partner__actions {
    width: 100%;
    flex-direction: column;
  }
  .el-featured-partner__btn {
    width: 100%;
    justify-content: center;
  }
  .el-featured-partner__stats {
    grid-template-columns: 1fr;
  }
  .el-featured-partner__stat {
    min-height: 0;
  }

  .el-home-stories,
  .el-home-community,
  .el-home-categories,
  .el-home-org-cta,
  .el-home-updates {
    padding-block: var(--home-section-space-mobile);
  }
  .el-home-chapter__header {
    margin-bottom: 24px;
    text-align: center;
    padding: 0 6px;
  }
  .el-home-chapter__title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.1;
  }
  .el-home-chapter__body {
    font-size: 15px;
    line-height: 1.65;
  }
  .el-home-inline-link {
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }
  .el-home-stories__grid,
  .el-home-community__grid,
  .el-home-categories__grid,
  .el-home-org-cta__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .el-home-story__card,
  .el-home-community__card,
  .el-home-category {
    min-height: 0;
    padding: 22px 20px;
  }
  .el-home-story__title,
  .el-home-community__title {
    font-size: 22px;
  }
  .el-home-category {
    align-items: flex-start;
  }
  .el-home-org-cta__surface,
  .el-home-updates__inner {
    padding: 24px 20px;
  }
  .el-home-org-cta__title,
  .el-home-updates__title {
    font-size: clamp(28px, 8vw, 40px);
  }
  .el-home-org-cta__body,
  .el-home-updates__body {
    font-size: 15px;
  }
  .el-home-org-cta__actions {
    flex-direction: column;
  }
  .el-home-org-cta__btn {
    width: 100%;
    justify-content: center;
  }
  .el-home-updates__shell {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
  }
  .el-home-updates__button {
    width: 100%;
  }

  /* Gallery */
  .el-gallery__item {
    min-width: 220px;
    height: 200px;
  }
  .el-gallery__vignette { width: 60px; }

  /* CTA */
  .el-cta {
    min-height: 0;
    padding: 40px 20px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    align-items: stretch;
  }
  .el-cta .el-divider { display: none; }
  .el-cta__headline {
    font-size: clamp(28px, 7vw, 48px);
    margin-bottom: 16px;
    padding: 0 4px;
    line-height: 1.08;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .el-cta__btn {
    display: flex;
    width: 100%;
    max-width: none;
    justify-content: center;
    min-height: 56px;
    height: auto;
    font-size: clamp(15px, 4vw, 17px);
    padding: 0 clamp(18px, 5vw, 28px);
    box-sizing: border-box;
    min-width: 0;
  }
  .el-cta__btn svg {
    width: clamp(18px, 5vw, 20px);
    height: clamp(18px, 5vw, 20px);
    flex-shrink: 0;
  }
  .el-cta__social {
    margin-top: 14px;
    padding: 0 16px;
    line-height: 1.45;
  }

  /* Footer */
  .el-footer__main {
    padding: 24px 20px 20px;
  }
  .el-footer__grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .eat-landing .el-footer__cols {
    grid-template-columns: 1fr;
    gap: 16px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .eat-landing .el-footer__col {
    min-width: 0;
    gap: 10px;
  }
  .eat-landing .el-footer__section {
    gap: 2px;
  }
  .eat-landing .el-footer__link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.35;
  }
  .el-footer__legal {
    margin-top: 12px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

@media (max-width: 380px) {
  .el-hero__stats-dot {
    display: none;
  }
  .el-hero__partner-logos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .el-hero__partner-link {
    min-height: 68px;
  }
}

/* ═══════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .el-hero__headline { opacity: 1; transform: none; animation: none; }
  .el-hero__sub { opacity: 1; animation: none; }
  .el-hero__actions { opacity: 1; animation: none; }
  .el-hero__video { opacity: 0.7; animation: none; }
  .el-hero__glow { opacity: 0.8; animation: none; }
  .el-mechanism__node { opacity: 1; transform: none; }
  .el-mechanism__connector-line { stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════════
   SITEWIDE LOVABLE NAVBAR REFIT
   ═══════════════════════════════════════════════ */
.el-nav {
  align-items: flex-start;
}

.el-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--nav-h);
}

.el-nav__start {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.el-nav__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  transition: transform var(--duration-fast) var(--ease-out-expo);
}

.el-nav__brand:hover {
  transform: translateY(-1px);
}

.el-nav__logo {
  width: 34px;
  height: 34px;
}

.el-nav__find-help,
.el-nav__mobile-find-help,
.el-nav__cta,
.el-nav__mobile-link--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background-color: var(--accent) !important;
  background-image: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%) !important;
  color: var(--bg) !important;
  -webkit-text-fill-color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--duration-fast) var(--ease-out-expo), box-shadow var(--duration-fast) var(--ease-out-expo);
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.2);
}

.el-nav__find-help:hover,
.el-nav__mobile-find-help:hover,
.el-nav__cta:hover,
.el-nav__mobile-link--cta:hover {
  transform: translateY(-1px);
  background-color: var(--accent) !important;
  background-image: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%) !important;
  color: var(--bg) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 10px 26px rgba(255, 107, 0, 0.28);
}

.el-nav__find-help-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.el-nav__find-help span,
.el-nav__mobile-find-help span,
.el-nav__cta span,
.el-nav__mobile-link--cta span,
.el-nav__find-help svg,
.el-nav__mobile-find-help svg,
.el-nav__cta svg,
.el-nav__mobile-link--cta svg {
  color: inherit;
  opacity: 1;
}

.el-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.el-nav__dropdown {
  position: relative;
}

.el-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease, border-color var(--duration-fast) ease, transform var(--duration-fast) var(--ease-out-expo);
}

.el-nav__dropdown-trigger:hover,
.el-nav__dropdown-trigger.is-active,
.el-nav__dropdown.is-open .el-nav__dropdown-trigger {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border-color: var(--border-subtle);
}

.el-nav__dropdown-trigger:hover {
  transform: translateY(-1px);
}

.el-nav__dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) ease;
}

.el-nav__dropdown.is-open .el-nav__dropdown-chevron,
.el-nav__mobile-group[open] .el-nav__dropdown-chevron {
  transform: rotate(180deg);
}

.el-nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: none;
  width: min(340px, 84vw);
  padding: 14px 0;
  transform: translateX(-50%);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  background: rgba(8, 10, 16, 0.96);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

.el-nav__dropdown.is-open .el-nav__dropdown-panel {
  display: block;
}

.el-nav__dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
}

.el-nav__dropdown-section + .el-nav__dropdown-section {
  margin-top: 0;
  padding-top: 0;
}

.el-nav__dropdown-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}

.el-nav__dropdown-link:hover,
.el-nav__dropdown-link.is-active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.el-nav__end {
  gap: 12px;
}

.el-nav__auth-link {
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast) ease;
}

.el-nav__auth-link:hover,
.el-nav__auth-link.is-active {
  color: var(--text);
}

.el-nav__mobile-menu {
  display: none;
  flex: 1 1 100%;
  order: 20;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: rgba(8, 10, 16, 0.98);
  box-shadow: 0 22px 48px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.05);
}

.el-nav__mobile-find-help {
  width: 100%;
  min-height: 42px;
  margin-bottom: 8px;
  padding: 0 14px;
  font-size: 14px;
}

.el-nav__mobile-group {
  border-top: 1px solid var(--border-subtle);
}

.el-nav__mobile-group:first-of-type {
  border-top: none;
}

.el-nav__mobile-group-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

.el-nav__mobile-group-summary::-webkit-details-marker {
  display: none;
}

.el-nav__mobile-group-panel {
  padding: 2px 0 8px;
}

.el-nav__mobile-group-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.el-nav__mobile-group-section.has-divider {
  margin-top: 0;
  padding-top: 0;
}

.el-nav__mobile-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}

.el-nav__mobile-link:hover,
.el-nav__mobile-link.is-active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.el-nav__mobile-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-subtle);
}

.el-nav__mobile-link--cta {
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
}

.el-nav__mobile-link--cta:hover {
  color: var(--bg);
  background: var(--accent);
}

@media (min-width: 1024px) {
  .el-nav__menu-toggle {
    display: none !important;
  }

  .el-nav__mobile-menu {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1023px) {
  .el-nav {
    min-height: var(--nav-h);
  }

  .el-nav__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 20px;
  }

  .el-nav__find-help,
  .el-nav__links,
  .el-nav__auth-link,
  .el-nav__cta,
  .el-nav__cart-wrap {
    display: none !important;
  }

  .el-nav__menu-toggle {
    display: inline-flex;
  }

  .el-nav.is-menu-open .el-nav__mobile-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .eat-landing .el-nav.is-menu-open {
    align-items: flex-start;
  }

  .eat-landing .el-nav__mobile-menu {
    position: fixed;
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 12px);
    left: max(16px, calc(env(safe-area-inset-left, 0px) + 16px));
    right: max(16px, calc(env(safe-area-inset-right, 0px) + 16px));
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    width: auto;
    max-height: calc(100vh - var(--nav-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 28px);
    max-height: calc(100dvh - var(--nav-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 28px);
    height: calc(100vh - var(--nav-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 28px);
    height: calc(100dvh - var(--nav-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 28px);
    margin-top: 0;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
    border-radius: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.985);
    box-shadow:
      0 26px 64px rgba(0, 0, 0, 0.62),
      0 0 0 1px rgba(255, 107, 0, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
      opacity 180ms ease,
      visibility 180ms linear,
      transform 240ms var(--ease-out-expo);
  }

  .eat-landing .el-nav.is-menu-open .el-nav__mobile-menu {
    display: grid;
    gap: 2px;
    max-height: calc(100vh - var(--nav-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 28px);
    max-height: calc(100dvh - var(--nav-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 28px);
    height: calc(100vh - var(--nav-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 28px);
    height: calc(100dvh - var(--nav-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 28px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}
