/* ============================================================
   HORIZON 2026 — Innovation & Design Summit
   Dark, premium, high-energy. Syne (display) + Inter (body).
   ============================================================ */

:root {
  --bg: #08080B;
  --bg-2: #0E0E13;
  --bg-3: #15151C;
  --card: #101017;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #F6F6F8;
  --muted: #9A9AA8;
  --muted-2: #6E6E7C;

  --violet: #8B5CF6;
  --pink: #EC4899;
  --amber: #F59E0B;
  --accent: #EC4899;
  --grad: linear-gradient(115deg, #8B5CF6 0%, #EC4899 52%, #F59E0B 100%);
  --grad-soft: linear-gradient(115deg, rgba(139, 92, 246, .18), rgba(236, 72, 153, .16), rgba(245, 158, 11, .14));

  --h: 'Syne', system-ui, sans-serif;
  --b: 'Inter', system-ui, sans-serif;
  --r: 16px;
  --r-lg: 26px;
  --maxw: 1200px;
  --nav-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--pink); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #26262f; border-radius: 8px; }

h1, h2, h3, h4 { font-family: var(--h); font-weight: 800; line-height: 1.03; letter-spacing: -0.02em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--b); font-weight: 600; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); opacity: .7; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--b); font-weight: 600; font-size: 15px; cursor: pointer;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s, border-color .2s, opacity .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(236, 72, 153, .5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px rgba(236, 72, 153, .6); }
.btn-ghost { background: rgba(255, 255, 255, .05); border-color: var(--line-2); color: #fff; backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255,255,255,.28); }
.btn-light { background: #fff; color: #0a0a0f; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(255,255,255,.35); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 16px; }

.pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 10px var(--amber); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(8, 8, 11, .8); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { font-family: var(--h); font-weight: 800; font-size: 22px; letter-spacing: .01em; display: flex; align-items: center; gap: 9px; }
.logo .mark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); display: inline-block; box-shadow: 0 0 20px -4px var(--pink); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14.5px; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; background: none; border: 0; color: #fff; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: calc(var(--nav-h) + 40px) 0 60px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(.9) contrast(1.05); }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,8,11,.72) 0%, rgba(8,8,11,.55) 40%, rgba(8,8,11,.92) 100%),
    radial-gradient(120% 90% at 80% 10%, rgba(139,92,246,.28), transparent 55%),
    radial-gradient(90% 70% at 10% 90%, rgba(236,72,153,.22), transparent 60%);
}
.hero-grain { position: absolute; inset: 0; z-index: 2; opacity: .05; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.6) .5px, transparent .5px); background-size: 3px 3px; }
.hero .wrap { position: relative; z-index: 3; width: 100%; }
.hero-loc { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero h1 { font-size: clamp(52px, 10vw, 132px); letter-spacing: -0.04em; line-height: .92; }
.hero h1 .l2 { display: block; }
.hero-sub { font-size: clamp(17px, 2.2vw, 22px); color: #d7d7de; max-width: 560px; margin: 26px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* countdown */
.countdown { display: flex; gap: 12px; margin-top: 54px; }
.cd-box { min-width: 82px; padding: 14px 10px; text-align: center; border: 1px solid var(--line); border-radius: 14px; background: rgba(14,14,19,.5); backdrop-filter: blur(10px); }
.cd-box .n { font-family: var(--h); font-weight: 800; font-size: 34px; font-variant-numeric: tabular-nums; }
.cd-box .l { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-top: 2px; }
.hero-stats { display: flex; gap: 40px; margin-top: 54px; flex-wrap: wrap; }
.hero-stats .s .n { font-family: var(--h); font-weight: 800; font-size: 30px; }
.hero-stats .s .l { font-size: 13px; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--h); font-weight: 700; font-size: 20px; color: var(--muted-2); display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: '✦'; color: var(--accent); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Section ---------- */
section { position: relative; }
.sec { padding: 110px 0; }
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(34px, 5vw, 58px); margin: 18px 0 16px; }
.sec-head p { color: var(--muted); font-size: 17px; }

/* ---------- About / stats ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-copy p { color: #c4c4cf; font-size: 17px; margin-bottom: 20px; }
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 34px; }
.stat { border: 1px solid var(--line); border-radius: var(--r); padding: 22px; background: var(--card); }
.stat .n { font-family: var(--h); font-weight: 800; font-size: 40px; }
.stat .n span { font-size: 24px; }
.stat .l { color: var(--muted); font-size: 14px; margin-top: 2px; }
.about-media { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,8,11,.55)); }
.about-badge { position: absolute; left: 20px; bottom: 20px; z-index: 2; }

/* ---------- Speakers ---------- */
.speakers { background: var(--bg-2); }
.spk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spk { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--bg-3); aspect-ratio: 3/4; transition: transform .3s, border-color .3s; }
.spk:hover { transform: translateY(-6px); border-color: var(--line-2); }
.spk img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25); transition: filter .4s, transform .5s; }
.spk:hover img { filter: grayscale(0); transform: scale(1.05); }
.spk-info { position: absolute; inset: auto 0 0 0; padding: 44px 18px 18px; background: linear-gradient(180deg, transparent, rgba(8,8,11,.55) 40%, rgba(8,8,11,.94)); }
.spk-info .nm { font-family: var(--h); font-weight: 700; font-size: 18px; }
.spk-info .rl { font-size: 13px; color: var(--muted); }
.spk-info .rl b { color: var(--accent); font-weight: 600; }
.spk-tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: rgba(8,8,11,.6); backdrop-filter: blur(6px); border: 1px solid var(--line-2); }

/* ---------- Agenda ---------- */
.day-tabs { display: inline-flex; gap: 6px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); margin-bottom: 40px; }
.day-tab { font-family: var(--b); font-weight: 600; font-size: 14px; color: var(--muted); padding: 10px 22px; border-radius: 999px; border: 0; background: none; cursor: pointer; transition: .2s; }
.day-tab.active { background: var(--grad); color: #fff; }
.agenda-list { border-top: 1px solid var(--line); }
.ag-row { display: grid; grid-template-columns: 130px 1fr auto; gap: 24px; align-items: center; padding: 22px 8px; border-bottom: 1px solid var(--line); transition: background .2s; }
.ag-row:hover { background: var(--bg-2); }
.ag-time { font-family: var(--h); font-weight: 700; font-size: 16px; color: #d7d7de; }
.ag-time span { display: block; font-family: var(--b); font-weight: 400; font-size: 12px; color: var(--muted-2); }
.ag-main .t { font-weight: 600; font-size: 17px; }
.ag-main .sp { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.track { font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: 999px; }
.track.design { background: rgba(139,92,246,.14); color: #b79dff; }
.track.tech { background: rgba(236,72,153,.14); color: #f9a8d0; }
.track.growth { background: rgba(245,158,11,.14); color: #fbcb6b; }
.track.keynote { background: #fff; color: #0a0a0f; }
.ag-day { display: none; }
.ag-day.active { display: block; }

/* ---------- Tickets ---------- */
.tickets { background: var(--bg-2); }
.tk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tk { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; background: var(--card); position: relative; transition: transform .3s, border-color .3s; }
.tk:hover { transform: translateY(-6px); }
.tk.featured { border-color: transparent; background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--grad) border-box; box-shadow: 0 30px 70px -30px rgba(236,72,153,.4); }
.tk-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.tk .name { font-family: var(--h); font-weight: 700; font-size: 21px; }
.tk .desc { color: var(--muted); font-size: 14px; margin: 6px 0 22px; min-height: 42px; }
.tk .price { display: flex; align-items: baseline; gap: 6px; }
.tk .price .cur { font-size: 22px; font-weight: 700; color: var(--muted); }
.tk .price .amt { font-family: var(--h); font-weight: 800; font-size: 52px; letter-spacing: -.03em; }
.tk .price .per { color: var(--muted); font-size: 14px; }
.tk .feats { list-style: none; margin: 26px 0 28px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.tk .feats li { display: flex; gap: 11px; font-size: 14.5px; color: #cfcfd8; }
.tk .feats li svg { flex-shrink: 0; margin-top: 3px; }
.tk .feats li.off { color: var(--muted-2); }

/* ---------- Venue ---------- */
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.venue-main { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 420px; }
.venue-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.venue-main .ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,8,11,.9)); }
.venue-main .info { position: absolute; left: 0; bottom: 0; padding: 34px; z-index: 2; }
.venue-main .info h3 { font-size: 30px; }
.venue-main .info p { color: var(--muted); margin-top: 6px; }
.venue-side { display: grid; grid-template-rows: 1fr auto; gap: 22px; }
.venue-photo { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 200px; }
.venue-photo img { width: 100%; height: 100%; object-fit: cover; }
.venue-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.vf { border: 1px solid var(--line); border-radius: var(--r); padding: 18px; background: var(--card); }
.vf .k { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.vf .v { font-family: var(--h); font-weight: 700; font-size: 17px; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none; border: 0; color: #fff; font-family: var(--b); font-weight: 600; font-size: 18px; text-align: left; padding: 24px 0; cursor: pointer; }
.faq-q .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: .25s; }
.faq-item.open .faq-q .ic { background: var(--grad); border-color: transparent; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; color: var(--muted); }
.faq-a p { padding: 0 0 24px; font-size: 15.5px; }

/* ---------- CTA band + Footer ---------- */
.cta-band { position: relative; border-radius: var(--r-lg); overflow: hidden; padding: 70px 40px; text-align: center; border: 1px solid var(--line); background: var(--grad-soft), var(--bg-2); }
.cta-band h2 { font-size: clamp(32px, 5vw, 56px); }
.cta-band p { color: #d0d0d8; max-width: 480px; margin: 16px auto 30px; }
footer { border-top: 1px solid var(--line); padding: 64px 0 34px; background: var(--bg); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.foot-grid h4 { font-family: var(--b); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); margin-bottom: 16px; }
.foot-grid a { display: block; color: var(--muted); font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.foot-grid a:hover { color: #fff; }
.foot-about p { color: var(--muted); font-size: 14.5px; margin: 14px 0 20px; max-width: 300px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center; color: var(--muted); }
.foot-social a:hover { color: #fff; border-color: var(--line-2); }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-2); font-size: 13.5px; }

/* ---------- Checkout ---------- */
.co-nav { position: sticky; top: 0; z-index: 50; height: var(--nav-h); display: flex; align-items: center; background: rgba(8,8,11,.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.co-wrap { max-width: 1120px; margin: 0 auto; padding: 40px 24px 80px; }
.co-head { margin: 8px 0 34px; }
.co-head h1 { font-size: clamp(30px, 4vw, 44px); }
.co-head p { color: var(--muted); margin-top: 8px; }
.co-grid { display: grid; grid-template-columns: 1.55fr .9fr; gap: 34px; align-items: start; }
.co-card { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card); padding: 28px; margin-bottom: 22px; }
.co-card h3 { font-size: 19px; display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.co-step { width: 26px; height: 26px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-family: var(--b); font-weight: 700; font-size: 13px; }
.tier-opts { display: flex; flex-direction: column; gap: 12px; }
.tier-opt { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r); cursor: pointer; transition: .2s; }
.tier-opt:hover { border-color: var(--line-2); }
.tier-opt.sel { border-color: transparent; background:
    linear-gradient(var(--bg-3), var(--bg-3)) padding-box, var(--grad) border-box; }
.tier-opt .radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line-2); flex-shrink: 0; position: relative; transition: .2s; }
.tier-opt.sel .radio { border-color: var(--pink); }
.tier-opt.sel .radio::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--grad); }
.tier-opt .to-main { flex: 1; }
.tier-opt .to-main .nm { font-weight: 600; }
.tier-opt .to-main .ds { font-size: 13px; color: var(--muted); }
.tier-opt .to-price { font-family: var(--h); font-weight: 700; font-size: 20px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 8px; }
.input { width: 100%; background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; color: #fff; font-family: var(--b); font-size: 15px; padding: 13px 15px; outline: none; transition: border .2s, box-shadow .2s; }
.input::placeholder { color: var(--muted-2); }
.input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(236,72,153,.18); }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239A9AA8' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row-3 { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.qty button { width: 44px; height: 46px; background: var(--bg-3); border: 0; color: #fff; font-size: 20px; cursor: pointer; }
.qty button:hover { background: #1c1c24; }
.qty input { width: 54px; height: 46px; text-align: center; background: none; border: 0; color: #fff; font-family: var(--h); font-weight: 700; font-size: 18px; }
.pay-brands { display: flex; gap: 8px; margin-left: auto; }
.pay-brands span { font-size: 11px; color: var(--muted-2); border: 1px solid var(--line); border-radius: 6px; padding: 3px 8px; font-weight: 600; }
.card-visual { position: relative; }
.card-chip { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); display: flex; gap: 4px; }
.card-chip i { width: 26px; height: 17px; border-radius: 3px; display: inline-block; }

/* order summary */
.summary { position: sticky; top: 100px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card); overflow: hidden; }
.summary-head { padding: 22px 24px; border-bottom: 1px solid var(--line); }
.summary-head .ev { font-family: var(--h); font-weight: 700; font-size: 18px; }
.summary-head .mt { font-size: 13px; color: var(--muted); }
.summary-body { padding: 20px 24px; }
.sum-row { display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; padding: 9px 0; color: #cfcfd8; }
.sum-row .lbl { color: var(--muted); }
.sum-line { border-top: 1px dashed var(--line); margin: 10px 0; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 8px; }
.sum-total .tl { font-weight: 600; }
.sum-total .tv { font-family: var(--h); font-weight: 800; font-size: 30px; }
.promo { display: flex; gap: 10px; margin: 14px 0 4px; }
.promo .input { flex: 1; }
.summary-foot { padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; color: var(--muted-2); font-size: 12.5px; }

/* ---------- Confirmation ---------- */
.conf { min-height: 100vh; display: grid; place-items: center; padding: 100px 24px 60px; position: relative; overflow: hidden; }
.conf-glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 50% at 50% 0%, rgba(139,92,246,.25), transparent 70%); }
.conf-inner { position: relative; z-index: 1; max-width: 560px; width: 100%; text-align: center; }
.check-badge { width: 76px; height: 76px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 26px; box-shadow: 0 0 50px -6px var(--pink); }
.conf h1 { font-size: clamp(34px, 6vw, 52px); }
.conf .sub { color: var(--muted); font-size: 17px; margin: 14px 0 34px; }
.ticket { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card); overflow: hidden; text-align: left; }
.ticket-top { padding: 26px 28px; background: var(--grad-soft); border-bottom: 1px dashed var(--line-2); position: relative; }
.ticket-top .ev { font-family: var(--h); font-weight: 800; font-size: 24px; }
.ticket-top .dt { color: var(--muted); font-size: 14px; margin-top: 4px; }
.ticket-body { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 26px 28px; align-items: center; }
.tkt-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.tkt-meta .k { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }
.tkt-meta .v { font-weight: 600; margin-top: 2px; }
.qr { width: 110px; height: 110px; border-radius: 12px; background: #fff; padding: 8px; }
.conf-actions { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.notch { position: absolute; width: 26px; height: 26px; border-radius: 50%; background: var(--bg); bottom: -13px; }
.notch.l { left: -13px; } .notch.r { right: -13px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-signin { display: none; }
  .nav-cta .btn-primary { display: none; }
  .hamburger { display: block; }
  .about-grid, .venue-grid, .co-grid { grid-template-columns: 1fr; }
  .tk-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .spk-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .summary { position: static; }
  .venue-side { grid-template-rows: auto; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .sec { padding: 74px 0; }
  .countdown { gap: 8px; }
  .cd-box { min-width: 66px; padding: 11px 6px; }
  .cd-box .n { font-size: 26px; }
  .ag-row { grid-template-columns: 1fr; gap: 8px; }
  .ag-row .track { justify-self: start; }
  .stat-row, .venue-facts, .row-2, .row-3, .tkt-meta { grid-template-columns: 1fr; }
  .spk-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }
