/* ============================================================
   CYBEAR Portal — Verified Events
   verified-events.css — Editorial marquee layout
   ============================================================
   Layout variants (future):
   'editorial'  — current: hero marquee + card grid
   'map'        — event pins on Leaflet map + side panel
   'list'       — dense chronological list view
   ============================================================ */

/* ── Page wrap ─────────────────────────────────────────────── */
.ve-wrap {
  margin-left: var(--nav-width);
  padding-top: var(--topbar-height);
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: radial-gradient(ellipse at 50% 0%, #091E2A 0%, #061318 55%);
}
.ve-body { flex: 1; padding: 28px 32px 60px; }

/* ── Topbar responsive (scoped to .ve-page so other pages are unaffected) ────
   nav.css hides .filter-pill at ≤1024px with !important — restore them here
   so the Available/Sponsored/etc. filters are always visible on this page.
   On narrow screens (≤640px): search takes full row 1, pills wrap to row 2.
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  body.ve-page .filter-pill { display: inline-flex !important; }
}

@media (max-width: 640px) {
  body.ve-page .topbar {
    height: auto;
    flex-wrap: wrap;
    padding: 7px 10px;
    gap: 5px;
    align-items: center;
  }
  body.ve-page .search-wrap {
    flex: 1 1 100%;
    max-width: none;
    margin-bottom: 0;
  }
  /* All 4 pills + count badge share row 2 */
  body.ve-page .filter-pill {
    font-size: 9px; padding: 2px 6px; height: 22px;
    letter-spacing: 0.02em;
  }
  body.ve-page .topbar-right { margin-left: auto; }
  /* padding-top = search row (~34+7+7) + pill row (~22+5+7) = ~82px, use 90px to be safe */
  body.ve-page .ve-wrap { padding-top: 90px; }
}

/* ── Page header ───────────────────────────────────────────── */
.ve-page-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px;
}
.ve-page-title {
  font-size: 18px; font-weight: 700; color: var(--text-primary);
  font-family: var(--font); letter-spacing: -0.01em;
}
.ve-page-sub {
  font-size: var(--text-sub); color: var(--text-dim);
  font-family: var(--font); margin-top: 1px; max-width: 520px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   HERO — Featured / next available event
   ══════════════════════════════════════════════════════════════ */
.ve-hero {
  position: relative;
  border-radius: 16px; overflow: hidden;
  background: rgba(8, 22, 30, 0.9);
  border: 1px solid rgba(155,197,61,0.2);
  display: grid;
  grid-template-columns: 1fr 292px;
  margin-bottom: 36px;
  transition: border-color 0.2s;
}
.ve-hero.ve-status-sponsored { border-color: rgba(249,169,67,0.2); }
.ve-hero.ve-status-coming-soon { border-color: rgba(45,161,196,0.2); }

/* Ambient glow behind hero */
.ve-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,197,61,0.07) 0%, transparent 65%);
  top: -260px; right: -160px;
  pointer-events: none; z-index: 0;
}
.ve-hero.ve-status-sponsored::before {
  background: radial-gradient(circle, rgba(249,169,67,0.07) 0%, transparent 65%);
}
.ve-hero.ve-status-coming-soon::before {
  background: radial-gradient(circle, rgba(45,161,196,0.07) 0%, transparent 65%);
}

/* ── Hero main (left) ──────────────────────────────────────── */
.ve-hero-main {
  padding: 36px 36px 36px 40px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.ve-hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--text-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
  font-family: var(--font);
}
.ve-hero.ve-status-sponsored .ve-hero-eyebrow { color: var(--gold-light); }
.ve-hero.ve-status-coming-soon .ve-hero-eyebrow { color: #2DA1C4; }
.ve-hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 22px; height: 2px; background: currentColor;
  flex-shrink: 0;
}
.ve-hero-city {
  font-size: 66px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 0.88;
  text-transform: uppercase; color: var(--text-primary);
  font-family: var(--font);
  margin-bottom: 10px;
}
.ve-hero-location {
  font-size: 13px; font-weight: 600;
  color: var(--text-dim); font-family: var(--font);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-top: 8px; margin-bottom: 4px;
}
.ve-hero-venue {
  font-size: 15px; font-weight: 500;
  color: var(--text-muted); font-family: var(--font);
  margin-bottom: 14px;
}
.ve-hero-date-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.ve-hero-date {
  font-size: 17px; font-weight: 700; color: var(--text-primary);
  font-family: var(--font); letter-spacing: 0.01em;
}
.ve-hero-day {
  font-size: var(--text-sub); color: var(--text-dim);
  font-family: var(--font);
}
.ve-hero-meta {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 20px;
}
.ve-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  letter-spacing: 0.02em; white-space: nowrap;
  font-family: var(--font);
}
.ve-chip svg { width: 10px; height: 10px; stroke: currentColor; fill: none; flex-shrink: 0; }
.ve-chip.ve-chip-ciso { border-color: rgba(155,197,61,0.2); color: var(--green); background: rgba(155,197,61,0.07); }
.ve-chip.ve-chip-type-dinner { border-color: rgba(249,169,67,0.2); color: var(--gold-light); background: rgba(249,169,67,0.07); }
.ve-chip.ve-chip-type-roundtable { border-color: rgba(45,161,196,0.2); color: #2DA1C4; background: rgba(45,161,196,0.07); }
.ve-chip.ve-chip-ambassador { border-color: rgba(255,255,255,0.09); }
.ve-hero-theme {
  font-size: var(--text-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold-mid);
  font-family: var(--font); margin-bottom: 8px;
}
.ve-hero-desc {
  font-size: var(--text-sub); color: var(--text-dim);
  line-height: 1.65; max-width: 560px; font-family: var(--font);
  margin-bottom: 20px;
}
.ve-hero-industries {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.ve-industry-tag {
  font-size: var(--text-label); font-weight: 600;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text-dim); font-family: var(--font);
  letter-spacing: 0.03em; text-transform: uppercase;
}

/* ── Hero booking panel (right) ────────────────────────────── */
.ve-hero-book {
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.22);
}
.ve-book-section-label {
  font-size: var(--text-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-dim);
  font-family: var(--font); margin-bottom: 16px;
}
.ve-book-tiers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.ve-book-tier {
  padding: 14px 16px; border-radius: 10px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.03);
  transition: border-color 0.15s, background 0.15s;
}
.ve-book-tier:hover { border-color: rgba(155,197,61,0.25); background: rgba(155,197,61,0.04); }
.ve-tier-name {
  font-size: var(--text-sub); font-weight: 700; color: var(--text-primary);
  font-family: var(--font); margin-bottom: 2px;
}
.ve-tier-price {
  font-size: 20px; font-weight: 800; color: var(--green);
  font-family: var(--font); letter-spacing: -0.02em; margin-bottom: 4px;
}
.ve-hero.ve-status-sponsored .ve-tier-price { color: var(--gold-light); }
.ve-tier-desc {
  font-size: var(--text-label); color: var(--text-dim);
  font-family: var(--font);
}
.ve-book-divider { height: 1px; background: var(--border); margin: 16px 0; }
.ve-book-terms { margin-bottom: 24px; }
.ve-book-terms ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.ve-book-terms li {
  font-size: 11px; color: var(--text-dim); font-family: var(--font);
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.4;
}
.ve-book-terms li::before {
  content: '•'; color: var(--text-dim);
  flex-shrink: 0; margin-top: 1px;
}
.ve-reserve-btn {
  width: 100%; height: 40px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border-radius: 10px; border: 1px solid rgba(155,197,61,0.35);
  background: rgba(155,197,61,0.12); color: var(--green);
  font-size: var(--text-sub); font-weight: 700; font-family: var(--font);
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.ve-reserve-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; flex-shrink: 0; }
.ve-reserve-btn:hover { background: rgba(155,197,61,0.2); border-color: rgba(155,197,61,0.55); }
.ve-reserve-btn:disabled,
.ve-reserve-btn.ve-btn-sponsored {
  background: rgba(249,169,67,0.08); border-color: rgba(249,169,67,0.2);
  color: var(--gold-light); cursor: default;
  opacity: 0.7;
}
.ve-reserve-btn.ve-btn-coming-soon {
  background: rgba(45,161,196,0.08); border-color: rgba(45,161,196,0.2);
  color: #2DA1C4; cursor: default; opacity: 0.7;
}

/* Staff create control in the PAGE HEADER (page-verified-events-2.js veRenderStaffControls).
   Keeps .ve-reserve-btn's green — this page's accent — but not its geometry or its type: that
   class is the full-width 40px uppercase CTA that fills a card's book panel, and reused up here
   it rendered a step too large on the scale (--text-sub) and shouty. A page-header action takes
   .btn-primary's shape (main.css): --text-note, 32px, sentence case, sized to its own content
   rather than stretched to the container. */
.ve-reserve-btn.ve-staff-add {
  width: auto; height: 32px; padding: 0 14px;
  border-radius: 8px; flex-shrink: 0;
  font-size: var(--text-note); text-transform: none;
}

/* Sponsored state overlay inside book panel */
.ve-book-sponsored-msg {
  text-align: center; padding: 20px 0;
  font-size: var(--text-sub); color: var(--gold-light);
  font-family: var(--font);
}
.ve-book-sponsored-msg svg { width: 28px; height: 28px; stroke: currentColor; fill: none; display: block; margin: 0 auto 8px; }

/* ══════════════════════════════════════════════════════════════
   SECTION HEADER — "Upcoming Events"
   ══════════════════════════════════════════════════════════════ */
.ve-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.ve-section-title {
  font-size: var(--text-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-dim); font-family: var(--font);
}
.ve-section-count {
  font-size: var(--text-label); color: var(--text-dim);
  font-family: var(--font);
}

/* ══════════════════════════════════════════════════════════════
   EVENT CARDS — Grid
   ══════════════════════════════════════════════════════════════ */
.ve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1300px) { .ve-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1050px) { .ve-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 740px)  { .ve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .ve-grid { grid-template-columns: 1fr; } }

/* ── Hero responsive ─────────────────────────────────────────────────────────
   Below 860px: hero stacks vertically (main content → booking panel)
   Below 600px: tighten padding and scale city name further
   ─────────────────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .ve-hero { grid-template-columns: 1fr; }
  .ve-hero-book {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 28px 28px;
    background: rgba(0,0,0,0.15);
  }
  .ve-book-tiers { flex-direction: row; gap: 10px; }
  .ve-book-tier  { flex: 1; }
  .ve-hero-city  { font-size: 52px; }
}

@media (max-width: 600px) {
  .ve-body { padding: 20px 16px 48px; }
  .ve-hero-main { padding: 24px 20px 20px; }
  .ve-hero-book { padding: 20px; }
  .ve-hero-city { font-size: 38px; }
  .ve-hero-date { font-size: 15px; }
  .ve-book-tiers { flex-direction: column; }
  .ve-book-tier  { flex: unset; }
}

@media (max-width: 860px) {
  [data-theme="light"] .ve-hero-book { background: rgba(0,0,0,0.04); }
}

.ve-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-top: 3px solid rgba(155,197,61,0.4);  /* status bar = top */
  border-radius: 12px; overflow: hidden;
  padding: 16px 16px 14px;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.ve-card:hover {
  border-color: rgba(155,197,61,0.35);
  border-top-color: rgba(155,197,61,0.7);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.ve-card.ve-card-sponsored {
  border-top-color: rgba(249,169,67,0.4);
  opacity: 0.82;
}
.ve-card.ve-card-sponsored:hover {
  border-color: rgba(249,169,67,0.3);
  border-top-color: rgba(249,169,67,0.65);
  opacity: 1;
}
.ve-card.ve-card-coming-soon {
  border-top-color: rgba(45,161,196,0.4);
}
.ve-card.ve-card-coming-soon:hover {
  border-color: rgba(45,161,196,0.3);
  border-top-color: rgba(45,161,196,0.65);
}

/* Card header row */
.ve-card-head {
  display: flex; align-items: flex-start;
  margin-bottom: 14px;
}
.ve-card-city {
  font-size: 17px; font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--text-primary);
  font-family: var(--font); line-height: 1.15;
}
.ve-card-state {
  font-size: var(--text-label); font-weight: 600; color: var(--text-dim);
  font-family: var(--font); letter-spacing: 0.06em;
  margin-top: 4px; margin-bottom: 8px;
}
.ve-status-badge {
  display: inline-block;
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
  font-family: var(--font); white-space: nowrap;
}
@media (max-width: 1024px) {
  .ve-status-badge {
    font-size: 8px; padding: 2px 6px; letter-spacing: 0.08em;
  }
}
.ve-status-badge.ve-badge-available {
  background: rgba(155,197,61,0.12); border: 1px solid rgba(155,197,61,0.3);
  color: var(--green);
}
.ve-status-badge.ve-badge-sponsored {
  background: rgba(249,169,67,0.1); border: 1px solid rgba(249,169,67,0.25);
  color: var(--gold-light);
}
.ve-status-badge.ve-badge-coming-soon {
  background: rgba(45,161,196,0.1); border: 1px solid rgba(45,161,196,0.25);
  color: #2DA1C4;
}

.ve-card-venue {
  font-size: var(--text-sub); color: var(--text-muted);
  font-family: var(--font); margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ve-card-date {
  font-size: var(--text-note); font-weight: 600; color: var(--text-muted);
  font-family: var(--font); margin-bottom: 14px;
}
.ve-card-meta {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.ve-card-meta .ve-chip { font-size: 10px; padding: 3px 8px; }

/* Card footer */
.ve-card-footer {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.ve-card-theme {
  font-size: 10px; color: var(--text-dim); font-family: var(--font);
  letter-spacing: 0.02em; line-height: 1.4;
  overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  flex: 1; margin-right: 10px;
}
.ve-card-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green); font-family: var(--font); white-space: nowrap; flex-shrink: 0;
  transition: opacity 0.15s;
}
.ve-card-cta svg { width: 10px; height: 10px; stroke: currentColor; fill: none; }
.ve-card:hover .ve-card-cta { opacity: 0.75; }
/* Internal-staff edit/archive controls on a card (event.verified.create only). */
.ve-staff-actions { display: inline-flex; gap: 6px; flex-shrink: 0; }
.ve-staff-icon { width: 26px; height: 26px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 6px; background: none; color: var(--gold-mid, #e6a545); cursor: pointer; }
.ve-staff-icon svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }
.ve-staff-icon:hover { border-color: var(--gold-mid, #e6a545); }
.ve-card.ve-card-sponsored .ve-card-cta { color: var(--gold-light); }
.ve-card.ve-card-coming-soon .ve-card-cta { color: #2DA1C4; }

/* Empty state */
.ve-empty {
  text-align: center; padding: 60px 0;
  font-size: var(--text-sub); color: var(--text-dim); font-family: var(--font);
}
.ve-empty svg { width: 32px; height: 32px; stroke: currentColor; fill: none; opacity: 0.3; display: block; margin: 0 auto 12px; }

/* ══════════════════════════════════════════════════════════════
   RESERVATION MODAL
   Uses global .cyber-modal (overlay) and .cyber-modal-box (box) from main.css
   for consistent background, border, fade transition, and light-theme handling.
   .ve-modal-box is a width modifier only.
   ══════════════════════════════════════════════════════════════ */
.ve-modal-box { max-width: 580px; }   /* narrows the global cyber-modal-box */
.ve-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1;
  /* `inherit` tracks .cyber-modal-box's own background, whatever it resolves to, which is
     the point: the box's light fill is set in TWO places at equal specificity (main.css
     #F0F4F6, nav.css rgba(235,240,243,0.99) — nav.css loads later and wins), so any
     hardcoded copy here silently drifts from the box. Inheriting cannot drift. */
  background: inherit;
}
/* Inside the demo the box is frosted, so inheriting it makes this sticky header
   translucent and body content scrolls visibly through it. Paint the frost's own tint
   fully opaque — scoped to the demo gate, so the non-demo header keeps inheriting. */
html.cy-demo .ve-modal-header { background: rgb(6,19,24); }
html.cy-demo[data-theme="light"] .ve-modal-header { background: rgb(218,226,230); }
.ve-modal-title {
  font-size: var(--text-label); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-mid); font-family: var(--font);
}
.ve-modal-body { padding: 24px; }

/* Modal event summary */
.ve-modal-event-summary {
  padding: 16px 18px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  margin-bottom: 24px;
}
.ve-modal-event-city {
  font-size: 28px; font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.02em; color: var(--text-primary);
  font-family: var(--font); line-height: 1; margin-bottom: 6px;
}
.ve-modal-event-venue {
  font-size: var(--text-sub); color: var(--text-muted);
  font-family: var(--font); margin-bottom: 10px;
}
.ve-modal-event-meta {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
}

/* Package selector */
.ve-modal-section-label {
  font-size: var(--text-label); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-dim); font-family: var(--font);
  margin-bottom: 12px;
}
.ve-package-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.ve-package-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 10px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.02);
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
  -webkit-user-select: none; user-select: none;
}
.ve-package-option:hover { border-color: rgba(155,197,61,0.3); background: rgba(155,197,61,0.04); }
.ve-package-option.ve-pkg-selected {
  border-color: rgba(155,197,61,0.5); background: rgba(155,197,61,0.08);
}
.ve-pkg-radio {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--text-dim);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s;
}
.ve-package-option.ve-pkg-selected .ve-pkg-radio { border-color: var(--green); }
.ve-pkg-radio::after {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); display: none;
}
.ve-package-option.ve-pkg-selected .ve-pkg-radio::after { display: block; }
.ve-pkg-info { flex: 1; }
.ve-pkg-name {
  font-size: var(--text-sub); font-weight: 700; color: var(--text-primary);
  font-family: var(--font); margin-bottom: 2px;
}
.ve-pkg-detail {
  font-size: var(--text-label); color: var(--text-dim); font-family: var(--font);
}
.ve-pkg-price {
  font-size: 20px; font-weight: 800; color: var(--green);
  font-family: var(--font); letter-spacing: -0.02em; flex-shrink: 0;
}

/* Terms */
.ve-modal-terms {
  padding: 14px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  margin-bottom: 24px;
}
.ve-modal-terms ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.ve-modal-terms li {
  font-size: 11.5px; color: var(--text-dim); font-family: var(--font);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.ve-modal-terms li::before { content: '•'; color: var(--text-dim); flex-shrink: 0; margin-top: 1px; }

/* Form */
.ve-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.ve-form-full { margin-bottom: 24px; }
.ve-form-group { display: flex; flex-direction: column; gap: 5px; }
.ve-form-label {
  font-size: var(--text-label); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-dim); font-family: var(--font);
}
.ve-form-input, .ve-form-textarea {
  width: 100%; padding: 9px 12px; border-radius: 8px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  color: var(--text-primary); font-size: var(--text-sub); font-family: var(--font);
  outline: none; transition: border-color 0.15s, background 0.15s;
  box-sizing: border-box;
}
.ve-form-input::placeholder, .ve-form-textarea::placeholder { color: var(--text-dim); }
.ve-form-input:focus, .ve-form-textarea:focus {
  border-color: var(--gold-mid); background: rgba(249,169,67,0.05);
}
.ve-form-textarea { resize: vertical; min-height: 80px; }

/* Modal footer */
.ve-modal-footer {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  padding: 18px 24px 24px;
  border-top: 1px solid var(--border);
}
.ve-modal-cancel {
  height: 36px; padding: 0 16px; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-dim); font-size: 11px; font-weight: 600;
  font-family: var(--font); letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.ve-modal-cancel:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }
.ve-modal-submit {
  height: 36px; padding: 0 20px; border-radius: 8px;
  border: 1px solid rgba(155,197,61,0.35); background: rgba(155,197,61,0.12);
  color: var(--green); font-size: 11px; font-weight: 700;
  font-family: var(--font); letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  transition: background 0.15s, border-color 0.15s;
}
.ve-modal-submit svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
.ve-modal-submit:hover { background: rgba(155,197,61,0.2); border-color: rgba(155,197,61,0.55); }

/* Success state in modal */
.ve-modal-success {
  text-align: center; padding: 40px 24px 48px;
}
.ve-modal-success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(155,197,61,0.12); border: 1px solid rgba(155,197,61,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.ve-modal-success-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; }
.ve-modal-success-title {
  font-size: 18px; font-weight: 800; color: var(--text-primary);
  font-family: var(--font); margin-bottom: 8px;
}
.ve-modal-success-msg {
  font-size: var(--text-sub); color: var(--text-dim);
  font-family: var(--font); line-height: 1.6; max-width: 340px; margin: 0 auto;
}

/* ── Light theme overrides ─────────────────────────────────── */
[data-theme="light"] .ve-wrap { background: #EEF2F4; }
[data-theme="light"] .ve-hero { background: rgba(255,255,255,0.85); border-color: rgba(74,122,26,0.25); }
[data-theme="light"] .ve-hero::before { background: radial-gradient(circle, rgba(74,122,26,0.06) 0%, transparent 65%); }
[data-theme="light"] .ve-hero-book { background: rgba(0,0,0,0.03); }
[data-theme="light"] .ve-book-tier { border-color: rgba(0,0,0,0.09); background: rgba(0,0,0,0.02); }
[data-theme="light"] .ve-book-tier:hover { border-color: rgba(74,122,26,0.3); }
[data-theme="light"] .ve-tier-price { color: var(--green); }
[data-theme="light"] .ve-chip { border-color: rgba(0,0,0,0.1); background: rgba(0,0,0,0.04); }
[data-theme="light"] .ve-card { background: rgba(255,255,255,0.7); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .ve-card:hover { background: rgba(255,255,255,0.9); border-color: rgba(74,122,26,0.3); }
/* .ve-modal-box's light-theme bg is handled by the global cyber-modal-box rules; the
   sticky .ve-modal-header inherits the box (see its rule above) EXCEPT inside the demo,
   where the box is frosted and the header paints an opaque tint of its own. */
[data-theme="light"] .ve-modal-event-summary { background: rgba(0,0,0,0.03); }
[data-theme="light"] .ve-form-input, [data-theme="light"] .ve-form-textarea { background: rgba(255,255,255,0.9); border-color: rgba(0,0,0,0.12); color: var(--text-primary); }
[data-theme="light"] .ve-form-input:focus, [data-theme="light"] .ve-form-textarea:focus { border-color: var(--gold-mid); }
[data-theme="light"] .ve-reserve-btn { border-color: rgba(74,122,26,0.35); color: var(--green); }
[data-theme="light"] .ve-card-cta { color: var(--green); }
[data-theme="light"] .ve-package-option { background: rgba(255,255,255,0.6); border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .ve-package-option.ve-pkg-selected { background: rgba(74,122,26,0.07); border-color: rgba(74,122,26,0.4); }
[data-theme="light"] .ve-modal-terms { background: rgba(0,0,0,0.02); }
