:root {
  /* ── Premium vibe defaults (warm dark + gold) ── */
  --bg: #080808;
  --bg-1: #0e0c09;
  --bg-2: #141209;
  --bg-3: #1c1a10;
  --fg: #f5f0e8;
  --fg-2: #b8ae96;
  --fg-3: #746e5c;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --text: #f5f0e8;
  --text-dim: rgba(245,240,232,0.62);
  --text-faint: rgba(245,240,232,0.42);
  --red: #c9a84c;
  --red-hot: #dbbe6a;
  --red-deep: #a8882e;
  --red-dim: rgba(201,168,76,0.22);
  --amber: #c9a84c;
  --pink: #c9a84c;
  --green: #4ade80;
  --h1-size: clamp(2.8rem, 6vw, 5.2rem);
  --h1-weight: 800;
  --h1-ls: -0.04em;
  --body-lh: 1.55;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,168,76,0.07), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

::selection { background: var(--red); color: white; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ------------ NAV ------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  background: rgba(10,10,10,0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 12px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* ------------ Buttons ------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 999px;
  letter-spacing: -0.01em;
  transition: transform 0.12s ease, background 0.15s, border-color 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.03); }
.btn-red {
  background: var(--red);
  color: #0a0800;
  border: 1px solid var(--red);
  box-shadow: 0 6px 24px -10px rgba(201,168,76,0.4);
}
.btn-red:hover { background: var(--red-hot); border-color: var(--red-hot); box-shadow: 0 10px 32px -8px rgba(201,168,76,0.55); }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }

/* ------------ HERO ------------ */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero::before {
  /* subtle grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 30%, black, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
}
.eyebrow .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
  box-shadow: 0 0 0 0 rgba(232,53,53,0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232,53,53,0.7); }
  70% { box-shadow: 0 0 0 9px rgba(232,53,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,53,53,0); }
}

.h1 {
  font-family: var(--font-display);
  font-weight: var(--h1-weight, 700);
  font-size: var(--h1-size, clamp(48px, 7.4vw, 104px));
  line-height: 0.96;
  letter-spacing: var(--h1-ls, -0.035em);
  margin: 22px 0 24px;
  max-width: 14ch;
  text-wrap: balance;
}
.h1 .accent { color: var(--red); }
.h1 .underline {
  position: relative;
  white-space: nowrap;
}
.h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.14em;
  background: var(--red);
  border-radius: 6px;
  transform-origin: left;
  animation: dashIn 1s 0.4s ease both;
}
@keyframes dashIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 56ch;
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin: 0 0 36px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-cta .meta {
  font-size: 13px;
  color: var(--text-faint);
  margin-left: 6px;
}

/* Countdown */
.countdown-card {
  margin-top: 56px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)),
    var(--bg-1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.countdown-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,168,76,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.countdown-label {
  display: flex; flex-direction: column; gap: 4px;
}
.countdown-label .next-city {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.countdown-label .next-date {
  font-size: 14px;
  color: var(--text-dim);
}
.countdown-digits {
  display: flex;
  gap: 12px;
}
.cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 76px;
  padding: 14px 12px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cd-cell .num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.cd-cell .lbl {
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll 38s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--text-faint);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ------------ Stats ------------ */
.stats {
  padding: 80px 0 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-1);
}
.stat {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-num .sym { color: var(--red); }
.stat-label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
}

/* ------------ Section heading ------------ */
.section { padding: 88px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
}
.section-tag::before,
.section-tag::after {
  content: none !important;
  display: none !important;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 12px 0 0;
  max-width: 18ch;
  text-wrap: balance;
}
.section-sub {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 52ch;
  line-height: 1.55;
}
.section-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.15s;
  flex-shrink: 0;
  padding-bottom: 6px;
}
.section-link:hover { color: var(--text); }

/* ------------ Events ------------ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.event-card {
  position: relative;
  padding: 26px 24px 22px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.event-card.open:hover {
  transform: translateY(-3px);
  border-color: rgba(232,53,53,0.5);
  background: var(--bg-2);
}
.event-card .flag {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 26px;
  filter: saturate(0.95);
}
.event-card .country {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-faint);
}
.event-card .city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 14px 0 6px;
}
.event-card .when {
  font-size: 14.5px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
}
.event-card .venue {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 2px;
}
.event-card .footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-pill.open {
  background: rgba(74,222,128,0.12);
  color: var(--green);
  border: 1px solid rgba(74,222,128,0.25);
}
.status-pill.soldout {
  background: rgba(255,255,255,0.04);
  color: var(--text-faint);
  border: 1px solid var(--line);
}
.status-pill.filling {
  background: rgba(243,181,74,0.12);
  color: var(--amber);
  border: 1px solid rgba(243,181,74,0.28);
}
.status-pill .ldot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.event-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 6px;
}
.event-link.disabled { color: var(--text-faint); pointer-events: none; }

.event-card.soldout {
  background: var(--bg);
  color: var(--text-dim);
}
.event-card.soldout .city { color: var(--text-dim); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.18); text-decoration-thickness: 2px; }

.event-card .seats {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-faint);
}
.seats-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.seats-bar > div {
  height: 100%;
  border-radius: 2px;
  background: var(--red);
}

/* ------------ Hero photo ------------ */
.hero-photo {
  position: relative;
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 8;
  background: var(--bg-1);
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-photo-meta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 60ch;
}

/* ------------ Gallery ------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.g-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-1);
  display: flex;
  align-items: flex-end;
  transition: transform 0.25s ease, border-color 0.2s;
}
.g-tile:hover { transform: translateY(-3px); border-color: var(--line-2); }
.g-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.g-sm { grid-column: span 2; grid-row: span 1; }
.g-md { grid-column: span 3; grid-row: span 2; }
.g-lg { grid-column: span 4; grid-row: span 2; }

.g-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  background-image: 
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 14px, transparent 14px 28px);
}
.g-tile.g-red.placeholder    { background: linear-gradient(135deg, rgba(232,53,53,0.22), rgba(232,53,53,0.06) 60%, var(--bg-1)); }
.g-tile.g-amber.placeholder  { background: linear-gradient(135deg, rgba(243,181,74,0.22), rgba(243,181,74,0.05) 60%, var(--bg-1)); }
.g-tile.g-pink.placeholder   { background: linear-gradient(135deg, rgba(217,69,122,0.22), rgba(217,69,122,0.05) 60%, var(--bg-1)); }

.g-cap {
  position: relative;
  z-index: 2;
  padding: 18px 20px 16px;
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}
.g-tile.placeholder .g-cap { background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4)); }
.g-cap-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.g-cap-meta {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ------------ Why attend ------------ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.why-card {
  position: relative;
  padding: 28px 24px 26px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--line-2); background: var(--bg-2); transform: translateY(-2px); }
.why-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  margin: 14px 0 18px;
  color: var(--text);
}
.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.why-body {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ------------ Exhibitor pitch ------------ */
.exhibitor {
  position: relative;
  padding: 56px 56px 56px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(700px 360px at 90% 0%, rgba(201,168,76,0.15), transparent 65%),
    linear-gradient(180deg, #161209, #0e0c09);
  border: 1px solid var(--line-2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.exhibitor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(135deg, black, transparent 70%);
          mask-image: linear-gradient(135deg, black, transparent 70%);
  pointer-events: none;
}
.exhibitor-inner { position: relative; }
.exhibitor h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.exhibitor p { color: var(--text-dim); font-size: 16.5px; line-height: 1.55; max-width: 44ch; margin: 0 0 28px; }
.exhibitor-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.exhibitor-cta .small { font-size: 13px; color: var(--text-faint); }

.exhibitor-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ex-stat {
  padding: 22px 22px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.ex-stat.span { grid-column: span 2; }
.ex-stat .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ex-stat .n .red { color: var(--red); }
.ex-stat .l {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ------------ FAQ ------------ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.faq-item:hover { background: rgba(255,255,255,0.02); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  text-align: left;
}
.faq-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div {
  overflow: hidden;
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.6;
}
.faq-a > div > div {
  padding: 0 4px 24px;
  max-width: 64ch;
}

/* ------------ Footer ------------ */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  margin-top: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.footer-mission {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 32ch;
  text-wrap: balance;
}
.footer-mission .red { color: var(--red); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: 14.5px;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }

.footer-bot {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-faint);
}
.socials { display: flex; gap: 8px; }
.social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: all 0.15s;
}
.social:hover { color: var(--text); border-color: var(--red); background: rgba(232,53,53,0.08); }

/* ------------ Mobile hamburger button ------------ */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: none;
  cursor: pointer;
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.nav-burger:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }

.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 49;
  background: rgba(10,8,4,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-menu.open { max-height: 460px; pointer-events: auto; }

.mobile-menu-inner {
  padding: 8px 24px 28px;
  display: flex;
  flex-direction: column;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  padding: 15px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}
.mobile-menu-link:hover,
.mobile-menu-link.active-page { color: var(--text); }
.mobile-menu-cta { margin-top: 20px; }

/* ------------ Featured deal responsive grid ------------ */
.featured-deal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
}
@media (max-width: 768px) {
  .featured-deal-grid { grid-template-columns: 1fr; }
}

/* ------------ First50 announcement bar ------------ */
.first50-bar {
  display: flex !important;
  flex-wrap: wrap;
  row-gap: 4px;
  align-items: center;
  justify-content: center;
}

/* ------------ Responsive ------------ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .countdown-card { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .events-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-sm, .g-md, .g-lg { grid-column: span 1; grid-row: span 1; }
  .g-md, .g-lg { grid-row: span 2; }
  .exhibitor { grid-template-columns: 1fr; padding: 36px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .countdown-digits { gap: 6px; }
  .cd-cell { min-width: 58px; padding: 10px 6px 8px; }
  .cd-cell .num { font-size: 26px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .nav-cta .btn-ghost { display: none; }
  .hero { padding: 40px 0 56px; }
  .hero-sub { font-size: 16px; }
  .section { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-sm, .g-md, .g-lg { grid-column: span 1; grid-row: span 1; }
  .exhibitor { padding: 28px 24px; }
}

/* ------------ Deal Cards ------------ */
.deals-section {
  padding: 88px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.deals-header {
  margin-bottom: 48px;
}
.deals-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 12px 0 0;
  text-wrap: balance;
}
.deals-header p {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 16.5px;
  max-width: 58ch;
  line-height: 1.55;
}
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.deal-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.25s;
  overflow: hidden;
}
.deal-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(201,168,76,0.05), transparent);
  pointer-events: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.deal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.6);
}
.deal-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.deal-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}
.deal-category {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: var(--text-dim);
  white-space: nowrap;
}
.deal-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.deal-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 16px;
}
.deal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.deal-city {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
}
.deal-value {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 999px;
  padding: 3px 10px;
}
.deal-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  background: rgba(243,181,74,0.08);
  border: 1px solid rgba(243,181,74,0.22);
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 14px;
}
.deal-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.deal-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.15s;
}
.deal-cta:hover { color: var(--red); }

/* Deal card floating preview (hero) */
.hero-deals-preview {
  position: relative;
  margin-top: 48px;
}
.hero-deals-stack {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hero-deal-card {
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 20px;
  flex: 1;
  min-width: 0;
  position: relative;
  transition: transform 0.2s;
}
.hero-deal-card:nth-child(2) { transform: translateY(8px); }
.hero-deal-card:nth-child(3) { transform: translateY(-4px); }
.hero-deal-card-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 16px;
  color: white;
  margin-bottom: 12px;
}
.hero-deal-card-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.hero-deal-card-brand {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.hero-deal-card-value {
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 999px;
  padding: 2px 8px;
  display: inline-flex;
}
.hero-deal-locked {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--amber);
  background: rgba(243,181,74,0.1);
  border: 1px solid rgba(243,181,74,0.2);
  border-radius: 6px;
  padding: 3px 8px;
}

/* City badges under hero CTA */
.city-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
}

/* How to claim */
.how-claim {
  padding: 88px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.how-claim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.claim-step {
  padding: 32px 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.claim-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.claim-step-icon {
  font-size: 32px;
  line-height: 1;
}
.claim-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.claim-step-body {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Upcoming Events Strip */
.events-strip {
  padding: 56px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.events-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.events-strip-cities {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.strip-city {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.strip-city-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.strip-city-date {
  font-size: 13px;
  color: var(--text-dim);
}

/* ------------ Sticky Bottom Bar ------------ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--bg-1);
  border-top: 1px solid var(--line-2);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-bar-icon { font-size: 18px; }
.sticky-bar-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.sticky-bar-text span { color: var(--text-dim); font-weight: 400; margin-left: 4px; }
.sticky-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-bar-dismiss {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text-faint);
  transition: color 0.15s, border-color 0.15s;
  cursor: pointer;
  background: none;
  font-size: 16px;
}
.sticky-bar-dismiss:hover { color: var(--text); border-color: var(--line-2); }

/* ------------ Exhibitor form redesign ------------ */
.ex-apply-top {
  padding: 0 0 80px;
  background: var(--bg);
}
.ex-apply-top-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
  padding-top: 56px;
}
.ex-trust-sidebar {
  position: sticky;
  top: 88px;
}
.ex-trust-sidebar h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
  margin: 14px 0 18px;
}
.ex-trust-sidebar p {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 40ch;
  margin: 0 0 28px;
}
.trust-signals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.trust-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.trust-signal .ic {
  color: #22c55e;
  font-size: 15px;
  flex-shrink: 0;
}

/* Progress bar for exhibitor form */
.form-progress {
  margin-bottom: 28px;
}
.form-progress-track {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
}
.form-progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.form-progress-step:last-child { flex: 0; }
.progress-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-mono);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.progress-dot.active {
  background: var(--red);
  color: white;
}
.progress-dot.done {
  background: #22c55e;
  color: white;
}
.progress-dot.pending {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text-faint);
}
.progress-label {
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
}
.progress-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 8px;
}
.progress-line.done { background: #22c55e; }

.form-section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.form-section-heading:first-of-type { margin-top: 0; }

/* ------------ Register page redesign ------------ */
.reg-header-card {
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.reg-header-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.reg-header-item .icon { font-size: 18px; }
.reg-header-item .sub { font-size: 12px; color: var(--text-dim); font-weight: 400; }
.reg-header-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.reg-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reg-perks h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.reg-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.4;
}
.reg-perk-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #22c55e;
}

/* Radio city buttons for register */
.city-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.city-radio-btn {
  position: relative;
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-1);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.city-radio-btn.selected {
  border-color: var(--red);
  background: rgba(232,53,53,0.05);
}
.city-radio-btn.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.city-radio-flag { font-size: 20px; margin-bottom: 6px; display: block; }
.city-radio-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.city-radio-date { font-size: 12px; color: var(--text-dim); }
.city-radio-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.city-radio-badge.open {
  background: rgba(74,222,128,0.12);
  color: var(--green);
  border: 1px solid rgba(74,222,128,0.25);
}
.city-radio-badge.soldout {
  background: rgba(255,255,255,0.05);
  color: var(--text-faint);
  border: 1px solid var(--line);
}

@media (max-width: 960px) {
  .deals-grid { grid-template-columns: 1fr; }
  .how-claim-grid { grid-template-columns: 1fr; }
  .ex-apply-top-inner { grid-template-columns: 1fr; }
  .ex-trust-sidebar { position: static; }
  .city-radio-group { grid-template-columns: repeat(2, 1fr); }
  .reg-header-card { gap: 16px; }
  .reg-header-divider { display: none; }
  .hero-deals-stack { flex-direction: column; gap: 10px; }
  .hero-deal-card { transform: none !important; }
  .hero-two-col { grid-template-columns: 1fr !important; }
  .hero-deals-preview { margin-top: 32px; }
}
@media (max-width: 680px) {
  .deals-grid { grid-template-columns: 1fr; }
  .how-claim-grid { grid-template-columns: 1fr; }
  .city-radio-group { grid-template-columns: 1fr 1fr; }
  .sticky-bar-text span { display: none; }
}

/* ── Vibe: Hype (original dark/red) ── */
body.vibe-hype {
  --bg: #0a0a0a; --bg-1: #111111; --bg-2: #161616; --bg-3: #1c1c1c;
  --text: #ffffff; --text-dim: rgba(255,255,255,0.62); --text-faint: rgba(255,255,255,0.42);
  --red: #E83535; --red-hot: #ff4747; --red-deep: #b8221f;
}
body.vibe-hype .btn-red { background: #E83535; color: #fff; border-color: #E83535; }

/* ── Vibe: Clean (light mode) ── */
body.vibe-clean .nav { border-bottom-color: var(--line); }
body.vibe-clean .btn-red { background: var(--red); color: #fff; }
body.vibe-clean .btn-ghost { border-color: var(--line); color: var(--fg); }
body.vibe-clean .btn-ghost:hover { background: var(--bg-2); }
body.vibe-clean .section { background: var(--bg); }
body.vibe-clean .section:nth-child(even) { background: var(--bg-1); }
body.vibe-clean .event-card { background: var(--bg-1); border-color: var(--line); }
body.vibe-clean .aside-card { background: var(--bg-1); border-color: var(--line); }
body.vibe-clean .countdown-card { background: var(--bg-1); border-color: var(--line); }
body.vibe-clean .gallery-tile { border-color: var(--line); }
body.vibe-clean .faq-item { border-color: var(--line); }
body.vibe-clean .marquee-track { color: var(--fg-3); }

/* ── Vibe: Premium (gold accents) ── */
body.vibe-premium { --red: #c9a84c; }
body.vibe-premium .btn-red { background: #c9a84c; color: #0a0900; }

/* ── Stat-pill in hero photo (no green) ── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 80px -24px rgba(0,0,0,0.7);
}
.hero-photo-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.hero-photo-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 30%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.hero-photo-tag-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232,53,53,0.7);
  animation: pulse 1.6s infinite;
}
.hero-photo-stat {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 12px 16px 11px;
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-photo-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.hero-photo-stat-num span { color: var(--red); }
.hero-photo-stat-lbl {
  margin-top: 4px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.005em;
}
.hero-photo-caption {
  font-size: 13px;
  color: var(--text-faint);
  text-align: center;
  letter-spacing: -0.005em;
}

/* ── Hero pull-quote tagline ── */
.hero-tagline {
  position: relative;
  margin: 0 0 28px;
  padding: 14px 18px 14px 22px;
  border-left: 3px solid var(--red);
  background: rgba(255,255,255,0.025);
  border-radius: 0 10px 10px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--text-dim);
  letter-spacing: -0.01em;
  max-width: 52ch;
}
.hero-tagline strong { color: var(--text); font-weight: 700; }
.hero-tagline-mark {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0;
  color: var(--red);
  margin-right: 4px;
  vertical-align: -10px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .hero-photo-frame { aspect-ratio: 16 / 11; }
}
/* ── Testimonials responsive ── */
@media (max-width: 768px) {
  .testi-grid { grid-template-columns: 1fr !important; }
}

/* ============================================
   MOBILE HARDENING (global, all pages)
   ============================================ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, video, canvas { max-width: 100%; }
.btn { max-width: 100%; }

@media (max-width: 600px) {
  /* Type that was tuned for desktop */
  .stat-num { font-size: 48px; }
  .marquee-item { font-size: 16px; gap: 10px; }
  .marquee-track { gap: 32px; }

  /* Multi-city badges + chips should wrap, never overflow */
  .city-badges { flex-wrap: wrap; }

  /* Sticky bottom bar: keep it compact and on one line */
  .sticky-bar { padding: 10px 14px; gap: 10px; }
  .sticky-bar-text { font-size: 13px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .sticky-bar .btn { padding: 9px 14px; font-size: 12.5px; white-space: nowrap; }

  /* CTAs go full-width so they never clip on narrow screens */
  .hero-cta .btn-lg,
  .ag-cta-btns .btn,
  .pe-cta-btns .btn { width: 100%; justify-content: center; }
  .hero-cta .meta { margin-left: 0; }

  /* Exhibitor stepper: drop the text labels so the dots never overflow */
  .progress-label { display: none; }
  .form-progress-step { gap: 0; }
  .progress-line { margin: 0 6px; }
}

@media (max-width: 400px) {
  .btn-lg { padding: 14px 18px; font-size: 14.5px; }
  .stat-num { font-size: 42px; }
}
