/* ============================================
   EVERSEE Creative Summit — Landing Page
   Brand: gold + black, Helvetica Neue / system sans
   ============================================ */

/* Self-hosted Google Fonts (DSGVO-compliant, no external requests) */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/syne-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/syne-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand colors — gold */
  --accent: #c9a96e;
  --accent-hover: #d4b87d;
  --gradient-start: #c9a96e;
  --gradient-end: #8a7340;

  /* Backgrounds */
  --bg: #080808;
  --bg-card: #0f0f0f;
  --bg-section: #0a0a0a;
  --bg-section-light: #141414;

  /* Text — high contrast on dark backgrounds */
  --text: #ffffff;
  --dim: #cccccc;
  --muted: #888888;
  --faint: #555555;

  /* Borders */
  --border: #1a1a1a;
  --border-hover: #2e2e2e;

  /* Lighter accent for small text on dark backgrounds (AA contrast) */
  --accent-text: #d4b87d;

  /* Accent-derived */
  --accent-bg: rgba(201,169,110,0.05);
  --accent-border: rgba(201,169,110,0.25);
  --accent-border-hover: rgba(201,169,110,0.5);
  --accent-badge: rgba(201,169,110,0.12);

  /* Typography */
  --head: 'Helvetica Neue', 'Arial', sans-serif;
  --body: 'Helvetica Neue', 'Arial', sans-serif;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Lenis (inlined — was external render-blocking CSS) */
html.lenis, html.lenis body { height: auto; }
.lenis:not(.lenis-autoToggle).lenis-stopped { overflow: clip; }
.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch] { overscroll-behavior: contain; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(201,169,110,0.3); }

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.cookie-banner__text {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.4;
}
.cookie-banner__text a {
  color: var(--accent-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  min-height: 36px;
}
.cookie-banner__btn--accept {
  background: var(--accent);
  color: #fff;
}
.cookie-banner__btn--decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dim);
}

@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; text-align: center; }
}

/* Skip navigation */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Focus indicators */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Cursor
   ============================================ */
.cursor { display: none; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  transition: all 0.25s var(--ease);
  min-height: 44px;
  min-width: 44px;
}
.btn--accent {
  background: var(--accent);
  color: #000;
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(201,169,110,0.25);
}
.btn--accent:hover {
  background: var(--accent-hover);
}
.btn--outline {
  border: 1px solid var(--border);
  color: var(--dim);
}

/* ============================================
   1. Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.nav__logo {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__link {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s;
}
.nav__cta {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--accent);
  color: #000;
  border-radius: 100px;
  font-weight: 500;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger--open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger--open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu--open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-menu__nav a {
  font-family: var(--head);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--dim);
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu__cta {
  margin-top: 12px;
  padding: 14px 40px;
  background: var(--accent) !important;
  color: #000 !important;
  border-radius: 10px;
  font-size: 16px !important;
}

/* ============================================
   2. Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.hero__video-wrap {
  position: absolute;
  inset: 24px;
  border-radius: 16px;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.3) 70%,
    rgba(0,0,0,0.15) 100%
  );
}
/* Logo cover: hides baked-in logo in top-right of video. Delete this block to revert */
.hero__logo-cover {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 300px;
  background: radial-gradient(ellipse at top right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero__eyebrow {
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--head);
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* Countdown */
.hero__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.countdown__item { text-align: center; min-width: 60px; }
.countdown__num {
  display: block;
  font-family: var(--head);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
}
.countdown__label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px;
}
.countdown__sep {
  font-size: 28px;
  font-weight: 200;
  color: var(--faint);
  margin-top: -16px;
}

.hero__cta { margin-bottom: 16px; }
.hero__early {
  font-size: 14px;
  color: var(--accent-text);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero { padding: 16px; }
  .hero__video-wrap { inset: 16px; border-radius: 12px; }
}

/* ============================================
   3. About
   ============================================ */
.about {
  padding: 120px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.about__block {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
}
.about__label {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 16px;
}
.about__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dim);
}
.about__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.about__stat { text-align: center; }
.about__stat-num {
  display: block;
  font-family: var(--head);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -1px;
}
.about__stat-label {
  display: block;
  font-size: 14px;
  color: var(--dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}
.about__stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.about__curated {
  text-align: center;
  font-size: 20px;
  color: var(--dim);
  font-style: italic;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .about { padding: 80px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 24px; }
  .about__stats { flex-wrap: wrap; gap: 24px; }
  .about__stat-sep { display: none; }
}

/* ============================================
   4. Program (timeline layout)
   ============================================ */
.section-title {
  font-family: var(--head);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 200;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 56px;
}
.program {
  padding: 120px 0;
  background: var(--bg-section);
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
}
.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-border);
  font-family: var(--head);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(201,169,110,0.05);
  flex-shrink: 0;
}
.timeline__line {
  display: block;
  width: 1.5px;
  flex: 1;
  background: linear-gradient(to bottom, var(--accent-border), transparent);
  margin-top: 8px;
}
.timeline__content {
  padding-bottom: 48px;
}
.timeline__item:last-child .timeline__content {
  padding-bottom: 0;
}
.timeline__header {
  margin-bottom: 20px;
}
.timeline__name {
  font-family: var(--head);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.timeline__date {
  font-size: 15px;
  color: var(--dim);
}
.timeline__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.timeline__list li {
  font-size: 20px;
  color: var(--dim);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.timeline__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}
.timeline__evening {
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.1);
}
.timeline__evening-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.timeline__evening p {
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
}
.timeline__optional {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .program { padding: 80px 0; }
  .timeline__item { grid-template-columns: 48px 1fr; gap: 20px; }
  .timeline__num { width: 40px; height: 40px; font-size: 18px; }
}

/* ============================================
   5. Speed Matching
   ============================================ */
.matching {
  padding: 120px 0;
}
.matching__inner {
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  padding: 64px 48px;
  background: var(--accent-bg);
  text-align: center;
}
.matching__title {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.matching__headline {
  font-family: var(--head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.matching__sub {
  font-size: 20px;
  color: var(--dim);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.matching__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.matching__label {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.matching__block p {
  font-size: 20px;
  color: var(--dim);
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 768px) {
  .matching { padding: 80px 0; }
  .matching__inner { padding: 40px 24px; }
  .matching__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   6. Who's Coming (Speakers)
   ============================================ */
.speakers {
  padding: 120px 0;
  background: var(--bg-section);
}
.speakers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.speaker-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  background: rgba(15,15,15,0.6);
  text-align: center;
  transition: border-color 0.2s;
}
.speaker-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233,26,131,0.2), rgba(76,36,193,0.2));
  margin: 0 auto 20px;
  /* TODO: replace with real photos */
}
.speaker-card__name {
  font-family: var(--head);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}
.speaker-card__role {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.4;
  margin-bottom: 4px;
}
.speakers__cta {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1024px) {
  .speakers__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .speakers { padding: 80px 0; }
  .speakers__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 48px; }
}

/* ============================================
   7. Tickets
   ============================================ */
.tickets {
  padding: 120px 0;
}
.tickets__early {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 400px;
  margin: -32px auto 56px;
  padding: 13px 24px;
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--accent);
  background: var(--accent-bg);
}
.pulse {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.7)} }

.tickets__segment-label {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 32px;
  font-family: var(--head);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: none;
  color: var(--text);
}
.tickets__segment-label::before,
.tickets__segment-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.tickets__grid {
  display: grid;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 56px;
}
.tickets__grid--one { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }

/* Ticket card */
.ticket-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  background: var(--bg-card);
  position: relative;
  transition: border-color 0.2s;
}
.ticket-card__title {
  font-family: var(--head);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.ticket-card__days {
  font-size: 20px;
  color: var(--dim);
  margin-bottom: 28px;
}
.ticket-card__price {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}
.ticket-card__price sup {
  font-size: 18px;
  font-weight: 400;
  vertical-align: super;
  letter-spacing: 0;
  margin-right: 2px;
}
.ticket-card__note {
  font-size: 20px;
  color: var(--dim);
  margin-bottom: 14px;
}
.ticket-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px;
}
.ticket-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 20px;
  color: var(--dim);
  line-height: 1.4;
}
.ticket-card__feature::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 1px;
  border-radius: 50%;
  border: 1.2px solid #333;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23333' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.ticket-card__feature--on { color: #ddd; }
.ticket-card__feature--on::before {
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23c9a96e' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ticket-card__feature--highlight { color: var(--accent); }
.ticket-card__feature--highlight::before {
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23c9a96e' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.tag {
  display: inline-block;
  font-size: 9px;
  background: var(--accent-badge);
  color: var(--accent);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}
.ticket-card__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
  margin-top: 16px;
}
.ticket-card__total-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--dim);
}
.ticket-card__total-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}
.ticket-card__cta {
  display: block;
  margin-top: 16px;
  width: 100%;
}

/* Addon rows inside ticket cards */
.ticket-addons {
  margin-top: 36px;
}
.ticket-addons__title {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 500;
  color: var(--dim);
  margin-bottom: 12px;
}
.ticket-addon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 6px;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s, background 0.15s;
}
.ticket-addon.selected { border-color: var(--accent); background: rgba(201,169,110,0.05); }
.ticket-addon__check {
  width: 20px; height: 20px;
  border: 2px solid #444;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.ticket-addon.selected .ticket-addon__check {
  border-color: var(--accent);
  background: var(--accent);
}
.ticket-addon__check::after {
  content: '';
  display: none;
  width: 6px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.ticket-addon.selected .ticket-addon__check::after { display: block; }
.ticket-addon__info { flex: 1; min-width: 0; }
.ticket-addon__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.ticket-addon__desc {
  font-size: 18px;
  color: var(--dim);
  margin-top: 2px;
  line-height: 1.3;
}
.ticket-addon__price {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
  white-space: nowrap;
}
.ticket-addon--bundle {
  border: 2px solid var(--accent);
  background: rgba(201,169,110,0.08);
  margin-top: 10px;
  padding: 12px 14px;
}
.ticket-addon--bundle .ticket-addon__check {
  border: 2px solid #444;
  background: transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0;
}
.ticket-addon__save {
  display: inline-block;
  padding: 1px 6px;
  background: var(--accent-badge);
  border-radius: 4px;
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  margin-left: 4px;
  vertical-align: middle;
}

/* Corporate aside */
.tickets__aside {
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 20px 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tickets__aside-text {
  font-size: 20px;
  color: var(--dim);
  line-height: 1.4;
}
.tickets__aside-text strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .tickets { padding: 80px 0; }
  .tickets__aside { flex-direction: column; text-align: center; }
}

/* ============================================
   8. Waitlist (Email Capture)
   ============================================ */
.waitlist {
  padding: 80px 0;
  background: var(--bg-section);
}
.waitlist__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.waitlist__title {
  font-family: var(--head);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}
.waitlist__sub {
  font-size: 20px;
  color: var(--dim);
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.6;
}
.waitlist__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.waitlist__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23808080' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.waitlist__select option {
  background: #1a1a1a;
  color: var(--text);
}
.waitlist__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(15,15,15,0.6);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
}
.waitlist__input::placeholder { color: var(--faint); }
.waitlist__input:focus { border-color: var(--accent-border); }
.waitlist__btn { flex-shrink: 0; }
.waitlist__thanks {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  padding: 16px 0;
}

@media (max-width: 480px) {
  .waitlist__form { flex-direction: column; }
}

/* ============================================
   9. FAQ
   ============================================ */
.faq {
  padding: 120px 0;
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child {
  border-top: 1px solid var(--border);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  min-height: 44px;
}
.faq__icon {
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--faint);
  transition: transform 0.3s var(--ease);
}
.faq__item--open .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__answer p {
  padding: 0 0 22px;
  font-size: 20px;
  color: var(--dim);
  line-height: 1.7;
  font-weight: 400;
}
.faq__answer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .faq { padding: 80px 0; }
}

/* ============================================
   10. About EVERSEE (Organizers)
   ============================================ */
.organizers {
  padding: 120px 0;
  background: var(--bg-section);
}
.organizers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.organizers__text {
  font-size: 20px;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 16px;
}
.organizers__founder {
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(15,15,15,0.6);
}
img.organizers__photo {
  display: block;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/2;
  border-radius: 12px;
  margin: 0 auto 24px;
  object-fit: cover;
}
.organizers__name {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.organizers__role {
  font-size: 14px;
  color: var(--accent-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.organizers__bio {
  font-size: 20px;
  color: var(--dim);
  line-height: 1.6;
}
.organizers__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
}
.organizers__stat { text-align: center; }
.organizers__stat-num {
  display: block;
  font-family: var(--head);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -1px;
}
.organizers__stat-label {
  display: block;
  font-size: 14px;
  color: var(--dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}
.organizers__stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 768px) {
  .organizers { padding: 80px 0; }
  .organizers__grid { grid-template-columns: 1fr; gap: 32px; }
  .organizers__stats { flex-wrap: wrap; gap: 24px; }
  .organizers__stat-sep { display: none; }
}

/* ============================================
   11. Footer
   ============================================ */
.footer {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer__logo {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer__copy {
  font-size: 13px;
  color: var(--muted);
}
.footer__legal {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.footer__legal a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer__link {
  font-size: 15px;
  color: var(--dim);
  transition: color 0.2s;
}
.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__socials a {
  font-size: 15px;
  color: var(--dim);
  transition: color 0.2s;
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__socials { align-items: center; }
}

/* ============================================
   Scroll Reveal
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Hover: only on devices that support it
   ============================================ */
@media (hover: hover) {
  .speaker-card:hover { border-color: var(--border-hover); }
  .ticket-card:hover { border-color: var(--border-hover); }
  .ticket-addon:hover { border-color: #444; }
  .nav__link:hover { color: var(--text); }
  .btn--accent:hover {
    box-shadow: 0 6px 32px rgba(201,169,110,0.4);
    transform: translateY(-1px);
  }
  .btn--outline:hover {
    border-color: var(--accent-border);
    color: var(--text);
  }
  .nav__cta:hover {
    box-shadow: 0 4px 20px rgba(201,169,110,0.3);
    transform: translateY(-1px);
  }
  .mobile-menu__nav a:hover { color: var(--text); }
  .footer__legal a:hover { color: var(--text); }
  .footer__link:hover { color: var(--text); }
  .footer__socials a:hover { color: var(--text); }
}
