/* Trust Wallet Web3 Meetup — Hong Kong (Trust-aligned palette + Inter) */
:root {
  --tw-blue: #3248e5;
  --tw-blue-hover: #2838c4;
  --tw-mint: #00d395;
  --paper: #f5f7fb;
  --paper-2: #eef2f9;
  --surface: #ffffff;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: rgba(15, 23, 42, 0.58);
  --gold: var(--tw-mint);
  --gold-dim: rgba(0, 211, 149, 0.22);
  --teal: var(--tw-blue);
  --teal-soft: rgba(50, 72, 229, 0.1);
  --border: rgba(15, 23, 42, 0.09);
  --radius: 1.25rem;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.45;
  overflow-x: hidden;
}

.config-wait [data-config] { visibility: hidden !important; opacity: 0 !important; }
.config-ready [data-config] { visibility: visible; opacity: 1; transition: opacity 0.2s ease; }

/* Ambient layers */
.hk-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(50, 72, 229, 0.08) 0%, transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(0, 211, 149, 0.06) 0%, transparent 50%),
    var(--paper);
}
.hk-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hk-shell {
  position: relative;
  z-index: 1;
}

/* Header */
.hk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  background: rgba(245, 247, 251, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.hk-logo {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.hk-badge {
  display: inline-block;
  margin-left: 0.5rem;
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  vertical-align: middle;
}
.hk-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.hk-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.hk-nav a:hover { color: var(--ink); }
.hk-nav-cta {
  background: var(--tw-blue);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}
.hk-nav-cta:hover { background: var(--tw-blue-hover); color: #fff !important; }

/* Hero */
.hk-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  padding: 6.5rem 2rem 4rem;
  max-width: 1320px;
  margin: 0 auto;
}
.hk-hero__copy { padding-right: 1rem; }
.hk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.hk-eyebrow::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hk-hero__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hk-hero__title span { display: block; }
.hk-hero__title .hk-hero__year {
  color: var(--tw-blue);
  font-weight: 800;
}
.hk-hero__lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}
.hk-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hk-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}
.hk-pill svg { flex-shrink: 0; opacity: 0.7; }
.hk-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hk-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  background: var(--tw-blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.hk-btn-primary:hover {
  background: var(--tw-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(50, 72, 229, 0.28);
}
.hk-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.hk-btn-ghost:hover {
  border-color: var(--tw-blue);
  background: var(--teal-soft);
}

.hk-hero__countdown {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(12, 25, 41, 0.06);
  max-width: 22rem;
}
.hk-hero__countdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.hk-hero__timer {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hk-hero__timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.75rem;
}
.hk-hero__timer-num {
  font-family: var(--font);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.hk-hero__timer-cap {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.25rem;
}
.hk-hero__timer-sep {
  font-family: var(--font);
  font-size: 1.25rem;
  color: var(--tw-blue);
  padding-bottom: 0.75rem;
  font-weight: 300;
}

/* Hero — single feature video */
.hk-hero__visual {
  align-self: center;
}
.hk-hero__video-shell {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  background:
    radial-gradient(90% 85% at 92% 8%, rgba(50, 72, 229, 0.1) 0%, transparent 48%),
    radial-gradient(75% 80% at 8% 92%, rgba(0, 211, 149, 0.07) 0%, transparent 52%),
    linear-gradient(150deg, var(--paper-2) 0%, var(--paper) 45%, #e8edf5 100%);
  aspect-ratio: 16 / 9;
}
.hk-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hk-hero__video-caption {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38rem;
  letter-spacing: 0.01em;
}
.hk-hero__video-caption-sub {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Media library — unified grid (photos + compact videos, custom play/pause) */
.hk-media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.hk-media__shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  background: var(--surface);
}
.hk-media__shot:not(.hk-media__shot--video) img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.hk-media__shot:not(.hk-media__shot--video):hover img { transform: scale(1.03); }

.hk-media__vid-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(80% 90% at 88% 12%, rgba(50, 72, 229, 0.08) 0%, transparent 50%),
    radial-gradient(72% 85% at 10% 88%, rgba(0, 211, 149, 0.06) 0%, transparent 52%),
    linear-gradient(155deg, var(--paper-2) 0%, var(--paper) 50%, #e8edf5 100%);
}
.hk-media__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: transparent;
}
.hk-media__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.25s ease;
  background: linear-gradient(145deg, var(--paper-2), var(--paper));
}
.hk-media__vid-wrap.is-playing .hk-media__poster {
  opacity: 0;
  pointer-events: none;
}
.hk-media__toggle {
  position: absolute;
  bottom: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  color: var(--tw-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
  transition: transform 0.15s ease, background 0.15s ease;
}
.hk-media__toggle:hover { transform: scale(1.06); }
.hk-media__icon--pause { display: none; }
.hk-media__vid-wrap.is-playing .hk-media__icon--play { display: none; }
.hk-media__vid-wrap.is-playing .hk-media__icon--pause { display: block; }

/* Bands (sections) */
.hk-band {
  padding: 5.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hk-band--dark {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
  background: linear-gradient(165deg, #0f172a 0%, #151d35 55%, #0c1222 100%);
  color: #e8eef8;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}
.hk-band--dark .hk-section-label { color: var(--tw-mint); }
.hk-band--dark .hk-section-title { color: #f8fafc; }
.hk-band--dark .hk-lead { color: rgba(226, 232, 240, 0.72); }
.hk-band--dark .hk-agenda-col h3 { color: #f8fafc; }
.hk-band--dark .hk-agenda-date { color: rgba(0, 211, 149, 0.85); }
.hk-band--dark .hk-timeline { border-left-color: rgba(50, 72, 229, 0.4); }
.hk-band--dark .hk-timeline__item::before {
  background: #0f172a;
  border-color: var(--tw-blue);
}
.hk-band--dark .hk-timeline__time { color: #93c5fd; }
.hk-band--dark .hk-timeline__text { color: rgba(226, 232, 240, 0.78); }

.hk-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.hk-section-title {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hk-section-title em {
  font-style: normal;
  color: var(--tw-mint);
  font-weight: 700;
}
.hk-lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 2rem;
}

/* Glance grid */
.hk-glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.hk-glance-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hk-glance-card:hover {
  border-color: rgba(50, 72, 229, 0.35);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}
.hk-glance-card strong {
  font-family: var(--font);
  font-size: 1.65rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.hk-glance-card span {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Venue ribbon */
.hk-venue-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3.25rem;
}
.hk-venue {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  max-height: 200px;
  min-height: 200px;
}
.hk-venue__gradient {
  width: 100%;
  height: 200px;
  display: block;
  background:
    radial-gradient(90% 100% at 92% 8%, rgba(50, 72, 229, 0.07) 0%, transparent 52%),
    radial-gradient(75% 90% at 4% 88%, rgba(0, 211, 149, 0.06) 0%, transparent 55%),
    linear-gradient(125deg, var(--paper-2) 0%, var(--paper) 45%, #e8edf5 100%);
}
.hk-venue__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.35) 55%, rgba(245, 247, 251, 0.08) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem 6% 1.1rem 1.75rem;
  max-width: min(460px, 90%);
}
.hk-venue__overlay h2 {
  font-family: var(--font);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.hk-venue__overlay p {
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}
.hk-venue__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hk-venue__tags span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(50, 72, 229, 0.2);
}

/* Speakers rail */
.hk-speakers-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hk-speakers-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--paper-2);
}
.hk-speakers-rail::-webkit-scrollbar { height: 6px; }
.hk-speakers-rail::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}
.hk-speaker-card {
  flex: 0 0 min(260px, 85vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(12, 25, 41, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hk-speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(12, 25, 41, 0.12);
}
.hk-speaker-card__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(145deg, var(--paper-2), var(--teal-soft));
}
.hk-speaker-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
}
.hk-speaker-card__body { padding: 1.1rem 1.2rem 1.35rem; }
.hk-speaker-card__body h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.hk-speaker-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.hk-speaker-card__topic {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}
.hk-speaker-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--teal);
  opacity: 0.5;
}

/* Split experience */
.hk-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}
.hk-split__main p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 36rem;
  line-height: 1.65;
}
.hk-split__aside {
  position: sticky;
  top: 5.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(12, 25, 41, 0.05);
}
.hk-split__aside h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.hk-split__aside ul {
  list-style: none;
}
.hk-split__aside li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.35rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
}
.hk-split__aside li:first-child { border-top: none; padding-top: 0; }
.hk-split__aside li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hk-split__aside li:first-child::before { top: 0.35rem; }

/* Timeline agenda */
.hk-agenda-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.hk-agenda-col h3 {
  font-family: var(--font);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.hk-agenda-date {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hk-timeline {
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold-dim);
}
.hk-timeline__item {
  position: relative;
  padding-bottom: 1.15rem;
  padding-left: 0.5rem;
  margin-left: -2px;
}
.hk-timeline__item::before {
  content: '';
  position: absolute;
  left: -1.37rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--gold);
}
.hk-timeline__time {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.hk-timeline__text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Twin cards */
.hk-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.hk-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 12px 36px rgba(12, 25, 41, 0.05);
}
.hk-panel h3 {
  font-family: var(--font);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.hk-panel p, .hk-panel li {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.hk-panel ul {
  list-style: none;
  margin: 0.75rem 0;
}
.hk-panel li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.4rem;
}
.hk-panel li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}
.hk-airdrop-stat {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--teal-soft);
  border-radius: calc(var(--radius) - 2px);
}
.hk-airdrop-stat strong {
  font-family: var(--font);
  font-size: 2.5rem;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.hk-airdrop-stat span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.hk-airdrop-stat p {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
}

.hk-merch-footnote {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.hk-merch-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.hk-merch-chips span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  border: 1px solid rgba(50, 72, 229, 0.18);
}
.hk-merch-stat {
  margin-top: 1.25rem;
  text-align: center;
  padding: 1.35rem 1rem;
  background: linear-gradient(180deg, var(--teal-soft) 0%, rgba(0, 211, 149, 0.09) 100%);
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(50, 72, 229, 0.12);
}
.hk-merch-stat strong {
  font-family: var(--font);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.hk-merch-stat > span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.35rem;
  display: inline-block;
}
.hk-merch-stat p {
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Tickets */
.hk-tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.hk-ticket {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hk-ticket:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 25, 41, 0.08);
}
.hk-ticket--featured {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  border-color: rgba(50, 72, 229, 0.35);
  position: relative;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}
.hk-ticket--featured .hk-ticket-price { color: var(--tw-mint); }
.hk-ticket--featured ul li { color: rgba(226, 232, 240, 0.75); }
.hk-ticket--featured ul li::before { color: var(--tw-mint); }
.hk-ticket--featured h3 { color: #fff; }
.hk-ticket-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  background: var(--tw-mint);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.hk-ticket h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.hk-ticket-price {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--teal);
}
.hk-ticket ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}
.hk-ticket li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.45rem;
  line-height: 1.4;
}
.hk-ticket li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
}
.hk-ticket .hk-btn-primary,
.hk-ticket .hk-btn-ghost {
  width: 100%;
  font-size: 0.875rem;
  padding: 0.85rem 1rem;
}
.hk-ticket--featured .hk-btn-primary {
  background: var(--tw-blue);
  color: #fff;
}
.hk-ticket--featured .hk-btn-primary:hover {
  background: var(--tw-blue-hover);
  box-shadow: 0 12px 28px rgba(50, 72, 229, 0.35);
}
.hk-ticket--featured .hk-btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hk-ticket--featured .hk-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Final CTA + map */
.hk-final {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.hk-final__grid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 1.08fr);
  gap: 2.5rem 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.hk-final__copy {
  text-align: left;
}
.hk-final__copy h2 {
  font-family: var(--font);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.hk-final__copy .hk-final-meta {
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.hk-final__copy .hk-final-note {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.hk-final-venue {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 1.35rem 0 1.75rem;
}
.hk-final-venue strong {
  color: var(--ink);
  font-weight: 700;
}
.hk-final-address {
  font-weight: 600;
  color: var(--ink);
}
.hk-final__copy .hk-btn-primary {
  padding: 1.05rem 2.25rem;
}
.hk-final__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
  background: var(--paper-2);
  position: sticky;
  top: 5.5rem;
}
.hk-final__map iframe {
  width: 100%;
  min-height: 340px;
  height: 360px;
  border: 0;
  display: block;
}

/* Footer */
.hk-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.hk-footer a {
  color: var(--ink-soft);
  text-decoration: none;
  margin-right: 1.5rem;
}
.hk-footer a:hover { color: var(--ink); }

@media (max-width: 1024px) {
  .hk-hero { grid-template-columns: 1fr; padding-top: 5.5rem; gap: 2rem; }
  .hk-hero__visual { max-width: 640px; margin: 0 auto; width: 100%; }
  .hk-glance { grid-template-columns: repeat(2, 1fr); }
  .hk-split { grid-template-columns: 1fr; }
  .hk-split__aside { position: static; }
  .hk-agenda-layout { grid-template-columns: 1fr; }
  .hk-twin { grid-template-columns: 1fr; }
  .hk-tickets-grid { grid-template-columns: 1fr; }
  .hk-media__grid { grid-template-columns: repeat(2, 1fr); }
  .hk-final__grid { grid-template-columns: 1fr; }
  .hk-final__map { position: static; }
}

@media (max-width: 640px) {
  .hk-nav { display: none; }
  .hk-glance { grid-template-columns: 1fr; }
  .hk-venue { max-height: 160px; min-height: 160px; }
  .hk-venue__gradient { height: 160px; }
  .hk-venue__overlay { padding: 1rem 1.25rem; max-width: none; }
  .hk-media__grid { grid-template-columns: 1fr; }
}
