/* ============================================================
   MarqueAI Eventos — Design System
   Dark · premium · paleta fria (ciano → azul → violeta)
   ============================================================ */

:root {
  --bg:        #08080F;
  --bg-2:      #0C0D18;
  --surface:   #12131F;
  --surface-2: #171A2A;
  --elevated:  #1B1E30;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --text:      #F3F4FB;
  --muted:     #9CA0BD;
  --faint:     #686C87;
  --cyan:   #2DE2E6;
  --blue:   #4C7DFF;
  --violet: #9A6BFF;
  --magenta:#E26BD0;
  --accent: var(--blue);
  --grad: linear-gradient(115deg, var(--cyan) 0%, var(--blue) 48%, var(--violet) 100%);
  --grad-soft: linear-gradient(115deg, rgba(45,226,230,0.18), rgba(154,107,255,0.18));
  --glow-blue:   0 0 0 1px rgba(76,125,255,0.35), 0 8px 40px -8px rgba(76,125,255,0.45);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -24px rgba(0,0,0,0.7);
  --radius:   18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background:
    radial-gradient(60% 50% at 8% -5%, rgba(76,125,255,0.20), transparent 60%),
    radial-gradient(55% 45% at 100% 0%, rgba(154,107,255,0.18), transparent 55%),
    radial-gradient(50% 60% at 85% 95%, rgba(45,226,230,0.09), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: rgba(76,125,255,0.4); color:#fff; }

.font-display { font-family: 'Space Grotesk', sans-serif; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 12px; font-weight: 600; color: var(--muted);
}
.muted { color: var(--muted); }
.faint  { color: var(--faint); }
.mono-num { font-family:'Space Grotesk'; font-variant-numeric: tabular-nums; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============================================================ NAVBAR */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,18,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { height: 72px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 11px; cursor: pointer; flex-shrink:0; text-decoration:none; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 6px 20px -6px rgba(76,125,255,0.7);
  position: relative;
}
.brand-mark::after {
  content:''; position:absolute; inset:0; border-radius:10px;
  border:1px solid rgba(255,255,255,0.35); mix-blend-mode:overlay;
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 19px; letter-spacing: -0.01em;
}
.brand-name b { font-weight: 700; }
.brand-name span { color: var(--muted); font-weight: 500; }
.brand-logo { height: 36px; width: auto; display: block; }

.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-link {
  background: none; border: none; cursor: pointer; text-decoration:none;
  font-family: 'Manrope', inherit; font-size: 14.5px; font-weight: 600; color: var(--muted);
  padding: 9px 15px; border-radius: 10px; transition: 0.18s; white-space: nowrap; display:inline-block;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--text); background: rgba(255,255,255,0.07); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-search {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 11px; padding: 9px 14px; width: 220px; color: var(--faint);
  font-size: 14px; white-space: nowrap; overflow: hidden;
}
.nav-search svg { width: 16px; height: 16px; flex-shrink:0; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink:0;
  background: linear-gradient(135deg, #2a2d44, #3a2d5a);
  border: 1px solid var(--line-2); display:grid; place-items:center;
  font-family:'Space Grotesk'; font-weight:600; font-size:14px; color:var(--text); cursor:pointer;
}

/* ---- Buttons ---- */
.btn {
  font-family: inherit; font-weight: 600; font-size: 15px; cursor: pointer;
  border: none; border-radius: 12px; padding: 13px 22px;
  display: inline-flex; align-items: center; justify-content:center; gap: 9px;
  transition: 0.2s; white-space: nowrap; text-decoration:none;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--grad); color: #08080F; font-weight: 700; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -10px rgba(76,125,255,0.7); }
.btn-ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--line-2); background: var(--elevated); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* ---- Chips ---- */
.chip {
  font-family:'Space Grotesk'; font-size: 13px; font-weight: 500;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--muted); cursor: pointer; transition: 0.18s; white-space:nowrap;
  display:inline-flex; align-items:center; gap:7px;
  text-decoration: none;
}
.chip:hover { border-color: var(--line-2); color: var(--text); }
.chip.active { background: rgba(76,125,255,0.14); border-color: rgba(76,125,255,0.5); color: #cdd8ff; }

/* ---- Tags ---- */
.tag {
  font-family:'Space Grotesk'; font-size: 11.5px; font-weight: 600;
  letter-spacing:.04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 7px; display:inline-flex; align-items:center; gap:6px;
}
.tag-show     { background: rgba(226,107,208,0.16); color: #f3a6e6; }
.tag-corrida  { background: rgba(45,226,230,0.14);  color: #6ef0f3; }
.tag-workshop { background: rgba(255,176,84,0.15);  color: #ffc680; }
.tag-curso    { background: rgba(76,125,255,0.16);  color: #9db4ff; }
.tag-festival { background: rgba(154,107,255,0.18); color: #c4a6ff; }
.tag-teatro   { background: rgba(120,220,160,0.14); color: #8ee6b4; }
.tag-default  { background: rgba(76,125,255,0.16);  color: #9db4ff; }

/* ---- Poster gradients ---- */
.poster { position: relative; overflow: hidden; background: #15131f; }
.poster::after {
  content:''; position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; pointer-events:none;
}
.p-show     { background: radial-gradient(120% 100% at 0% 0%, #ff5fa2 0%, #7b2ff7 55%, #150a2e 100%); }
.p-corrida  { background: radial-gradient(120% 100% at 100% 0%, #2de2e6 0%, #2b7cff 50%, #081a2e 100%); }
.p-workshop { background: radial-gradient(120% 100% at 0% 100%, #ffb454 0%, #ff5f8f 60%, #2a0e2a 100%); }
.p-curso    { background: radial-gradient(120% 100% at 100% 0%, #4c7dff 0%, #6a3fd6 55%, #0a0e2e 100%); }
.p-festival { background: radial-gradient(110% 100% at 50% 0%, #9a6bff 0%, #e26bd0 50%, #2a0e3a 100%); }
.p-teatro   { background: radial-gradient(120% 100% at 0% 0%, #34e89e 0%, #0f9b8e 55%, #07221f 100%); }
.p-palestra { background: radial-gradient(120% 100% at 100% 0%, #4c7dff 0%, #6a3fd6 55%, #0a0e2e 100%); }
.p-esporte  { background: radial-gradient(120% 100% at 0% 100%, #ffb454 0%, #ff5f8f 60%, #2a0e2a 100%); }

.divider { height:1px; background: var(--line); border:none; }

/* ============================================================ SCREENS */
.foot-space { height: 90px; }

.sec-head { display:flex; align-items:flex-end; justify-content:space-between; margin: 0 auto 22px; padding-top: 6px; }
.sec-head h2 { font-size: 27px; font-weight: 700; letter-spacing: -0.02em; }
.link-arrow {
  background:none;border:none;cursor:pointer;color:var(--muted);font-family:'Space Grotesk';
  font-weight:600;font-size:14px;display:inline-flex;align-items:center;gap:7px;transition:.18s;
  text-decoration:none;
}
.link-arrow:hover { color:var(--text); }
.link-arrow svg { width:16px;height:16px; }

/* ============================================================ HOME HERO */
.hero {
  display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px;
  align-items:center; padding: 64px 28px 54px;
}
.hero-loc {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--surface); border:1px solid var(--line);
  padding:8px 14px; border-radius:999px; font-size:13.5px; font-weight:600; color:var(--muted);
  font-family:'Space Grotesk';
}
.hero-loc svg { width:15px;height:15px;color:var(--cyan); }
.hero-loc .chev { width:14px;height:14px;color:var(--faint); }
.hero-title {
  font-size: 62px; line-height: 1.02; letter-spacing: -0.035em; font-weight: 700;
  margin: 22px 0 18px;
}
.hero-sub { font-size: 18px; color: var(--muted); max-width: 460px; line-height:1.55; }
.hero-actions { display:flex; gap:13px; margin-top: 30px; }
.hero-stats { display:flex; align-items:center; gap:26px; margin-top: 44px; }
.stat-n { font-size: 26px; font-weight: 700; letter-spacing:-0.02em; }
.stat-l { font-size: 13px; color: var(--faint); margin-top:2px; }
.stat-sep { width:1px; height:34px; background: var(--line); }

/* Spotlight card */
.spotlight { cursor:pointer; text-decoration:none; display:block; }
.spotlight-art {
  border-radius: var(--radius-lg); aspect-ratio: 4/4.3;
  box-shadow: var(--shadow-card); border:1px solid var(--line-2);
  display:flex; flex-direction:column; justify-content:flex-end;
  transition:.3s; position:relative;
}
.spotlight:hover .spotlight-art { transform: translateY(-4px); box-shadow: 0 40px 80px -30px rgba(123,47,247,0.6); }
.spotlight-tag { position:absolute; top:20px; left:20px; }
.spotlight-date {
  position:absolute; top:18px; right:20px; text-align:center;
  background: rgba(8,8,15,0.55); backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,0.18); border-radius:14px; padding:8px 13px; color:#fff;
}
.spotlight-date .d-day { font-size:24px; font-weight:700; display:block; line-height:1; }
.spotlight-date .d-mon { font-size:11px; letter-spacing:.12em; opacity:.85; }
.spotlight-meta {
  position:relative; z-index:1; padding: 26px;
  background: linear-gradient(to top, rgba(5,4,12,0.92) 12%, rgba(5,4,12,0.4) 60%, transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.spotlight-flag {
  display:inline-block; font-family:'Space Grotesk'; font-size:12px; font-weight:600;
  color:#ffd0a8; background:rgba(255,120,80,0.16); border:1px solid rgba(255,150,100,0.3);
  padding:5px 11px; border-radius:999px; margin-bottom:13px;
}
.spotlight-meta h3 { font-size: 32px; line-height:1.04; letter-spacing:-0.02em; font-weight:700; color:#fff; }
.spotlight-info { display:flex; align-items:center; gap:9px; color:rgba(255,255,255,0.72); font-size:14.5px; margin-top:10px; white-space:nowrap; }
.spotlight-info i { color:rgba(255,255,255,0.4); font-style:normal; }
.spotlight-foot { display:flex; align-items:center; justify-content:space-between; margin-top:22px; }
.sp-from { font-size:12px; display:block; color:rgba(255,255,255,0.55); }
.sp-price { font-size:24px; font-weight:700; color:#fff; }
.sp-btn { pointer-events:none; }

/* Chips + filter bar */
.cat-row { display:flex; gap:10px; padding-top:8px; padding-bottom:8px; flex-wrap:wrap; }
.filterbar {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:18px; padding-bottom:30px; margin-bottom: 8px;
  border-bottom:1px solid var(--line);
}
.filter-left { display:flex; gap:10px; flex-wrap:wrap; }
.filter-pill {
  font-family:'Manrope'; font-size:13.5px; font-weight:600; color:var(--text);
  background: var(--surface-2); border:1px solid var(--line); cursor:pointer;
  padding:10px 15px; border-radius:11px; display:inline-flex; align-items:center; gap:8px; transition:.18s;
}
.filter-pill:hover { border-color:var(--line-2); }
.filter-pill b { color:var(--faint); font-weight:500; }
.filter-pill svg { width:15px;height:15px;color:var(--cyan); }
.filter-right { font-size:14px; color:var(--muted); }
.filter-right b { color:var(--text); font-family:'Space Grotesk'; }

/* Event cards */
.grid-events { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ecard {
  background: var(--surface); border:1px solid var(--line); border-radius: var(--radius);
  overflow:hidden; cursor:pointer; transition:.24s; display:flex; flex-direction:column;
  text-decoration:none; color:inherit;
}
.ecard:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.8); }
.ecard-art { aspect-ratio: 16/10; position:relative; display:block; }
.ecard-tag { position:absolute; top:14px; left:14px; }
.ecard-fav {
  position:absolute; top:12px; right:12px; width:34px;height:34px; border-radius:50%;
  background: rgba(8,8,15,0.45); backdrop-filter: blur(6px); border:1px solid rgba(255,255,255,0.16);
  color:#fff; cursor:pointer; display:grid; place-items:center; transition:.18s;
}
.ecard-fav svg { width:17px;height:17px; }
.ecard-date {
  position:absolute; bottom:14px; right:14px; text-align:center; color:#fff;
  background: rgba(8,8,15,0.5); backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,0.16); border-radius:12px; padding:6px 11px;
}
.ecard-date .d-day { font-size:19px; font-weight:700; display:block; line-height:1; }
.ecard-date .d-mon { font-size:10px; letter-spacing:.1em; opacity:.85; }
.ecard-body { padding: 17px 18px 18px; display:flex; flex-direction:column; flex:1; }
.ecard-title { font-size:19px; font-weight:600; letter-spacing:-0.01em; line-height:1.2; }
.ecard-where { display:flex; align-items:center; gap:7px; color:var(--muted); font-size:13.5px; margin-top:9px; }
.ecard-where svg { width:14px;height:14px;flex-shrink:0;color:var(--faint); }
.ecard-tags { display:flex; gap:7px; flex-wrap:wrap; margin-top:13px; }
.mini-tag {
  font-family:'Space Grotesk'; font-size:11.5px; font-weight:500; color:var(--muted);
  background: var(--surface-2); border:1px solid var(--line); padding:4px 9px; border-radius:7px;
}
.ecard-foot { display:flex; align-items:flex-end; justify-content:space-between; margin-top:auto; padding-top:16px; }
.ecard-from { font-size:11px; display:block; color:var(--faint); }
.ecard-price { font-size:19px; font-weight:700; }
.ecard-time { font-size:12px; color:var(--faint); }

/* Category grid */
.cat-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.cat-card {
  border-radius: var(--radius); aspect-ratio: 5/3.4; cursor:pointer;
  display:flex; align-items:flex-end; transition:.24s; border:1px solid var(--line-2);
  text-decoration:none;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card-in {
  width:100%; padding:18px;
  background: linear-gradient(to top, rgba(5,4,12,0.85), transparent 75%);
  border-radius: var(--radius);
}
.cat-card-in h3 { font-size:21px; font-weight:700; color:#fff; }
.cat-card-in span { font-size:13px; color:rgba(255,255,255,0.7); font-family:'Space Grotesk'; }

/* ============================================================ DETAIL PAGE */
.back-link {
  background:none;border:none;cursor:pointer;color:var(--muted);font-family:'Space Grotesk';
  font-weight:600;font-size:14.5px;display:inline-flex;align-items:center;gap:6px;transition:.18s;
  text-decoration:none;
}
.back-link:hover { color:var(--text); }
.back-link svg { width:18px;height:18px; }
.round-btn {
  width:42px;height:42px;border-radius:50%;cursor:pointer;
  background:rgba(8,8,15,0.4);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.2);color:#fff;display:grid;place-items:center;transition:.18s;
}
.round-btn:hover { background:rgba(8,8,15,0.7); }
.round-btn svg { width:19px;height:19px; }

.dt-back { display:flex; align-items:center; gap:18px; padding-top:26px; padding-bottom:20px; }
.crumb { font-size:13px; font-family:'Space Grotesk'; color:var(--muted); }
.crumb span { color:var(--faint); margin:0 7px; }
.crumb b { color:var(--text); font-weight:600; }

.dt-hero {
  border-radius: var(--radius-lg); height: 420px; border:1px solid var(--line-2);
  display:flex; flex-direction:column; justify-content:space-between; box-shadow: var(--shadow-card);
}
.dt-hero-top { display:flex; align-items:flex-start; justify-content:space-between; padding:22px; position:relative; z-index:1; }
.dt-hero-actions { display:flex; gap:10px; }
.dt-hero-meta {
  position:relative; z-index:1; padding:34px;
  background: linear-gradient(to top, rgba(5,4,12,0.94) 8%, rgba(5,4,12,0.35) 55%, transparent);
  border-radius:0 0 var(--radius-lg) var(--radius-lg);
}
.dt-hero-flag {
  display:inline-block; font-family:'Space Grotesk'; font-size:13px; font-weight:600;
  color:#ffd0a8; background:rgba(255,120,80,0.18); border:1px solid rgba(255,150,100,0.35);
  padding:6px 13px; border-radius:999px; margin-bottom:15px;
}
.dt-hero-flag.green { color:#8ee6b4; background:rgba(120,220,160,0.16); border-color:rgba(120,220,160,0.35); }
.dt-hero-meta h1 { font-size:44px; line-height:1.04; letter-spacing:-0.025em; font-weight:700; max-width:760px; }
.dt-hero-row { display:flex; flex-wrap:wrap; gap:24px; margin-top:18px; }
.dt-hero-row span { display:inline-flex; align-items:center; gap:9px; color:#d6d8ea; font-size:15px; font-weight:500; }
.dt-hero-row svg { width:18px;height:18px;color:var(--cyan); flex-shrink:0; }

.dt-grid { display:grid; grid-template-columns: 1fr 384px; gap:42px; align-items:start; margin-top:44px; }
.dt-main { display:flex; flex-direction:column; gap:42px; }
.dt-sec h2 { font-size:23px; font-weight:700; letter-spacing:-0.015em; margin-bottom:16px; }
.dt-sec p { color:var(--muted); font-size:16px; line-height:1.65; max-width:680px; }
.dt-sec p b { color:var(--text); }

.info-chips { display:flex; flex-wrap:wrap; gap:11px; margin-top:22px; }
.info-chip {
  display:flex; flex-direction:column; gap:3px; background:var(--surface); border:1px solid var(--line);
  border-radius:13px; padding:12px 16px; font-size:14.5px; font-weight:600;
}
.info-chip b { font-size:11.5px; font-weight:600; color:var(--faint); text-transform:uppercase; letter-spacing:.06em; font-family:'Space Grotesk'; }

.dt-org { display:flex; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:20px 22px; }
.org-av { width:52px;height:52px;border-radius:14px;background:var(--grad);display:grid;place-items:center;font-family:'Space Grotesk';font-weight:700;font-size:22px;color:#08080F;flex-shrink:0; }
.org-info { display:flex; flex-direction:column; gap:2px; }
.org-info .org-label { font-size:12.5px; color:var(--muted); }
.org-info b { font-size:17px; }
.org-meta { font-size:13px; color:var(--faint); font-family:'Space Grotesk'; }

/* Ticket purchase box */
.dt-aside { position:sticky; top:92px; }
.ticket-box { background:var(--surface); border:1px solid var(--line-2); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-card); }
.tb-head { display:flex; align-items:flex-end; justify-content:space-between; padding-bottom:18px; border-bottom:1px solid var(--line); }
.tb-head .faint { font-size:12px; }
.tb-price { font-size:30px; font-weight:700; }
.tb-left { font-size:12.5px; color:#ffc680; background:rgba(255,176,84,0.13); padding:5px 10px; border-radius:8px; }
.tb-free { font-size:12.5px; color:#8ee6b4; background:rgba(120,220,160,0.13); padding:5px 10px; border-radius:8px; }
.tb-list { display:flex; flex-direction:column; gap:10px; margin:18px 0; }
.tt { display:flex; align-items:center; gap:13px; padding:13px 14px; border:1px solid var(--line); border-radius:13px; cursor:pointer; transition:.16s; position:relative; }
.tt:hover { border-color:var(--line-2); }
.tt.active { border-color:rgba(76,125,255,0.6); background:rgba(76,125,255,0.08); }
.tt-radio { width:19px;height:19px;border-radius:50%;border:2px solid var(--faint); flex-shrink:0; position:relative; transition:.16s; }
.tt.active .tt-radio { border-color:var(--blue); }
.tt.active .tt-radio::after { content:''; position:absolute; inset:3px; border-radius:50%; background:var(--blue); }
.tt-info { display:flex; flex-direction:column; gap:1px; flex:1; }
.tt-info b { font-size:15px; }
.tt-info span { font-size:12.5px; color:var(--muted); }
.tt-price { font-size:16px; font-weight:700; font-family:'Space Grotesk'; }
.tt.soldout { opacity:.45; cursor:not-allowed; }

.tb-qty { display:flex; align-items:center; justify-content:space-between; padding:6px 0 18px; font-size:14.5px; font-weight:600; }
.stepper { display:flex; align-items:center; gap:0; border:1px solid var(--line); border-radius:11px; overflow:hidden; }
.stepper button { width:38px;height:38px;background:var(--surface-2);border:none;color:var(--text);font-size:18px;cursor:pointer;transition:.15s; }
.stepper button:hover { background:var(--elevated); }
.stepper b { width:44px; text-align:center; font-size:16px; font-family:'Space Grotesk'; }

.tb-divider { height:1px; background:var(--line); margin:4px 0 18px; }

/* Customer form inside ticket box */
.tb-form { display:flex; flex-direction:column; gap:12px; margin-top:4px; }
.tb-field { display:flex; flex-direction:column; gap:7px; }
.tb-field label { font-size:12px; font-weight:600; color:var(--faint); text-transform:uppercase; letter-spacing:.06em; font-family:'Space Grotesk'; }
.tb-field input {
  font-family:'Manrope'; font-size:14.5px; color:var(--text); font-weight:500;
  background:var(--bg-2); border:1px solid var(--line); border-radius:11px; padding:12px 14px; transition:.16s;
  width:100%;
}
.tb-field input:focus { outline:none; border-color:rgba(76,125,255,0.6); background:#0e1020; }
.tb-field input::placeholder { color:var(--faint); }

.tb-total { display:flex; align-items:center; justify-content:space-between; padding:16px 0; border-top:1px solid var(--line); margin-bottom:8px; }
.tb-total span { font-size:15px; font-weight:600; }
.tb-total-v { font-size:24px; font-weight:700; font-family:'Space Grotesk'; }
.tb-safe { display:flex; align-items:center; gap:8px; justify-content:center; color:var(--faint); font-size:12px; margin-top:14px; }
.tb-safe svg { width:15px;height:15px;color:#8ee6b4; flex-shrink:0; }

/* Alerts */
.alert-error { background:rgba(226,107,107,0.1); border:1px solid rgba(226,107,107,0.3); border-radius:12px; padding:14px 16px; font-size:14px; color:#f3a6a6; margin-bottom:16px; }
.alert-success { background:rgba(120,220,160,0.1); border:1px solid rgba(120,220,160,0.3); border-radius:12px; padding:14px 16px; font-size:14px; color:#8ee6b4; margin-bottom:16px; }

/* Footer */
.site-footer { border-top:1px solid var(--line); margin-top:80px; padding:40px 0; }
.site-footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.site-footer p { font-size:13px; color:var(--faint); }

/* ============================================================ TICKET CARD (confirmation page) */
.ticket-card {
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
  align-items:stretch;
  background:var(--bg-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  overflow:hidden;
}
.ticket-qr-wrap {
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius:8px;
  padding:8px;
  flex-shrink:0;
  width:140px;
  height:140px;
}
.ticket-qr-wrap svg { display:block; width:124px; height:124px; }
.ticket-info { display:flex; flex-direction:column; justify-content:center; gap:0; min-width:0; }
.ticket-name { font-size:15px; font-weight:700; margin-bottom:2px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.ticket-meta { font-size:12px; color:var(--muted); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.ticket-divider { height:1px; background:var(--line); margin:12px 0; }
.ticket-code-row { display:flex; align-items:center; justify-content:space-between; gap:8px; }
.ticket-code-label { font-size:10px; color:var(--faint); text-transform:uppercase; letter-spacing:.06em; font-weight:600; font-family:'Space Grotesk'; margin-bottom:3px; }
.ticket-code-val { font-size:15px; font-weight:700; color:var(--cyan); letter-spacing:.06em; }
.ticket-copy-btn {
  flex-shrink:0;
  background:transparent;
  border:1px solid var(--line);
  border-radius:6px;
  padding:6px;
  cursor:pointer;
  color:var(--muted);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:border-color .15s, color .15s;
}
.ticket-copy-btn:hover { border-color:var(--cyan); color:var(--cyan); }
.ticket-copy-btn--copied { border-color:#8ee6b4; color:#8ee6b4; }
.ticket-hint { font-size:11px; color:var(--faint); margin-top:8px; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .hero { grid-template-columns:1fr; gap:40px; padding-top:48px; }
  .spotlight { max-width:440px; }
  .hero-title { font-size:54px; }
  .grid-events { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .dt-grid { grid-template-columns:1fr; }
  .dt-aside { position:static; }
}
@media (max-width: 760px) {
  .nav-links, .nav-search { display:none; }
  .wrap { padding:0 18px; }
  .hero-title { font-size:40px; }
  .hero-sub { font-size:16px; }
  .hero-stats { gap:18px; }
  .grid-events { grid-template-columns: 1fr; }
  .sec-head h2 { font-size:23px; }
  .dt-hero { height:auto; min-height:300px; }
  .dt-hero-meta h1 { font-size:28px; }
  .dt-hero-row { gap:14px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .ticket-card { grid-template-columns:1fr; }
  .ticket-qr-wrap { width:100%; height:auto; padding:16px; }
  .ticket-qr-wrap svg { width:160px; height:160px; }
}
