
    :root {
      --bg: #050814;
      --bg2: #090d1c;
      --panel: rgba(12, 17, 34, 0.92);
      --panel2: rgba(17, 15, 36, 0.92);
      --text: #f7f4ee;
      --muted: #a9adba;
      --muted2: #747b91;
      --purple: #7b4dff;
      --purple2: #a782ff;
      --blue: #2b7cff;
      --line: rgba(165, 130, 255, 0.25);
      --line2: rgba(255, 255, 255, 0.08);
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, Helvetica, sans-serif;
      background: radial-gradient(circle at 70% 0%, rgba(123, 77, 255, 0.18), transparent 35%),
                  linear-gradient(180deg, #050814 0%, #071022 45%, #050814 100%);
      color: var(--text);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
    }

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--line2);
      background: rgba(5, 8, 20, 0.9);
      backdrop-filter: blur(14px);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
	  max-width: 1200px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.05;
    }

    .brand-mark {
      width: 200px;
    }

    .brand-text span {
      display: block;
      color: var(--purple2);
      font-size: 12px;
      letter-spacing: 0.22em;
      margin-top: 4px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: rgba(247, 244, 238, 0.86);
    }

    .nav-links a:hover {
      color: #fff;
    }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 6px;
  
  background: linear-gradient(135deg, #7A3DFF 0%, #9B6DFF 100%);
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
 
}

.btn:hover {
  transform: translateY(-2px);
 box-shadow:
    0 0 18px rgba(27, 183, 255, 0.22),
    0 14px 45px rgba(122, 44, 255, 0.28);
  transition: 0.2s ease;
}

    .btn.secondary {
      background: rgba(255, 255, 255, 0.04);
    }

    .hero {
      position: relative;
      min-height: 650px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--line2);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 75% 42%, rgba(123, 77, 255, 0.18), transparent 30%),
        linear-gradient(90deg, rgba(5, 8, 20, 1) 0%, rgba(5, 8, 20, 0.94) 38%, rgba(5, 8, 20, 0.55) 100%);
      z-index: 1;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 920px;
      height: 920px;
      right: -210px;
      bottom: -620px;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 42%, rgba(170, 130, 255, 0.14), rgba(76, 87, 180, 0.1) 42%, rgba(255,255,255,0.02) 54%, transparent 58%);
      box-shadow: inset 0 0 90px rgba(167, 130, 255, 0.28), 0 0 80px rgba(43, 124, 255, 0.15);
      z-index: 2;
    }

    .hero-lines {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
	  max-width: 1820px;
    }

    .hero-lines::before {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      right: 240px;
      top: 105px;
      border: 1px solid rgba(167, 130, 255, 0.32);
      transform: rotate(45deg);
    }

    .hero-lines::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      right: 315px;
      top: 180px;
      border: 1px solid rgba(167, 130, 255, 0.18);
      transform: rotate(45deg);
    }

	.mascot {
		position: absolute;
		width: 725px;
		right: 10%;
		top: -10px;
		z-index: 4;
		filter: drop-shadow(0 0 32px rgba(123, 77, 255, 0.55));
		transform: rotate(-7deg);
	  animation: astronautFloat 5.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes astronautFloat {
  0% {
    transform: translateY(0px) rotate(-7deg);
  }
  50% {
    transform: translateY(-18px) rotate(-4deg);
  }
  100% {
    transform: translateY(0px) rotate(-7deg);
  }
}

    .hero-content {
      position: relative;
      z-index: 5;
      max-width: 520px;
      padding: 80px 0;
    }

    h1 {
      font-size: clamp(60px, 8vw, 104px);
      line-height: 0.93;
      letter-spacing: -0.045em;
      font-weight: 900;
      margin-bottom: 16px;
      text-transform: uppercase;
    }
	
	

    h1 span {
      display: block;
      color: #ffffff;
      font-weight: 300;
      letter-spacing: 0.02em;
      margin-top: 10px;
    }

.accent-line {
    width: 54px;
    height: 3px;
    background: linear-gradient(90deg, #8B5CFF, #B18CFF);
    margin: 18px 0;
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(139, 92, 255, 0.45);
}
.ticket-countdown {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(167, 130, 255, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 130, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 34px rgba(123, 77, 255, 0.16);
}

.ticket-countdown-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ticket-countdown-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticket-countdown-number {
  color: var(--purple2);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.ticket-progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}

.ticket-progress-bar {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #8B5CFF, #B18CFF);
  box-shadow: 0 0 18px rgba(139, 92, 255, 0.5);
}

.ticket-countdown-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-bottom: 24px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .meta span {
      color: var(--muted);
    }

    .meta .divider {
      width: 1px;
      height: 20px;
      background: rgba(255,255,255,0.22);
    }

    .hero-copy {
      color: var(--muted);
      line-height: 1.65;
      font-size: 16px;
      margin-bottom: 30px;
    }

    .section {
      padding: 58px 0;
      border-bottom: 1px solid var(--line2);
    }

    .section-title {
      text-align: center;
      margin-bottom: 42px;
    }

    .eyebrow {
      color: var(--purple2);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.1;
      letter-spacing: -0.025em;
    }

    .pillars {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
    }

    .pillar {
      text-align: center;
      padding: 18px 18px 24px;
      border-right: 1px solid var(--line2);
    }

    .pillar:last-child {
      border-right: none;
    }

    .icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 18px;
      border: 1px solid rgba(167, 130, 255, 0.35);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--purple2);
      font-size: 26px;
      background: rgba(123, 77, 255, 0.05);
    }

    .pillar h3 {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .pillar p {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .founders {
      background:
        radial-gradient(circle at 15% 45%, rgba(123, 77, 255, 0.18), transparent 28%),
        linear-gradient(90deg, rgba(8, 13, 27, 0.96), rgba(7, 10, 22, 0.96));
    }

    .founders-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 64px;
    }

    .founders h2 {
      margin-bottom: 16px;
    }

    .founders p {
      color: var(--muted);
      line-height: 1.7;
      max-width: 470px;
    }
	
	.email-message {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.email-message.success {
  color: #a782ff;
}

.email-message.error {
  color: #ff7a7a;
}

    .diamond {
      width: 250px;
      height: 250px;
      border-radius: 22px;
      border: 1px solid rgba(167, 130, 255, 0.26);
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      color: white;
      font-size: 40px;
      background: rgba(123, 77, 255, 0.05);
      box-shadow: 0 0 40px rgba(123, 77, 255, 0.12);
    }

    .benefits {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .benefit {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 12px;
      align-items: start;
    }

    .check {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid rgba(167, 130, 255, 0.7);
      display: grid;
      place-items: center;
      color: var(--purple2);
      font-size: 13px;
      font-weight: 900;
    }

    .benefit strong {
      display: block;
      margin-bottom: 4px;
    }

    .benefit span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .founders-cta {
      margin-top: 28px;
    }

    .email-strip {
      background: linear-gradient(90deg, rgba(68, 34, 135, 0.72), rgba(6, 10, 22, 0.95));
      padding: 34px 0;
    }

    .email-inner {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 40px;
      align-items: center;
    }

    .email-inner h3 {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .email-inner p {
      color: var(--muted);
      line-height: 1.5;
    }

    .email-form {
      display: flex;
      gap: 0;
      border: 1px solid rgba(167, 130, 255, 0.26);
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255,255,255,0.04);
    }

    .email-form input {
      flex: 1;
      padding: 16px;
      border: none;
      outline: none;
      background: transparent;
      color: white;
      font-size: 15px;
    }

    .email-form button {
      border: none;
      padding: 0 28px;
      background: linear-gradient(135deg, #7A3DFF 0%, #9B6DFF 100%);
      color: white;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
    }

    footer {
      padding: 46px 0 26px;
      background: #040712;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 42px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-title {
      color: white;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 12px;
      margin-bottom: 14px;
    }

    .footer-grid a {
      display: block;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .footer-grid a:hover {
      color: white;
    }

    .copyright {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid var(--line2);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 18px;
      color: var(--muted2);
      font-size: 13px;
    }

    @media (max-width: 1000px) {
      .nav-links {
        display: none;
      }

      .mascot {
        opacity: 0.28;
        right: 40px;
        width: 220px;
      }

      .hero-lines {
        opacity: 0.45;
      }

      .pillars {
        grid-template-columns: repeat(2, 1fr);
      }

      .pillar {
        border-bottom: 1px solid var(--line2);
      }

      .founders-grid,
      .email-inner,
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .container {
        width: min(100% - 28px, var(--max));
      }

      .nav {
        height: 72px;
      }

      .brand-text {
        font-size: 13px;
      }

      .nav .btn {
        display: none;
      }

      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 56px 0 70px;
      }

      h1 {
        font-size: 58px;
      }

      .pillars,
      .benefits {
        grid-template-columns: 1fr;
      }

      .pillar {
        border-right: none;
      }

      .email-form {
        flex-direction: column;
      }

      .email-form button {
        padding: 16px;
      }

      .btn {
        width: 100%;
      }
    }

.page-hero,
.faq-hero,
.agenda-hero,
.speakers-hero,
.tickets-hero {
  text-align: center;
}

.page-hero .container,
.faq-hero .container,
.agenda-hero .container,
.speakers-hero .container,
.tickets-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero h1,
.faq-hero h1,
.agenda-hero h1,
.speakers-hero h1,
.tickets-hero h1 {
  text-align: center;
  width: 100%;
}

.accent-line {
  margin-left: auto;
  margin-right: auto;
}

.page-hero,
.faq-hero,
.agenda-hero,
.speakers-hero,
.tickets-hero {
    
    padding: 96px 0 72px;
}

.location-hero {
  position: relative;
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--line2);
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(123, 77, 255, 0.22), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(167, 130, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(5, 8, 20, 0.98), rgba(7, 10, 22, 0.98));
  text-align: center;
}

.location-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
  border: 1px solid rgba(167, 130, 255, 0.18);
  transform: rotate(45deg);
  pointer-events: none;
}

.location-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.location-hero h1 {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.location-hero h1 span {
  display: block;
  color: var(--purple2);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-top: 10px;
}

.location-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.location-page {
  background:
    radial-gradient(circle at 16% 28%, rgba(123, 77, 255, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(5, 8, 20, 0.98), rgba(5, 8, 20, 1));
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.venue-card {
  padding: 34px;
  border: 1px solid rgba(167, 130, 255, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 130, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 42px rgba(123, 77, 255, 0.14);
}

.venue-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  border: 1px solid rgba(167, 130, 255, 0.32);
  display: grid;
  place-items: center;
  color: var(--purple2);
  font-size: 32px;
  background: rgba(123, 77, 255, 0.08);
  box-shadow: 0 0 30px rgba(123, 77, 255, 0.16);
  margin-bottom: 22px;
}

.venue-card h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 14px;
}

.venue-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 24px;
}

.address-box {
  padding: 22px;
  border: 1px solid rgba(167, 130, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  margin-bottom: 24px;
}

.address-box .eyebrow {
  margin-bottom: 10px;
}

.address-box address {
  font-style: normal;
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 800;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-actions .btn.secondary {
  border: 1px solid rgba(167, 130, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.location-info-grid {
  display: grid;
  gap: 22px;
}

.location-info-card {
  padding: 28px;
  border: 1px solid rgba(167, 130, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 26px rgba(123, 77, 255, 0.08);
}

.location-info-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  margin-bottom: 12px;
}

.location-info-card h3 i {
  color: var(--purple2);
  font-size: 24px;
}

.location-info-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.location-highlight {
  padding: 22px;
  border: 1px solid rgba(167, 130, 255, 0.20);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.location-highlight i {
  display: block;
  color: var(--purple2);
  font-size: 28px;
  margin-bottom: 12px;
}

.location-highlight strong {
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
}

.location-highlight span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.map-panel {
  margin-top: 44px;
  border: 1px solid rgba(167, 130, 255, 0.24);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 34px rgba(123, 77, 255, 0.12);
}

.map-header {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.map-header h3 {
  font-size: 24px;
}

.map-header p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 6px;
}

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.location-cta {
  margin-top: 44px;
  padding: 34px;
  border: 1px solid rgba(167, 130, 255, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(68, 34, 135, 0.45), rgba(6, 10, 22, 0.92));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.location-cta h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.location-cta p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .location-layout {
    grid-template-columns: 1fr;
  }

  .location-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .location-hero {
    padding: 64px 0 48px;
  }

  .venue-card,
  .location-info-card,
  .location-cta {
    padding: 24px;
  }

  .location-highlights {
    grid-template-columns: 1fr;
  }

  .map-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-frame {
    height: 340px;
  }
}

.location-actions .btn,
.map-header .btn,
.location-cta .btn {
  width: auto;
  min-height: 0;
  height: auto;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.location-actions {
  align-items: center;
}

.location-actions .btn {
  min-width: 168px;
}

.location-actions .btn.secondary {
  min-width: 230px;
}

.location-page .btn {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 16px 24px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

.location-actions {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
}

.location-actions .btn {
  flex: 0 0 auto !important;
}

.location-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1px solid rgba(167, 130, 255, 0.32) !important;
}

.map-header .btn {
  flex: 0 0 auto !important;
  margin-left: auto !important;
}

@media (max-width: 600px) {
  .location-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .location-page .btn {
    width: 100% !important;
  }
}

.venue-card .location-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 24px !important;
}

.venue-card .location-actions a.btn {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 168px !important;
  max-width: max-content !important;
  height: 58px !important;
  padding: 0 24px !important;
  margin: 0 !important;
  line-height: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

.venue-card .location-actions a.btn.secondary {
  min-width: 230px !important;
}

.location-actions-fixed {
  display: grid !important;
  grid-template-columns: max-content max-content !important;
  gap: 24px !important;
  align-items: center !important;
  justify-content: start !important;
}

.location-actions-fixed .btn {
  width: auto !important;
  min-width: 168px !important;
  height: 58px !important;
  padding: 0 24px !important;
  margin: 0 !important;
  display: inline-flex !important;
}

.location-actions-fixed .btn.secondary {
  min-width: 230px !important;
}

@media (max-width: 600px) {
  .location-actions-fixed {
    grid-template-columns: 1fr !important;
  }

  .location-actions-fixed .btn {
    width: 100% !important;
  }
}

.mobile-bottom-nav {
  z-index: 999999 !important;
  pointer-events: auto !important;
}

.mobile-bottom-nav a,
.mobile-bottom-item {
  position: relative !important;
  z-index: 1000000 !important;
  pointer-events: auto !important;
}

.mobile-menu-panel,
.cookie-banner {
  pointer-events: none;
}

.mobile-menu-panel.open,
.cookie-banner:not(.hide) {
  pointer-events: auto;
}

@media (max-width: 1000px) {
  .mascot {
    right: -20px !important;
    width: 260px !important;
  }
}

@media (max-width: 600px) {
  .mascot {
    right: -40px !important;
    top: 35px !important;
    width: 300px !important;
    opacity: 0.35 !important;
  }
}

.home-speakers-grid.compact-speakers {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.compact-speaker-card {
  border-radius: 12px;
}

.compact-speaker-photo {
  height: 110px;
}

.compact-speaker-info {
  padding: 10px;
}

.compact-speaker-info h3 {
  font-size: 11px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.compact-speaker-info .speaker-category {
  font-size: 7px;
  line-height: 1.25;
  letter-spacing: 0.12em;
  
}

.speaker-learn-more
{
    color: var(--purple2);
    margin-top: 10px;
    display: block;
}

.compact-speaker-info p {
  display: none;
}

@media (max-width: 1000px) {
  .home-speakers-grid.compact-speakers {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .home-speakers-grid.compact-speakers {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .compact-speaker-photo {
    height: 180px;
  }
}

#speakers .home-speakers-grid.compact-speakers {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: 12px !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

#speakers .compact-speaker-card {
  border-radius: 12px !important;
}

#speakers .compact-speaker-photo {
  height: 95px !important;
  min-height: 95px !important;
  max-height: 95px !important;
}

#speakers .compact-speaker-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#speakers .compact-speaker-info {
  padding: 9px !important;
}

#speakers .compact-speaker-info h3 {
  font-size: 10px !important;
  line-height: 1.1 !important;
  margin: 0 0 5px !important;
}

#speakers .compact-speaker-info .speaker-category {
  font-size: 7px !important;
  line-height: 1.25 !important;
  letter-spacing: 0.1em !important;
}

#speakers .compact-speaker-info p {
  display: none !important;
}

@media (max-width: 1000px) {
  #speakers .home-speakers-grid.compact-speakers {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  #speakers .home-speakers-grid.compact-speakers {
    grid-template-columns: 1fr !important;
    max-width: 260px !important;
  }

  #speakers .compact-speaker-photo {
    height: 170px !important;
    min-height: 170px !important;
    max-height: 170px !important;
  }
}

.home-speakers-section {
  background:
    radial-gradient(circle at 18% 35%, rgba(123, 77, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(5, 8, 20, 0.98), rgba(5, 8, 20, 1));
}

#speakers .home-speakers-grid.compact-speakers {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 22px !important;

  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: 14px !important;

  border: 1px solid rgba(167, 130, 255, 0.22) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(167, 130, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.025) !important;
  box-shadow: 0 0 34px rgba(123, 77, 255, 0.10) !important;
}

#speakers .compact-speaker-card {
  overflow: hidden !important;
  border: 1px solid rgba(167, 130, 255, 0.22) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: 0 0 18px rgba(123, 77, 255, 0.08) !important;
}

#speakers .compact-speaker-photo {
  min-height: 165px !important;
  background:
    radial-gradient(circle at 50% 35%, rgba(167, 130, 255, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(123, 77, 255, 0.18), rgba(255, 255, 255, 0.03)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#speakers .compact-speaker-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

#speakers .compact-speaker-info {
  padding: 10px !important;
}

#speakers .compact-speaker-info h3 {
  font-size: 11px !important;
  line-height: 1.05 !important;
  margin: 0 0 6px !important;
  color: var(--text) !important;
}

#speakers .compact-speaker-info .speaker-category {
  color: var(--purple2) !important;
  font-size: 7px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  line-height: 1.25 !important;
}

#speakers .compact-speaker-info p {
  display: none !important;
}

#speakers .home-speakers-more {
  margin-top: 30px !important;
  text-align: center !important;
}

#speakers .home-speakers-more .btn {
  width: auto !important;
  min-width: 190px !important;
}

@media (max-width: 1000px) {
  #speakers .home-speakers-grid.compact-speakers {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  #speakers .home-speakers-grid.compact-speakers {
    grid-template-columns: 1fr !important;
    max-width: 290px !important;
  }

  #speakers .compact-speaker-photo {
    height: 180px !important;
  }

  #speakers .home-speakers-more .btn {
    width: 100% !important;
  }
}

body .founders-page-layout {
  grid-template-columns: 1.25fr 0.9fr !important;
  gap: 60px !important;
}

body .founders-page-card {
  max-width: 560px !important;
  margin-left: auto !important;
}

body .founders-benefits {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 26px 34px !important;
  margin-bottom: 34px !important;
}

body .founders-benefits .benefit {
  display: grid !important;
  grid-template-columns: 28px 1fr !important;
  gap: 12px !important;
  align-items: start !important;
}

body .founders-benefits .benefit strong {
  display: block !important;
  font-size: 17px !important;
  line-height: 1.05 !important;
  margin-bottom: 6px !important;
}

body .founders-benefits .benefit span {
  display: block !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  color: var(--muted) !important;
}

body .founders-page-copy h1 {
  max-width: 820px !important;
  font-size: clamp(58px, 6vw, 82px) !important;
}

body .founders-page-copy p {
  max-width: 700px !important;
}

body .founders-code-box {
  display: inline-grid !important;
  margin-top: 18px !important;
  margin-bottom: 24px !important;
}

@media (max-width: 1000px) {
  body .founders-page-layout {
    grid-template-columns: 1fr !important;
  }

  body .founders-page-card {
    max-width: none !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  body .founders-benefits {
    grid-template-columns: 1fr !important;
  }

  body .founders-page-copy h1 {
    font-size: 44px !important;
  }
}

body .founders-page-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 0.75fr) !important;
  gap: 40px !important;
  align-items: center !important;
}

body .founders-page-copy h1 {
  font-size: clamp(48px, 5.2vw, 76px) !important;
  max-width: 760px !important;
}

body .founders-page-card {
  width: 100% !important;
  max-width: 520px !important;
  margin-left: auto !important;
}

body .founders-benefits {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(210px, 1fr)) !important;
  gap: 30px 34px !important;
}

body .founders-benefits .benefit {
  display: grid !important;
  grid-template-columns: 26px minmax(0, 1fr) !important;
  gap: 12px !important;
}

body .founders-benefits .benefit strong {
  font-size: 17px !important;
  line-height: 1.05 !important;
  max-width: none !important;
}

body .founders-benefits .benefit span {
  font-size: 13px !important;
  line-height: 1.45 !important;
  max-width: 190px !important;
}

body .ticket-countdown {
  width: 100% !important;
  margin-top: 44px !important;
}

@media (max-width: 1100px) {
  body .founders-page-layout {
    grid-template-columns: 1fr !important;
  }

  body .founders-page-card {
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  body .founders-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  body .founders-benefits {
    grid-template-columns: 1fr !important;
  }

  body .founders-page-copy h1 {
    font-size: 42px !important;
  }

  body .ticket-countdown {
    max-width: 100% !important;
  }
}

body .founders-page-copy {
  text-align: center !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

body .founders-page-copy p {
  margin-left: auto !important;
  margin-right: auto !important;
}

body .founders-seal {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

body .founders-code-box {
  margin-left: auto !important;
  margin-right: auto !important;
}

body .founders-page-actions {
  justify-content: center !important;
}

.founders-page-hero .founders-page-copy > h1 {
  display: inline !important;
}

.single-speaker-page {
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(123, 77, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #050814, #070a16);
  min-height: 80vh;
}

.single-speaker-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.single-speaker-photo {
  overflow: hidden;
  border: 1px solid rgba(167, 130, 255, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(167, 130, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.single-speaker-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.single-speaker-content h1 {
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.single-speaker-title {
  color: var(--purple2);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.single-speaker-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 720px;
}

.single-speaker-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

@media (max-width: 900px) {
  .single-speaker-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .single-speaker-page {
    padding: 50px 0 110px;
  }

  .single-speaker-content h1 {
    font-size: 46px;
  }

  .single-speaker-content p {
    font-size: 16px;
  }

  .single-speaker-actions .btn {
    width: 100%;
  }
}

.cnc-member-benefits {
  margin: 0 0 44px;
  padding: 32px;
  border: 1px solid rgba(167, 130, 255, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 130, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 34px rgba(123, 77, 255, 0.10);
}

.cnc-benefits-header {
  max-width: 760px;
  margin-bottom: 26px;
}

.cnc-benefits-header h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.cnc-benefits-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.cnc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cnc-benefit {
  padding: 22px;
  border: 1px solid rgba(167, 130, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.cnc-benefit i {
  display: block;
  color: var(--purple2);
  font-size: 28px;
  margin-bottom: 16px;
}

.cnc-benefit strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cnc-benefit span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .cnc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cnc-member-benefits {
    padding: 24px;
  }

  .cnc-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.discounted-ticket-price {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  margin-top:5px !important;
}

.original-price {
  color: #ff0000 !important;
  font-size: 22px !important;
  font-weight: 900;
  text-decoration: line-through;
  opacity: 0.75;
  
}

.discounted-price {
  color: var(--text);
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.discount-label {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(167, 130, 255, 0.14);
  color: var(--purple2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cnc-ticket-countdown {
  margin: 0 0 44px;
  padding: 28px 32px;
  border: 1px solid rgba(167, 130, 255, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 130, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.035);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 0 34px rgba(123, 77, 255, 0.10);
}

.cnc-ticket-countdown h3 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.cnc-ticket-countdown p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.cnc-ticket-count {
  min-width: 120px;
  text-align: right;
}

.cnc-ticket-count strong {
  display: block;
  color: var(--purple2);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.cnc-ticket-count span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cnc-ticket-progress {
  grid-column: 1 / -1;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.cnc-ticket-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #8B5CFF, #B18CFF);
  box-shadow: 0 0 18px rgba(139, 92, 255, 0.5);
}

@media (max-width: 700px) {
  .cnc-ticket-countdown {
    grid-template-columns: 1fr;
  }

  .cnc-ticket-count {
    text-align: left;
  }
}

.ticket-grid + .cnc-member-benefits {
  margin-top: 54px !important;
  margin-bottom: 0 !important;
}

#speakers .home-speakers-grid.compact-speakers {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
}

@media (max-width: 1000px) {
  #speakers .home-speakers-grid.compact-speakers {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  #speakers .home-speakers-grid.compact-speakers {
    grid-template-columns: 1fr !important;
    max-width: 300px !important;
  }
}

.ticket-modal {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 999999;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ticket-modal.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  display: flex;
}

.ticket-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ticket-modal.active {
  display: flex !important;
}

.ticket-modal {
  overflow: hidden;
}

.ticket-shadowbox {
  overflow: hidden;
}

.ticket-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #fff;
  color: #111;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  font-weight: 800;
}

.ticket-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #eee;
  border-top: 4px solid #9b5cff;
  border-radius: 50%;
  animation: spinTicket 0.8s linear infinite;
}

@keyframes spinTicket {
  to {
    transform: rotate(360deg);
  }
}

.ticket-modal {
  overflow: hidden !important;
}

.ticket-shadowbox {
  overflow: hidden !important;
}

.ticket-shadowbox iframe {
  overflow: hidden !important;
}