/* ═══════════════════════════════════════════
   TOKENS
════════════════════════════════════════════ */
:root {
  --bg:          #0D1B3E;
  --bg-card:     #163566;
  --bg-card-alt: #1a3d72;
  --blue:        #4DA6E0;
  --blue-dim:    rgba(77, 166, 224, 0.15);
  --blue-dim2:   #163566;
  --gold:        #F5B800;
  --gold-dim:    rgba(245, 184, 0, 0.12);
  --white:       #FFFFFF;
  --orange:      #ff6d2d;
  --orange-dim:  #e85c1e;
  --red:         #C32F27;
  --text-muted:  #A8C8E8;
  --border:      rgba(77, 166, 224, 0.18);

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;

  --shadow:      0 4px 32px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.25);

  --max-w:       1160px;
  --nav-h:       72px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* ═══════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold  { color: var(--gold); }
.text-blue  { color: var(--blue); }
.text-navy  { color: var(--bg-card); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

.icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--blue);
}

/* ═══════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: #0D1B3E;
}
.btn--gold:hover { background: #ffc800; }

.btn--outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn--outline:hover { background: var(--blue-dim); }

.btn--lg { padding: 16px 36px; font-size: 17px; border-radius: var(--radius); }

/* ═══════════════════════════════════════════
   HEXAGON DECORATIONS
════════════════════════════════════════════ */
.hex-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hex {
  position: absolute;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--blue-dim);
  border-radius: 2px;
}
.hex--lg  { width: 180px; height: 200px; }
.hex--md  { width: 110px; height: 124px; }
.hex--sm  { width: 68px;  height: 76px; }

.hex--pos1 { top: -40px; right: 18%; opacity: 0.7; }
.hex--pos2 { top: 30%;   right: 6%;   opacity: 0.5; }
.hex--pos3 { top: 60%;   right: 24%;  opacity: 0.35; background: rgba(245,184,0,0.08); }
.hex--pos4 { bottom: -20px; left: 2%; opacity: 0.4; }
.hex--pos5 { top: 20%;   left: 8%;    opacity: 0.25; }

/* ═══════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13, 27, 62, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta { padding: 9px 20px; font-size: 14px; }

.nav__social {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
.nav__social a svg { width: 16px; height: 16px; }
.nav__social a:hover { color: var(--white); background: var(--blue-dim); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 80px 0 96px;
}

.hero__label {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(245,184,0,0.4);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__number {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.hero__title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__subtitle a {
  text-decoration: underline;
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.hero__meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
}
.hero__meta li .icon { margin-top: 2px; }
.hero__meta strong { color: var(--white); }


.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__deadline {
  font-size: 13px;
  color: var(--text-muted);
}
.hero__ttb-wrap {
  margin-top: 16px;
  margin-left: 80px;
}
.hero__ttb-wrap-more {
  margin-top: 16px;
  margin-left: 40%;
}
.hero__ttb-caption {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.hero__ttb-row {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
}
.hero__ttb-arrow {
  width: 100px;
  margin-right: 16px;
  flex-shrink: 0;
  filter: invert(1);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__ttb-img-link {
  display: inline-block;
}
.hero__ttb-img-link img {
  width: 160px;
  border-radius: var(--radius);
  display: block;
  transition: transform 0.25s ease;
}
.hero__ttb-img-link:hover img {
  transform: scale(1.08) rotate(2deg);
}

/* Guest card */
.guest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.guest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.guest-card__photo {
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  overflow: hidden;
  margin: 0 auto 20px;
  background: var(--bg-card-alt);
}
.guest-card__photo img { width: 100%; height: 100%; object-fit: cover; }
a.guest-card__photo { cursor: pointer; display: block; }
a.guest-card__photo:hover img { opacity: 0.85; transition: opacity 0.2s; }
.guest-card__initials {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
}

.guest-card__body { text-align: center; }

.guest-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.guest-card__name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.guest-card__linkedin {
  color: var(--blue);
  transition: color 0.15s;
}
.guest-card__linkedin svg { width: 18px; height: 18px; }
.guest-card__linkedin:hover { color: var(--white); }

.guest-card__company {
  display: inline-block;
  color: var(--blue);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.guest-card__company:hover { border-color: var(--blue); }

.guest-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.guest-card__topics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.guest-card__topics li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.guest-card__topics li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--gold);
  margin-top: 1px;
}

/* ═══════════════════════════════════════════
   VIDEO PROMO
════════════════════════════════════════════ */
.video-promo {
  padding: 80px 0 96px;
}

.video-promo__header {
  text-align: center;
  margin-bottom: 40px;
}

.video-promo__label {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(245, 184, 0, 0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.video-promo__header h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
}

.video-promo__embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
}

.video-promo__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ═══════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(22,53,102,0.3) 50%, var(--bg) 100%);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pillars--secondary {
  margin-bottom: 64px;
  opacity: 0.85;
}
.pillars--secondary .pillar {
  background: transparent;
  border-style: dashed;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.pillar__icon {
  width: 52px; height: 52px;
  background: var(--blue-dim);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pillar__icon svg { width: 26px; height: 26px; stroke: var(--blue); }

.pillar h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Stats bar */
.about__stat-bar {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 48px;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
}
.stat-number {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* Creed / manifesto */
.about__creed {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.about__creed-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.creed-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
}

.creed-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.creed-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--blue-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.creed-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
}

.creed-list__item--highlight {
  grid-column: 1 / -1;
  color: var(--white) !important;
  font-style: italic;
}

.creed-list__item--highlight .creed-icon {
  background: var(--gold-dim);
}

.creed-list__item--highlight .creed-icon svg {
  stroke: var(--gold);
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.howto {
  padding: 96px 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 40px;
}

.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.2s;
}
.step:hover { border-color: var(--gold); }

.step__num {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue);
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step__arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 24px;
  padding: 40px 12px 0;
  opacity: 0.5;
}

.howto__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,184,0,0.3);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}
.howto__note svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--gold);
}
.howto__photo {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.howto__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   SPEAKERS
════════════════════════════════════════════ */
.speakers {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(22,53,102,0.2) 100%);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.speaker-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.speaker-card--placeholder { opacity: 0.4; }

.speaker-card__photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.speaker-card__photos {
  display: flex;
  flex-shrink: 0;
}
.speaker-card__photos .speaker-card__photo {
  width: 52px; height: 52px;
}
.speaker-card__photos .speaker-card__photo:nth-child(2) {
  margin-left: -14px;
}
.speaker-card__logo {
  width: 128px; height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  padding: 6px;
  flex-shrink: 0;
}
.speaker-card__logo--pair {
  margin-left: -14px;
  align-self: center;
}
.speaker-card__note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
  line-height: 1.4;
}

.speaker-card__initials {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.speaker-card__edition {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.speaker-card__name {
  font-size: 17px;
  font-weight: 700;
}
.speaker-card__company {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
}
.speaker-card__topic {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* speaker-card as anchor */
a.speaker-card { cursor: pointer; }
a.speaker-card:hover { border-color: var(--blue); transform: translateY(-3px); }
a.speaker-card .speaker-card__name { color: var(--white); }

.speakers__more {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.speakers__more p {
  font-size: 15px;
  color: var(--text-muted);
}

.speakers__cta { text-align: center; margin-top: 24px; }

/* ═══════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq {
  padding: 96px 0;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item.is-open { border-color: var(--blue); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.15s;
}
.faq__question:hover { color: var(--blue); }

.faq__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke: var(--blue);
  transition: transform 0.25s;
}
.faq__item.is-open .faq__icon { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq__item.is-open .faq__answer { max-height: 300px; }

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FOOTER & NEWSLETTER
════════════════════════════════════════════ */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.newsletter__text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}
.newsletter__text p {
  color: var(--text-muted);
  font-size: 15px;
}

.newsletter__input-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.newsletter__input-wrap input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.newsletter__input-wrap input::placeholder { color: var(--text-muted); }
.newsletter__input-wrap input:focus { border-color: var(--blue); }

.newsletter__consent {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.newsletter__consent a {
  color: var(--blue);
  text-decoration: underline;
}

.newsletter-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(13, 27, 62, 0.3);
  border-top-color: #0D1B3E;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.newsletter__success {
  font-size: 14px;
  color: #4ade80;
  font-weight: 500;
  min-height: 20px;
}

.footer__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 40px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__brand .nav__logo-img {
  height: 22px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }

.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.15s, border-color 0.15s;
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { color: var(--white); border-color: var(--blue); }

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.footer__copy a {
  color: var(--blue);
  text-decoration: underline;
}
.footer__copy a:hover {
  color: var(--white);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .guest-card { max-width: 440px; margin: 0 auto; }

  .pillars { grid-template-columns: 1fr 1fr; }
  .about__stat-bar {
    flex-wrap: wrap;
    padding: 28px 24px;
    gap: 24px;
  }
  .stat-divider { display: none; }
  .stat-item { flex: 1 0 40%; }

  .steps { flex-direction: column; gap: 16px; }
  .step__arrow { display: none; }
  .step { width: 100%; }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 680px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13, 27, 62, 0.98);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    z-index: 99;
  }
  .nav__links a { font-size: 16px; }
  .nav__cta { display: none; }
  .nav__social { display: none; }
  .nav__hamburger { display: flex; }

  .pillars { grid-template-columns: 1fr; }
  .creed-list { grid-template-columns: 1fr; }
  .creed-list__item--highlight { grid-column: 1; }
  .speakers-grid { grid-template-columns: 1fr 1fr; }

  .hero { padding: 52px 0 64px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter__input-wrap { flex-direction: column; }
}

@media (max-width: 420px) {
  .speakers-grid { grid-template-columns: 1fr; }
}

/* ─── Strategic partner (below countdown) ───── */
.strategic-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: -16px 0 40px;
}
.strategic-partner__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.strategic-partner__logo-link {
  display: block;
  width: 100%;
  max-width: 560px;
  transition: opacity 0.2s;
}
.strategic-partner__logo-link:hover { opacity: 0.8; }
.strategic-partner__logo {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── Countdown (hero) ───────────────────────── */
.conf-countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0 40px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(77,166,224,0.1);
  border: 1px solid rgba(77,166,224,0.25);
  border-radius: var(--radius-sm);
  padding: 18px 28px;
  min-width: 100px;
}
.countdown-unit__num {
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-unit__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.countdown-ended {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  padding: 20px 32px;
  background: rgba(77,166,224,0.08);
  border: 1px solid rgba(77,166,224,0.2);
  border-radius: var(--radius-sm);
  text-align: center;
}
@media (max-width: 680px) {
  .conf-countdown { gap: 8px; }
  .countdown-unit { min-width: 72px; padding: 12px 16px; }
  .countdown-unit__num { font-size: 36px; }
  .countdown-ended { font-size: 17px; padding: 14px 20px; }
}

/* ═══════════════════════════════════════════
   EVENT #38 TEASER
════════════════════════════════════════════ */
.event-teaser {
  padding: 0 0 64px;
}
.event-teaser__inner {
  background: linear-gradient(135deg, #F5B800 0%, #ffc800 60%, #f0ac00 100%);
  border: 1px solid rgba(13,27,62,0.2);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.event-teaser__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0e2552, #0d1b3e, #0e2552);
}
.event-teaser__inner::after {
  content: '#38';
  position: absolute;
  right: -10px; bottom: -40px;
  font-size: 180px;
  font-weight: 800;
  color: #0d1b3e;
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.event-teaser__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,27,62,0.1);
  border: 1px solid rgba(13,27,62,0.3);
  color: #0d1b3e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}
.event-teaser__badge svg { width: 13px; height: 13px; stroke: #0d1b3e; }
.event-teaser__title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #0d1b3e;
}
.event-teaser__title_margin {
  font-size: clamp(32px, 4vw, 44px);
  text-align: center;
}
.event-teaser__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.event-teaser__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(13,27,62,0.65);
}
.event-teaser__meta-item svg { width: 14px; height: 14px; stroke: #0d1b3e; flex-shrink: 0; }
.event-teaser__meta-item strong { color: #0d1b3e; }
.event-teaser__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.event-teaser__pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(13,27,62,0.25);
  color: rgba(13,27,62,0.7);
  background: rgba(13,27,62,0.07);
}
.event-teaser__pill--gold {
  border-color: rgba(13,27,62,0.4);
  color: #0d1b3e;
  background: rgba(13,27,62,0.12);
}
.event-teaser__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.event-teaser__cta-note {
  font-size: 12px;
  color: rgba(13,27,62,0.6);
  text-align: center;
  max-width: 180px;
}
.event-teaser__title .text-gold { color: var(--blue); }
.event-teaser .btn--gold {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.event-teaser .btn--gold:hover {
  background: var(--blue-dim2);
  border-color: var(--blue-dim2);
}
.event-teaser__arrows {
  position: absolute;
  top: -20px;
  right: 32px;
  font-size: 140px;
  font-weight: 900;
  color: #0d1b3e;
  opacity: 0.07;
  letter-spacing: -12px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .event-teaser__inner {
    grid-template-columns: 1fr;
    padding: 32px 28px 36px;
  }
  .event-teaser__cta { align-items: flex-start; }
}
@media (max-width: 480px) {
  .event-teaser__meta { gap: 12px; }
}

/* ═══════════════════════════════════════════
   UPCOMING DATES
════════════════════════════════════════════ */
.upcoming-dates {
  padding: 48px 0 56px;
}
.upcoming-dates__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 24px;
}
.upcoming-dates__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: flex-start;
}
.cal-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 170px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
a.cal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.cal-item__month {
  background: var(--gold);
  color: var(--bg);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  padding: 13px 8px 11px;
  line-height: 1;
}
.cal-item__number {
  background: var(--bg-card-alt);
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  padding: 13px 8px 11px;
  line-height: 1;
  border-top: 1px solid var(--border);
}
.cal-item__day {
  background: var(--bg-card-alt);
  color: var(--white);
  font-size: 80px;
  font-weight: 800;
  text-align: center;
  padding: 18px 0 14px;
  line-height: 1;
}
.cal-item__tags {
  background: var(--bg-card-alt);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  padding: 8px 8px 6px;
}
.cal-item__tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(245,184,0,0.4);
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  line-height: 1.4;
}
.cal-item__time {
  background: var(--bg-card-alt);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  padding: 12px 8px 12px;
  line-height: 1;
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
@media (max-width: 560px) {
  .upcoming-dates { padding: 36px 0 44px; }
  .cal-item { width: 140px; }
  .cal-item__month { font-size: 14px; padding: 11px 6px 9px; }
  .cal-item__day { font-size: 64px; padding: 14px 0 11px; }
}

/* ─── SPEAKERS CAROUSEL ─────────────────────────────────────── */
.spk-carousel-section { padding: 40px 0 52px; }
.spk-carousel-section__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 32px;
}
.spk-carousel-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.spk-carousel-viewport {
  position: relative;
  width: 1000px;
  height: 460px;
  flex-shrink: 0;
  overflow: hidden;
}
.spk-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}
.spk-ccard {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  background: var(--bg-card-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  border: 1px solid transparent;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.45s,
              border-color 0.45s;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}
.spk-ccard[data-slot="active"] {
  transform: translate(-50%, -50%) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 0 46px rgba(245,184,0,0.29), 0 20px 60px rgba(0,0,0,0.6);
  border-color: rgba(245,184,0,0.5);
  text-decoration: none;
}
.spk-ccard[data-slot="prev"] {
  transform: translate(-50%, -50%) translateX(-370px) rotateY(42deg) scale(0.82);
  opacity: 0.85;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
}
.spk-ccard[data-slot="next"] {
  transform: translate(-50%, -50%) translateX(370px) rotateY(-42deg) scale(0.82);
  opacity: 0.85;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
}
.spk-ccard[data-slot="far-left"] {
  transform: translate(-50%, -50%) translateX(-710px) rotateY(55deg) scale(0.55);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.spk-ccard[data-slot="far-right"] {
  transform: translate(-50%, -50%) translateX(710px) rotateY(-55deg) scale(0.55);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.spk-ccard__photo {
  width: 320px;
  height: 320px;
  overflow: hidden;
  display: block;
  position: relative;
}
.spk-ccard__panel {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bg);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}
.spk-ccard__info {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bg-card-alt);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  line-height: 1;
  pointer-events: none;
  text-align: right;
  z-index: 1;
}
.spk-ccard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spk-ccard__name {
  padding: 16px 16px 5px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.25;
}
.spk-ccard__company {
  padding: 0 14px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}
.spk-carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
  position: relative;
  z-index: 10;
}
.spk-carousel-btn:hover {
  background: rgba(245,184,0,0.1);
  border-color: var(--gold);
}
@media (max-width: 1100px) {
  .spk-carousel-viewport { width: 760px; height: 360px; }
  .spk-ccard { width: 240px; }
  .spk-ccard__photo { width: 240px; height: 240px; }
  .spk-ccard[data-slot="active"]    { transform: translate(-50%, -50%) scale(1); }
  .spk-ccard[data-slot="prev"]      { transform: translate(-50%, -50%) translateX(-280px) rotateY(42deg) scale(0.82); }
  .spk-ccard[data-slot="next"]      { transform: translate(-50%, -50%) translateX(280px)  rotateY(-42deg) scale(0.82); }
  .spk-ccard[data-slot="far-left"]  { transform: translate(-50%, -50%) translateX(-540px) rotateY(55deg) scale(0.55); }
  .spk-ccard[data-slot="far-right"] { transform: translate(-50%, -50%) translateX(540px)  rotateY(-55deg) scale(0.55); }
}
@media (max-width: 700px) {
  .spk-carousel-viewport { width: 380px; height: 230px; }
  .spk-ccard { width: 150px; }
  .spk-ccard__photo { width: 150px; height: 150px; }
  .spk-ccard__name { font-size: 11px; padding: 8px 8px 3px; }
  .spk-ccard__company { font-size: 9px; padding: 0 6px 8px; }
  .spk-carousel-btn { width: 40px; height: 40px; }
  .spk-ccard[data-slot="active"]    { transform: translate(-50%, -50%) scale(1); }
  .spk-ccard[data-slot="prev"]      { transform: translate(-50%, -50%) translateX(-170px) rotateY(42deg) scale(0.78); }
  .spk-ccard[data-slot="next"]      { transform: translate(-50%, -50%) translateX(170px)  rotateY(-42deg) scale(0.78); }
  .spk-ccard[data-slot="far-left"]  { transform: translate(-50%, -50%) translateX(-330px) rotateY(55deg) scale(0.5); }
  .spk-ccard[data-slot="far-right"] { transform: translate(-50%, -50%) translateX(330px)  rotateY(-55deg) scale(0.5); }
}
@media (max-width: 600px) {
  .spk-carousel-viewport { width: 100%; height: 280px; }
  .spk-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(13, 27, 62, 0.72);
  }
  #js-spkcar-prev { left: 2px; }
  #js-spkcar-next { right: 2px; }
}
@media (max-width: 420px) {
  .spk-carousel-viewport { width: 100%; height: 230px; }
  .spk-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(13, 27, 62, 0.72);
  }
  #js-spkcar-prev { left: 2px; }
  #js-spkcar-next { right: 2px; }
  .spk-ccard[data-slot="prev"]      { transform: translate(-50%, -50%) translateX(-130px) rotateY(42deg) scale(0.78); }
  .spk-ccard[data-slot="next"]      { transform: translate(-50%, -50%) translateX(130px)  rotateY(-42deg) scale(0.78); }
  .spk-ccard[data-slot="far-left"]  { transform: translate(-50%, -50%) translateX(-260px) rotateY(55deg) scale(0.5); }
  .spk-ccard[data-slot="far-right"] { transform: translate(-50%, -50%) translateX(260px)  rotateY(-55deg) scale(0.5); }
}
