/* Enmovil Brand System — American Supply Chain Summit 2026
 * Derived from Enmovil Brand Book 2.0
 * Colors: #59C098 (Green), #20749B (Dark Blue), #3F3F3F (Black), #EDEFF3 (White), #7030A0 (Purple)
 * Fonts: Poppins (primary), Manrope (secondary)
 */

:root {
  /* Primary */
  --enmovil-green: #59C098;
  --enmovil-green-soft: #E4F4ED;
  --enmovil-green-mid: #8BD4B3;
  --enmovil-blue: #20749B;
  --enmovil-blue-soft: #DDEAF1;
  --enmovil-blue-mid: #4A93B5;
  --enmovil-blue-deep: #14556F;

  /* Base */
  --enmovil-black: #3F3F3F;
  --enmovil-ink: #1F1F1F;
  --enmovil-white: #EDEFF3;
  --enmovil-paper: #FAFBFC;

  /* Accent */
  --enmovil-purple: #7030A0;

  /* PepsiCo accents — recipient brand */
  --pepsico-blue: #004B93;
  --pepsico-blue-soft: rgba(0, 75, 147, 0.14);
  --pepsico-red: #E32934;
  --pepsico-red-soft: rgba(227, 41, 52, 0.12);
  --pepsico-red-bright: #FF4B5C;

  /* Duracell accents — recipient brand */
  --duracell-copper: #B87333;
  --duracell-copper-soft: rgba(184, 115, 51, 0.18);
  --duracell-orange: #E85A00;
  --duracell-orange-soft: rgba(232, 90, 0, 0.14);
  --duracell-orange-bright: #FF7A1A;
  --duracell-gold: #F5B800;
  --duracell-black: #1A1A1A;

  /* Bosch accents — recipient brand */
  --bosch-red: #ED0007;
  --bosch-red-soft: rgba(237, 0, 7, 0.14);
  --bosch-red-bright: #FF3D46;
  --bosch-blue: #005691;
  --bosch-blue-soft: rgba(0, 86, 145, 0.16);
  --bosch-black: #000000;

  /* Semantic */
  --bg: var(--enmovil-paper);
  --bg-panel: #FFFFFF;
  --bg-deep: var(--enmovil-blue);
  --text: var(--enmovil-ink);
  --text-muted: #6B7280;
  --text-soft: #9CA3AF;
  --border: #E5E7EB;
  --border-soft: #F0F2F5;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 10px 15px -3px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  --shadow-glow-green: 0 20px 60px -20px rgba(89, 192, 152, 0.5);
  --shadow-glow-blue: 0 20px 60px -20px rgba(32, 116, 155, 0.55);

  /* Type */
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-body: 'Poppins', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Radii — rounded pill system from brand book */
  --radius-pill: 999px;
  --radius-card: 18px;
  --radius-sm: 10px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.h-display { font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.035em; }
.h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); }
.h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--enmovil-blue);
}
.lede { font-size: clamp(1.125rem, 1.5vw, 1.375rem); color: var(--text-muted); line-height: 1.55; max-width: 60ch; }

/* Container */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 960px; }

/* Buttons (pill from brand book) */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.2s;
  will-change: transform;
}
.btn--primary { background: var(--enmovil-ink); color: white; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,0.3); }
.btn--secondary { background: transparent; color: var(--enmovil-ink); border: 1.5px solid var(--enmovil-ink); }
.btn--secondary:hover { background: var(--enmovil-ink); color: white; }
.btn--ghost { background: transparent; color: var(--enmovil-blue); padding: 10px 0; border-radius: 0; }
.btn--ghost:hover { color: var(--enmovil-blue-deep); gap: 14px; }
.btn__arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Tags / pills */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 600;
  background: var(--enmovil-green);
  color: white;
}
.tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
}
.tag--blue { background: var(--enmovil-blue); }
.tag--ink { background: var(--enmovil-ink); }
.tag--ghost {
  background: transparent; color: var(--enmovil-ink);
  border: 1px solid var(--border);
}
.tag--ghost::before { background: var(--enmovil-green); }

/* Wavy brand background SVG util */
.bg-wave {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.28;
  z-index: 0;
}

/* Panels */
.panel {
  background: var(--bg-panel);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}

/* Logo — uses the official PNG */
.brand-mark {
  display: inline-flex;
  align-items: center;
  height: 32px;
}
.brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}
.brand-mark--sm { height: 26px; }
.brand-mark--lg { height: 44px; }
/* White version for dark backgrounds — achieved via CSS filter since logo PNG is color */
.brand-mark--white img {
  filter: brightness(0) invert(1);
}

/* Book a Meeting nav button */
.nav-book-meeting {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--enmovil-green) 0%, var(--enmovil-blue) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(32, 116, 155, 0.28);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 200ms cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0; /* GSAP animates this in */
}
.nav-book-meeting:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(32, 116, 155, 0.4);
}
.nav-book-meeting:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(32, 116, 155, 0.22);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
