/* HONDA DIGICON 2026 — PIXEL PLAYFUL v8
   Tech-conference style · Honda Red #E60012 · DIGICON Blue #0068FF · White #FAFAF9 */

:root {
  /* brand */
  --red:      #E60012;
  --red-dk:   #C4000F;
  --orange:   #F5A623;
  --blue:     #0068FF;
  --blue-dk:  #0052CC;
  --paper:    #FAFAF9;
  --paper-2:  #F1F1EF;
  --white:    #FFFFFF;
  /* tints */
  --red-t:    #FDEAEB;
  --blue-t:   #E8F1FF;
  --orange-t: #FEF3DF;
  --green-t:  #E7F6EC;
  --purple-t: #F1EAFB;
  /* neutrals */
  --ink:      #16181D;
  --ink-2:    #4B5563;
  --ink-3:    #9CA3AF;
  --line:     rgba(22,24,29,.09);
  --line-soft:rgba(22,24,29,.06);
  /* fx */
  --ease: cubic-bezier(.16,1,.3,1);
  --t: 200ms;
  --pad: clamp(4rem,7vw,6.5rem);
  --shadow-card: 0 1px 2px rgba(22,24,29,.04), 0 8px 24px rgba(22,24,29,.06);
  --r-lg: 20px;
  --r-md: 14px;
  /* compat aliases (register/admin/ticket pages) */
  --dark-card:        #FFFFFF;
  --dark-border:      rgba(22,24,29,.1);
  --dark-border-hover:rgba(22,24,29,.22);
  --dark-raised:      #FFFFFF;
  --dark-raised-2:    #F5F5F4;
  --dark-2:           #FFFFFF;
  --text-muted:       #4B5563;
  --text-dim:         #9CA3AF;
  --red-dark:         #C4000F;
  --red-glow:         rgba(230,0,18,.2);
  --dur-fast:         160ms;
  --dur-base:         220ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
[id] { scroll-margin-top: 72px; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2.5rem); }

/* ── REVEAL ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.reveal.revealed { opacity: 1; transform: none; }

/* ── PIXEL MOTIF ─────────────────────────────── */
/* dissolving pixels flying up-right, like the DIGICON "N" */
.pxa { position: relative; display: inline-block; width: 12px; height: 12px; background: var(--red); margin-left: 16px; vertical-align: super; }
.pxa::before { content: ''; position: absolute; width: 9px; height: 9px; background: var(--blue); left: 16px; top: -14px; }
.pxa::after  { content: ''; position: absolute; width: 6px; height: 6px; background: var(--orange); left: 30px; top: -26px; }
.pxa-blue { background: var(--blue); }
.pxa-blue::before { background: var(--red); }
@media (max-width: 640px) { .pxa { display: none; } }
/* corner pixel cluster decoration */
.px-corner { position: absolute; width: 14px; height: 14px; pointer-events: none; }
.px-corner::before, .px-corner::after { content: ''; position: absolute; }

/* ── NAVBAR ──────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem,4vw,2.5rem); z-index: 200;
  transition: background .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(250,250,249,.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 12px rgba(22,24,29,.04);
}
.nav-brand { display: flex; align-items: center; gap: .5rem; }
.nav-logo { height: 38px; width: auto; display: block; }
@media (max-width: 480px) { .nav-logo { height: 32px; } }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 13px; font-weight: 600; color: var(--ink-2); transition: color var(--t); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { background: var(--red) !important; color: #fff !important; padding: .45rem 1.1rem; border-radius: 100px; font-size: 13px; font-weight: 700; transition: background var(--t) !important; }
.nav-cta:hover { background: var(--red-dk) !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; align-items: center; justify-content: center;
  background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
}
.nav-burger span { display: block; width: 16px; height: 1.5px; background: var(--ink-2); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--ink); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--ink); }
.nav-mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(250,250,249,.98); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line-soft);
  padding: 1rem 1.25rem 1.5rem; flex-direction: column; gap: .25rem; z-index: 195;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  pointer-events: none;
}
.nav-mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-mobile-menu a { display: block; padding: .8rem 1rem; font-size: 15px; font-weight: 600; color: var(--ink-2); border-radius: 8px; transition: color var(--t), background var(--t); }
.nav-mobile-menu a:hover { color: var(--ink); background: rgba(22,24,29,.04); }
.nav-mobile-menu .nav-cta { margin-top: .5rem; text-align: center; }
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-mobile-menu { display: flex; }
  .nav-links { display: none; }
}

/* ── HERO — official key visual ──────────────── */
.hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--paper);
}
.hero-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(250,250,249,.55) 55%, rgba(250,250,249,.92) 100%);
  z-index: 1; pointer-events: none;
}
.hero-bottom {
  position: relative; z-index: 2; width: 100%;
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: 0 clamp(1.25rem,4vw,2.5rem) clamp(3rem,6vw,4.5rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }
.hero-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 1.75rem; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 100px;
  padding: .45rem 1rem; font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.hero-chip i { color: var(--red); font-size: 12px; }
.hero-chip:nth-child(even) i { color: var(--blue); }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hero-cap-alert {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red-t); border: 1px solid rgba(230,0,18,.2);
  color: var(--red-dk); border-radius: 8px; padding: .6rem 1rem;
  font-size: 12.5px; font-weight: 600; margin-top: 1.25rem;
}
.hero-logo { display: none; }
@media (max-width: 900px) {
  /* portrait: 16:9 video crops the baked-in logo — swap to gradient bg + PNG logo */
  .hero { justify-content: center; }
  .hero-video-bg { display: none; }
  .hero::after { display: none; }
  .hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 70% 45% at 0% 85%,  rgba(230,0,18,.14)  0%, transparent 65%),
      radial-gradient(ellipse 70% 45% at 100% 85%, rgba(0,104,255,.16) 0%, transparent 65%),
      radial-gradient(ellipse 90% 40% at 50% 100%, rgba(255,255,255,.9) 0%, transparent 70%);
  }
  .hero-logo { display: block; width: min(300px, 78vw); margin: 0 auto 2.25rem; }
  .hero-bottom { padding-bottom: 0; padding-top: 4.5rem; }
}
@media (max-width: 540px) {
  .hero-actions { flex-direction: column; }
  .hero-actions > * { width: 100%; justify-content: center; }
}

/* ── TICKER ──────────────────────────────────── */
.signal-band { overflow: hidden; background: linear-gradient(90deg, var(--red) 0%, #8A34B8 50%, var(--blue) 100%); padding: 11px 0; }
.signal-inner { display: flex; width: max-content; animation: tickerScroll 28s linear infinite; }
.signal-inner:hover { animation-play-state: paused; }
.signal-item {
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.92); white-space: nowrap; padding: 0 1.5rem;
  display: flex; align-items: center; gap: .5rem;
}
.signal-sep { color: rgba(255,255,255,.45); font-size: 5px; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── COUNTDOWN BOARD ─────────────────────────── */
.board { background: var(--white); padding: var(--pad) 0; border-bottom: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.board-deco-l, .board-deco-r { position: absolute; top: 20%; width: 12px; height: 12px; pointer-events: none; opacity: .9; }
.board-deco-l { left: 4%; background: var(--red); box-shadow: 22px 26px 0 -2px var(--orange), -6px 52px 0 -4px var(--red), 40px 66px 0 -5px var(--orange); }
.board-deco-r { right: 4%; background: var(--blue); box-shadow: -22px 26px 0 -2px #6BB1FF, 6px 52px 0 -4px var(--blue), -40px 66px 0 -5px #6BB1FF; }
.board-inner { text-align: center; position: relative; z-index: 1; }
.board-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ink); color: #fff; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: .5rem 1.2rem; margin-bottom: 2.25rem;
}
.board-pill i { color: var(--orange); }
.hero-countdown { display: flex; justify-content: center; align-items: baseline; gap: clamp(.75rem,3vw,1.75rem); }
.cd-box { text-align: center; }
.cd-num {
  display: block; font-size: clamp(3.5rem,10vw,7rem); font-weight: 900;
  line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -3px; color: var(--ink);
}
.cd-box:first-of-type .cd-num { color: var(--red); }
.cd-box:last-of-type .cd-num { color: var(--blue); }
.cd-lbl {
  display: block; font-size: 10px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--ink-3); margin-top: .6rem;
}
.cd-sep { font-size: clamp(2rem,6vw,4rem); font-weight: 900; color: var(--line); align-self: flex-start; margin-top: clamp(.4rem,1.5vw,1rem); }
.cd-live { font-size: 1.5rem; font-weight: 900; color: var(--red); display: inline-flex; align-items: center; gap: 10px; }
.board-tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 3rem; }
.board-tile {
  display: flex; align-items: center; gap: 12px;
  border-radius: var(--r-md); padding: 1rem 1.5rem;
  font-size: 14px; font-weight: 700; color: var(--ink);
  transition: transform var(--t);
}
.board-tile:hover { transform: translateY(-3px) rotate(-1deg); }
.board-tile i { font-size: 19px; }
.bt-red    { background: var(--red-t);    } .bt-red i    { color: var(--red); }
.bt-blue   { background: var(--blue-t);   } .bt-blue i   { color: var(--blue); }
.bt-orange { background: var(--orange-t); } .bt-orange i { color: #D98A00; }
.bt-green  { background: var(--green-t);  } .bt-green i  { color: #16A34A; }
.board-tile small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-3); line-height: 1.3; }
.board-tile strong { font-size: 17px; font-weight: 900; line-height: 1.2; }
@media (max-width: 640px) {
  .cd-num { font-size: clamp(2.4rem, 13vw, 3.4rem); letter-spacing: -1.5px; }
  .cd-lbl { font-size: 8.5px; letter-spacing: 1.5px; margin-top: .4rem; }
  .cd-sep { font-size: 1.6rem; margin-top: .5rem; }
  .hero-countdown { gap: .55rem; }
  .board-pill { font-size: 9.5px; letter-spacing: 1.2px; padding: .45rem 1rem; }
  .board-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 2.25rem; }
  .board-tile { padding: .9rem 1.1rem; gap: 10px; }
  .board-tile strong { font-size: 15px; }
  .board-deco-l, .board-deco-r { display: none; }
}

/* ── SECTION HEADER (playful) ────────────────── */
.sec-hdr { margin-bottom: 2.75rem; }
.sec-hdr-center { text-align: center; }
.sec-pill {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 100px; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: .45rem 1.1rem; margin-bottom: 1.1rem;
}
.sec-pill-red  { background: var(--red-t);  color: var(--red-dk); }
.sec-pill-blue { background: var(--blue-t); color: var(--blue-dk); }
.sec-title {
  font-size: clamp(2.25rem,5.5vw,3.75rem); font-weight: 900;
  line-height: .95; letter-spacing: -1.5px; color: var(--ink);
}
.sec-sub { font-size: 14.5px; color: var(--ink-2); margin-top: 1rem; max-width: 520px; line-height: 1.75; }
.sec-hdr-center .sec-sub { margin-left: auto; margin-right: auto; }

/* ── PROGRAM ─────────────────────────────────── */
.program { background: var(--paper); padding: var(--pad) 0; position: relative; overflow: hidden; }
/* speaker marquee — infinite auto-scroll, pause on hover */
.spk-marquee {
  overflow: hidden; padding: 10px 0 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.spk-track {
  display: flex; gap: 14px; width: max-content;
  animation: spkScroll 36s linear infinite;
}
.spk-marquee:hover .spk-track { animation-play-state: paused; }
@keyframes spkScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
@media (prefers-reduced-motion: reduce) {
  .spk-track { animation: none; }
  .spk-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}
.program-cta { text-align: center; margin-top: 2.25rem; }
.spk-card {
  flex: 0 0 235px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem; position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.spk-card:nth-child(odd)  { transform: rotate(-.6deg); }
.spk-card:nth-child(even) { transform: rotate(.6deg) translateY(6px); }
.spk-card:hover { transform: translateY(-6px) rotate(0deg) scale(1.03); box-shadow: 0 14px 36px rgba(22,24,29,.12); z-index: 2; }
.spk-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; }
.spk-card:nth-child(odd)::before  { background: linear-gradient(90deg, var(--red) 55%, var(--orange) 55%, var(--orange) 75%, transparent 75%); }
.spk-card:nth-child(even)::before { background: linear-gradient(90deg, var(--blue) 55%, #6BB1FF 55%, #6BB1FF 75%, transparent 75%); }
.spk-ava {
  width: 58px; height: 58px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 23px; font-weight: 900; margin-bottom: 1rem;
}
.spk-card:nth-child(odd) .spk-ava  { background: var(--red-t);  color: var(--red); }
.spk-card:nth-child(even) .spk-ava { background: var(--blue-t); color: var(--blue); }
.spk-name { font-size: 15.5px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.spk-role { font-size: 12px; color: var(--ink-3); margin-top: 3px; line-height: 1.45; }
.spk-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--ink-2);
  background: var(--paper-2); border-radius: 100px; padding: .3rem .75rem; margin-top: .9rem;
}
.spk-tag i { font-size: 9px; }
.spk-card:nth-child(odd) .spk-tag i  { color: var(--red); }
.spk-card:nth-child(even) .spk-tag i { color: var(--blue); }

@media (max-width: 540px) {
  .spk-card { flex-basis: 205px; padding: 1.25rem; }
}

/* ── FAQ — 2-col playful cards ───────────────── */
.faq { background: var(--white); padding: var(--pad) 0; border-top: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.faq-deco { position: absolute; top: 14%; right: 5%; width: 12px; height: 12px; background: var(--blue); box-shadow: -20px 26px 0 -2px var(--red), 8px 50px 0 -4px var(--orange); pointer-events: none; opacity: .85; }
.faq-list {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  align-items: start;
}
@media (max-width: 760px) { .faq-list { grid-template-columns: 1fr; } .faq-deco { display: none; } }
.faq-item {
  background: var(--paper); border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.faq-item:nth-child(even) { border-left-color: var(--blue); }
.faq-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.faq-item:has(.faq-q.open) { border-color: rgba(0,104,255,.3); border-left-color: var(--blue); box-shadow: var(--shadow-card); background: var(--white); }
.faq-item:nth-child(odd):has(.faq-q.open) { border-color: rgba(230,0,18,.28); border-left-color: var(--red); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.1rem 1.4rem; background: transparent; border: 0;
  color: var(--ink); font-size: 14.5px; font-weight: 700;
  cursor: pointer; text-align: left; font-family: inherit;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--ink-3); flex-shrink: 0;
  transition: transform .2s var(--ease), background .2s, color .2s;
}
.faq-q.open .faq-icon { transform: rotate(45deg); background: var(--blue-t); color: var(--blue); }
.faq-a {
  max-height: 0; overflow: hidden; font-size: 14px; color: var(--ink-2);
  line-height: 1.75; transition: max-height .3s var(--ease), padding .2s, opacity .25s;
  padding: 0 1.4rem; opacity: 0;
}
.faq-a.open { max-height: 400px; padding: 0 1.4rem 1.25rem; opacity: 1; }

/* ── CTA — KV gradient ───────────────────────── */
.cta {
  background: linear-gradient(115deg, var(--red) 0%, #A11577 50%, var(--blue) 100%);
  padding: clamp(5rem,9vw,7.5rem) 0; text-align: center; position: relative; overflow: hidden;
}
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 120%, rgba(255,255,255,.14) 0%, transparent 60%); pointer-events: none; }
.cta-px-l, .cta-px-r { position: absolute; top: 22%; width: 12px; height: 12px; background: rgba(255,255,255,.5); pointer-events: none; }
.cta-px-l { left: 7%;  box-shadow: 20px 24px 0 -2px rgba(255,255,255,.35), -8px 48px 0 -4px rgba(255,255,255,.25); }
.cta-px-r { right: 7%; box-shadow: -20px 24px 0 -2px rgba(255,255,255,.35), 8px 48px 0 -4px rgba(255,255,255,.25); }
@media (max-width: 640px) { .cta-px-l, .cta-px-r { display: none; } }
.cta-inner { position: relative; z-index: 1; }
.cta-label {
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cta-title {
  font-size: clamp(2.75rem,8vw,5.5rem); font-weight: 900;
  line-height: .88; letter-spacing: -2px; color: #fff; margin-bottom: 1.25rem;
}
.cta-sub { font-size: 15px; color: rgba(255,255,255,.8); max-width: 400px; margin: 0 auto 2.25rem; line-height: 1.65; }
.cta-note { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 1.25rem; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ── BUTTONS ─────────────────────────────────── */
.btn-red {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red); color: #fff !important;
  font-size: 14px; font-weight: 800; font-family: inherit;
  padding: .75rem 1.9rem; border-radius: 100px; border: 0;
  cursor: pointer; text-decoration: none; min-height: 46px;
  box-shadow: 0 4px 16px rgba(230,0,18,.28);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-red:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,0,18,.32); }
.btn-red-lg { padding: .95rem 2.4rem; font-size: 15px; }
.btn-blue {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: #fff !important;
  font-size: 14px; font-weight: 800; font-family: inherit;
  padding: .75rem 1.9rem; border-radius: 100px; border: 0;
  cursor: pointer; text-decoration: none; min-height: 46px;
  box-shadow: 0 4px 16px rgba(0,104,255,.28);
  transition: background var(--t), transform var(--t);
}
.btn-blue:hover { background: var(--blue-dk); transform: translateY(-2px); }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  color: var(--ink) !important;
  font-size: 14px; font-weight: 700; font-family: inherit;
  padding: .75rem 1.9rem; border-radius: 100px; border: 1.5px solid var(--line);
  cursor: pointer; text-decoration: none; min-height: 46px;
  transition: all var(--t);
}
.btn-outline-light:hover { border-color: rgba(22,24,29,.28); background: #fff; transform: translateY(-2px); }
.btn-outline-dk {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--ink) !important;
  font-size: 14px; font-weight: 700; font-family: inherit;
  padding: .75rem 1.9rem; border-radius: 100px; border: 1.5px solid rgba(22,24,29,.22);
  cursor: pointer; text-decoration: none; min-height: 46px;
  transition: all var(--t);
}
.btn-outline-dk:hover { border-color: rgba(22,24,29,.45); background: rgba(22,24,29,.03); }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--red) !important;
  font-size: 15px; font-weight: 800; font-family: inherit;
  padding: .95rem 2.6rem; border-radius: 100px; border: 0;
  cursor: pointer; text-decoration: none; min-height: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  transition: background var(--t), transform var(--t);
}
.btn-white:hover { background: rgba(255,255,255,.92); transform: translateY(-2px); }
/* legacy alias */
.btn-ghost-dark { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.85); color: var(--ink) !important; font-size: 14px; font-weight: 700; font-family: inherit; padding: .75rem 1.9rem; border-radius: 100px; border: 1.5px solid var(--line); cursor: pointer; text-decoration: none; min-height: 46px; transition: all var(--t); }
.btn-ghost-dark:hover { border-color: rgba(22,24,29,.28); background: #fff; }
.alert-red { display: inline-flex; align-items: center; gap: .5rem; background: var(--red-t); border: 1px solid rgba(230,0,18,.2); color: var(--red-dk); border-radius: 8px; padding: .7rem 1rem; font-size: 13px; font-weight: 600; }

/* ── FOOTER ──────────────────────────────────── */
.site-footer { background: var(--ink); padding: 2.25rem 2rem; text-align: center; }
.site-footer p { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer-tv {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: .9rem;
}
.footer-tv span { font-size: 11px; color: rgba(255,255,255,.3); }
.footer-tv-logo { height: 20px; width: auto; opacity: .75; transition: opacity var(--t); }
.footer-tv a:hover .footer-tv-logo { opacity: 1; }

/* ── UTILS ───────────────────────────────────── */
.fab-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px;
  border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 21px;
  z-index: 150; box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform var(--t);
}
.fab-wa:hover { color: #fff; transform: scale(1.08); }
.toast {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  background: var(--ink); color: #fff; padding: .65rem 1rem; border-radius: 8px;
  font-size: 13px; font-weight: 600; box-shadow: 0 8px 24px rgba(0,0,0,.2);
  z-index: 500; pointer-events: none; opacity: 0; transform: translateY(10px);
  transition: opacity .2s, transform .2s;
}
.toast.show { opacity: 1; transform: none; }
.sticky-mob-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(250,250,249,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: .75rem 1rem; z-index: 150;
  display: none; opacity: 0; transform: translateY(100%);
  transition: opacity .3s, transform .3s var(--ease);
}
.sticky-mob-cta.visible { opacity: 1; transform: none; }
@media (max-width: 768px) { .sticky-mob-cta { display: block; } }

/* ── AGENDA DRAWER ───────────────────────────── */
.ag-overlay {
  position: fixed; inset: 0; background: rgba(22,24,29,.45);
  backdrop-filter: blur(6px); z-index: 900;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.ag-overlay.open { opacity: 1; pointer-events: all; }
.ag-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(540px,100vw);
  background: var(--white); border-left: 1px solid var(--line);
  z-index: 901; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1);
  overflow: hidden; box-shadow: -12px 0 48px rgba(22,24,29,.12);
}
.ag-drawer.open { transform: translateX(0); }
.ag-drawer-inner { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.ag-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 2rem; border-bottom: 1px solid var(--line-soft); flex-shrink: 0;
}
.ag-eyebrow { display: block; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; }
.ag-title { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin: 0 0 .75rem; }
.ag-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; font-size: 11px; font-weight: 600; color: var(--ink-3); }
.ag-meta span { display: flex; align-items: center; gap: .35rem; }
.ag-meta i { color: var(--blue); }
.ag-close {
  background: var(--paper-2); border: 1px solid var(--line);
  color: var(--ink-2); width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.ag-close:hover { background: var(--red-t); color: var(--red); }
.ag-body { flex: 1; overflow-y: auto; padding: .75rem 0; }
.ag-body::-webkit-scrollbar { width: 3px; }
.ag-body::-webkit-scrollbar-thumb { background: rgba(22,24,29,.15); border-radius: 2px; }
.ag-item { display: flex; padding: .85rem 2rem; border-bottom: 1px solid var(--line-soft); transition: background var(--t); }
.ag-item:hover { background: var(--paper); }
.ag-item:last-child { border-bottom: 0; }
.ag-item-time { flex: 0 0 52px; font-size: 11px; font-weight: 700; color: var(--blue); padding-top: 2px; font-variant-numeric: tabular-nums; }
.ag-item-line { flex: 0 0 28px; display: flex; flex-direction: column; align-items: center; position: relative; padding-top: 5px; }
.ag-item-line::before { content: ''; position: absolute; top: 16px; bottom: -100%; left: 50%; transform: translateX(-50%); width: 1px; background: var(--line-soft); }
.ag-item:last-child .ag-item-line::before { display: none; }
.ag-item-dot { width: 9px; height: 9px; border-radius: 2px; background: var(--red); flex-shrink: 0; z-index: 1; }
.ag-item:nth-child(even) .ag-item-dot { background: var(--blue); }
.ag-item-dot-break { background: var(--ink-3) !important; }
.ag-item-body { flex: 1; min-width: 0; display: flex; align-items: baseline; gap: .5rem; }
.ag-item-num { font-size: 10px; font-weight: 800; color: rgba(230,0,18,.55); flex-shrink: 0; }
.ag-item-session { font-size: 13px; font-weight: 500; color: var(--ink-2); line-height: 1.5; }
.ag-item:hover .ag-item-session { color: var(--ink); }
.ag-item-break .ag-item-time { color: var(--ink-3); }
.ag-item-break .ag-item-session { color: var(--ink-3); font-style: italic; font-size: 12px; }
.ag-foot { padding: 1.25rem 2rem; border-top: 1px solid var(--line-soft); flex-shrink: 0; }
.ag-foot .btn-red { width: 100%; justify-content: center; }
@media (max-width: 540px) { .ag-drawer { width: 100vw; border-left: 0; } .ag-item { padding: .8rem 1.25rem; } .ag-head { padding: 1.5rem 1.25rem; } .ag-foot { padding: 1rem 1.25rem; } }

/* ── COMPATIBILITY / UTILITY LAYER (light) ───── */
.page       { max-width: 760px;  margin: 0 auto; padding: 0 1.5rem; }
.page-wide  { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
main.page, main.page-wide { padding-top: 6rem; padding-bottom: 3rem; }
.form-section { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-card); }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--ink-2); margin-bottom: .4rem; letter-spacing: .3px; }
.form-control, .form-select { display: block; width: 100%; background: var(--white) !important; border: 1.5px solid var(--line) !important; color: var(--ink) !important; border-radius: 10px !important; padding: .7rem 1rem !important; font-size: 14px !important; font-family: inherit !important; min-height: 44px; transition: border-color var(--dur-fast) !important; outline: none !important; -webkit-appearance: none; appearance: none; }
.form-control::placeholder { color: var(--ink-3) !important; }
.form-control:focus, .form-select:focus { border-color: var(--blue) !important; box-shadow: 0 0 0 3px rgba(0,104,255,.12) !important; }
.form-select option { background: #fff; color: var(--ink); }
.row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.col-12 { width: 100%; }
.g-2 { gap: .5rem; } .g-3 { gap: 1rem; }
.mb-1 { margin-bottom: .25rem; } .mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: 1rem; }
.me-2 { margin-right: .5rem; } .ms-2 { margin-left: .5rem; }
.d-flex { display: flex !important; } .flex-wrap { flex-wrap: wrap; } .align-items-center { align-items: center; } .justify-content-between { justify-content: space-between; }
.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: 1rem; } .w-100 { width: 100%; }
.text-muted-custom { color: var(--ink-2); font-size: .9rem; line-height: 1.65; } .text-center { text-align: center; }
.btn-brand { display: inline-flex; align-items: center; gap: .45rem; background: var(--red); color: #fff !important; font-size: 14px; font-weight: 800; font-family: inherit; padding: .8rem 1.9rem; border-radius: 100px; border: 0; cursor: pointer; box-shadow: 0 4px 18px rgba(230,0,18,.22); transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast); text-decoration: none; min-height: 44px; }
.btn-brand:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,0,18,.28); }
.btn-ghost { display: inline-flex; align-items: center; gap: .45rem; background: transparent; color: var(--ink-2) !important; font-size: 14px; font-weight: 700; font-family: inherit; padding: .8rem 1.7rem; border-radius: 100px; border: 1.5px solid var(--line); cursor: pointer; transition: all var(--dur-fast); text-decoration: none; min-height: 44px; }
.btn-ghost:hover { border-color: rgba(22,24,29,.3); color: var(--ink) !important; background: rgba(22,24,29,.03); }
.btn-sm { font-size: 12px !important; padding: .4rem .9rem !important; min-height: 36px !important; }
.card-dark { background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-card); transition: border-color var(--dur-base), transform var(--dur-base), box-shadow var(--dur-base); }
.card-dark:hover { border-color: rgba(22,24,29,.2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(22,24,29,.1); }
.card-dark .card-body { padding: 1.4rem; }
.alert-brand { background: var(--red-t); border: 1px solid rgba(230,0,18,.2); color: var(--red-dk); border-radius: 10px; padding: .9rem 1.2rem; font-size: 13px; }
.stat-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 1.4rem; box-shadow: var(--shadow-card); transition: border-color var(--dur-base), transform var(--dur-base); }
.stat-card:hover { border-color: rgba(22,24,29,.2); transform: translateY(-2px); }
.stat-num { font-size: 2.2rem; font-weight: 900; line-height: 1; color: var(--ink); }
.stat-label { font-size: 12px; color: var(--ink-2); margin-top: .3rem; }
.stat-sub { font-size: 11px; color: var(--ink-3); }
.event-name { font-size: 1rem; font-weight: 800; color: var(--ink); }
.event-sub { font-size: 12px; color: var(--ink-2); margin-top: .25rem; }
.attend-icon { font-size: 1.6rem; margin-bottom: .5rem; display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinning { animation: spin .6s linear infinite; }
.reg-meta { font-size: 11px; color: var(--ink-2); margin-top: .15rem; }
.ticket-wrap { background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; max-width: 480px; margin: 0 auto; box-shadow: var(--shadow-card); }
.ticket-head { background: linear-gradient(115deg, var(--red) 0%, #A11577 60%, var(--blue) 100%); padding: 1.5rem 2rem; }
.ticket-head-name { font-size: 1.1rem; font-weight: 800; color: #fff; }
.ticket-head-sub { font-size: 12px; color: rgba(255,255,255,.8); margin-top: .2rem; }
.ticket-body { padding: 1.8rem 2rem; }
.ticket-qr { text-align: center; margin: 1rem 0; }
.ticket-qr img { max-width: 180px; border-radius: 8px; margin: 0 auto; }
.ticket-code { font-size: 11px; color: var(--ink-3); text-align: center; margin-top: .5rem; letter-spacing: 1px; font-weight: 600; }
.ticket-sep { border: 0; border-top: 2px dashed var(--line); margin: 1.2rem 0; }
.ticket-rows { display: grid; gap: .65rem; }
.ticket-row { display: flex; justify-content: space-between; font-size: 13px; }
.ticket-row .tl { color: var(--ink-3); }
.ticket-row .tv { color: var(--ink); font-weight: 600; text-align: right; }
.ticket-info { display: grid; gap: .65rem; }
.ticket-tag { display: inline-flex; align-items: center; gap: .3rem; font-size: 11px; font-weight: 600; padding: .2rem .6rem; border-radius: 20px; }
.tag-onsite { background: var(--red-t); color: var(--red-dk); }
.tag-online { background: var(--blue-t); color: var(--blue-dk); }
.tag-zoom   { background: var(--green-t); color: #15803D; }
.scan-result { padding: 1rem 1.25rem; border-radius: 12px; font-size: 14px; font-weight: 600; }
.scan-ok  { background: var(--green-t);  border: 1px solid rgba(34,197,94,.3);  color: #15803D; }
.scan-warn{ background: var(--orange-t); border: 1px solid rgba(234,179,8,.35); color: #A16207; }
.scan-err { background: var(--red-t);    border: 1px solid rgba(230,0,18,.25);  color: var(--red-dk); }
.accent { color: var(--red); }

/* ── PRINT ───────────────────────────────────── */
@media print {
  body * { visibility: hidden !important; }
  #print-ticket, #print-ticket * { visibility: visible !important; }
  #print-ticket { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .site-nav, .fab-wa, .no-print { display: none !important; }
}
