@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --brand: #2563eb;
  --ink-900: #0d0f14;
  --ink-800: #1a1d27;
  --parchment: #f7f6f3;
  --display-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-padding: 32px;
  --container-width: 1200px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  background: #f0f2f5;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Page column (LinkedIn-style centered container) ─── */
.lp-page {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}
.lp-page > *:not(header):not(nav):not(.elp-nav) { flex-shrink: 0; }
.lp-page > footer { margin-top: auto; }

/* ─── Container ─── */
.lp-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

/* ─── Typography ─── */
.lp-display {
  font-family: var(--display-font);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.lp-headline {
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.lp-label {
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Buttons ─── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: filter 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.lp-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

.lp-btn-primary { background: var(--brand); color: #fff; }
.lp-btn-outline { background: transparent; color: var(--ink-900); border: 1.5px solid rgba(0,0,0,0.25); }
.lp-btn-outline:hover { background: rgba(0,0,0,0.04); }
.lp-btn-dark { background: var(--ink-900); color: #fff; }

/* ─── Status badges ─── */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-badge-green  { background: rgba(16,185,129,0.15); color: #10b981; }
.lp-badge-amber  { background: rgba(245,158,11,0.15);  color: #f59e0b; }
.lp-badge-slate  { background: rgba(148,163,184,0.15); color: #94a3b8; }

/* ─── Divider ─── */
.lp-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0;
}

/* ════════════════════════════════════════════
   HOME PAGE STYLES  (.lp-*)
════════════════════════════════════════════ */

/* ── Navbar ── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}
.lp-nav-inner {
  padding: 0 clamp(20px, 4vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-nav-logo {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--ink-900);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.lp-nav-logo span { color: var(--brand); }

/* ── Hero ── */
.lp-hero {
  background: #fff;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-text {
  padding: clamp(100px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  max-width: 720px;
  margin: 0 auto;
}
.lp-hero-eyebrow {
  color: var(--brand);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.lp-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--brand);
}
.lp-hero-headline {
  font-family: var(--body-font);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  margin-bottom: 8px;
}
.lp-hero-headline em {
  font-style: italic;
  color: var(--brand);
  opacity: 0.55;
}
.lp-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #64748b;
  font-weight: 400;
  max-width: 520px;
  margin: 20px auto 0;
  line-height: 1.65;
}
.lp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Staggered headline animation */
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-hero-eyebrow { animation: lp-fade-up 0.6s ease forwards; animation-delay: 0s; opacity: 0; }
.lp-hero-headline { animation: lp-fade-up 0.6s ease forwards; animation-delay: 0.1s; opacity: 0; }
.lp-hero-sub { animation: lp-fade-up 0.6s ease forwards; animation-delay: 0.2s; opacity: 0; }
.lp-hero-actions { animation: lp-fade-up 0.6s ease forwards; animation-delay: 0.3s; opacity: 0; }

/* Hero mockup card */
.lp-hero-mockup {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 0 60px 40px;
}
.lp-mockup-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 320px;
  transform: rotate(2deg) translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
}
.lp-mockup-header {
  height: 6px;
  background: linear-gradient(90deg, var(--brand), #7c3aed);
  border-radius: 3px;
  margin-bottom: 20px;
}
.lp-mockup-field {
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  margin-bottom: 10px;
}
.lp-mockup-field.short { width: 60%; }
.lp-mockup-field.label { height: 7px; width: 35%; background: rgba(255,255,255,0.04); margin-bottom: 6px; }
.lp-mockup-btn {
  height: 36px;
  background: var(--brand);
  border-radius: 100px;
  margin-top: 20px;
  opacity: 0.9;
}

/* ── Features ── */
.lp-features {
  background: #fff;
  padding: var(--section-padding) 0;
  border-top: 1px solid #e2e8f0;
}
.lp-features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.lp-feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.lp-feature-accent {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 28px;
  width: 48px;
}
.lp-feature-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  font-family: var(--display-font);
  line-height: 1.2;
}
.lp-feature-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
}
.lp-features-eyebrow {
  color: #64748b;
  margin-bottom: 12px;
}
.lp-features-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #0f172a;
}

/* ── Upcoming Events ── */
.lp-events {
  background: var(--ink-900);
  padding: var(--section-padding) 0;
}
.lp-events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.lp-events-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
}
.lp-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-event-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.lp-event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.lp-event-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.lp-event-name {
  font-family: var(--display-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-top: 8px;
}
.lp-event-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.lp-event-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.lp-event-card:hover .lp-event-cta { color: #fff; }

/* ── How It Works ── */
.lp-how {
  background: #fff;
  padding: var(--section-padding) 0;
  border-top: 1px solid #e2e8f0;
}
.lp-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.lp-how-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-how-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  align-self: flex-start;
}
.lp-how-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--display-font);
  line-height: 1.25;
}
.lp-how-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
}

/* ── Footer (home) ── */
.lp-footer {
  background: #fff;
  padding: 48px 0;
  border-top: 1px solid #e2e8f0;
}
.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}
.lp-footer-brand {
  font-family: var(--display-font);
  font-size: 1.1rem;
  color: var(--ink-900);
  font-weight: 700;
}
.lp-footer-sub { font-size: 0.8rem; color: #94a3b8; margin-top: 4px; }
.lp-footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.lp-footer-link { font-size: 0.8rem; color: #64748b; text-decoration: none; transition: color 0.2s; }
.lp-footer-link:hover { color: var(--ink-900); }


/* ════════════════════════════════════════════
   EVENT LANDING PAGE STYLES  (.elp-*)
════════════════════════════════════════════ */

/* ── Default gradient hero (no banner image) ── */
.elp-hero-gradient {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 40%, color-mix(in srgb, var(--brand) 25%, var(--ink-900)) 100%);
}
/* Fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, red 10%, blue)) {
  .elp-hero-gradient {
    background: linear-gradient(135deg, #0d0f14 0%, #1a1d27 40%, #162047 100%);
  }
}
.elp-hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.12) 0%, transparent 65%);
}

/* ── ELP Nav ── */
.elp-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 20px clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.elp-nav-logo {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── Hero ── */
.elp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink-900);
  overflow: hidden;
}
.elp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.elp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.30) 50%,
    rgba(0,0,0,0.05) 100%
  );
}
.elp-hero-overlay.dark-text {
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0.2) 50%,
    transparent 100%
  );
}
.elp-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px clamp(20px, 4vw, 60px);
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}
.elp-hero-logo {
  display: block;
  max-height: 56px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.elp-hero-title {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin-bottom: 16px;
}
.elp-hero-title.dark-text { color: var(--ink-900); }
.elp-hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.elp-hero-tagline.dark-text { color: rgba(13,15,20,0.65); }
.elp-hero-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.elp-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.elp-hero-meta-item.dark-text { color: rgba(13,15,20,0.55); }
.elp-hero-meta-icon { font-size: 1rem; }
.elp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.elp-hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 20px;
  background: #fff;
  flex-wrap: wrap;
}

/* ── Merged CTA + countdown section ── */
.elp-cta-countdown {
  background: #fff;
  padding: 28px 20px 36px;
  text-align: center;
}
.elp-cta-countdown-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  margin: 0 auto;
}
.elp-cta-countdown-inner .lp-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.elp-cta-badge-row {
  display: flex;
  justify-content: center;
  margin-top: -8px;
}
.elp-mini-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.elp-mini-cd-item {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.elp-mini-cd-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-900, #0d0f14);
  min-width: 2ch;
  text-align: right;
}
.elp-mini-cd-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.elp-mini-cd-sep {
  font-size: 1.2rem;
  font-weight: 700;
  color: #cbd5e1;
  margin: 0 2px;
  line-height: 1;
}

/* ── About ── */
.elp-about {
  background: #fff;
  padding: var(--section-padding) 0;
}
.elp-about-inner {
  max-width: 720px;
}
.elp-about-text {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.8;
  white-space: pre-line;
}

/* ── Countdown ── */
.elp-countdown {
  padding: clamp(40px, 6vw, 72px) 0;
  position: relative;
}
.elp-countdown-bg {
  background: var(--brand);
  opacity: 0.08;
  position: absolute;
  inset: 0;
}
.elp-countdown-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.elp-countdown-label {
  color: var(--brand);
  text-align: center;
}
.elp-countdown-boxes {
  display: flex;
  gap: clamp(12px, 3vw, 24px);
  flex-wrap: wrap;
  justify-content: center;
}
.elp-countdown-box {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 36px);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  min-width: 80px;
}
.elp-countdown-number {
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--brand);
  display: block;
  line-height: 1;
}
.elp-countdown-unit {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  display: block;
  margin-top: 6px;
}

/* ── Speakers ── */
.elp-speakers {
  background: var(--parchment);
  padding: var(--section-padding) 0;
}
.elp-speakers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.elp-speaker-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.elp-speaker-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.elp-speaker-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid color-mix(in srgb, var(--brand) 15%, white);
}
.elp-speaker-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display-font);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.elp-speaker-info { flex: 1; min-width: 0; }
.elp-speaker-name {
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}
.elp-speaker-title { font-size: 0.8rem; color: var(--brand); font-weight: 600; margin-bottom: 8px; }
.elp-speaker-bio { font-size: 0.84rem; color: #64748b; line-height: 1.65; }

/* ── Section heading shared ── */
.elp-section-eyebrow { color: var(--brand); margin-bottom: 10px; }
.elp-section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #0f172a;
  margin-bottom: 0;
}
.elp-section-heading.light { color: #fff; }

/* ── Schedule ── */
.elp-schedule {
  background: #fff;
  padding: var(--section-padding) 0;
}
.elp-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 48px;
}
.elp-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--brand);
  border-radius: 3px;
}
.elp-timeline-item {
  position: relative;
  padding: 0 0 36px 28px;
}
.elp-timeline-item:last-child { padding-bottom: 0; }
.elp-timeline-item::before {
  content: '';
  position: absolute;
  left: -22px; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--brand);
}
.elp-timeline-time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.elp-timeline-title {
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.elp-timeline-meta { font-size: 0.82rem; color: #94a3b8; }

/* ── Sponsors ── */
.elp-sponsors {
  background: var(--parchment);
  padding: var(--section-padding) 0;
}
.elp-sponsors-tier {
  margin-bottom: 32px;
}
.elp-sponsors-tier-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 16px;
}
.elp-sponsors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.elp-sponsor-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s ease, transform 0.2s ease;
}
.elp-sponsor-item:hover { transform: translateY(-2px); }
.elp-sponsor-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.3s ease;
  object-fit: contain;
}
.elp-sponsor-item:hover .elp-sponsor-logo { filter: grayscale(0) opacity(1); }
.elp-sponsor-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  transition: color 0.3s;
}
.elp-sponsor-item:hover .elp-sponsor-name { color: #0f172a; }

/* Sponsor categories */
.elp-sponsor-partner .elp-sponsor-logo { max-height: 40px; max-width: 120px; }
.elp-sponsor-sponsor .elp-sponsor-logo { max-height: 28px; max-width: 90px; }

/* Sponsor group headings */
.elp-sponsors-group { margin-bottom: 36px; }
.elp-sponsors-group-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 18px;
  text-align: center;
}

/* ── Register CTA band ── */
.elp-register {
  background: var(--brand);
  padding: clamp(64px, 8vw, 100px) 0;
  text-align: center;
}
.elp-register-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.elp-register-title {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  max-width: 600px;
  line-height: 1.1;
}
.lp-btn-white { background: #fff; color: var(--brand); }
.lp-btn-white:hover { filter: brightness(0.97); }
.elp-register-note { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.elp-closed-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.elp-closed-box strong { display: block; font-size: 1.15rem; color: #fff; margin-bottom: 6px; }

/* ── Social share ── */
.elp-social {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 20px 0;
}
.elp-social-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.elp-social-row-follow {
  border-top: 1px solid #f1f5f9;
  margin-top: 20px;
  padding-top: 20px;
}
.elp-social-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
  min-width: 44px;
}
.elp-share-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.elp-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
  flex-shrink: 0;
}
.elp-share-btn svg { width: 13px; height: 13px; display: block; }
.elp-share-btn:hover { transform: translateY(-2px); }

.elp-share-twitter:hover   { background: #000;     color: #fff; border-color: #000; }
.elp-share-facebook:hover  { background: #1877f2;  color: #fff; border-color: #1877f2; }
.elp-share-linkedin:hover  { background: #0a66c2;  color: #fff; border-color: #0a66c2; }
.elp-share-whatsapp:hover  { background: #25d366;  color: #fff; border-color: #25d366; }
.elp-share-instagram:hover { background: #e1306c;  color: #fff; border-color: #e1306c; }
.elp-share-youtube:hover   { background: #ff0000;  color: #fff; border-color: #ff0000; }
.elp-share-tiktok:hover    { background: #010101;  color: #fff; border-color: #010101; }

/* ── ELP Footer ── */
.elp-footer {
  background: var(--ink-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  text-align: center;
}
.elp-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.elp-footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.elp-footer-link { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.elp-footer-link:hover { color: #fff; }
.elp-footer-contact { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; margin-bottom: 4px; padding: 0 8px; }
.elp-footer-contact-item { font-size: 0.78rem; color: #1e293b; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.elp-footer-contact-label { font-weight: 600; color: #0f172a; }


/* ── Key Stats / Highlights ── */
.elp-highlights {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}
.elp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.elp-stat-card {
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  background: color-mix(in srgb, var(--brand) 4%, white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.elp-stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.07); }
@supports not (background: color-mix(in srgb, red 4%, white)) {
  .elp-stat-card { background: #f5f9ff; }
}
.elp-stat-icon { font-size: 2rem; margin-bottom: 12px; display: block; line-height: 1; }
.elp-stat-value {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.elp-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Info Block ── */
.elp-info-block {
  background: #fff;
  padding: clamp(40px, 6vw, 72px) 0;
  text-align: center;
}
.elp-info-block-inner { max-width: 700px; margin: 0 auto; }
.elp-info-block-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  text-align: left;
}
.elp-info-block-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}
.elp-info-block-body {
  font-size: 0.84rem;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* ── FAQ ── */
.elp-faq {
  background: #fff;
  padding: var(--section-padding) 0;
  border-top: 1px solid #e2e8f0;
}
.elp-faq-list { margin-top: 48px; }
.elp-faq-item { border-bottom: 1px solid #e2e8f0; }
.elp-faq-item:first-child { border-top: 1px solid #e2e8f0; }
.elp-faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--body-font);
  transition: background 0.15s;
}
.elp-faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}
.elp-faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--brand);
  transition: transform 0.25s ease;
}
.elp-faq-item.open .elp-faq-chevron { transform: rotate(180deg); }
.elp-faq-answer {
  font-size: 0.925rem;
  color: #4b5563;
  line-height: 1.75;
  padding-bottom: 20px;
  display: none;
}
.elp-faq-item.open .elp-faq-answer { display: block; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-features-grid { grid-template-columns: 1fr 1fr; }
  .lp-features-grid .lp-feature-card:first-child { grid-column: 1 / -1; }
  .lp-how-grid { grid-template-columns: 1fr 1fr; }
  .elp-speakers-grid { grid-template-columns: 1fr; max-width: 100%; }
}

@media (max-width: 768px) {
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-features-grid .lp-feature-card:first-child { grid-column: auto; }
  .lp-how-grid { grid-template-columns: 1fr; }
  .elp-speakers-grid { grid-template-columns: 1fr; }
  .elp-hero-meta { gap: 14px; }
  .elp-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .lp-hero-headline { font-size: 2.6rem; }
  .elp-hero-title { font-size: 2.2rem; }
  .elp-countdown-boxes { gap: 10px; }
  .elp-countdown-box { padding: 14px 18px; min-width: 68px; }
  .elp-speaker-card { flex-direction: column; }
  .elp-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
