/* ─── TOKENS ────────────────────────────────────
   easySales brand book applied.
*/
:root {
  --navy: #0B1E3F;
  --ink: #10172B;
  --action: #0171E3;
  --easy: #2690FD;
  --cloud: #E5EEFB;
  --white: #FFFFFF;
  --black: #000000;
  --muted: #54627A;
  --bg-tint: #F7F9FE;

  --grad-hero: linear-gradient(135deg, var(--navy) 0%, var(--easy) 100%);
  --grad-dark: linear-gradient(135deg, var(--ink) 0%, var(--action) 100%);
  --grad-btn: linear-gradient(90deg, var(--easy), var(--action));
  --grad-light: linear-gradient(180deg, var(--cloud) 0%, var(--white) 100%);

  --r-pill: 999px;
  --r-card: 24px;
  --r-in: 12px;

  --shadow-soft: 0 10px 40px -10px rgba(11,30,63,.18);
  --shadow-lift: 0 20px 60px -20px rgba(11,30,63,.25);
  --shadow-photo: 0 30px 60px -20px rgba(5,16,31,.55);

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --t-display: clamp(38px, 5.2vw, 78px);
  --t-h2: clamp(28px, 3.4vw, 46px);
  --t-h3: clamp(20px, 1.6vw, 24px);
  --t-body: 16px;
  --t-small: 13px;

  color-scheme: light dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

/* Brand rule: ZERO italic anywhere */
em, i { font-style: normal; }

/* ─── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px var(--gutter);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(11,30,63,.08);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}
.nav__brand { display: flex; align-items: center; gap: 14px; color: var(--white); }
.nav__logo { display: block; height: 56px; width: auto; }
.nav__mark {
  display: inline-flex; align-items: center;
  background: var(--white);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
  line-height: 1;
}
.nav__mark-easy { background: var(--easy); color: var(--white); padding: 4px 7px; border-radius: 6px; margin-right: 3px; }
.nav__mark-sales { color: var(--ink); }
.nav__divider { width: 1px; height: 22px; background: rgba(255,255,255,.18); }
.nav__event { color: var(--white); font-weight: 600; letter-spacing: -.01em; font-size: 15px; display: inline-flex; gap: 6px; align-items: baseline; }
.nav__ed { color: var(--easy); font-weight: 500; font-variant-numeric: tabular-nums; font-size: 14px; }

.nav__links { display: flex; gap: 28px; justify-content: center; }
.nav__links a {
  color: rgba(16,23,43,.78);
  font-size: 14px; font-weight: 500;
  padding: 8px 0;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }

.nav__cta { display: flex; align-items: center; gap: 16px; }

.nav__burger { display: none; background: none; border: 0; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px; letter-spacing: -.005em;
  border: 0;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--action);
  color: var(--white);
  box-shadow: 0 10px 30px -12px rgba(1,113,227,.55);
}
.btn--primary:hover {
  background: var(--grad-btn);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px -10px rgba(1,113,227,.7);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(16,23,43,.18);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--action); color: var(--action); }
.btn--ghost.btn--on-dark,
.btn--ghost.btn--light {
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28);
}
.btn--ghost.btn--on-dark:hover,
.btn--ghost.btn--light:hover { box-shadow: inset 0 0 0 1.5px var(--white); color: var(--white); }

.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 14px 34px -10px rgba(0,0,0,.25); }

/* ─── HERO (full-bleed photo) ─────────────────── */
.hero {
  position: relative;
  padding: 140px var(--gutter) 100px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__photo-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__photo-bg img,
.hero__photo-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.85) contrast(1.05);
}

.hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.88) 0%,
      rgba(230,238,250,.72) 5%,
      rgba(175,195,225,.58) 11%,
      rgba(95,130,185,.55) 18%,
      rgba(40,70,125,.68) 28%,
      rgba(15,40,85,.82) 42%,
      rgba(11,30,63,.88) 65%,
      rgba(5,16,31,.92) 100%),
    linear-gradient(90deg, rgba(11,30,63,.45) 0%, rgba(11,30,63,.30) 50%, rgba(11,30,63,.18) 100%),
    radial-gradient(ellipse at 30% 55%, rgba(38,144,253,.18), transparent 60%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  filter: blur(100px);
  border-radius: 50%;
  opacity: .5;
  z-index: 1;
  pointer-events: none;
  animation: orb 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__orb--a {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(38,144,253,.8), transparent 65%);
  top: 10%; left: -10%;
}
@keyframes orb { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px, -30px) scale(1.08); } }

.hero__grid {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 0%, transparent 75%);
  opacity: .7;
}

.hero__content {
  position: relative; z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding-top: 40px;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.95);
  margin-bottom: 24px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #32D583;
  box-shadow: 0 0 0 0 rgba(50,213,131,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(50,213,131,.5); }
  70% { box-shadow: 0 0 0 12px rgba(50,213,131,0); }
  100% { box-shadow: 0 0 0 0 rgba(50,213,131,0); }
}

.hero__title {
  font-size: var(--t-display);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 0 0 24px;
  max-width: 18ch;
  text-shadow: 0 2px 40px rgba(5,16,31,.5);
}
.hero__accent {
  color: var(--easy);
  display: inline-block;
  position: relative;
}
.hero__accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: 10px;
  background: rgba(38,144,253,.22);
  z-index: -1;
  border-radius: 4px;
}

.hero__sub {
  max-width: 52ch;
  font-size: clamp(16px, 1.15vw, 18px);
  color: rgba(255,255,255,.82);
  margin: 0 0 28px;
  line-height: 1.55;
  text-shadow: 0 2px 20px rgba(5,16,31,.4);
}
.hero__sub strong { color: var(--white); font-weight: 600; }

.hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
}
.pill--glass {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pill--glass svg { opacity: .75; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.hero__live { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.75); }
.hero__live strong { color: var(--white); font-weight: 600; }
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--easy);
  box-shadow: 0 0 12px var(--easy);
  animation: pulse 2.2s infinite;
}

/* Photo caption (bottom right) */
.hero__photo-tag {
  position: absolute;
  right: var(--gutter);
  bottom: 150px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  border-radius: var(--r-pill);
  background: rgba(5,16,31,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
}
.hero__photo-tag > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero__photo-tag strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
}
.hero__photo-tag span {
  font-size: 11px;
  color: rgba(255,255,255,.6);
}
.hero__photo-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--easy);
  box-shadow: 0 0 12px var(--easy);
  flex-shrink: 0;
}

.hero__bottom {
  position: relative; z-index: 3;
  max-width: var(--max);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-card);
  padding: 1px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
.stat { padding: 22px 24px; background: rgba(5,16,31,.55); display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--white);
  line-height: 1;
}
.stat__num em { color: var(--easy); font-weight: 700; }
.stat__label { font-size: 12px; color: rgba(255,255,255,.65); }

/* ─── STATS SECTION ───────────────────────────── */
.stats-section {
  background: var(--white);
  color: var(--ink);
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(38,144,253,.08), transparent 60%);
  pointer-events: none;
}
.stats-grid {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(16,23,43,.10);
  border: 1px solid rgba(16,23,43,.08);
  border-radius: var(--r-card);
  padding: 1px;
  overflow: hidden;
}
.stat-card {
  padding: 36px 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: background .25s ease;
}
.stat-card:hover { background: rgba(38,144,253,.06); }
.stat-card__num {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
}
.stat-card__num em { color: var(--action); font-weight: 800; font-style: normal; font-size: .6em; margin-left: 2px; }
.stat-card__label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .02em;
}

/* ─── MARQUEE ─────────────────────────────────── */
.marquee {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.marquee__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 28px;
  font-weight: 500;
}
.marquee__track {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__row {
  display: inline-flex;
  gap: 56px;
  align-items: center;
  animation: scroll 52s linear infinite;
  white-space: nowrap;
  padding-left: 56px;
}
.marquee__row img {
  height: 42px;
  width: 120px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: .55;
  transition: opacity .2s ease, transform .2s ease;
}
.marquee__row img:hover { opacity: 1; }
/* Normalize logos with extra internal whitespace so they read at the same visual weight */
.marquee__row img[src*="fancourier"] { transform: scale(1.45); }
.marquee__row img[src*="smartbill"]  { transform: scale(1.35); }
.marquee__row img[src*="google"]     { transform: scale(1.25); }
.marquee__row img[src*="themarketer"]{ transform: scale(1.15); }
.marquee__row img[src*="decathlon"]  { transform: scale(1.15); }
.marquee__row img[src*="sendership"] { transform: scale(1.15); }
.marquee__row img[src*="m3cargo"]    { transform: scale(1.15); }
.marquee__row img[src*="skroutz"]    { transform: scale(1.05); }
.marquee__row img[src*="dyver"]      { transform: scale(.92); }
.marquee__row img[src*="gomag"]      { transform: scale(.92); }
.marquee__row img[src*="merchantpro"]{ transform: scale(.95); }
.marquee__row img[src*="mavericks"]  { transform: scale(.95); }
.marquee__row img:hover[src*="fancourier"] { transform: scale(1.45); }
.marquee__row img:hover[src*="smartbill"]  { transform: scale(1.35); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ─── SECTIONS ────────────────────────────────── */
.section {
  padding: clamp(72px, 10vw, 130px) var(--gutter);
  background: var(--white);
  color: var(--ink);
}
.section--tint { background: var(--bg-tint); }
.section--dark {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(38,144,253,.12), transparent 50%);
  pointer-events: none;
}
.section > * { position: relative; }

.section__head {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 5vw, 72px);
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--action);
  font-weight: 600;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--cloud);
}
.section--dark .eyebrow { background: rgba(38,144,253,.12); color: var(--easy); }
.eyebrow--light { color: rgba(255,255,255,.85); background: rgba(255,255,255,.1); }

.h2 {
  font-size: var(--t-h2);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.h3 {
  font-size: var(--t-h3);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.25;
  margin: 0 0 10px;
}
.section__lede {
  max-width: 62ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}
.section--dark .section__lede { color: rgba(255,255,255,.65); }
.section__lede strong { color: var(--ink); font-weight: 600; }
.section--dark .section__lede strong { color: var(--white); }

/* ─── SPEAKERS BENTO ──────────────────────────── */
.speakers-bento {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  grid-auto-flow: dense;
  gap: 16px;
}
.sp {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.sp:hover { transform: translateY(-3px); border-color: rgba(38,144,253,.35); }

.sp__img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--easy));
}
.sp__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.9) contrast(1.02);
  transition: transform .5s ease, filter .3s ease;
}
.sp__img img[src*="David_Sima"] { object-position: center top; }
.sp:hover .sp__img img { transform: scale(1.04); filter: saturate(1.1) contrast(1.05); }
.sp__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16,23,43,.72) 100%);
  pointer-events: none;
}

.sp > .sp__name { padding: 16px 18px 2px; margin: 0; }
.sp > .sp__role { padding: 0 18px 18px; }
.sp__body { padding: 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.sp__name { font-size: 18px; font-weight: 600; letter-spacing: -.015em; margin: 0; color: var(--white); }
.sp__role { font-size: 13px; color: rgba(255,255,255,.6); }
.sp__tag {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--easy); font-weight: 600;
}
.sp__quote {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  margin: 10px 0 0;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -.005em;
  padding-left: 14px;
  border-left: 2px solid var(--easy);
}

.sp--xl { grid-column: span 2; grid-row: span 2; }
.sp--xl .sp__img { aspect-ratio: auto; flex: 1; min-height: 320px; }
.sp--wide { grid-column: span 2; }
.sp--wide .sp__img { aspect-ratio: 16/10; min-height: 220px; }

.sp--tba {
  background: rgba(255,255,255,.03);
  border: 1.5px dashed rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  min-height: 260px;
}
.sp--tba:hover { border-color: rgba(38,144,253,.35); transform: translateY(-3px); }
.sp__tba {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.sp__tba-mark {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(38,144,253,.22), rgba(1,113,227,.18));
  border: 1px solid rgba(255,255,255,.10);
  font-size: 34px; font-weight: 700; color: rgba(255,255,255,.6);
  letter-spacing: -.02em;
}
.sp__tba-label {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 600;
}

.sp-strip {
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin: 28px auto 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.sp-strip__track {
  display: inline-flex; gap: 14px;
  animation: gallery 60s linear infinite;
  will-change: transform;
  padding: 8px 0;
}
.sp-strip:hover .sp-strip__track { animation-play-state: paused; }
.sp-chip {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.14);
  color: rgba(255,255,255,.55);
  font-size: 13px; font-weight: 500;
}
.sp-chip__mark {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(38,144,253,.25), rgba(1,113,227,.18));
  color: rgba(255,255,255,.7);
  font-weight: 700; font-size: 14px;
}

.sp--more {
  background: linear-gradient(135deg, rgba(38,144,253,.18), rgba(1,113,227,.08));
  border: 1px solid rgba(38,144,253,.28);
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}
.sp__more { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sp__more-num {
  font-size: 56px; font-weight: 800; letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--easy), var(--action));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sp__more-label { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.4; }

.sp--reveal {
  background: transparent;
  border: 1.5px dashed rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.sp-cta {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 28px 32px;
  border-radius: var(--r-card);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sp-cta__text { display: flex; flex-direction: column; gap: 4px; max-width: 48ch; }
.sp-cta__text strong { color: var(--white); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.sp-cta__text span { color: rgba(255,255,255,.65); font-size: 14px; }
.sp-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sp__reveal { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.reveal-num {
  font-size: 72px; font-weight: 700; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--easy), var(--action));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.reveal-label { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.4; }

/* ─── TRACKS ──────────────────────────────────── */
.tracks {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.track {
  background: var(--white);
  border: 1px solid rgba(16,23,43,.08);
  border-radius: var(--r-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.track:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: rgba(38,144,253,.25); }
.track--featured { background: var(--grad-hero); color: var(--white); border: 0; }
.track--featured .track__tag { background: rgba(255,255,255,.16); color: var(--white); }
.track--featured .track__bullets li { color: rgba(255,255,255,.8); }
.track--featured .track__bullets li::before { background: var(--white); }
.track--featured p { color: rgba(255,255,255,.78); }
.track--featured .h3 { color: var(--white); }

.track__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--cloud);
  color: var(--action);
  display: grid; place-items: center;
}
.track--featured .track__icon { background: rgba(255,255,255,.18); color: var(--white); }

.track__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--action);
  background: var(--cloud);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
  width: fit-content;
}
.track p { color: var(--muted); margin: 0 0 10px; }
.track__bullets { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 8px; }
.track__bullets li { padding-left: 22px; position: relative; font-size: 14px; color: var(--ink); }
.track__bullets li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px; background: var(--action); border-radius: 2px;
}

/* ─── AGENDA ──────────────────────────────────── */
.tabs {
  max-width: 520px;
  margin: 0 auto 40px;
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--white);
  border: 1px solid rgba(16,23,43,.06);
  border-radius: var(--r-pill);
}
.tab {
  flex: 1;
  border: 0; background: transparent;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  transition: all .2s ease;
}
.tab.is-active { background: var(--action); color: var(--white); box-shadow: var(--shadow-soft); }
.tab:hover:not(.is-active) { color: var(--ink); }

.agenda {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agenda--hidden { display: none; }

.agenda__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
}
.agenda__time {
  font-size: 15px;
  font-weight: 600;
  color: var(--action);
  padding-top: 22px;
  font-variant-numeric: tabular-nums;
  position: sticky;
  top: 100px;
}
.agenda__card {
  background: var(--white);
  border: 1px solid rgba(16,23,43,.08);
  border-radius: var(--r-card);
  padding: 22px 26px;
  transition: border-color .2s ease, transform .2s ease;
}
.agenda__card:hover { border-color: rgba(38,144,253,.3); transform: translateX(4px); }
.agenda__card--muted { background: rgba(255,255,255,.6); border-color: transparent; }
.agenda__card--muted:hover { transform: none; }
.agenda__card--tba { background: rgba(255,255,255,.55); border-style: dashed; border-color: rgba(16,23,43,.16); }
.agenda__card--tba:hover { transform: none; }
.agenda__card--tba .agenda__type { color: rgba(16,23,43,.45); }
.agenda__card--tba h4 { color: rgba(16,23,43,.55); font-weight: 500; }

.agenda__type {
  display: inline-block;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--action); font-weight: 600;
  margin-bottom: 8px;
}
.agenda__card h4 { font-size: 18px; font-weight: 600; letter-spacing: -.015em; margin: 0 0 6px; }
.agenda__card p { color: var(--muted); font-size: 14px; margin: 0; }
.agenda__people { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.agenda__people span {
  font-size: 12px; font-weight: 500;
  padding: 4px 10px;
  background: var(--cloud);
  border-radius: var(--r-pill);
  color: var(--action);
}

/* ─── PAST / GALLERY ──────────────────────────── */
.past .section__head { margin-bottom: 48px; }
.gallery-strip {
  overflow: hidden;
  margin: 0 calc(-1 * var(--gutter)) 14px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.gallery-track {
  display: inline-flex;
  gap: 14px;
  animation: gallery 70s linear infinite;
  will-change: transform;
}
.gallery-track--reverse { animation: gallery-r 70s linear infinite; }
.gallery-strip:hover .gallery-track { animation-play-state: paused; }
.gallery-track img {
  height: clamp(180px, 18vw, 260px);
  width: auto;
  object-fit: cover;
  border-radius: var(--r-card);
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}
@keyframes gallery { to { transform: translateX(-50%); } }
@keyframes gallery-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.past-stats {
  max-width: var(--max);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.past-stats > div {
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(16,23,43,.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.past-stats strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.past-stats span { font-size: 12px; color: var(--muted); }
.past-stats__cta {
  background: var(--grad-hero) !important;
  border-color: transparent !important;
}
.past-stats__cta strong { color: var(--white); }
.past-stats__cta span { color: rgba(255,255,255,.85); font-weight: 500; }

.past-cta {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 28px 32px;
  border-radius: var(--r-card);
  background: var(--bg-tint);
  border: 1px solid rgba(16,23,43,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.past-cta__text { display: flex; flex-direction: column; gap: 4px; max-width: 48ch; }
.past-cta__text strong { color: var(--ink); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.past-cta__text span { color: var(--muted); font-size: 14px; }
.past-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── QUOTE SECTION ───────────────────────────── */
.quote-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.quote-section__orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(38,144,253,.35), transparent 60%);
  filter: blur(80px);
  top: -250px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.quote-section__inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.quote-mark { color: var(--easy); margin: 0 auto 32px; }
.quote-text {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.25;
  margin: 0 0 36px;
  color: rgba(255,255,255,.88);
}
.quote-accent {
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, rgba(38,144,253,.22) 60%);
  padding: 0 4px;
}
.quote-cite {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.quote-cite img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--easy);
  border: 2px solid rgba(255,255,255,.2);
}
.quote-name { font-size: 16px; font-weight: 600; color: var(--white); }
.quote-role { font-size: 13px; color: rgba(255,255,255,.6); }

/* ─── STATE OF eCOM (Radiografia) ─────────────── */
.state .section__head { margin-bottom: 56px; }
.state__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.state__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-card);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.state__card:hover { border-color: rgba(38,144,253,.3); transform: translateY(-3px); }
.state__card--hero {
  grid-column: span 2;
  background: var(--grad-hero);
  border: 0;
}
.state__card--accent {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(38,144,253,.2), rgba(1,113,227,.05));
  border-color: rgba(38,144,253,.25);
}

.state__num {
  font-size: clamp(60px, 6.5vw, 100px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .9;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.state__num em {
  font-size: .5em;
  color: var(--easy);
  font-weight: 700;
  margin-left: 4px;
}
.state__num .arrow {
  font-size: .7em;
  color: #FF6B6B;
  margin-right: 4px;
  font-weight: 700;
}
.state__num .big-plus {
  color: var(--easy);
  font-size: .85em;
  margin-right: 2px;
}
.state__card--hero .state__num { color: var(--white); }
.state__card--hero .state__num em { color: var(--white); opacity: .7; }

.state__h {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.state__h .hl { color: var(--easy); font-weight: 700; }
.state__h .muted-w { color: rgba(255,255,255,.6); font-weight: 500; }
.state__card--hero .state__h { font-size: clamp(22px, 2vw, 28px); }
.state__card--hero .state__h .hl { color: var(--white); border-bottom: 2px solid rgba(255,255,255,.4); padding-bottom: 2px; }

.state__card p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.55;
}
.state__card--hero p { color: rgba(255,255,255,.82); font-size: 15px; }

.state__tag {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  font-weight: 600;
}
.state__tag--light { color: rgba(255,255,255,.7); border-top-color: rgba(255,255,255,.2); }

.state__cta {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 32px 40px;
  border-radius: var(--r-card);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.state__cta h3 { color: var(--white); margin: 0 0 4px; font-size: 22px; }
.state__cta p { color: rgba(255,255,255,.6); margin: 0; font-size: 14px; }

/* ─── EXPERIENCE ──────────────────────────────── */
.exp-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.exp-card {
  background: var(--white);
  border: 1px solid rgba(16,23,43,.06);
  border-radius: var(--r-card);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.exp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.exp-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--easy);
  letter-spacing: .04em;
  margin-bottom: 22px;
  font-variant-numeric: tabular-nums;
}
.exp-card h3 { font-size: 20px; font-weight: 600; margin: 0 0 8px; letter-spacing: -.01em; }
.exp-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ─── PARTNERS (tiered) ───────────────────────── */
.tier { max-width: var(--max); margin: 0 auto 36px; }
.tier__label {
  text-align: center;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  font-weight: 600;
}
.tier__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.tier__row--main { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.logo {
  display: grid; place-items: center;
  padding: 22px 20px;
  border-radius: var(--r-card);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  min-height: 92px;
  transition: all .2s ease;
}
.tier__row--main .logo {
  min-height: 110px;
  background: rgba(38,144,253,.06);
  border-color: rgba(38,144,253,.18);
}
.tier__row--muted .logo { min-height: 72px; opacity: .75; }
.logo img {
  max-height: 36px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .72;
  transition: opacity .2s ease, filter .2s ease;
}
.tier__row--main .logo img { max-height: 44px; max-width: 150px; opacity: .9; }
.logo:hover {
  background: rgba(38,144,253,.1);
  border-color: rgba(38,144,253,.35);
  transform: translateY(-2px);
}
.logo:hover img { opacity: 1; }

.logo--tba {
  flex-direction: row;
  gap: 10px;
  border-style: dashed;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo--tba:hover { transform: none; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.18); }
.logo__mark {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(38,144,253,.22), rgba(1,113,227,.14));
  color: rgba(255,255,255,.65);
  font-size: 15px; font-weight: 700;
}
.logo__label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 600;
}

.tier-cta {
  max-width: var(--max);
  margin: 60px auto 0;
  padding: 36px 40px;
  border-radius: var(--r-card);
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.tier-cta h3 { color: var(--white); font-size: 24px; margin: 0 0 4px; }
.tier-cta p { color: rgba(255,255,255,.8); margin: 0; font-size: 15px; }

/* ─── VENUE ───────────────────────────────────── */
.venue {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.venue__card {
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 5/3;
  box-shadow: var(--shadow-lift);
}
.venue__card img { width: 100%; height: 100%; object-fit: cover; }

.venue__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.venue__gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-in);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.venue__gallery-main {
  grid-column: span 2;
  aspect-ratio: 16/9 !important;
}

.venue__info { display: flex; flex-direction: column; gap: 22px; padding: 0; align-items: center; text-align: center; }
.venue__info > * { width: 100%; }
.venue__row { padding-bottom: 20px; border-bottom: 1px solid rgba(16,23,43,.08); }
.venue__row:last-child { border-bottom: 0; }
.venue__row p { margin: 0; color: var(--ink); font-size: 15px; }

.venue__hero {
  padding: 26px 28px;
  border-radius: var(--r-card);
  background: var(--grad-hero);
  color: var(--white);
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.venue__hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.venue__hero-num {
  position: relative;
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.venue__hero-label {
  position: relative;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-top: 6px;
  font-weight: 600;
}
.venue__hero p {
  position: relative;
  margin: 14px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
  max-width: 42ch;
}

.venue__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.venue__feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--r-in);
  background: var(--bg-tint);
  border: 1px solid rgba(16,23,43,.06);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
  text-align: left;
}
.venue__feat:hover {
  border-color: rgba(38,144,253,.35);
  background: var(--white);
  transform: translateY(-1px);
}
.venue__feat-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(38,144,253,.12);
  color: var(--action);
}
.venue__feat-title {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -.005em;
}
.venue__feat-title strong { color: var(--action); font-weight: 700; }
.venue__feat-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}

.venue__cta {
  align-self: center;
  margin-top: 4px;
  width: auto !important;
}

.venue-cta {
  margin-top: auto;
  padding: 24px 26px;
  border-radius: var(--r-card);
  background: var(--bg-tint);
  border: 1px solid rgba(16,23,43,.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
.venue-cta h3 { color: var(--ink); font-size: 20px; margin: 0 0 4px; letter-spacing: -.02em; line-height: 1.25; }
.venue-cta p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.5; }

/* ─── TICKETS ─────────────────────────────────── */
.tickets {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.ticket {
  background: var(--white);
  border: 1px solid rgba(16,23,43,.08);
  border-radius: var(--r-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: all .2s ease;
}
.ticket:hover { border-color: rgba(38,144,253,.3); transform: translateY(-3px); }

.ticket--featured {
  background: var(--grad-hero);
  color: var(--white);
  border: 0;
  transform: scale(1.02);
  box-shadow: var(--shadow-lift);
}
.ticket--featured:hover { transform: scale(1.02) translateY(-3px); }
.ticket--featured .ticket__list li { color: rgba(255,255,255,.88); }
.ticket--featured .ticket__list li::before { background: var(--white); }
.ticket--featured .ticket__foot { color: rgba(255,255,255,.65); border-top-color: rgba(255,255,255,.12); }

.ticket__badge {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--white); color: var(--action);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.ticket__tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .04em;
  font-weight: 600;
  color: var(--action);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--cloud);
  width: fit-content;
}
.ticket--featured .ticket__tag { background: rgba(255,255,255,.18); color: var(--white); }

.ticket__price {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-wrap: wrap;
}
.ticket__price em { font-size: 28px; color: var(--muted); font-weight: 600; }
.ticket--featured .ticket__price em { color: rgba(255,255,255,.7); }
.ticket__price span {
  display: block; width: 100%;
  font-size: 12px; font-weight: 500;
  color: var(--muted); letter-spacing: 0;
  margin-top: 6px;
}
.ticket--featured .ticket__price span { color: rgba(255,255,255,.7); }
.ticket__price-old {
  display: inline-block !important;
  width: auto !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(16,23,43,.35);
  margin-left: 10px !important;
  margin-top: 0 !important;
  align-self: baseline;
  letter-spacing: -.02em;
}
.ticket--featured .ticket__price-old {
  color: rgba(255,255,255,.55) !important;
  text-decoration-color: rgba(255,255,255,.35);
}

.ticket__saving {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(38,144,253,.12);
  color: var(--action);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -.005em;
  margin-bottom: 4px;
}
.ticket--featured .ticket__saving { background: rgba(255,255,255,.18); color: var(--white); }
.ticket__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ticket .btn--block { margin-top: auto; }
.ticket__list li { padding-left: 24px; position: relative; font-size: 14px; color: var(--ink); }
.ticket__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 14px; height: 2px; background: var(--action); border-radius: 2px;
}

.ticket__foot {
  font-size: 12px; color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid rgba(16,23,43,.08);
  margin-top: auto;
}

.ticket--featured .btn--primary { background: var(--white); color: var(--action); }
.ticket--featured .btn--primary:hover { background: var(--cloud); }

/* ─── FAQ ─────────────────────────────────────── */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq details {
  border: 1px solid rgba(16,23,43,.08);
  border-radius: 18px;
  padding: 4px 0;
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: rgba(38,144,253,.25); box-shadow: var(--shadow-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 24px;
  font-size: 16px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px;
  border-right: 2px solid var(--action);
  border-bottom: 2px solid var(--action);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq p {
  padding: 0 24px 20px;
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ─── CTA BAND ────────────────────────────────── */
.cta-band {
  position: relative;
  padding: clamp(64px, 8vw, 100px) var(--gutter);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.cta-band__orb {
  position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(38,144,253,.55), transparent 60%);
  filter: blur(80px);
  top: -300px; right: -200px;
}
.cta-band__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.cta-band h2 { color: var(--white); margin-bottom: 0; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--bg-tint);
  color: var(--muted);
  padding: 72px var(--gutter) 36px;
  border-top: 1px solid rgba(16,23,43,.06);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { height: 34px; width: auto; display: block; }
.footer__brand p {
  font-size: 14px;
  max-width: 38ch;
  margin: 18px 0;
  line-height: 1.55;
  color: var(--muted);
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(16,23,43,.06);
  color: var(--ink);
  transition: all .2s ease;
}
.footer__social a:hover { background: var(--action); color: var(--white); }

.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col .eyebrow--light { margin-bottom: 4px; align-self: flex-start; color: var(--action); background: rgba(38,144,253,.1); }
.footer__col a { font-size: 14px; color: var(--muted); transition: color .2s ease; }
.footer__col a:hover { color: var(--ink); }

.footer__bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(16,23,43,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--muted); transition: color .2s ease; }
.footer__legal a:hover { color: var(--ink); }

/* ─── RESPONSIVE ──────────────────────────────── */
.hide-mobile { display: inline; }

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__inner { grid-template-columns: auto 1fr auto auto; }

  .hero__photo-tag { display: none; }
  .hero__bottom { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .tracks { grid-template-columns: 1fr; }
  .speakers-bento { grid-template-columns: repeat(2, 1fr); }
  .sp--xl { grid-column: span 2; grid-row: span 1; }
  .sp--wide { grid-column: span 2; }

  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .tickets { grid-template-columns: 1fr; max-width: 520px; }
  .ticket--featured { transform: none; }
  .ticket--featured:hover { transform: translateY(-3px); }

  .venue { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }

  .state__grid { grid-template-columns: 1fr 1fr; }
  .state__card--hero,
  .state__card--accent { grid-column: span 2; }

  .past-stats { grid-template-columns: repeat(3, 1fr); }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav__divider, .nav__event { display: none; }
  .hide-mobile { display: none; }
  .hero { padding: 100px 20px 40px; min-height: auto; }
  .hero__content { padding-top: 10px; }
  .hero__bottom { grid-template-columns: 1fr 1fr; margin-top: 32px; }
  .hero__photo-bg img,
  .hero__photo-bg video { object-position: center center; }

  .marquee__row { gap: 36px; padding-left: 36px; }
  .marquee__row img { height: 28px; }

  .speakers-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; gap: 12px; }
  .sp--xl { grid-column: span 2; grid-row: span 1; }
  .sp--xl .sp__img { min-height: 260px; }
  .sp--wide { grid-column: span 2; }
  .sp--wide .sp__img { aspect-ratio: 16/10; min-height: 180px; }
  .sp--more { grid-column: span 2; }
  .sp__more-num { font-size: 44px; }
  .sp--tba { min-height: 180px; }
  .sp--tba.sp--wide { grid-column: span 2; }

  .exp-grid { grid-template-columns: 1fr; }

  .venue__gallery { grid-template-columns: 1fr; }
  .venue__gallery img { aspect-ratio: 16/10; }
  .venue__gallery-main { grid-column: span 1; aspect-ratio: 16/10 !important; }
  .venue__features { grid-template-columns: 1fr; }
  .venue__hero { padding: 22px 22px; }
  .venue-cta { padding: 20px 22px; }

  .agenda__item { grid-template-columns: 1fr; gap: 8px; }
  .agenda__time { padding-top: 0; font-size: 13px; position: static; }

  .tier-cta, .state__cta { padding: 28px 24px; flex-direction: column; align-items: flex-start; }

  .state__grid { grid-template-columns: 1fr; }
  .state__card--hero, .state__card--accent { grid-column: span 1; }

  .past-stats { grid-template-columns: repeat(2, 1fr); }

  .quote-text { font-size: 22px; }

  .footer__top { grid-template-columns: 1fr; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── REVEAL ON SCROLL ────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .marquee__row, .gallery-track { animation: none; }
}
