/* Utilitarian Conferences Gathering — full design system */

:root {
  --ink: #0A2540; --brand: #1B6FB5; --accent: #3FB8D9; --deep: #072442;
  --cream: #F7F4ED; --paper: #FFFFFF; --line: #E5DED1; --muted: #6B7B8C;
  --warn: #D97757; --good: #1F8A5B;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 22px;
  --gap: 24px; --pad-x: clamp(20px, 4vw, 64px);
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 0 0 1px rgba(10,37,64,.04);
  --shadow-md: 0 10px 30px -10px rgba(10,37,64,.18), 0 1px 2px rgba(10,37,64,.06);
  --shadow-lg: 0 28px 56px -18px rgba(10,37,64,.25), 0 2px 8px rgba(10,37,64,.08);
  --serif: "Source Serif 4", "Iowan Old Style", "Charter", Georgia, serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
[data-density="cozy"]    { --pad-x: clamp(24px, 5vw, 80px); --gap: 32px; }
[data-density="compact"] { --pad-x: clamp(16px, 3vw, 44px); --gap: 16px; }
[data-dark="on"] {
  --ink:#E8EEF5; --brand:#5DA9E5; --accent:#6FD4F0; --deep:#000913;
  --cream:#0E1826; --paper:#162234; --line:#28384C; --muted:#93A4BA;
  --warn:#E89070; --good:#3FB07A;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.04);
  --shadow-md: 0 10px 30px -10px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
  --shadow-lg: 0 28px 56px -18px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
  color-scheme: dark;
}
/* Dark-mode surface fixes for elements that hardcode light colors. */
[data-dark="on"] body { background: var(--cream); }
[data-dark="on"] input, [data-dark="on"] select, [data-dark="on"] textarea {
  background: var(--paper); color: var(--ink); border-color: var(--line);
}
[data-dark="on"] input::placeholder, [data-dark="on"] textarea::placeholder { color: var(--muted); }
[data-dark="on"] .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
[data-dark="on"] .btn-ghost:hover { background: var(--paper); }
[data-dark="on"] ::-webkit-scrollbar { width: 12px; height: 12px; }
[data-dark="on"] ::-webkit-scrollbar-track { background: var(--deep); }
[data-dark="on"] ::-webkit-scrollbar-thumb { background: var(--line); border-radius: 6px; }
[data-cards="outline"] { --shadow-sm: 0 0 0 1px var(--line); --shadow-md: 0 0 0 1px var(--line); --shadow-lg: 0 0 0 1px var(--line); }
[data-cards="flat"]    { --shadow-sm: none; --shadow-md: none; --shadow-lg: none; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; font-size: 15px; line-height: 1.5; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ========== TYPOGRAPHY ========== */
.display { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 6vw, 84px); line-height: 0.98; letter-spacing: -0.025em; margin: 0 0 20px; color: var(--ink); }
.display em { font-style: italic; color: var(--brand); }
.h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; letter-spacing: -0.015em; margin: 32px 0 16px; color: var(--ink); }
.h3.m0 { margin: 0; }
.lede { font-size: 19px; line-height: 1.5; color: var(--muted); max-width: 56ch; margin: 0 0 28px; text-wrap: pretty; }
.lede-2 { font-size: 18px; line-height: 1.55; color: var(--ink); margin: 0 0 16px; text-wrap: pretty; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
.kicker-quiet { color: var(--muted); }
.kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.strike { text-decoration: line-through; color: var(--muted); font-weight: 400; }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 999px; font-weight: 500; font-size: 14px; border: 1px solid transparent; transition: 120ms ease; white-space: nowrap; }
.btn-sm { padding: 7px 12px; font-size: 13px; }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--brand); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper); border-color: var(--ink); }
.btn-on-dark { background: var(--paper); color: var(--ink); }
.btn-on-dark:hover { background: var(--cream); }
.btn-ghost-on-dark { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.3); }
.btn-ghost-on-dark:hover { background: rgba(255,255,255,.1); }

/* ========== TOP NAV + MEGA MENU ========== */
.topnav { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 1px solid var(--line); }
.topnav-inner { display: flex; align-items: center; gap: 24px; padding: 0 var(--pad-x); height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--ink); border-radius: 8px; }
.nav-link:hover, .nav-link.is-open { background: var(--cream); }
.nav-link-caret { font-size: 9px; opacity: 0.6; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.search-trigger { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 13px; min-width: 280px; background: var(--cream); }
.search-trigger:hover { border-color: var(--ink); color: var(--ink); }
.search-trigger kbd { margin-left: auto; font-family: var(--mono); font-size: 11px; padding: 2px 6px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; }

.mega { position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); animation: megaIn 200ms ease; }
@keyframes megaIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.mega-inner { padding: 32px var(--pad-x); }
.mega-cols { display: grid; gap: 32px; }
.mega-col-head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.mega-item { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; margin: 0 -12px; border-radius: 8px; transition: 100ms; }
.mega-item:hover { background: var(--cream); }
.mega-item strong { font-size: 14px; font-weight: 500; color: var(--ink); }
.mega-item span { font-size: 12px; color: var(--muted); }
.mega-feature { background: var(--cream); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; }
.mega-feature-img { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.mega-feature-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mega-feature-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); }
.mega-feature-title { font-family: var(--serif); font-size: 18px; line-height: 1.2; color: var(--ink); }
.mega-feature-meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.mega-feature .btn { align-self: flex-start; margin-top: auto; }

/* ========== CHIPS / TABS / SEG ========== */
.chip { padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); font-size: 13px; font-weight: 500; color: var(--ink); }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tab { padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--muted); }
.tab:hover { color: var(--ink); }
.tab.is-active { background: var(--cream); color: var(--ink); }
.seg { display: inline-flex; padding: 4px; background: var(--cream); border-radius: 999px; gap: 2px; }
.seg-quiet { background: transparent; padding: 0; gap: 6px; flex-wrap: wrap; }
.seg-btn { padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--muted); }
.seg-quiet .seg-btn { padding: 6px 14px; background: var(--paper); border: 1px solid var(--line); }
.seg-btn.is-active { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }
.seg-quiet .seg-btn.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ========== HOMEPAGE HERO ========== */
.page-home { background: var(--cream); }
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px var(--pad-x) 64px; align-items: center; }
@media (max-width: 1100px) { .hero { grid-template-columns: 1fr; } }
.hero-text { max-width: 600px; }
.search-bar { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 0; background: var(--paper); border-radius: 999px; padding: 6px; box-shadow: var(--shadow-md); margin-bottom: 20px; }
.search-field { display: flex; flex-direction: column; padding: 10px 18px; border-right: 1px solid var(--line); }
.search-field:last-of-type { border-right: none; }
.search-field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.search-field input { border: none; outline: none; background: transparent; padding: 0; font-size: 14px; color: var(--ink); width: 100%; }
.search-field input::placeholder { color: var(--muted); }
.search-bar .btn { margin: 4px; }
.quick-filters { display: flex; flex-wrap: wrap; gap: 8px; }

/* ========== HERO SLIDER ========== */
.hero-slider { position: relative; aspect-ratio: 4/5; max-height: 640px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--ink); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 800ms ease; }
.hero-slide.is-on { opacity: 1; }
.hero-slide-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 6500ms ease-out; }
.hero-slide.is-on .hero-slide-img { transform: scale(1); }
.hero-slide-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,36,66,0.1) 0%, rgba(7,36,66,0.4) 50%, rgba(7,36,66,0.92) 100%); }
.hero-slide-content { position: absolute; left: 32px; right: 32px; bottom: 88px; color: #fff; z-index: 2; }
.hero-slide-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px); border-radius: 999px; margin-bottom: 16px; }
.hero-slide-tag .kicker-dot { background: var(--accent); }
.hero-slide-title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 12px; color: #fff; text-wrap: balance; }
.hero-slide-sub { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.hero-slide-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.hero-slide-tag-chip { font-size: 11px; padding: 4px 10px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; }
.hero-slide-countdown { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: var(--r-lg); padding: 16px 18px; margin-bottom: 18px; }
.hero-slide-countdown-label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.hero-slide-actions { display: flex; align-items: center; gap: 16px; }
.hero-slide-price { display: flex; align-items: baseline; gap: 8px; color: rgba(255,255,255,0.85); font-size: 13px; }
.hero-slide-price strong { font-family: var(--serif); font-size: 22px; color: #fff; font-weight: 400; }
.hero-slide-price-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.hero-slide-rail { position: absolute; left: 32px; right: 32px; bottom: 24px; display: flex; align-items: center; gap: 16px; z-index: 3; }
.hero-slide-arrow { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 22px; line-height: 1; backdrop-filter: blur(10px); }
.hero-slide-arrow:hover { background: rgba(255,255,255,0.28); }
.hero-slide-dots { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.hero-dot { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 4px; color: rgba(255,255,255,0.7); transition: 200ms; }
.hero-dot:hover { color: #fff; }
.hero-dot.is-on { color: #fff; }
.hero-dot-num { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; }
.hero-dot-bar { display: block; width: 100%; height: 2px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; }
.hero-dot.is-on .hero-dot-bar { background: rgba(255,255,255,0.3); }
.hero-dot-fill { display: block; width: 0; height: 100%; background: var(--accent); }
.hero-dot-fill.is-running { animation: dotFill 6500ms linear; }
@keyframes dotFill { from { width: 0; } to { width: 100%; } }
.hero-dot-label { font-size: 11px; font-weight: 500; }

/* ========== FLIP COUNTDOWN ========== */
.flip-row { display: inline-flex; align-items: flex-end; gap: 6px; }
.flip-sep { font-family: var(--serif); font-size: 36px; font-weight: 300; color: rgba(255,255,255,0.35); transform: translateY(-6px); }
.flip-row-lg .flip-sep { font-size: clamp(20px, 3vw, 36px); transform: translateY(-6px); }
.flip-row-lg { flex-wrap: nowrap; gap: 2px; min-width: 0; }
.flip-row-lg .flip { gap: 6px; min-width: 0; flex: 0 1 auto; }
.flip { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.flip-digits { display: flex; gap: 4px; }
.flip-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* MEDIUM size — for hero slider */
.flip-md .flip-digits { gap: 3px; }
.flip-md .flip-digit { width: 38px; height: 56px; font-size: 36px; }

/* LARGE size — for event detail hero */
.flip-lg .flip-digit { width: clamp(28px, 3.6vw, 48px); height: clamp(42px, 5.4vw, 70px); font-size: clamp(24px, 3.2vw, 44px); }
.flip-lg .flip-label { font-size: clamp(8px, 0.85vw, 10px); margin-top: 4px; letter-spacing: 0.1em; }
.flip-lg .flip-digits { gap: 2px; }
.event-countdown { overflow: hidden; min-width: 0; }
.event-countdown .flip-row { width: 100%; justify-content: center; flex-wrap: nowrap; }
/* Override flip-lg sizes inside the event-countdown column to prevent overflow */
.event-countdown .flip-lg .flip-digit { width: clamp(18px, 1.8vw, 28px); height: clamp(26px, 2.7vw, 42px); font-size: clamp(14px, 1.65vw, 24px); }
.event-countdown .flip-lg .flip-digits { gap: 2px; }
.event-countdown .flip-row-lg .flip-sep { font-size: clamp(12px, 1.4vw, 20px); }
/* When grid stacks (≤1100px), restore larger sizes */
@media (max-width: 1100px) {
  .event-countdown .flip-lg .flip-digit { width: clamp(28px, 4.5vw, 52px); height: clamp(42px, 6.8vw, 76px); font-size: clamp(24px, 4vw, 48px); }
  .event-countdown .flip-row-lg .flip-sep { font-size: clamp(20px, 3.2vw, 36px); }
}
@media (max-width: 480px) {
  .event-countdown .flip-lg .flip-digit { width: clamp(22px, 6.5vw, 40px); height: clamp(32px, 9.5vw, 58px); font-size: clamp(18px, 6vw, 36px); }
  .event-countdown .flip-row-lg .flip-sep { font-size: clamp(14px, 4.5vw, 26px); }
  .event-countdown .flip-row-lg { gap: 2px; }
}

.flip-digit { position: relative; font-family: var(--serif); font-weight: 500; font-feature-settings: "tnum" 1; line-height: 1; border-radius: 8px; overflow: hidden; background: linear-gradient(180deg, #163E63 0%, #0A2540 100%); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 4px 12px rgba(0,0,0,0.2); }
.flip-digit::after { content: ""; position: absolute; inset: 50% 0 0 0; background: rgba(0,0,0,0.18); pointer-events: none; }
.flip-digit::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0,0,0,0.4); z-index: 4; }
.flip-top, .flip-bottom { position: absolute; left: 0; right: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.flip-top { top: 0; bottom: 50%; }
.flip-top span { transform: translateY(0); }
.flip-bottom { top: 50%; bottom: 0; }
.flip-bottom span { transform: translateY(-50%); }
.flip-flap-top, .flip-flap-bottom { position: absolute; left: 0; right: 0; height: 50%; display: flex; justify-content: center; overflow: hidden; backface-visibility: hidden; transform-origin: bottom; z-index: 3; }
.flip-flap-top { top: 0; background: linear-gradient(180deg, #163E63 0%, #0A2540 100%); border-radius: 8px 8px 0 0; }
.flip-flap-top span { transform: translateY(0); }
.flip-flap-bottom { top: 50%; background: linear-gradient(0deg, #163E63 0%, #0A2540 100%); border-radius: 0 0 8px 8px; transform-origin: top; transform: rotateX(90deg); }
.flip-flap-bottom span { transform: translateY(-50%); }
.flip-digit.is-flipping .flip-flap-top { animation: flipTop 360ms ease-in forwards; }
.flip-digit.is-flipping .flip-flap-bottom { animation: flipBottom 360ms 180ms ease-out forwards; }
@keyframes flipTop { 0% { transform: rotateX(0); } 100% { transform: rotateX(-90deg); } }
@keyframes flipBottom { 0% { transform: rotateX(90deg); } 100% { transform: rotateX(0); } }

/* ========== PROOF STRIP ========== */
.proof-strip-wrap { padding: 0 var(--pad-x) 56px; }
.proof-strip { background: var(--paper); border-radius: var(--r-xl); padding: 28px 40px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.proof { display: flex; flex-direction: column; gap: 2px; min-width: 110px; }
.proof strong { font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.proof span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.proof-div { width: 1px; height: 36px; background: var(--line); }

/* ========== RAILS ========== */
.rail { padding: 56px var(--pad-x); }
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 24px; flex-wrap: wrap; }
.rail-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }

/* ========== FEATURED ========== */
.featured-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
@media (max-width: 1100px) { .featured-grid { grid-template-columns: 1fr; } }
.featured-hero { position: relative; aspect-ratio: 4/3; border-radius: var(--r-xl); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-md); transition: 200ms; }
.featured-hero:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.featured-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 600ms; }
.featured-hero:hover .featured-hero-img { transform: scale(1.04); }
.featured-hero-overlay { position: absolute; inset: 0; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: linear-gradient(180deg, rgba(7,36,66,0) 0%, rgba(7,36,66,0) 30%, rgba(7,36,66,0.85) 100%); }
.featured-hero-tag { display: inline-flex; align-self: flex-start; padding: 6px 12px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px); border-radius: 999px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.featured-hero-overlay h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.6vw, 36px); line-height: 1.1; letter-spacing: -0.015em; margin: 0 0 10px; color: #fff; text-wrap: balance; }
.featured-hero-meta { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.featured-hero-overlay p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.88); margin: 0 0 20px; max-width: 56ch; }
.featured-hero-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.featured-hero-price { display: flex; align-items: baseline; gap: 8px; }
.featured-hero-price strong { font-family: var(--serif); font-size: 28px; color: #fff; font-weight: 500; }
.featured-hero-pricetag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.featured-list { display: flex; flex-direction: column; gap: 16px; }
.featured-item { display: grid; grid-template-columns: 140px 1fr; gap: 16px; background: var(--paper); border-radius: var(--r-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: 150ms; }
.featured-item:hover { box-shadow: var(--shadow-md); transform: translateX(2px); }
.featured-item-img { background-size: cover; background-position: center; min-height: 140px; }
.featured-item-body { padding: 16px 16px 16px 0; display: flex; flex-direction: column; gap: 4px; }
.featured-item-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); }
.featured-item-body h4 { font-family: var(--serif); font-weight: 500; font-size: 17px; line-height: 1.2; margin: 2px 0; color: var(--ink); }
.featured-item-meta { font-size: 12px; color: var(--muted); }
.featured-item-foot { margin-top: auto; padding-top: 8px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.featured-item-foot strong { font-family: var(--serif); font-size: 18px; color: var(--ink); font-weight: 500; }
.featured-item-foot span { font-size: 11px; color: var(--warn); font-family: var(--mono); }

/* ========== EVENT CARD ========== */
.ev-card { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; transition: 150ms; display: flex; flex-direction: column; }
.ev-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ev-card-img { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.ev-card-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,36,66,0) 50%, rgba(7,36,66,0.5) 100%); }
.ev-card-tag-row { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 2; }
.ev-card-tag { display: inline-flex; padding: 4px 10px; border-radius: 999px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--paper); color: var(--ink); font-weight: 500; }
.ev-card-tag-quiet { background: rgba(255,255,255,0.85); color: var(--ink); }
.ev-card-tag-outline { background: transparent; border: 1px solid currentColor; }
.ev-card-img-meta { position: absolute; bottom: 12px; right: 12px; z-index: 2; }
.ev-card-img-cme { padding: 4px 10px; border-radius: 999px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--ink); color: var(--paper); }
.ev-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ev-card-when { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.ev-card-title { font-family: var(--serif); font-weight: 500; font-size: 19px; line-height: 1.2; letter-spacing: -0.01em; margin: 2px 0 4px; color: var(--ink); text-wrap: balance; }
.ev-card-sub { font-size: 13px; color: var(--muted); line-height: 1.4; flex: 1; }
.ev-card-foot { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.ev-card-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.ev-card-price .strike { font-size: 12px; }
.ev-card-price strong { font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 500; }
.ev-card-price-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); }
.ev-card-cap { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; min-width: 110px; }
.ev-card-cap-bar { width: 100%; height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; }
.ev-card-cap-fill { height: 100%; }
.ev-card-cap span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; color: var(--warn); }

/* ========== STRIP BANNER (Eventa) ========== */
/* Slow sliding announcement marquee (organizer notice) */
@keyframes ucg-marquee-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.notice-marquee-inner:hover { animation-play-state: paused !important; }

.ad-slot { display: block; position: relative; height: 200px; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.ad-slot:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ad-slot-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ad-slot-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,37,64,0.78) 0%, rgba(10,37,64,0.45) 60%, rgba(10,37,64,0.15) 100%); }
.ad-slot-body { position: relative; padding: 28px 32px; color: #fff; display: flex; flex-direction: column; gap: 8px; max-width: 60%; height: 100%; justify-content: center; }
.ad-slot-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; }
.ad-slot-title { font-family: var(--serif); font-size: 26px; line-height: 1.15; }
.ad-slot-sub { font-size: 14px; opacity: 0.85; max-width: 540px; }
.ad-slot .btn { align-self: flex-start; margin-top: 6px; }

.strip-banner { margin: 56px var(--pad-x); background: var(--ink); border-radius: var(--r-xl); padding: 56px 48px; color: var(--paper); position: relative; overflow: hidden; }
.strip-banner::before { content: ""; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, var(--brand) 0%, transparent 70%); opacity: 0.6; }
.strip-banner::after { content: ""; position: absolute; bottom: -100px; left: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: 0.3; }
.strip-inner { position: relative; z-index: 1; max-width: 800px; }
.strip-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.strip-title { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; letter-spacing: -0.015em; margin: 0 0 16px; color: var(--paper); }
.strip-sub { font-size: 16px; color: rgba(255,255,255,0.75); margin: 0 0 28px; max-width: 60ch; }
.strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========== CATEGORY CARDS ========== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.cat-card { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: 150ms; cursor: pointer; }
.cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cat-card-img { position: relative; aspect-ratio: 16/9; background-size: cover; background-position: center; }
.cat-card-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,36,66,0) 0%, rgba(7,36,66,0.7) 100%); }
.cat-card-count { position: absolute; bottom: 16px; left: 18px; color: #fff; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1; letter-spacing: -0.01em; z-index: 2; }
.cat-card-count span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; opacity: 0.85; margin-top: 4px; }
.cat-card-body { padding: 18px 20px 20px; }
.cat-card-body h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; margin: 0 0 4px; color: var(--ink); }
.cat-card-body p { font-size: 12.5px; color: var(--muted); margin: 0 0 10px; line-height: 1.4; }
.cat-card-foot { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); }

/* ========== REGION CARDS (with flags) ========== */
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.region-card { background: var(--paper); border-radius: var(--r-lg); padding: 20px 22px; box-shadow: var(--shadow-sm); transition: 150ms; cursor: pointer; }
.region-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.region-card-head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.region-card-flag { font-size: 32px; line-height: 1; }
.region-card-name { font-family: var(--serif); font-weight: 500; font-size: 18px; color: var(--ink); }
.region-card-count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.region-card-arrow { margin-left: auto; font-size: 18px; color: var(--muted); }
.region-card-cities { display: flex; flex-direction: column; gap: 12px; }
.region-card-city { display: flex; align-items: center; gap: 12px; }
.region-card-city-img { width: 48px; height: 48px; border-radius: var(--r-sm); background-size: cover; background-position: center; flex-shrink: 0; }
.region-card-city-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.region-card-city-count { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ========== CITY CARDS (Top destinations) ========== */
.rail-cities { background: var(--paper); }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.city-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: 150ms; cursor: pointer; background: var(--paper); }
.city-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.city-card-img { position: relative; aspect-ratio: 4/3; background-size: cover; background-position: center; }
.city-card-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,36,66,0) 40%, rgba(7,36,66,0.7) 100%); }
.city-card-flag { position: absolute; top: 12px; left: 12px; font-size: 22px; line-height: 1; padding: 6px; background: rgba(255,255,255,0.92); border-radius: 50%; z-index: 2; box-shadow: var(--shadow-sm); }
.city-card-events { position: absolute; bottom: 10px; left: 12px; padding: 4px 10px; background: rgba(255,255,255,0.95); color: var(--ink); border-radius: 999px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; z-index: 2; font-weight: 500; }
.city-card-body { padding: 12px 14px 14px; }
.city-card-name { font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--ink); }
.city-card-country { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ========== EVENT DETAIL ========== */
.page-event { background: var(--cream); }
.event-hero { position: relative; padding: 40px var(--pad-x) 32px; color: var(--paper); overflow: hidden; }
.event-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.55; }
.event-hero-bg-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,36,66,0.7) 0%, rgba(7,36,66,0.92) 70%, var(--ink) 100%); }
.event-hero-inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; }
.event-crumbs { display: flex; gap: 8px; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.event-crumbs button { color: rgba(255,255,255,0.85); }
.event-crumbs button:hover { color: #fff; text-decoration: underline; }
.event-hero-grid { display: grid; grid-template-columns: 1fr minmax(300px, 360px); gap: clamp(20px, 3vw, 48px); align-items: start; margin-bottom: 32px; }
@media (max-width: 1280px) { .event-hero-grid { grid-template-columns: 1fr minmax(280px, 340px); } }
@media (max-width: 1100px) { .event-hero-grid { grid-template-columns: 1fr; } }
@media (max-width: 1100px) { .event-hero-grid { grid-template-columns: 1fr; } }
.event-hero-left { padding-top: 8px; }
.event-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.event-tag-row .ev-card-tag-outline { color: rgba(255,255,255,0.9); }
.event-title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 4.4vw, 64px); line-height: 1.0; letter-spacing: -0.025em; margin: 0 0 14px; color: #fff; text-wrap: balance; }
.event-subtitle { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.6vw, 22px); color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.event-where { display: flex; flex-direction: column; gap: 10px; padding: 20px 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-lg); backdrop-filter: blur(8px); }
.event-where-row { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: baseline; }
.event-where-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.event-where-val { font-size: 14px; color: rgba(255,255,255,0.95); }

/* COUNTDOWN ON HERO — bigger, properly spaced */
.event-countdown { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r-xl); padding: clamp(18px, 2.4vw, 28px); backdrop-filter: blur(10px); min-width: 0; }
.event-countdown-label { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--good); position: relative; }
.pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--good); animation: pulse 2s infinite; }
.pulse-warn { background: var(--warn); }
.pulse-warn::after { background: var(--warn); }
.pulse-critical { background: var(--warn); }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2.2); opacity: 0; } }
.event-countdown-sub { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.85); margin: 24px 0 16px; padding: 12px 16px; background: rgba(217,119,87,0.15); border: 1px solid rgba(217,119,87,0.3); border-radius: 8px; }
.event-countdown-sub strong { color: var(--accent); font-weight: 500; }
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-warn { background: var(--warn); }
.event-countdown-foot { display: flex; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 14px; flex-wrap: wrap; }
.event-hero-subtle .event-countdown { display: none; }

.event-stat-bar { display: flex; align-items: center; gap: 32px; padding: 20px 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-lg); flex-wrap: wrap; }
.event-stat { display: flex; flex-direction: column; gap: 2px; }
.event-stat strong { font-family: var(--serif); font-size: 22px; font-weight: 500; color: #fff; line-height: 1; }
.event-stat span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.event-stat-spacer { flex: 1; }
.event-stat-actions { display: flex; gap: 8px; }
.event-stat-actions .btn { color: #fff; border-color: rgba(255,255,255,0.25); }
.event-stat-actions .btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.event-stat-actions .btn.is-active { background: rgba(255,255,255,0.18); border-color: #fff; color: #fff; }
.event-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); background: var(--ink); color: var(--paper); padding: 10px 18px; border-radius: 999px; font-size: 14px; box-shadow: 0 6px 24px rgba(0,0,0,0.18); z-index: 9999; animation: ev-toast-in 0.18s ease-out; }
@keyframes ev-toast-in { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* TABS BAR */
.event-tabs-bar { position: sticky; top: 68px; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--line); }
.event-tabs-inner { display: flex; align-items: center; gap: 4px; padding: 0 var(--pad-x); height: 56px; max-width: 1400px; margin: 0 auto; }
.event-tab { padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--muted); border-radius: 8px; }
.event-tab:hover { color: var(--ink); background: var(--cream); }
.event-tab.is-active { color: var(--ink); position: relative; }
.event-tab.is-active::after { content: ""; position: absolute; bottom: -17px; left: 16px; right: 16px; height: 2px; background: var(--ink); }
.event-tabs-spacer { flex: 1; }

/* EVENT BODY */
.event-body { padding: 48px var(--pad-x); }
.event-body-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; max-width: 1400px; margin: 0 auto; align-items: start; }
@media (max-width: 1100px) { .event-body-grid { grid-template-columns: 1fr; } }
.event-body-main { min-width: 0; }
.event-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 140px; }

/* OVERVIEW */
.overview p { font-size: 16px; line-height: 1.6; color: var(--ink); margin: 0 0 16px; max-width: 64ch; }
.overview em { font-family: var(--serif); font-style: italic; color: var(--brand); }
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 28px 0; }
.kpi { padding: 18px 20px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.kpi-num { font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1; color: var(--ink); letter-spacing: -0.015em; }
.kpi-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.speaker-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 16px; }
.speaker-mini { display: flex; gap: 12px; align-items: center; padding: 12px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.speaker-avatar { width: 56px; height: 56px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; }
.speaker-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.speaker-role { font-size: 12px; color: var(--brand); }
.speaker-inst { font-size: 11px; color: var(--muted); margin-top: 2px; }
.incl-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 10px; }
.incl-list li { display: flex; gap: 10px; padding: 12px 14px; background: var(--paper); border-radius: var(--r-sm); box-shadow: var(--shadow-sm); font-size: 14px; color: var(--ink); }
.incl-list li span { color: var(--good); font-weight: 700; }

/* AGENDA */
.agenda-controls { display: flex; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; align-items: center; }
.agenda-day { margin-bottom: 36px; }
.agenda-day-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.agenda-day-head h4 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 0; color: var(--ink); }
.agenda-day-head span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.agenda-grid { display: flex; flex-direction: column; gap: 10px; }
.agenda-row { display: grid; grid-template-columns: 80px 4px 1fr auto; gap: 16px; align-items: stretch; padding: 14px 16px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: 120ms; }
.agenda-row:hover { box-shadow: var(--shadow-md); }
.agenda-time { display: flex; flex-direction: column; align-items: flex-start; }
.agenda-time strong { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); }
.agenda-time span { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.agenda-bar { background: var(--brand); border-radius: 2px; }
.agenda-row-keynote .agenda-bar { background: var(--brand); }
.agenda-row-panel .agenda-bar { background: var(--accent); }
.agenda-row-workshop .agenda-bar { background: var(--warn); }
.agenda-row-break .agenda-bar { background: var(--line); }
.agenda-row-open .agenda-bar { background: var(--good); }
.agenda-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.agenda-type { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); }
.agenda-row-break .agenda-type { color: var(--muted); }
.agenda-title { font-size: 15px; font-weight: 500; color: var(--ink); }
.agenda-speaker { font-size: 13px; color: var(--muted); }
.agenda-add { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; color: var(--muted); align-self: center; }
.agenda-add:hover { color: var(--ink); border-color: var(--ink); }

/* SPEAKERS */
.speakers-tab { padding: 0; }
.speakers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.speaker-card { padding: 18px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); text-align: center; }
.speaker-card-avatar { position: relative; width: 96px; height: 96px; margin: 0 auto 12px; border-radius: 50%; background-size: cover; background-position: center; }
.speaker-verified { position: absolute; bottom: 0; right: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--paper); }
.speaker-card-name { font-family: var(--serif); font-weight: 500; font-size: 16px; color: var(--ink); margin-bottom: 2px; }
.speaker-card-role { font-size: 12px; color: var(--brand); }
.speaker-card-inst { font-size: 12px; color: var(--muted); margin-top: 2px; }
.speaker-card-foot { display: flex; gap: 6px; justify-content: center; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }

/* TRAVEL */
.travel-row { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.hotel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.hotel-card { background: var(--paper); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: 150ms; }
.hotel-card:hover { box-shadow: var(--shadow-md); }
.hotel-card-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.hotel-card-body { padding: 14px 16px; }
.hotel-card-stars { color: var(--warn); font-size: 14px; margin-bottom: 6px; }
.hotel-card-stars-empty { color: var(--line); }
.hotel-card-name { font-family: var(--serif); font-weight: 500; font-size: 16px; color: var(--ink); }
.hotel-card-meta { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 2px; }
.hotel-card-tag { font-size: 11px; color: var(--good); margin: 8px 0; }
.hotel-card-foot { display: flex; align-items: baseline; gap: 6px; justify-content: flex-end; padding-top: 10px; border-top: 1px solid var(--line); }
.hotel-card-foot span { font-size: 11px; color: var(--muted); }
.hotel-card-foot strong { font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 500; }
.hotel-card-foot small { font-size: 11px; color: var(--muted); font-weight: 400; }

/* SPONSORS */
.sponsor-tier { margin-bottom: 36px; }
.sponsor-tier-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.sponsor-tier-head h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; margin: 0; color: var(--ink); }
.sponsor-tier-head span { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.sponsor-tile { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.sponsor-mark { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--cream); border-radius: 8px; font-family: var(--serif); font-weight: 600; font-size: 16px; flex-shrink: 0; }
.sponsor-name { font-size: 13px; font-weight: 500; color: var(--ink); }

/* ABSTRACTS */
.abstract-banner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 32px 36px; background: var(--paper); border-radius: var(--r-xl); box-shadow: var(--shadow-sm); margin-bottom: 28px; flex-wrap: wrap; }
.abstract-banner p { color: var(--muted); margin: 8px 0 0; max-width: 56ch; }
.abstract-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.abstract-step { padding: 20px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.abstract-step-num { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--serif); font-weight: 500; margin-bottom: 12px; }
.abstract-step-title { font-family: var(--serif); font-weight: 500; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.abstract-step-desc { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* REVIEWS */
.reviews-summary { display: grid; grid-template-columns: 200px 1fr; gap: 32px; padding: 28px; background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); margin-bottom: 24px; align-items: center; }
.reviews-num { font-family: var(--serif); font-size: 56px; font-weight: 500; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.reviews-stars { color: var(--warn); font-size: 16px; margin: 6px 0; }
.reviews-count { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.reviews-bars { display: flex; flex-direction: column; gap: 8px; }
.reviews-bar-row { display: grid; grid-template-columns: 160px 1fr 50px; gap: 12px; align-items: center; }
.reviews-bar-row span { font-size: 13px; color: var(--ink); }
.reviews-bar { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.reviews-bar-fill { height: 100%; background: var(--brand); }
.reviews-bar-row strong { font-family: var(--mono); font-size: 12px; color: var(--ink); text-align: right; }
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-card { padding: 20px 24px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.review-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.review-head strong { color: var(--ink); }
.review-head span { font-size: 12px; color: var(--muted); }
.review-stars { color: var(--warn); margin-left: auto; }
.review-card p { margin: 0; color: var(--ink); line-height: 1.55; }

/* SIDE CARDS */
.side-card { background: var(--paper); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-sm); }
.side-card-head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.side-chat { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.chat-msg { padding: 12px 14px; border-radius: 12px; font-size: 13px; line-height: 1.5; }
.chat-msg-bot { background: var(--cream); color: var(--ink); border-bottom-left-radius: 4px; }
.chat-suggest { display: flex; flex-wrap: wrap; gap: 6px; }
.chat-suggest button { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; color: var(--ink); background: var(--paper); }
.chat-suggest button:hover { border-color: var(--brand); color: var(--brand); }
.side-chat-input { display: flex; gap: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
.side-chat-input input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; outline: none; font-size: 13px; }
.side-chat-input input:focus { border-color: var(--brand); }
.chat-send { width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--paper); }
.ticket-list { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-direction: column; gap: 10px; }
.ticket-list li { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--cream); border-radius: var(--r-sm); }
.ticket-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.ticket-meta { font-size: 11px; color: var(--muted); margin-top: 1px; }
.ticket-list strong { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); }

/* ========== CHECKOUT ========== */
.page-checkout { background: var(--cream); padding-bottom: 80px; }
.checkout-bar { display: flex; align-items: center; gap: 24px; padding: 16px var(--pad-x); background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 68px; z-index: 20; flex-wrap: wrap; }
.checkout-back { font-size: 13px; color: var(--muted); }
.checkout-back:hover { color: var(--ink); }
.checkout-steps { display: flex; align-items: center; gap: 10px; margin: 0 auto; flex-wrap: wrap; }
.cstep { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.cstep-num { width: 24px; height: 24px; border-radius: 50%; background: var(--cream); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; border: 1px solid var(--line); }
.cstep.is-done .cstep-num { background: var(--brand); color: #fff; border-color: var(--brand); }
.cstep.is-active { color: var(--ink); font-weight: 500; }
.cstep.is-active .cstep-num { background: var(--ink); color: #fff; border-color: var(--ink); }
.cstep-line { width: 32px; height: 1px; background: var(--line); }
.checkout-secure { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--good); }

.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; padding: 40px var(--pad-x); max-width: 1300px; margin: 0 auto; align-items: start; }
@media (max-width: 1000px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-main { background: var(--paper); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.checkout-event { display: flex; gap: 20px; padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); align-items: center; }
.checkout-event-img { width: 80px; height: 80px; border-radius: var(--r-sm); background-size: cover; background-position: center; flex-shrink: 0; }
.checkout-event-cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); margin-bottom: 4px; }
.checkout-event h2 { font-family: var(--serif); font-weight: 500; font-size: 20px; line-height: 1.2; margin: 0 0 4px; color: var(--ink); }
.checkout-event-where { font-size: 12px; color: var(--muted); }

.tier-list, .addon-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.tier, .addon { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-md); cursor: pointer; transition: 120ms; }
.tier:hover, .addon:hover { border-color: var(--ink); }
.tier.is-on, .addon.is-on { border-color: var(--brand); background: rgba(27,111,181,0.04); }
.tier input, .addon input { display: none; }
.tier-radio { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line); position: relative; flex-shrink: 0; }
.tier.is-on .tier-radio { border-color: var(--brand); }
.tier.is-on .tier-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--brand); }
.addon-check { width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid var(--line); position: relative; flex-shrink: 0; }
.addon.is-on .addon-check { background: var(--brand); border-color: var(--brand); }
.addon.is-on .addon-check::after { content: "✓"; position: absolute; inset: 0; color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tier-body, .addon-body { flex: 1; }
.tier-name, .addon-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.tier-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tier-price, .addon-price { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); }

.promo-row { display: flex; gap: 8px; margin-bottom: 24px; }
.promo-row input { flex: 1; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; outline: none; }
.promo-row input:focus { border-color: var(--brand); }

.checkout-cta { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); }
.checkout-cta span { display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 4px; }
.field-full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select { padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; outline: none; background: var(--paper); }
.field input:focus, .field select:focus { border-color: var(--brand); }

.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.check { display: flex; gap: 10px; align-items: center; font-size: 14px; cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--brand); }

.pay-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.pay-tab { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--ink); background: var(--paper); }
.pay-tab.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pay-stub { display: flex; gap: 16px; padding: 20px; background: var(--cream); border-radius: var(--r-md); margin-bottom: 20px; align-items: center; font-size: 14px; color: var(--ink); }
.pay-stub-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }

.checkout-summary { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 140px; }
.summary-card { background: var(--paper); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.summary-card h4 { font-family: var(--serif); font-weight: 500; font-size: 18px; margin: 0 0 16px; color: var(--ink); }
.summary-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; font-size: 14px; color: var(--ink); gap: 12px; }
.summary-row strong { font-weight: 500; }
.summary-row-quiet { color: var(--muted); font-size: 13px; }
.summary-row-quiet strong { color: var(--muted); font-weight: 400; }
.summary-row-good { color: var(--good); }
.summary-row-good strong { color: var(--good); }
.summary-divide { height: 1px; background: var(--line); margin: 8px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0 4px; }
.summary-total span { font-size: 14px; color: var(--muted); }
.summary-total strong { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--ink); letter-spacing: -0.015em; }
.summary-perks { display: flex; flex-direction: column; gap: 6px; padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--line); }
.summary-perk { font-size: 12px; color: var(--ink); }
.summary-help { display: flex; gap: 12px; padding: 16px; background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-sm); align-items: center; }
.summary-help-icon { width: 36px; height: 36px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.summary-help strong { display: block; font-size: 14px; color: var(--ink); }
.summary-help span { font-size: 12px; color: var(--muted); }

/* ========== ENTERPRISE FOOTER ========== */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); margin-top: 80px; }
.footer-cta { background: linear-gradient(135deg, var(--deep) 0%, var(--ink) 100%); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding: 56px var(--pad-x); align-items: center; max-width: 1400px; margin: 0 auto; }
@media (max-width: 900px) { .footer-cta-inner { grid-template-columns: 1fr; } }
.footer-cta-title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 8px; color: #fff; }
.footer-cta p { color: rgba(255,255,255,0.7); margin: 0; }
.footer-form { display: flex; gap: 8px; }
.footer-form input { flex: 1; padding: 14px 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #fff; outline: none; font-size: 14px; }
.footer-form input::placeholder { color: rgba(255,255,255,0.5); }
.footer-form input:focus { border-color: var(--accent); }

.footer-main { padding: 64px var(--pad-x) 48px; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 4fr; gap: 56px; }
@media (max-width: 1100px) { .footer-main { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; line-height: 1.5; margin: 12px 0 24px; max-width: 30ch; }
.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-apps { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.footer-app { display: flex; flex-direction: column; align-items: flex-start; padding: 10px 16px; border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; color: rgba(255,255,255,0.85); transition: 120ms; }
.footer-app:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.footer-app span { font-size: 10px; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.footer-app strong { font-size: 14px; color: #fff; font-weight: 500; }
.footer-social { display: flex; gap: 4px; flex-wrap: wrap; }
.footer-social-link { padding: 6px 12px; font-size: 12px; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; color: rgba(255,255,255,0.7); }
.footer-social-link:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
.footer-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 14px; font-weight: 500; }
.footer-col a { display: block; padding: 4px 0; font-size: 13px; color: rgba(255,255,255,0.65); transition: 100ms; }
.footer-col a:hover { color: #fff; }

.footer-trust { padding: 28px var(--pad-x); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 32px; flex-wrap: wrap; align-items: center; max-width: 1400px; margin: 0 auto; }
.footer-trust-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-trust-tag { padding: 4px 10px; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.footer-trust-pay { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-left: auto; }
.footer-trust-pay > span:first-child { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-pay { padding: 4px 8px; background: rgba(255,255,255,0.06); border-radius: 4px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; color: rgba(255,255,255,0.85); }

.footer-base { padding: 24px var(--pad-x); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; max-width: 1400px; margin: 0 auto; font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-base-links { display: flex; gap: 16px; flex-wrap: wrap; margin-left: auto; }
.footer-base-links a:hover { color: #fff; }
.footer-base-lang button { padding: 6px 12px; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; color: rgba(255,255,255,0.85); font-size: 12px; }

/* ========== TWEAKS PANEL POSITIONING ========== */
.tweaks-panel { z-index: 200; }

/* ========== MOBILE NAV ========== */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 200ms; }
@media (max-width: 900px) {
  .mobile-toggle { display: flex; }
  .nav-links { display: none; }
  .search-trigger { display: none; }
  .nav-signin { display: none; }
  .nav-list { display: none; }
  .topnav.is-mobile-open .nav-links { display: flex; position: absolute; top: 68px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; gap: 0; padding: 8px; z-index: 99; box-shadow: var(--shadow-lg); }
  .topnav.is-mobile-open .nav-link { width: 100%; justify-content: space-between; padding: 12px 16px; border-radius: 8px; }
}
@media (max-width: 600px) {
  .topnav-inner { gap: 12px; padding: 0 16px; height: 60px; }
  .brand-logo { height: 30px; }
  .profile-trigger { padding: 6px; }
}

/* ========== HERO MOBILE ========== */
@media (max-width: 900px) {
  .hero { padding: 40px var(--pad-x); gap: 32px; }
  .display { font-size: clamp(36px, 8vw, 64px); }
  .search-bar { flex-direction: column; border-radius: var(--r-xl); }
  .search-bar .search-field { border-right: none; border-bottom: 1px solid var(--line); }
  .search-bar .search-field:last-of-type { border-bottom: none; }
  .search-bar .btn { border-radius: 0 0 var(--r-xl) var(--r-xl); }
}
@media (max-width: 600px) {
  .hero-slide-countdown { display: none; }
  .hero-slide-title { font-size: clamp(20px, 5vw, 32px); }
  .hero-slide-content { padding: 28px 20px; }
  .hero-dot-label { display: none; }
  .hero-dot-num { display: none; }
}

/* ========== EVENT DETAIL MOBILE ========== */
@media (max-width: 768px) {
  .event-hero { padding: 24px 16px; }
  .event-stat-bar { flex-wrap: wrap; gap: 16px; }
  .event-tabs-inner { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .event-tab { white-space: nowrap; }
  .event-countdown { padding: 16px; }
}
@media (max-width: 480px) {
  .event-title { font-size: clamp(22px, 6vw, 36px); }
  .event-stat { min-width: 70px; }
}

/* ========== CHECKOUT MOBILE ========== */
@media (max-width: 600px) {
  .checkout-bar { flex-wrap: wrap; gap: 12px; }
  .checkout-steps { order: 3; width: 100%; justify-content: center; }
  .tier-list, .addon-list { gap: 8px; }
  .tier { flex-wrap: wrap; }
  .pay-tabs { flex-wrap: wrap; }
  .pay-tab { flex: 1 1 calc(50% - 4px); text-align: center; }
}

/* ========== PROOF STRIP MOBILE ========== */
@media (max-width: 600px) {
  .proof-strip { gap: 16px; padding: 20px 24px; }
  .proof strong { font-size: 22px; }
  .proof-div { display: none; }
}

/* ========== RAILS MOBILE ========== */
@media (max-width: 768px) {
  .rail { padding: 32px var(--pad-x); }
  .rail-head { flex-wrap: wrap; gap: 12px; }
  .rail-head .btn { display: none; }
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .region-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .city-card-img { aspect-ratio: 4/3; }
  .featured-grid { gap: 12px; }
  .featured-item { flex-direction: column; }
  .featured-item-img { width: 100%; height: 160px; }
}

/* ========== STRIP BANNER MOBILE ========== */
@media (max-width: 600px) {
  .strip-banner { padding: 40px 24px; }
  .strip-title { font-size: clamp(18px, 5vw, 26px); }
  .strip-actions { flex-direction: column; }
}

/* ========== FOOTER MOBILE ========== */
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-trust { flex-direction: column; gap: 16px; }
  .footer-trust-pay { margin-left: 0; }
  .footer-base { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-base-links { margin-left: 0; }
  .footer-form { flex-direction: column; }
  .footer-form .btn { border-radius: 999px; }
}

/* ========== MEGA MENU MOBILE ========== */
@media (max-width: 900px) {
  .mega { display: none; }
}

/* ========== STATIC PAGES ========== */
.static-page { padding: 80px var(--pad-x) 120px; max-width: 1100px; margin: 0 auto; }
.static-page .page-hero { margin-bottom: 64px; }
.static-page .page-hero .kicker { margin-bottom: 12px; }
.static-page .page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 20px; }
.static-page .page-hero p { font-size: 18px; color: var(--muted); max-width: 54ch; line-height: 1.6; margin: 0; }
.static-section { margin-bottom: 80px; }
.static-section h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 400; letter-spacing: -0.02em; margin: 0 0 24px; }
.static-section h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.static-section p { font-size: 15px; line-height: 1.65; color: var(--muted); max-width: 70ch; }
.static-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.static-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.static-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 768px) {
  .static-grid-2, .static-grid-3, .static-grid-4 { grid-template-columns: 1fr 1fr; }
  .static-page { padding: 40px 20px 80px; }
}
@media (max-width: 480px) {
  .static-grid-2, .static-grid-3, .static-grid-4 { grid-template-columns: 1fr; }
}
.content-card { background: var(--paper); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.content-card-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px; }
.content-card h3 { font-size: 16px; font-weight: 600; margin: 0 0 6px; color: var(--ink); }
.content-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ========== PRICING TIERS ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-bottom: 48px; }
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); } }
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { background: var(--paper); border-radius: var(--r-xl); padding: 36px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; position: relative; min-width: 0; }
.pricing-card.is-featured { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand), var(--shadow-md); }
.pricing-card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: var(--paper); font-size: 11px; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 12px; border-radius: 999px; white-space: nowrap; }
.pricing-tier-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.pricing-price { font-family: var(--serif); font-size: 42px; font-weight: 400; line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.pricing-price sup { font-size: 20px; vertical-align: super; font-family: var(--sans); }
.pricing-price sub { font-size: 14px; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.pricing-fee { font-size: 12px; color: var(--muted); }
.pricing-perks { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; }
.pricing-perks li { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.pricing-perks li::before { content: "✓"; color: var(--good); font-weight: 600; flex-shrink: 0; }

/* ========== SEARCH PAGE ========== */
.search-page { min-height: 100vh; }
.search-header { background: var(--paper); border-bottom: 1px solid var(--line); padding: 24px var(--pad-x); }
.search-header h1 { font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -0.02em; margin: 0 0 16px; }
.search-bar-full { display: flex; background: var(--cream); border-radius: var(--r-xl); border: 1px solid var(--line); overflow: hidden; max-width: 860px; }
.search-bar-full .search-field { flex: 1; border-right: 1px solid var(--line); padding: 12px 18px; display: flex; flex-direction: column; gap: 2px; }
.search-bar-full .search-field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.search-bar-full .search-field input { border: none; background: transparent; outline: none; font-size: 14px; font-weight: 500; color: var(--ink); }
.search-bar-full .btn { border-radius: 0; padding: 0 24px; }
.search-body { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 32px var(--pad-x); max-width: 1400px; margin: 0 auto; }
@media (max-width: 900px) { .search-body { grid-template-columns: 1fr; } }
.search-filters { display: flex; flex-direction: column; gap: 24px; }
.filter-group h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.filter-group-items { display: flex; flex-direction: column; gap: 8px; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; color: var(--ink); }
.filter-check input { accent-color: var(--brand); width: 16px; height: 16px; }
.filter-check span.count { color: var(--muted); font-size: 12px; margin-left: auto; }
.search-results-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.search-count { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.search-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.search-sort select { border: 1px solid var(--line); border-radius: 8px; padding: 6px 10px; background: var(--paper); font-size: 13px; color: var(--ink); outline: none; }

/* ========== AFFILIATE / ADVERTISER DASHBOARD LIGHT ========== */
.affiliate-page, .advertiser-page { padding: 40px var(--pad-x); max-width: 1300px; margin: 0 auto; }
.affiliate-page h1, .advertiser-page h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.02em; margin: 0 0 8px; }
.affiliate-page .sub, .advertiser-page .sub { font-size: 15px; color: var(--muted); margin: 0 0 36px; }

/* ========== EVENTA AI CHATBOT ========== */
.eventa-fab {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
  border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff; border: none; cursor: pointer; box-shadow: 0 8px 28px rgba(27,111,181,0.35);
  display: flex; align-items: center; justify-content: center; z-index: 1100;
  transition: transform 200ms; font-size: 24px;
}
.eventa-fab:hover { transform: scale(1.05); }
.eventa-fab-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  background: var(--accent); opacity: 0.35; animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.35; } 100% { transform: scale(1.4); opacity: 0; } }
.eventa-panel {
  position: fixed; bottom: 24px; right: 24px; width: 420px; height: 640px;
  max-height: calc(100vh - 48px);
  background: var(--paper); border-radius: 20px; box-shadow: 0 24px 80px rgba(10,37,64,0.25);
  display: flex; flex-direction: column; z-index: 1100; overflow: hidden;
  border: 1px solid var(--line);
}
@media (max-width: 600px) {
  .eventa-panel { width: calc(100vw - 24px); right: 12px; bottom: 12px; height: calc(100vh - 24px); }
}
.eventa-head {
  padding: 16px 20px; background: linear-gradient(135deg, var(--ink), var(--brand));
  color: #fff; display: flex; align-items: center; justify-content: space-between;
}
.eventa-head-title { display: flex; align-items: center; gap: 12px; }
.eventa-head-title-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  position: relative;
}
.eventa-head-title-avatar::after {
  content: ""; position: absolute; bottom: 0; right: 0;
  width: 10px; height: 10px; border-radius: 50%; background: var(--good);
  border: 2px solid var(--ink);
}
.eventa-head-title strong { display: block; font-size: 14px; font-weight: 600; }
.eventa-head-title span { display: block; font-size: 11px; opacity: 0.75; }
.eventa-close { background: rgba(255,255,255,0.1); color: #fff; border: none; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 16px; }
.eventa-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; background: var(--cream); }
.eventa-msg { display: flex; gap: 10px; }
.eventa-msg-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; }
.eventa-msg.is-user { flex-direction: row-reverse; }
.eventa-msg-bubble { max-width: 78%; padding: 11px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; box-shadow: var(--shadow-sm); }
.eventa-msg:not(.is-user) .eventa-msg-bubble { background: var(--paper); border-top-left-radius: 4px; color: var(--ink); }
.eventa-msg.is-user .eventa-msg-bubble { background: var(--brand); color: #fff; border-top-right-radius: 4px; }
.eventa-tool {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 14px; font-family: var(--mono); font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.eventa-tool-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); animation: pulse-ring 1.5s infinite; }
.eventa-card-suggestion {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; margin-top: 4px; display: flex; gap: 12px;
}
.eventa-card-img { width: 60px; height: 60px; border-radius: 8px; background-size: cover; flex-shrink: 0; }
.eventa-card-body strong { display: block; font-size: 13px; color: var(--ink); margin-bottom: 2px; }
.eventa-card-body span { display: block; font-size: 11px; color: var(--muted); }
.eventa-quick {
  display: flex; gap: 6px; flex-wrap: wrap; padding: 8px 16px 0;
}
.eventa-quick button {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 12px; font-size: 12px; color: var(--ink); cursor: pointer;
}
.eventa-quick button:hover { background: var(--cream); }
.eventa-input {
  padding: 14px 16px; border-top: 1px solid var(--line); background: var(--paper);
  display: flex; gap: 8px; align-items: center;
}
.eventa-input input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; font-size: 14px; outline: none; background: var(--cream); }
.eventa-input button { background: var(--brand); color: #fff; border: none; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; flex-shrink: 0; }
.eventa-foot { font-size: 11px; color: var(--muted); text-align: center; padding: 4px 0 12px; background: var(--paper); }

/* ========== VIRTUAL SESSION ROOM ========== */
.venue-page { min-height: 100vh; background: #0A1A2A; color: #fff; }
.venue-grid { display: grid; grid-template-columns: 1fr 360px; height: calc(100vh - 60px); }
@media (max-width: 1100px) { .venue-grid { grid-template-columns: 1fr; height: auto; } }
.venue-stage { display: flex; flex-direction: column; padding: 20px; gap: 16px; }
.venue-video {
  flex: 1; background: linear-gradient(135deg, #1a3a5c, #0a1a2a);
  border-radius: 12px; position: relative; overflow: hidden; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.venue-video::after {
  content: ""; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=1600&q=80') center/cover;
  opacity: 0.45;
}
.venue-live-badge { position: absolute; top: 14px; left: 14px; background: #E03333; color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; z-index: 2; }
.venue-live-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse-ring 1.5s infinite; }
.venue-viewer-count { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.55); color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 12px; z-index: 2; }
.venue-controls { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.venue-controls button { background: rgba(0,0,0,0.6); color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; padding: 8px 14px; font-size: 12px; cursor: pointer; }
.venue-info { display: flex; gap: 16px; align-items: center; }
.venue-info h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 22px; color: #fff; }
.venue-info span { font-size: 13px; opacity: 0.7; }
.venue-side {
  background: #0E2236; border-left: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column;
}
.venue-tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.08); }
.venue-tab { flex: 1; padding: 14px; background: transparent; color: rgba(255,255,255,0.6); border: none; cursor: pointer; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.venue-tab.is-active { color: #fff; box-shadow: inset 0 -2px 0 var(--accent); }
.venue-tab-body { flex: 1; overflow-y: auto; padding: 16px; }
.venue-chat-msg { margin-bottom: 12px; }
.venue-chat-msg .who { font-size: 12px; color: var(--accent); font-weight: 600; }
.venue-chat-msg .text { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 2px; line-height: 1.5; }
.venue-input { padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; gap: 8px; }
.venue-input input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 10px 14px; border-radius: 8px; font-size: 13px; outline: none; }
.venue-poll { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 14px; margin-bottom: 12px; }
.venue-poll-q { font-size: 13px; font-weight: 600; margin-bottom: 10px; color: #fff; }
.venue-poll-bar { height: 28px; background: rgba(255,255,255,0.05); border-radius: 6px; position: relative; margin-bottom: 6px; overflow: hidden; }
.venue-poll-fill { position: absolute; inset: 0; background: var(--brand); border-radius: 6px; }
.venue-poll-label { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); font-size: 12px; color: #fff; z-index: 1; }
.venue-poll-pct { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 12px; font-weight: 700; color: #fff; z-index: 1; }

/* ========== SHARED PAGE COMPONENTS ========== */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.tile { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: 200ms; cursor: pointer; }
.tile:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tile-img { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.tile-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 60%); }
.tile-body { padding: 16px 18px 18px; }
.tile-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.tile h3 { font-size: 15px; font-weight: 600; margin: 0 0 4px; line-height: 1.35; color: var(--ink); }
.tile p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }
.tile-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: 12px; color: var(--ink); cursor: pointer; transition: 120ms; }
.chip:hover { background: var(--paper); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.thread-list { display: flex; flex-direction: column; gap: 12px; }
.thread-row { background: var(--paper); border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; cursor: pointer; transition: 120ms; }
.thread-row:hover { box-shadow: var(--shadow-md); }
.thread-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; }
.thread-body { flex: 1; min-width: 0; }
.thread-body h4 { font-size: 15px; font-weight: 600; margin: 0 0 4px; color: var(--ink); }
.thread-body .preview { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.thread-meta { display: flex; gap: 16px; font-size: 11px; color: var(--muted); margin-top: 8px; font-family: var(--mono); }
.thread-stat { font-size: 12px; color: var(--muted); text-align: center; flex-shrink: 0; padding-top: 4px; }
.thread-stat strong { display: block; font-size: 16px; color: var(--ink); }

.scanner-frame {
  width: 380px; max-width: 100%;
  margin: 24px auto;
  background: #0A1A2A; border-radius: 32px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  border: 14px solid #1a1a1a;
}
.scanner-screen { height: 600px; background: #0E2236; display: flex; flex-direction: column; color: #fff; }
.scanner-cam { flex: 1; background: #000; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.scanner-cam::after {
  content: ""; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=800&q=70') center/cover;
  opacity: 0.5;
}
.scanner-target { position: relative; z-index: 2; width: 200px; height: 200px; border: 3px solid var(--accent); border-radius: 24px; box-shadow: 0 0 0 999px rgba(0,0,0,0.4); }
.scanner-target::before, .scanner-target::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 80%; height: 2px; background: var(--accent); animation: scan-bar 2s linear infinite; }
.scanner-target::before { top: 50%; }
@keyframes scan-bar { 0% { top: 10%; opacity: 1; } 50% { top: 90%; opacity: 1; } 100% { top: 10%; opacity: 1; } }

.phone-frame { width: 280px; height: 580px; background: #0a1a2a; border-radius: 36px; padding: 12px; box-shadow: 0 24px 80px rgba(10,37,64,0.25); flex-shrink: 0; position: relative; }
.phone-frame::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 100px; height: 22px; background: #0a1a2a; border-radius: 12px; z-index: 2; }
.phone-screen { width: 100%; height: 100%; background: var(--cream); border-radius: 24px; overflow: hidden; }

