/* ==========================================================================
   Eventix — Global Tech Summit 2026
   Pure HTML / CSS / JS recreation
   Fonts: Rubik (headings) · Roboto (body + nav)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --primary: #2a00d6;
  --primary-dark: #1f009e;
  --primary-bright: #3300e8;
  --primary-soft: #ede9fd;
  --primary-softer: #f4f1fe;
  --primary-gradient: linear-gradient(135deg, #4014e8 0%, #2400a8 100%);

  /* Surfaces */
  --background: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f8f7fd;
  --header-bg: #e8e6f3;
  --footer-bg: #f8f7fd;

  /* Text */
  --heading: #16112b;
  --text: #5b5b6b;
  --muted: #83839a;

  /* Lines & depth */
  --border: #eae7f7;
  --border-strong: #ddd8f0;
  --shadow-sm: 0 2px 10px rgba(22, 17, 43, 0.05);
  --shadow: 0 6px 26px rgba(22, 17, 43, 0.07);
  --shadow-lg: 0 16px 44px rgba(22, 17, 43, 0.12);
  --shadow-purple: 0 12px 30px rgba(42, 0, 214, 0.25);

  /* Accents */
  --coral: #f4705d;
  --coral-dark: #ee5a46;
  --keynote-bg: #fdeaea;
  --keynote-fg: #e0414f;
  --business-bg: #fff3e0;
  --business-fg: #d9832a;
  --workshop-bg: #e7f5ee;
  --workshop-fg: #1f9a63;
  --success: #22a06b;
  --info: #2f7ae5;

  /* Type */
  --font-body: "Roboto", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-heading: "Rubik", "Roboto", -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1320px;
  --header-h: 90px;
  --header-top: 20px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: none; }

img { max-width: 100%; display: block; }

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Icon system ------------------------------------------------------------- */
.icon {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--fill { fill: currentColor; stroke: none; }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  transition: background-color .25s, color .25s, border-color .25s,
              transform .25s, box-shadow .25s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(42, 0, 214, .22);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(42, 0, 214, .3);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   4. Header / navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: var(--header-top) 0 auto 0;
  z-index: 900;
  pointer-events: none;
}

.header-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  height: var(--header-h);
  padding: 0 16px;
  background: var(--header-bg);
  border-radius: 12px;
  transition: background-color .3s, box-shadow .3s;
}
.header.scrolled .header-inner {
  background: #e4e1f1;
  box-shadow: 0 8px 26px rgba(22, 17, 43, .10);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 141px;
  height: 58px;
  background: var(--primary);
  color: #fff;
  border-radius: 9px;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: .2px;
  transition: background-color .25s;
}
.logo:hover { background: var(--primary-dark); }

/* Nav ---------------------------------------------------------------------- */
.navmenu {
  margin-left: auto;
  margin-right: 34px;
}

.navmenu > ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

.navmenu a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading);
  white-space: nowrap;
  transition: color .25s;
}
.navmenu a:hover,
.navmenu a.active { color: var(--primary); }

.navmenu .chev {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  transition: transform .25s;
}

/* Dropdowns */
.navmenu .dropdown { position: relative; }

.navmenu .dropdown > ul {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  min-width: 220px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 10;
}
.navmenu .dropdown > ul li { position: relative; }
.navmenu .dropdown > ul a {
  padding: 9px 20px;
  font-size: 15.5px;
  font-weight: 400;
  justify-content: space-between;
}
.navmenu .dropdown > ul a:hover { color: var(--primary); }

.navmenu .dropdown:hover > ul,
.navmenu .dropdown > ul:hover,
.navmenu .dropdown.open > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navmenu .dropdown:hover > a .chev { transform: rotate(180deg); }

/* nested */
.navmenu .dropdown .dropdown > ul {
  top: 0;
  left: calc(100% + 6px);
}
.navmenu .dropdown .dropdown > a .chev { transform: rotate(-90deg); }

.btn-tickets {
  flex: none;
  padding: 11px 22px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: var(--primary);
  border-radius: 6px;
  transition: background-color .25s, transform .25s;
}
.btn-tickets:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--heading);
  font-size: 26px;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #f5f3fc 0%, #f8f7fd 55%, #f4f3fb 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 70px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 32px;
}

.event-meta { margin-bottom: 34px; }

.event-meta li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 19px;
  color: var(--heading);
  margin-bottom: 20px;
}
.event-meta li:last-child { margin-bottom: 0; }
.event-meta .icon {
  width: 23px;
  height: 23px;
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Hero visual -------------------------------------------------------------- */
.hero-visual { position: relative; }

.hero-image {
  width: 100%;
  height: 512px;
  object-fit: cover;
  border-radius: 20px;
  transform: perspective(1000px) rotateY(-6deg);
  box-shadow: 0 26px 60px rgba(22, 17, 43, .22);
}

.floating-badge {
  position: absolute;
  right: -42px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 26px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(22, 17, 43, .14);
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  white-space: nowrap;
  animation: badge-float 5s ease-in-out infinite;
}
.floating-badge .icon { width: 22px; height: 22px; color: var(--primary); }
.floating-badge:nth-of-type(1) { top: 115px; animation-delay: 0s; }
.floating-badge:nth-of-type(2) { top: 222px; animation-delay: .8s; }
.floating-badge:nth-of-type(3) { top: 329px; animation-delay: 1.6s; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Countdown ---------------------------------------------------------------- */
.countdown { margin-top: 56px; }

.countdown-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 22px;
}

.countdown-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.countdown-box {
  min-width: 106px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.countdown-box b {
  display: block;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--primary);
}

.countdown-box span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   6. Section titles
   -------------------------------------------------------------------------- */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 42px;
}
.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--primary);
  opacity: .55;
}

.section-title p {
  margin: 14px auto 0;
  max-width: 700px;
  font-size: 17px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   7. About
   -------------------------------------------------------------------------- */
.about { background: var(--background); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.about h2 {
  font-size: 46px;
  margin-bottom: 28px;
}

.about-text p {
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 26px;
}

.about-visual { position: relative; }

.about-image {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 130px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(22, 17, 43, .16);
}

.floating-card .card-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: none;
  border-radius: 14px;
  background: var(--primary-gradient);
  color: #fff;
}
.floating-card .card-icon .icon { width: 30px; height: 30px; }

.floating-card h3 { font-size: 21px; margin-bottom: 3px; }
.floating-card p { font-size: 16px; color: var(--muted); margin: 0; }

/* Stats -------------------------------------------------------------------- */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 70px;
}

.stat {
  padding: 22px 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--primary);
}

.stat span {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Feature cards ------------------------------------------------------------ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 24px;
  margin-top: 70px;
}

.feature-card {
  padding: 46px 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: #c9bcf7;
  box-shadow: var(--shadow-lg);
}

.feature-card .card-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 26px;
  border-radius: 22px;
  background: var(--primary-gradient);
  color: #fff;
}
.feature-card .card-icon .icon { width: 44px; height: 44px; }

.feature-card h3 { font-size: 24px; margin-bottom: 14px; }
.feature-card p { font-size: 17px; line-height: 1.65; margin: 0; }

/* CTA panel ---------------------------------------------------------------- */
.cta-panel {
  margin-top: 80px;
  padding: 72px 40px;
  background: linear-gradient(180deg, #fdfdff 0%, #f4f2fc 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.cta-panel h2 { font-size: 40px; margin-bottom: 14px; }
.cta-panel p { font-size: 19px; margin-bottom: 30px; }

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   8. Schedule
   -------------------------------------------------------------------------- */
.schedule { background: var(--surface-alt); }

.date-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.date-tab {
  width: 138px;
  padding: 24px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--heading);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: background-color .25s, color .25s, border-color .25s,
              transform .25s, box-shadow .25s;
}
.date-tab span { display: block; }
.date-tab:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.date-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-purple);
}

.schedule-day { display: none; }
.schedule-day.active { display: block; }

.schedule-item {
  display: grid;
  grid-template-columns: 78px 26px 1fr;
  gap: 0 18px;
  align-items: start;
  padding-bottom: 26px;
}

.schedule-time { text-align: right; padding-top: 20px; }
.schedule-time b {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--heading);
}
.schedule-time span { font-size: 15px; color: var(--muted); }

.schedule-marker {
  position: relative;
  align-self: stretch;
  padding-top: 28px;
}
.schedule-marker::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(42, 0, 214, .12);
}
.schedule-marker::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 46px;
  bottom: -26px;
  width: 2px;
  background: var(--border-strong);
}
.schedule-item:last-child .schedule-marker::after { display: none; }

.schedule-card {
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.schedule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.schedule-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.tag--keynote  { background: var(--keynote-bg);  color: var(--keynote-fg); }
.tag--business { background: var(--business-bg); color: var(--business-fg); }
.tag--workshop { background: var(--workshop-bg); color: var(--workshop-fg); }

.schedule-stage { font-size: 15px; color: var(--muted); }

.btn-add {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 0;
  border-radius: 7px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  transition: background-color .25s, color .25s;
}
.btn-add .icon { width: 15px; height: 15px; }
.btn-add:hover { background: var(--primary); color: #fff; }
.btn-add.added { background: var(--workshop-bg); color: var(--workshop-fg); }

.schedule-card h3 { font-size: 24px; margin: 16px 0 10px; }
.schedule-card > p { font-size: 16.5px; line-height: 1.7; margin-bottom: 20px; }

.schedule-speaker {
  display: flex;
  align-items: center;
  gap: 14px;
}
.schedule-speaker img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.schedule-speaker b { display: block; font-size: 16px; color: var(--heading); }
.schedule-speaker span { font-size: 14px; color: var(--muted); }

.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.schedule-actions .icon { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   9. Speakers
   -------------------------------------------------------------------------- */
.speakers { background: var(--background); }

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 24px;
}

.speaker-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.speaker-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.speaker-photo {
  position: relative;
  overflow: hidden;
}
.speaker-photo img {
  width: 100%;
  aspect-ratio: 425 / 397;
  object-fit: cover;
  transition: transform .5s;
}
.speaker-card:hover .speaker-photo img { transform: scale(1.04); }

.speaker-social {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(51, 0, 232, .96), rgba(36, 0, 168, .96));
  opacity: 0;
  transition: opacity .35s;
}
.speaker-card:hover .speaker-social,
.speaker-card:focus-within .speaker-social { opacity: 1; }

.speaker-social a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  transition: background-color .25s, transform .25s;
}
.speaker-social a:hover { background: rgba(255, 255, 255, .3); transform: translateY(-3px); }
.speaker-social .icon { width: 22px; height: 22px; }

.speaker-body { padding: 26px 28px 32px; }

.badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.speaker-body h3 { font-size: 26px; margin: 16px 0 6px; }
.speaker-role { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.speaker-company { font-size: 16px; color: var(--muted); margin-bottom: 14px; }
.speaker-bio { font-size: 15.5px; line-height: 1.7; margin-bottom: 18px; }

.chip {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   10. Venue / event experience
   -------------------------------------------------------------------------- */
.venue { background: var(--surface-alt); }

.venue-intro { text-align: center; margin-bottom: 60px; }
.venue-intro h2 {
  font-size: 44px;
  max-width: 900px;
  margin: 0 auto 18px;
}
.venue-intro p {
  font-size: 19px;
  max-width: 880px;
  margin: 0 auto;
}

.venue-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.venue-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.venue-stat {
  padding: 24px 26px;
  border-radius: 14px;
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.venue-stat b {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.1;
}
.venue-stat span { font-size: 16px; opacity: .92; }

.venue-content h3 { font-size: 34px; margin-bottom: 14px; }
.venue-content > p { font-size: 18px; line-height: 1.7; margin-bottom: 26px; }

.venue-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--muted);
}
.trust-list .icon { width: 17px; height: 17px; }
.trust-list li:nth-child(1) .icon { color: var(--success); }
.trust-list li:nth-child(2) .icon { color: var(--info); }
.trust-list li:nth-child(3) .icon { color: var(--success); }

.venue-visual { position: relative; }
.venue-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.venue-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(22, 17, 43, .17);
}
.venue-badge .icon { width: 24px; height: 24px; color: var(--primary); }
.venue-badge b { display: block; font-family: var(--font-heading); font-size: 20px; color: var(--heading); }
.venue-badge span { font-size: 13.5px; color: var(--muted); }

.venue-badge--rating { left: -26px; bottom: 46px; }
.venue-badge--rating .icon { color: #f5b32e; }
.venue-badge--recommend { right: -26px; top: 46px; }

/* Offer banner ------------------------------------------------------------- */
.offer-banner {
  margin-top: 70px;
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(100deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 36px rgba(238, 90, 70, .3);
}

.offer-banner p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.offer-banner .icon { width: 20px; height: 20px; }

.offer-countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.offer-countdown div {
  min-width: 84px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .18);
}
.offer-countdown b {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.15;
}
.offer-countdown span {
  font-size: 12px;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .9;
}

/* --------------------------------------------------------------------------
   11. Tickets
   -------------------------------------------------------------------------- */
.tickets { background: var(--background); }

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.ticket-card {
  padding: 40px 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.ticket-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.ticket-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
}
.ticket-icon .icon { width: 28px; height: 28px; }

.ticket-card h3 { font-size: 22px; margin-bottom: 12px; }

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.price sup { font-size: 24px; top: 10px; position: relative; }
.price em { font-size: 52px; font-style: normal; }

.ticket-note { font-size: 15px; color: var(--muted); margin: 10px 0 26px; }

.ticket-features { text-align: left; margin-bottom: 28px; }
.ticket-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 16px;
}
.ticket-features .icon { width: 18px; height: 18px; color: var(--primary); }
.ticket-features li.excluded { color: #b4b4c4; }
.ticket-features li.excluded .icon { color: #c9c9d6; }

/* Featured ticket */
.ticket-card.featured {
  background: var(--primary-gradient);
  border-color: transparent;
  color: rgba(255, 255, 255, .9);
  transform: translateY(-16px);
  box-shadow: 0 22px 50px rgba(42, 0, 214, .34);
}
.ticket-card.featured:hover { transform: translateY(-24px); }
.ticket-card.featured h3,
.ticket-card.featured .price { color: #fff; }
.ticket-card.featured .ticket-note { color: rgba(255, 255, 255, .82); }
.ticket-card.featured .ticket-icon { background: rgba(255, 255, 255, .18); color: #fff; }
.ticket-card.featured .ticket-features .icon { color: #fff; }
.ticket-card.featured .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
}
.ticket-card.featured .btn-primary:hover { background: #f2efff; }

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */
.testimonials { background: var(--surface-alt); }

.testimonial-viewport { overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform .55s cubic-bezier(.44, .18, .25, 1);
}

.testimonial-slide { min-width: 100%; padding: 4px; }

.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 44px;
  align-items: center;
  padding: 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.testimonial-card p { font-size: 17px; line-height: 1.85; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author b { display: block; font-family: var(--font-heading); font-size: 20px; color: var(--heading); }
.testimonial-author span { font-size: 15px; color: var(--muted); }

.testimonial-portrait {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 14px;
}

.carousel-nav {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}
.carousel-nav button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--heading);
  transition: background-color .25s, color .25s, border-color .25s;
}
.carousel-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.carousel-nav .icon { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   13. Gallery
   -------------------------------------------------------------------------- */
.gallery { background: var(--background); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-filters button {
  padding: 9px 24px;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: var(--heading);
  font-size: 15.5px;
  font-weight: 500;
  transition: background-color .25s, color .25s;
}
.gallery-filters button:hover { color: var(--primary); }
.gallery-filters button.active { background: var(--primary); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: opacity .35s, transform .35s;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 380 / 220;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 0, 214, .45);
  opacity: 0;
  transition: opacity .35s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

.gallery-item .zoom {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .35s, transform .35s;
}
.gallery-item:hover .zoom { opacity: 1; transform: scale(1); }
.gallery-item .zoom .icon { width: 34px; height: 34px; }

.gallery-item.hide {
  display: none;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--footer-bg);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.15fr 1.3fr 1fr;
  gap: 40px;
}

.footer h3 { font-size: 30px; margin-bottom: 16px; }
.footer h4 { font-size: 19px; margin-bottom: 16px; }

.footer address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.9;
}
.footer address b { color: var(--heading); }

.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 16px;
  color: var(--text);
  transition: color .25s, padding-left .25s;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--heading);
  transition: background-color .25s, color .25s, border-color .25s, transform .25s;
}
.socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.socials .icon { width: 17px; height: 17px; }

.footer-bottom {
  margin-top: 50px;
  padding: 26px 0 30px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 15.5px;
}
.footer-bottom p { margin: 0 0 4px; }
.footer-bottom strong { color: var(--heading); }

/* --------------------------------------------------------------------------
   15. Scroll to top
   -------------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(42, 0, 214, .32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, background-color .25s;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); }
.scroll-top .icon { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   16. Scroll reveal
   Progressive enhancement: content is visible by default (HTML/CSS own
   visibility). The hide-then-reveal animation is only switched on once
   JavaScript has confirmed IntersectionObserver is working and adds
   `.reveal-enabled` to <html>. If JS fails, is blocked, errors, or never
   runs, `.reveal-enabled` never gets added and every `.reveal` element
   simply stays at its default, fully visible state.
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-enabled .reveal.in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero h1 { font-size: 56px; }
  .about h2, .venue-intro h2 { font-size: 38px; }
  .floating-badge { right: -16px; font-size: 15px; padding: 14px 20px; }
  .venue-badge--rating { left: -10px; }
  .venue-badge--recommend { right: -10px; }
  .ticket-grid { grid-template-columns: repeat(2, 1fr); }
  .ticket-card.featured { transform: none; }
  .ticket-card.featured:hover { transform: translateY(-8px); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .navmenu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    margin: 0;
    padding: 100px 26px 40px;
    background: #fff;
    box-shadow: -10px 0 40px rgba(22, 17, 43, .2);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  body.nav-open .navmenu { transform: translateX(0); }

  .navmenu > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .navmenu a { padding: 12px 4px; justify-content: space-between; }

  .navmenu .dropdown > ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--border);
    border-radius: 0;
    padding: 0 0 0 14px;
    margin: 4px 0 8px;
    min-width: 0;
  }
  .navmenu .dropdown.open > ul { display: block; }
  .navmenu .dropdown .dropdown > ul { left: auto; }
  .navmenu .dropdown.open > a .chev { transform: rotate(180deg); }

  .nav-toggle { display: flex; }
  .header-inner { padding: 0 12px; }
  .btn-tickets { margin-left: 12px; order: 3; }
  .nav-toggle { order: 2; }

  .hero { padding: 130px 0 60px; }
  .hero-grid,
  .about-grid,
  .venue-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-image { height: 380px; transform: none; }
  .floating-badge { position: static; margin: 12px 0 0; display: inline-flex; animation: none; }
  .hero-visual { display: flex; flex-direction: column; align-items: flex-start; }

  .features,
  .speaker-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-card { grid-template-columns: 1fr; }
  .testimonial-portrait { height: 280px; order: -1; }

  .section { padding: 70px 0; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 42px; }
  .hero-subtitle { font-size: 23px; }
  .hero-lead, .about-text p, .event-meta li { font-size: 17px; }
  .section-title h2 { font-size: 32px; }
  .section-title h2::before, .section-title h2::after { width: 24px; }
  .about h2, .venue-intro h2, .cta-panel h2 { font-size: 30px; }
  .countdown-box { min-width: 84px; padding: 16px; flex: 1 1 84px; }
  .countdown-box b { font-size: 32px; }
  .countdown-grid { gap: 14px; }
  .stats { gap: 18px; }
  .stat { flex: 1 1 130px; padding: 18px; }
  .stat b { font-size: 38px; }

  .features,
  .speaker-grid,
  .ticket-grid,
  .gallery-grid,
  .venue-stats { grid-template-columns: 1fr; }
  .venue-stats { grid-template-columns: 1fr 1fr; }

  .schedule-item { grid-template-columns: 60px 20px 1fr; gap: 0 12px; }
  .schedule-card { padding: 20px; }
  .schedule-card h3 { font-size: 20px; }
  .btn-add { margin-left: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-panel { padding: 44px 22px; }
  .testimonial-card { padding: 26px; }
  .floating-card { position: static; left: auto; margin-top: 16px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn, .venue-actions .btn { width: 100%; }
}

/* Motion preferences ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal,
  .reveal-enabled .reveal,
  .reveal-enabled .reveal.in { opacity: 1; transform: none; }
}