/* =========================================================
   DDIP USA 2027 — Drug Discovery Innovation Programme
   Premium one-page conference styles
   ========================================================= */

:root {
  --black: #050505;
  --navy: #0B1020;
  --navy-2: #10182E;
  --navy-3: #16243A;
  --lime: #B7FF3C;
  --lime-2: #8FF544;
  --violet: #8B3DFF;
  --violet-2: #7A35D9;
  --cyan: #67E8F9;
  --white: #FFFFFF;
  --fog: #F5F7FA;
  --mist: #E8EDF2;
  --ink: #0B1020;
  --muted: #5B6578;
  --muted-light: #9AA3B5;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(11, 16, 32, 0.1);
  --shadow: 0 24px 60px rgba(5, 5, 5, 0.28);
  --radius: 22px;
  --radius-sm: 14px;
  --nav-h: 86px;
  --font-display: "Plus Jakarta Sans", "Manrope", sans-serif;
  --font-body: "Inter", "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 8px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

::selection {
  background: rgba(183, 255, 60, 0.28);
  color: var(--black);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2000;
  background: var(--lime);
  color: var(--black);
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

section {
    overflow-x: hidden;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  margin: 0 0 16px;
}
.section-title .accent { color: var(--lime); }
.testimonial-title .accent,
.pricing-head .section-title .accent,
.faq-title .accent {
  color: var(--violet);
  -webkit-text-fill-color: unset;
  background: none;
  animation: none;
}

.section-sub {
  font-size: 1.05rem;
  color: rgb(0 0 0 / 70%);
  margin: 0;
}
.section {
  position: relative;
  padding: 70px 0;
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-light { background: var(--fog); }

.section-head {
  margin-bottom: 52px;
}
.section-head.center {
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .section-sub { margin-inline: auto; }

.meet .container,
.why-section .container,
.experience .container,
.faq .container,
.testimonials .container,
.contact .container {
  position: relative;
  z-index: 1;
}

/* ---------- Buttons ---------- */
.btn-lime,
.btn-ghost,
.btn-violet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 14px 24px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn-lime {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(183, 255, 60, 0.22);
}
.btn-lime:hover {
  background: var(--lime-2);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(183, 255, 60, 0.38);
}
.btn-hero-cta {
  position: relative;
  overflow: hidden;
  z-index: 0;
  animation: heroCtaPulse 2.2s ease-in-out infinite;
}
.btn-hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-120%) skewX(-18deg);
  animation: heroCtaShine 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.btn-hero-cta > * {
  position: relative;
  z-index: 2;
}
.btn-hero-cta i {
  display: inline-block;
  animation: heroCtaArrow 1.7s ease-in-out infinite;
}
.btn-hero-cta:hover {
  animation-play-state: paused;
}
.btn-hero-cta:hover::before,
.btn-hero-cta:hover i {
  animation-play-state: paused;
}
@keyframes heroCtaPulse {
  0%, 100% {
    box-shadow:
      0 8px 28px rgba(183, 255, 60, 0.35),
      0 0 0 0 rgba(139, 61, 255, 0.7),
      0 0 28px 4px rgba(139, 61, 255, 0.45);
  }
  50% {
    box-shadow:
      0 14px 40px rgba(183, 255, 60, 0.45),
      0 0 0 16px rgba(139, 61, 255, 0),
      0 0 48px 8px rgba(139, 61, 255, 0);
  }
}
@keyframes heroCtaShine {
  0%, 55% { transform: translateX(-130%) skewX(-18deg); }
  75%, 100% { transform: translateX(160%) skewX(-18deg); }
}
@keyframes heroCtaArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}
.btn-violet {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(139, 61, 255, 0.28);
}
.btn-violet:hover {
  background: var(--violet-2);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.btn-text:hover { color: var(--violet); }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1040;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(11, 16, 32, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 10px 40px rgba(0,0,0,0.28);
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  min-width: 0;
}
.brand img {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 0;
  background: none;
  border: 0;
  outline: none;
  box-shadow: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.is-active,
.nav-links a:focus,
.nav-links a:focus-visible {
  color: var(--white);
  background: none;
  border: 0;
  outline: none;
  box-shadow: none;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

.offcanvas.mobile-drawer {
  background: var(--navy);
  color: var(--white);
  width: min(86vw, 360px);
}
.mobile-drawer .offcanvas-header { border-bottom: 1px solid var(--line); }
.mobile-drawer .offcanvas-header .brand img {
  height: 40px;
  width: auto;
}
.mobile-drawer .offcanvas-body { padding: 24px; }
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.mobile-nav-list a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(92vh, 860px);
  padding: calc(var(--nav-h) + 40px) 0 72px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(1.05) contrast(1.05);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgb(11 16 32 / 70%) 42%, rgba(11, 16, 32, 0.28) 100%), linear-gradient(180deg, rgb(5 5 5 / 26%) 0%, rgba(5, 5, 5, 0.15) 40%, rgb(5 5 5 / 47%) 100%)
}
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow.g1 { right: 8%; top: 18%; background: rgba(139, 61, 255, 0.199); animation: heroGlowPulse 7s ease-in-out infinite; }
.hero-glow.g2 { right: 22%; bottom: 8%; background: rgba(183, 255, 60, 0.12); animation: heroGlowPulse 8.5s ease-in-out infinite reverse; }
.hero-molecule {
  position: absolute;
  right: -4%;
  top: 12%;
  width: min(52vw, 640px);
  opacity: 0.42;
  z-index: 1;
  pointer-events: none;
  animation: floaty 10s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero-molecule {
  position: absolute;
  right: -4%;
  top: 12%;
  width: min(52vw, 640px);
  opacity: 0.42;
  z-index: 1;
  pointer-events: none;
  animation: floaty 10s ease-in-out infinite;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}
.hero-crumb__brand {
  color: var(--lime);
}
.hero-crumb__sep,
.hero-crumb__dash {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
  margin: 0;
}
.hero h1 .lime { color: var(--lime); }
.hero-lead {
  position: absolute;
  right: 12px;
  bottom: 8px;
  z-index: 3;
  display: flex;
  align-items: stretch;
  gap: 16px;
  max-width: min(420px, 42vw);
  margin: 0;
  padding: 16px 18px 16px 0;
  background: linear-gradient(90deg, transparent, rgba(5,5,5,0.35) 20%, rgba(5,5,5,0.45));
  border-radius: 12px;
}
.hero-lead__line {
  width: 3px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--lime), var(--violet), transparent);
  animation: leadLine 2.4s ease-in-out infinite;
}
.hero-lead__text {
  font-family: var(--font-display);
  font-size: clamp(1.07rem, 1.71vw, 1.38rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgb(255 255 255 / 92%);
  letter-spacing: -0.01em;
}
.hero-lead__actions {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  color: var(--white);
}
.hero-word {
  position: relative;
  display: inline-block;
  color: var(--white);
}
.hero-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: rgba(183, 255, 60, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  animation: wordUnderline 4.5s ease-in-out infinite;
}
.hero-word:nth-child(1)::after { animation-delay: 0s; }
.hero-word:nth-child(3)::after { animation-delay: 1.5s; }
.hero-word--accent {
  color: var(--lime);
}
.hero-word--accent::after {
  background: linear-gradient(90deg, var(--lime), var(--violet));
  animation-delay: 3s;
}
.hero-sep,
.hero-amp {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin: 0 4px;
}
.hero-amp { margin-left: 2px; }

@keyframes leadLine {
  0%, 100% { opacity: 0.55; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.25); }
}

@keyframes wordUnderline {
  0%, 18%, 100% { transform: scaleX(0); opacity: 0; }
  28%, 48% { transform: scaleX(1); opacity: 1; }
  58% { transform: scaleX(0); opacity: 0; }
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin: 6px 0 8px;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 0;
  border-bottom: 0;
}
.meta-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(183, 255, 60, 0.18), rgba(11, 16, 32, 0.2)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(183, 255, 60, 0.32);
  color: var(--lime);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.meta-item:hover .meta-icon {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(183, 255, 60, 0.14);
}
.meta-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.meta-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.meta-value {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(183, 255, 60, 0.55), transparent);
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.hero-actions .btn-lime,
.hero-actions .btn-ghost {
  font-size: 0.92rem;
  padding: 16px 28px;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ---------- Logos ---------- */
.logos {
  position: relative;
  background: var(--white);
  padding: 20px 0;
  border: 0;
}
.logos::before,
.logos::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, #8B3DFF 0%, #A855F7 35%, #B7FF3C 100%);
}
.logos::before { top: 0; }
.logos::after { bottom: 0; }
.logo-marquee,
.testimonials-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 8px 24px;
}
.logo-track.is-ready {
  animation: marquee 120s linear infinite;
}
.logo-marquee:hover .logo-track.is-ready { animation-play-state: paused; }
.logo-item {
  flex: 0 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img {
  max-width: 200px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}
.logo-item:hover img {
  transform: scale(1.04);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.stats {
  background:
    radial-gradient(900px 280px at 12% 0%, rgba(139,61,255,0.18), transparent 60%),
    radial-gradient(700px 240px at 90% 110%, rgba(183,255,60,0.1), transparent 55%),
    var(--navy-2);
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/molecule.svg") right 6% center / 420px no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px 16px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(183,255,60,0.35), transparent);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 4.6vw, 4.1rem);
  color: var(--lime);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 500;
}

/* ---------- About ---------- */
.about-section {
  background: #FFFFFF;
  padding: 70px 0;
}
.about-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--navy);
  margin: 0 0 18px;
}
.about-title span { color: var(--violet); }
.about-desc {
  color: #3e4857;
  font-size: 1.04rem;
  line-height: 1.78;
  margin: 0 0 32px;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.about-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1.5px solid rgba(139, 61, 255, 0.28);
  transition: 0.3s var(--ease);
  min-height: 100%;
}
.about-feature:hover {
  border-color: rgba(139, 61, 255, 0.55);
  background: linear-gradient(180deg, rgba(139, 61, 255, 0.04), rgba(183, 255, 60, 0.06));
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(122, 53, 217, 0.1);
}
.about-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1.5px solid rgba(139, 61, 255, 0.45);
  color: var(--violet);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: linear-gradient(145deg, rgba(139, 61, 255, 0.12), rgba(183, 255, 60, 0.1));
  transition: 0.25s var(--ease);
}
.about-feature:hover .about-feature__icon {
  color: #6fbf1a;
  border-color: rgba(143, 245, 68, 0.7);
  background: rgba(183, 255, 60, 0.18);
  box-shadow: 0 8px 18px rgba(143, 245, 68, 0.18);
}
.about-feature__label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}
.btn-about-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--violet) 0%, #9B5CFF 70%, #7A35D9 100%);
  box-shadow: 0 10px 28px rgba(122, 53, 217, 0.28);
  transition: 0.25s var(--ease);
}
.btn-about-outline:hover {
  background: linear-gradient(120deg, #9B5CFF 0%, var(--violet) 50%, #6fbf1a 160%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(122, 53, 217, 0.35);
}
.about-visual {
  position: relative;
}
.about-visual img {
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(16, 24, 46, 0.14);
}
.about-glass {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: min(78%, 280px);
  padding: 22px 28px 22px 22px;
  border-radius: 18px;
  background: rgba(248, 243, 255, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(139, 61, 255, 0.22);
  box-shadow: 0 16px 40px rgba(11, 16, 32, 0.12);
}
.about-glass p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.about-glass i {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--lime);
  font-size: 0.85rem;
}

/* ---------- Who you'll meet ---------- */
.meet {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 70px 0;
  background: #0B0614;
}
.meet-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.meet-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(1.05) brightness(0.55);
}
.meet-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgb(11 6 20 / 80%) 0%, rgba(18, 8, 42, 0.72) 42%, rgb(11 16 32 / 70%) 100%), radial-gradient(circle at 12% 18%, rgba(183, 255, 60, 0.1), transparent 30%), radial-gradient(circle at 88% 70%, rgba(139, 61, 255, 0.18), transparent 36%);
}
.meet-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin: 0 0 14px;
  color: var(--white);
}
.meet-title span { color: var(--lime); }
.meet-lead {
  max-width: 540px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
}
.meet-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.meet-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px 7px 8px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(8, 6, 18, 0.55));
  border: 1px solid rgba(255,255,255,0.18);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: 0.28s var(--ease);
}
.meet-pill i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(183,255,60,0.15);
}
.meet-pill:nth-child(3n+2) i {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #9B5CFF);
  box-shadow: 0 0 0 4px rgba(139,61,255,0.18);
}
.meet-pill:nth-child(3n) i {
  color: var(--navy);
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(103,232,249,0.16);
}
.meet-pill:hover {
  border-color: rgba(183,255,60,0.55);
  color: var(--white);
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(183,255,60,0.14), rgba(8, 6, 18, 0.55));
  box-shadow: 0 14px 28px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.1);
}
.meet-card-form {
  background: #fff;
  color: var(--navy);
  border-radius: 24px;
  padding: 28px 26px 26px;
  box-shadow: 0 28px 60px rgba(5, 5, 5, 0.35);
  position: sticky;
  top: 100px;
}
.meet-card-form__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 10px;
}
.meet-card-form__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.meet-card-form__sub {
  color: #64748B;
  font-size: 0.92rem;
  margin: 0 0 20px;
  line-height: 1.5;
}
.meet-card-form .form-label {
  color: #334155;
  font-size: 0.78rem;
  margin-bottom: 6px;
}
.meet-card-form .form-control {
  border-radius: 12px;
  border-color: #D7DEE8;
  padding: 11px 13px;
}
.btn-meet-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--violet), #9B5CFF);
  box-shadow: 0 12px 28px rgba(122,53,217,0.3);
  transition: 0.25s var(--ease);
}
.btn-meet-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(122,53,217,0.38);
  color: #fff;
}
.meet-card-form .form-success {
  padding-top: 12px;
}

/* ---------- Why ---------- */
.why-section {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 10% 20%, rgba(183,255,60,0.12), transparent 55%),
    radial-gradient(ellipse 60% 70% at 92% 80%, rgba(139,61,255,0.08), transparent 50%),
    linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%);
  padding: 72px 0;
  overflow: hidden;
}
.why-orb,
.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: whyOrbFloat 9s ease-in-out infinite;
}
.why-orb--a {
  width: 220px;
  height: 220px;
  top: -40px;
  left: 8%;
  background: rgba(183,255,60,0.28);
}
.why-orb--b {
  width: 180px;
  height: 180px;
  bottom: -50px;
  right: 12%;
  background: rgba(139,61,255,0.18);
  animation-delay: -4s;
}
.why-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 40px;
}
.why-title,
.faq-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  letter-spacing: -0.03em;
}
.why-sub,
.faq-sub {
  margin: 0;
  color: #3d4148;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 500;
}
.why-sub { text-align: center; }
.why-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.why-rail__line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 36px;
  height: 3px;
  background: rgba(16,24,46,0.08);
  border-radius: 999px;
  z-index: 0;
  overflow: hidden;
}
.why-rail__progress {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--violet), var(--cyan), var(--lime));
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(183,255,60,0.45);
  transition: width 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-rail.is-inview .why-rail__progress {
  width: 100%;
  animation: whyLineFlow 2.4s linear infinite;
}
.why-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 4px 2px;
  opacity: 0;
  transform: translateY(28px) scale(0.92);
  filter: blur(4px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  transition-delay: calc(0.18s + var(--i) * 0.12s);
}
.why-rail.is-inview .why-item {
  opacity: 1;
  transform: none;
  filter: none;
}
.why-item__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--navy);
  background: rgb(255, 255, 255);
  border: 2px solid rgba(232,237,242,0.95);
  box-shadow:
    0 12px 28px rgba(16,24,46,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s, background 0.35s;
}
.why-rail.is-inview .why-item__icon {
  animation: whyIconFloat 3.6s ease-in-out infinite;
  animation-delay: calc(0.9s + var(--i) * 0.18s);
}
.why-item__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(111,191,26,0.35);
  opacity: 0;
  transform: scale(0.85) rotate(0deg);
  transition: opacity 0.35s;
  animation: whySpin 10s linear infinite;
  pointer-events: none;
}
.why-item__step {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 4px 12px rgba(143,245,68,0.35);
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: calc(0.45s + var(--i) * 0.12s);
}
.why-rail.is-inview .why-item__step { transform: scale(1); }
.why-item:nth-child(2) .why-item__icon { color: #5aa812; }
.why-item:nth-child(3) .why-item__icon { color: var(--violet); }
.why-item:nth-child(4) .why-item__icon { color: #0e7490; }
.why-item:nth-child(5) .why-item__icon { color: var(--violet); }
.why-item h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  margin: 0 0 4px;
  color: var(--navy);
  transition: color 0.25s;
}
.why-item p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.4;
}
.why-item:hover .why-item__icon {
  transform: translateY(-8px) scale(1.08);
  border-color: rgba(183,255,60,0.85);
  background: linear-gradient(145deg, rgba(183,255,60,0.22), #fff 60%);
  box-shadow:
    0 18px 36px rgba(143,245,68,0.22),
    0 0 0 6px rgba(183,255,60,0.12);
  animation: none;
}
.why-item:hover .why-item__ring { opacity: 1; }
.why-item:hover h3 { color: #3d7a0c; }

.why-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

@keyframes whyOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, 12px) scale(1.08); }
}
@keyframes whySpin {
  to { transform: rotate(360deg); }
}
@keyframes whyLineFlow {
  to { background-position: 200% 0; }
}
@keyframes whyIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ---------- Experience (signature, compact) ---------- */
.experience {
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(183,255,60,0.35), transparent 55%),
    radial-gradient(ellipse 65% 55% at 100% 10%, rgba(139,61,255,0.55), transparent 50%),
    radial-gradient(ellipse 55% 50% at 85% 100%, rgba(255,214,10,0.18), transparent 52%),
    radial-gradient(ellipse 50% 45% at 15% 90%, rgba(139,61,255,0.35), transparent 50%),
    linear-gradient(145deg, #1A0B3A 0%, #2B1260 28%, #4C1D95 55%, #6D28D9 78%, #3B1D6E 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: 64px 0 68px;
}
.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(183,255,60,0.08) 35%, transparent 55%),
    linear-gradient(295deg, transparent 20%, rgba(255,214,10,0.07) 48%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.experience::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05) 0 1px, transparent 1.5px);
  background-size: 56px 56px, 72px 72px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.exp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: expGlowPulse 9s ease-in-out infinite;
}
.exp-glow--a {
  width: 300px;
  height: 300px;
  top: -70px;
  left: -50px;
  background: rgba(183,255,60,0.42);
}
.exp-glow--b {
  width: 340px;
  height: 340px;
  top: 10%;
  right: -100px;
  background: rgba(167,90,255,0.48);
  animation-delay: -3s;
}
.exp-glow--c {
  width: 240px;
  height: 240px;
  bottom: -50px;
  left: 40%;
  background: rgba(255,214,10,0.26);
  animation-delay: -5.5s;
}
.exp-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.exp-head { margin: 0; text-align: center; max-width: 560px; }
.experience .section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 10px 40px rgba(26,11,58,0.35);
}
.experience .section-title .accent {
  background: linear-gradient(120deg, #B7FF3C 0%, #FFE566 55%, #B7FF3C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: expAccentShine 5s ease-in-out infinite;
}
.experience .section-sub {
  font-size: 1rem;
  max-width: none;
  margin: 0;
  color: rgba(255,255,255,0.8);
}
.exp-accordion {
  display: flex;
  gap: 12px;
  height: min(520px, 68vh);
  min-height: 420px;
}
.exp-panel {
  position: relative;
  flex: 1.15;
  min-width: 108px;
  overflow: hidden;
  border-radius: 28px;
  cursor: pointer;
  color: #fff;
  border: 1px solid var(--lime);
  box-shadow:
    0 18px 40px rgba(12,4,32,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: flex 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
  outline: none;
}
.exp-panel.is-active {
  flex: 5.2;
  border-color: var(--lime-2);
  box-shadow:
    0 24px 50px rgba(12,4,32,0.45),
    0 0 36px rgba(183,255,60,0.12);
}
.exp-accordion:hover .exp-panel {
  flex: 1.15;
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 14px 30px rgba(12,4,32,0.3);
}
.exp-accordion:hover .exp-panel:hover {
  flex: 5.2;
  border-color: rgba(183,255,60,0.45);
  box-shadow:
    0 24px 50px rgba(12,4,32,0.45),
    0 0 36px rgba(183,255,60,0.14);
}
.exp-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: brightness(0.72) saturate(1.1);
  transition: transform 0.7s ease, filter 0.45s;
}
.exp-panel.is-active img,
.exp-accordion:hover .exp-panel:hover img {
  transform: scale(1.02);
  filter: brightness(0.88) saturate(1.15);
}
.exp-panel__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 85% at 50% 50%, rgba(12,4,32,0.55) 0%, rgba(12,4,32,0.15) 55%, rgba(12,4,32,0.45) 100%),
    linear-gradient(180deg, rgba(18,8,42,0.2) 0%, rgba(12,4,32,0.55) 100%);
  pointer-events: none;
  transition: background 0.45s ease;
}
.exp-panel.is-active .exp-panel__shade,
.exp-accordion:hover .exp-panel:hover .exp-panel__shade {
  background: linear-gradient(105deg, rgb(18 8 42 / 0%) 0%, rgb(18 8 42 / 0%) 48%, rgba(18, 8, 42, 0.2) 100%), linear-gradient(180deg, rgba(18, 8, 42, 0.08) 0%, rgba(18, 8, 42, 0.18) 45%, rgba(12, 4, 32, 0.82) 100%);
}
.exp-panel__rail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: center;
  gap: 0;
  padding: 28px 0 26px;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.35s ease;
}
.exp-panel.is-active .exp-panel__rail,
.exp-accordion:hover .exp-panel:hover .exp-panel__rail {
  opacity: 0;
  transform: scale(0.97);
}
.exp-panel__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid #000000;
  color: #000000;
  font-size: 1.25rem;
  background: rgb(183 255 60);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 1px 1px 1px 1px #9b5cff;
}
.exp-panel__label {
  display: block;
  margin: 0;
  padding: 10px 0;
  max-height: 100%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  -webkit-text-stroke: 1px rgba(183,255,60,0.85);
  paint-order: stroke fill;
  text-shadow: 0 0 2px #212529, 0 .5px 2px #b7ff3cbd;
}
.exp-panel__accent {
  flex-shrink: 0;
  width: 4px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, #D4FF6E 0%, #B7FF3C 100%);
  box-shadow: 0 0 18px rgba(183,255,60,0.55);
}
.exp-panel__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 28px 30px 30px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.35s ease 0.08s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.exp-panel.is-active .exp-panel__content,
.exp-accordion:hover .exp-panel:hover .exp-panel__content {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.exp-panel .exp-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #101010;
  background: linear-gradient(90deg, #B7FF3C, #FFE566);
  box-shadow: 0 8px 20px rgba(183,255,60,0.25);
}
.exp-panel:nth-child(even) .exp-kicker {
  color: #fff;
  background: linear-gradient(90deg, #8B3DFF, #A855F7);
  box-shadow: 0 8px 20px rgba(139,61,255,0.28);
}
.exp-panel h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.exp-panel p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 42ch;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

@keyframes expGlowPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes expAccentShine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ---------- Speakers ---------- */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.speaker-card {
  position: relative;
  text-align: center;
  background: var(--white);
  border: 0;
  border-radius: 24px;
  padding: 28px 18px 24px;
  z-index: 0;
  box-shadow: 0 14px 32px rgba(16,24,46,0.06);
  transition: 0.3s var(--ease);
}
.speaker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #B7FF3C 0%, #8B3DFF 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16,24,46,0.1);
}
.speaker-card:hover::before {
  background: linear-gradient(135deg, #D4FF6E 0%, #A855F7 55%, #8B3DFF 100%);
}
.speaker-photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--lime), var(--violet));
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
}
.speaker-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.speaker-card .role {
  color: var(--violet);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.speaker-card .org {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Pricing / Pass ---------- */
.pricing {
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(139,61,255,0.08), transparent 55%),
    radial-gradient(ellipse 50% 50% at 95% 100%, rgba(183,255,60,0.1), transparent 50%),
    var(--fog);
  padding: 60px 0;
}
.pricing-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 815px;
  margin: 28px auto 0;
  padding: 0;
  border-top: 0;
}
.pricing-perks .pass-perk {
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  font-size: 1.15rem;
}
.pricing-perks .pass-perk:not(:last-child) {
  border-right: 1px solid #a855f7;
}
.pricing-perks .pass-perk__icon {
  width: 38px;
  height: 38px;
  background: rgba(139,61,255,0.12);
  color: var(--violet);
}
.pass-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  max-width: 1120px;
  margin: 36px auto 0;
  padding: 0 8px;
  overflow: visible;
}
.pass-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 48px 20px 20px;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(16,24,46,0.06);
  overflow: visible;
}
.pass-panel--partner {
  border-color: rgba(183,255,60,0.55);
  box-shadow: 0 10px 28px rgba(183,255,60,0.12);
}
.pass-panel--sponsor {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.pass-ribbon {
  position: absolute;
  top: 0;
  left: -8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 14px 6px 14px;
  background: linear-gradient(90deg, #8B3DFF, #7A35D9);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 8px 18px rgba(139,61,255,0.3);
}
.pass-ribbon::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  border-style: solid;
  border-width: 0 10px 8px 0;
  border-color: transparent #5B21B6 transparent transparent;
}
.pass-panel--partner .pass-ribbon {
  background: linear-gradient(90deg, #10182E, #16243A);
  box-shadow: 0 8px 18px rgba(16,24,46,0.28);
}
.pass-panel--partner .pass-ribbon::before {
  border-color: transparent #050505 transparent transparent;
}
.pass-get {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}
.pass-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pass-tier {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pass-tier input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pass-tier__radio {
  width: 18px;
  height: 18px;
  border: 2px solid #c5cdd8;
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pass-tier.is-selected {
  border-color: var(--violet);
  background: rgba(139,61,255,0.07);
  box-shadow: inset 0 0 0 1px rgba(139,61,255,0.15);
}
.pass-tier.is-selected .pass-tier__radio {
  border-color: var(--violet);
  box-shadow: inset 0 0 0 4px var(--violet);
}
.pass-tier__title {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.pass-tier.is-selected .pass-tier__title { color: var(--violet); }
.pass-tier__now {
  display: none !important;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.pass-tier.is-selected:not(.is-disabled) .pass-tier__now {
  display: inline-flex !important;
}
.pass-tier.is-disabled {
  opacity: 1;
  cursor: not-allowed;
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}
.pass-tier.is-disabled .pass-tier__title,
.pass-tier.is-disabled .pass-tier__meta,
.pass-tier.is-disabled .pass-tier__price {
  color: #5c6678;
}
.pass-tier.is-disabled .pass-tier__radio {
  border-color: #a8b2c0;
}
.pass-tier.is-expired .pass-tier__meta {
  text-decoration: line-through;
  text-decoration-color: rgba(148,160,176,0.7);
}
.pass-panel--partner .pass-tier.is-disabled {
  background: #f8fafc;
}
.pass-tier__meta {
  display: block;
  margin-top: 4px;
  color: #6B7485;
  font-size: 0.78rem;
  line-height: 1.3;
}
.pass-tier.is-selected .pass-tier__meta { color: var(--violet); }
.pass-tier__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  white-space: nowrap;
}
.pass-tier.is-selected .pass-tier__price { color: var(--violet); }
.pass-perk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 10px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}
.pass-perk:not(:last-child) { border-right: 1px solid #e8edf4; }
.pass-perk__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(139,61,255,0.12);
  color: var(--violet);
  font-size: 0.92rem;
}
.btn-pass-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(139,61,255,0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}
.btn-pass-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(139,61,255,0.34);
}
.pass-panel--partner .pass-tier.is-selected {
  border-color: rgba(16,24,46,0.35);
  background: rgba(183,255,60,0.14);
  box-shadow: inset 0 0 0 1px rgba(183,255,60,0.35);
}
.pass-panel--partner .pass-tier.is-selected .pass-tier__radio {
  border-color: var(--navy);
  box-shadow: inset 0 0 0 4px var(--lime);
}
.pass-panel--partner .pass-tier.is-selected .pass-tier__title,
.pass-panel--partner .pass-tier.is-selected .pass-tier__meta,
.pass-panel--partner .pass-tier.is-selected .pass-tier__price {
  color: var(--navy);
}
.btn-pass-cta--lime {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(183,255,60,0.3);
}
.btn-pass-cta--lime:hover {
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(183,255,60,0.4);
}
.sponsor-card {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 48px 22px 20px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(139,61,255,0.4), transparent 55%),
    linear-gradient(165deg, #152238 0%, #0B1020 100%);
  border: 1px solid rgba(139,61,255,0.28);
  box-shadow: 0 10px 28px rgba(16,24,46,0.18);
}
.sponsor-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #8B3DFF, #B7FF3C);
}
.pass-ribbon--sponsor {
  background: linear-gradient(90deg, #B7FF3C, #9AE82E);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(183,255,60,0.28);
}
.pass-ribbon--sponsor::before {
  border-color: transparent #6BB81A transparent transparent;
}
.sponsor-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
.sponsor-card__sub {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}
.sponsor-card__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sponsor-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
  line-height: 1.4;
  font-weight: 600;
}
.sponsor-card__list i {
  margin-top: 2px;
  color: var(--lime);
  font-size: 0.78rem;
}
.btn-sponsor-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--violet);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 2px var(--lime),
    0 10px 22px rgba(139,61,255,0.3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}
.btn-sponsor-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 2px var(--lime),
    0 14px 28px rgba(139,61,255,0.4);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row i { color: var(--violet); }

/* ---------- Venue ---------- */
.venue {
  background: #fff;
  padding: 72px 0;
}
.venue-eyebrow {
  color: var(--violet);
  margin-bottom: 14px;
}
.venue-eyebrow::before {
  background: var(--violet);
}
.venue-title {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
}
.venue-title .accent {
  color: var(--violet);
}
.venue-text {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}
.venue-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.venue-meta__card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(139,61,255,0.06);
  border: 1px solid rgba(139,61,255,0.16);
  border-left: 3px solid var(--violet);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.venue-meta__card i {
  color: var(--violet);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.venue-visual {
  position: relative;
  border-radius: 22px;
  overflow: visible;
}
.venue-visual__img {
  display: block;
  width: 100%;
  height: min(520px, 62vw);
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(16,24,46,0.12);
}
.venue-map {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(240px, 46%);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(16,24,46,0.22);
  border: 1px solid rgba(16,24,46,0.08);
}
.venue-map__frame {
  height: 150px;
  overflow: hidden;
  background: #e8edf5;
}
.venue-map__frame iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
  pointer-events: none;
  margin-top: -12px;
}
.venue-map__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  background: linear-gradient(90deg, #8B3DFF 0%, #A855F7 55%, #7A35D9 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: filter 0.2s ease, transform 0.2s var(--ease);
}
.venue-map__cta:hover {
  color: #fff;
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.venue-map__cta i {
  font-size: 0.72rem;
}

/* ---------- FAQ ---------- */
.faq {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 10% 20%, rgba(183,255,60,0.12), transparent 55%),
    radial-gradient(ellipse 60% 70% at 92% 80%, rgba(139,61,255,0.08), transparent 50%),
    linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%);
  overflow: hidden;
}
.faq-orb--a {
  width: 220px;
  height: 220px;
  top: -40px;
  left: 6%;
  background: rgba(183,255,60,0.28);
}
.faq-orb--b {
  width: 200px;
  height: 200px;
  bottom: -40px;
  right: 8%;
  background: rgba(139,61,255,0.18);
  animation-delay: -4s;
}
.faq-intro {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.faq-title { margin: 0 0 12px; }
.faq-sub { max-width: 34ch; }
.faq-aside {
  margin-top: 32px;
  padding: 20px 22px;
  border-left: 4px solid var(--violet);
  background: rgba(255,255,255,0.9);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 10px 28px rgba(16,24,46,0.06);
}
.faq-aside p {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: #5B6578;
  font-weight: 500;
}
.faq-aside .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.faq-aside .btn-text i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(139,61,255,0.12);
  color: var(--violet);
  font-size: 0.75rem;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}
.faq-aside .btn-text:hover {
  color: var(--violet);
}
.faq-aside .btn-text:hover i {
  transform: translateX(3px);
  background: rgba(139,61,255,0.2);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq .accordion-item {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--violet-2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16,24,46,0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.faq .accordion-item:hover {
  border-color: rgba(139,61,255,0.22);
  box-shadow: 0 14px 32px rgba(16,24,46,0.08);
}
.faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--violet-2);
  box-shadow:
    0 16px 36px rgba(16,24,46,0.09),
    0 0 0 1px rgba(139,61,255,0.08);
}
.faq .accordion-button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  background: transparent;
  box-shadow: none !important;
  color: var(--navy);
  padding: 20px 22px;
  transition: color 0.2s ease, background 0.2s ease;
}
.faq .accordion-button:hover {
  color: var(--violet);
  background: rgba(139,61,255,0.03);
}
.faq .accordion-button:not(.collapsed) {
  color: var(--violet);
  background: rgba(139,61,255,0.04);
}
.faq .accordion-button:focus {
  box-shadow: none !important;
}
.faq-num {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--violet);
  opacity: 0.7;
  min-width: 1.6rem;
}
.faq .accordion-button:not(.collapsed) .faq-num {
  color: #5aa812;
  opacity: 1;
}
.faq-q {
  flex: 1;
  text-align: left;
  padding-right: 8px;
}
.faq .accordion-button::after {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-left: auto;
  background-image: none;
  background-color: rgba(139,61,255,0.08);
  border-radius: 50%;
  mask: none;
  -webkit-mask: none;
  display: grid;
  place-items: center;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%238B3DFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.faq .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-color: rgba(183,255,60,0.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%235aa812' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
}
.faq .accordion-body {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  padding: 0 22px 22px 58px;
}
.faq .accordion-body a {
  color: var(--violet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq .accordion-body a:hover {
  color: var(--navy);
}
/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 70px 0 20px;
  background: radial-gradient(900px 280px at 12% 0%, rgba(139,61,255,0.18), transparent 60%), radial-gradient(700px 240px at 90% 110%, rgba(183,255,60,0.1), transparent 55%), var(--fog);
  color: var(--white);
}
.testimonials-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
  animation: whyOrbFloat 10s ease-in-out infinite;
}
.testimonials-orb--a {
  width: 240px;
  height: 240px;
  top: -40px;
  right: 12%;
  background: rgba(183,255,60,0.22);
}
.testimonials-orb--b {
  width: 210px;
  height: 210px;
  bottom: -50px;
  left: 8%;
  background: rgba(139,61,255,0.18);
  animation-delay: -5s;
}
.testimonials-head {
  margin-bottom: 36px;
}
.testimonials-head .section-title {
  color: var(--black);
}
.testimonials-head .section-sub {
  color: var(--black);
}
.testimonials-marquee {
  position: relative;
  z-index: 1;
}
.testimonials-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 14px 20px 18px;
}
.testimonials-track.is-ready {
  animation: marquee 58s linear infinite;
}
.testimonials-marquee:hover .testimonials-track.is-ready {
  animation-play-state: paused;
}
.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 min(440px, 86vw);
  min-height: 292px;
  margin: 0;
  padding: 24px 26px 22px;
  background:
    radial-gradient(110% 80% at 100% 0%, rgba(139,61,255,0.06), transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #FAF8FF 100%);
  border: 1px solid rgba(139,61,255,0.12);
  border-radius: 20px;
  box-shadow: 2px 3px 2px #8b3dff7d;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}
.testimonial::before,
.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #B7FF3C, #8B3DFF);
}
.testimonial::after {
  content: "”";
  position: absolute;
  right: 14px;
  bottom: -10px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(139,61,255,0.08);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.testimonials-marquee:hover .testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(139,61,255,0.24);
  box-shadow: 0 22px 48px rgba(139,61,255,0.12);
}
.testimonial__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  min-height: 32px;
}
.testimonial__stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #C9A227;
  font-size: 0.78rem;
}
.testimonial__logo {
  height: 45px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
  object-position: right center;
}
.testimonial__quote {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 0 20px;
  padding-left: 2px;
  color: #2C3548;
  font-size: 1.02rem;
  line-height: 1.68;
  letter-spacing: -0.012em;
}
.testimonial__person {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 16px;
  padding-right: 36px;
  border-top: 1px solid rgba(139,61,255,0.1);
}
.testimonial__name {
  display: inline-block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.testimonial__name::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, #B7FF3C, #8B3DFF);
  border-radius: 2px;
}

/* ---------- Contact ---------- */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 280px at 12% 0%, rgba(183,255,60,0.16), transparent 60%),
    radial-gradient(700px 240px at 90% 110%, rgba(139,61,255,0.1), transparent 55%),
    linear-gradient(180deg, #E6EBF4 0%, #EEF2F8 50%, #E8EDF5 100%);
  color: var(--navy);
  padding: 60px 0;
}
.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
  animation: whyOrbFloat 9s ease-in-out infinite;
}
.contact-orb--a {
  width: 220px;
  height: 220px;
  top: -50px;
  left: 6%;
  background: rgba(183,255,60,0.28);
}
.contact-orb--b {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: 10%;
  background: rgba(139,61,255,0.16);
  animation-delay: -4s;
}
.contact-intro .eyebrow {
  color: var(--violet);
}
.contact-intro .eyebrow::before {
  background: var(--violet);
}
.contact-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  letter-spacing: -0.03em;
}
.contact-title .accent {
  color: var(--violet);
}
.contact-sub {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(139,61,255,0.12);
  border-radius: 16px;
  padding: 18px 16px 16px;
  box-shadow: 0 10px 28px rgba(16,24,46,0.06);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139,61,255,0.28);
  box-shadow: 0 16px 34px rgba(139,61,255,0.12);
}
.contact-card__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(139,61,255,0.1);
}
.contact-card__name {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.contact-card__role {
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: var(--muted);
}
.contact-card__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(16,24,46,0.08);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-all;
}
.contact-card__email i {
  color: var(--violet);
  flex-shrink: 0;
}
.contact-card__email:hover {
  color: var(--violet);
}
.contact-form-card {
  background:
    radial-gradient(ellipse 85% 55% at 100% -10%, rgba(183,255,60,0.18), transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(168,85,247,0.45), transparent 55%),
    linear-gradient(160deg, #9B5CFF 0%, #8B3DFF 42%, #6E2FD4 100%);
  border: 1px solid rgba(183,255,60,0.28);
  border-radius: 24px;
  padding: 28px 28px 30px;
  box-shadow:
    0 22px 50px rgba(139,61,255,0.28),
    0 0 0 1px rgba(255,255,255,0.12) inset;
}
.contact-form-card .form-label {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-form-card .req {
  color: var(--lime);
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 12px;
  padding: 12px 14px;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.95rem;
}
.contact-form-card .form-control::placeholder {
  color: rgba(255,255,255,0.55);
}
.contact-form-card .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23B7FF3C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px 12px;
}
.contact-form-card .form-select option {
  color: var(--navy);
  background: #fff;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--lime);
  background: rgba(255,255,255,0.2);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(183,255,60,0.25);
}
.contact-form-card textarea.form-control {
  resize: vertical;
}
.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 12px 28px rgba(183,255,60,0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}
.btn-contact-submit:hover {
  color: var(--navy);
  background: var(--lime-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(183,255,60,0.38);
}
.contact-form-card .form-success {
  padding-top: 24px;
}
/* ---------- Forms ---------- */
.btn-close-white { filter: invert(1) grayscale(1) brightness(2); }
.form-label { font-weight: 600; font-size: 0.86rem; }
.form-control {
  border-radius: 12px;
  padding: 12px 14px;
  border-color: #d7dee8;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(139,61,255,0.15);
}
/* Optional fields: never show Bootstrap green "valid" state */
.was-validated .form-control:not([required]):valid,
.was-validated .form-select:not([required]):valid {
  border-color: #d7dee8;
  box-shadow: none;
  background-image: none;
  padding-right: 0.75rem;
}
.was-validated .form-select:not([required]):valid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.25rem;
}
.contact-form-card .invalid-feedback {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ff8f9f;
}
.contact-form-card .form-control:-webkit-autofill,
.contact-form-card .form-control:-webkit-autofill:hover,
.contact-form-card .form-control:-webkit-autofill:focus,
.contact-form-card .form-select:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  box-shadow: 0 0 0 1000px #7A35D9 inset;
  transition: background-color 99999s ease-out;
}
.form-success {
  display: none;
  text-align: center;
  padding: 28px 8px 8px;
}
.form-success.is-visible { display: block; }
.form-success i {
  font-size: 2.2rem;
  color: var(--lime-2);
  background: rgba(143,245,68,0.16);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}
.meet-card-form .form-success i {
  color: var(--violet);
  background: rgba(139,61,255,0.12);
}
.contact-form-card .form-success {
  color: rgba(255,255,255,0.88);
}
.contact-form-card .form-success i {
  color: var(--lime);
  background: rgba(183,255,60,0.14);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.8s var(--ease) forwards;
}
.reveal-d1 { animation-delay: 0.1s; }
.reveal-d2 { animation-delay: 0.2s; }
.reveal-d3 { animation-delay: 0.3s; }
@keyframes reveal {
  to { opacity: 1; transform: none; }
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-on-scroll.is-inview {
  opacity: 1;
  transform: none;
}
.reveal-on-scroll.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-on-scroll.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-on-scroll.reveal-delay-3 { transition-delay: 0.24s; }

.footer-bg {
  background-color: var(--navy-3)
}

.footer-bottom {
  background-color: var(--violet);
  color: #fff
}

.tanago-logo {
  color: #28a745;
  font-weight: 700;
  font-size: 1.5rem
}

.footer-section h5 {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem
}

.footer-links {
  list-style: none;
  padding: 0
}

.footer-links li {
  margin-bottom: .5rem
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  font-size: 20px;
  width: max-content;
  align-items: center;
  transition: all 0.5s cubic-bezier(.645, .045, .355, 1)
}

.footer-links a:hover {
  /*color: #ff6b9d;*/
  color: var(--lime);
}

.footer-links .fa-circle {
  color: #fff;
  font-size: .5rem;
  margin-right: .75rem
}

.footer-widget-social {
  gap: 5px;
  margin: 18px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: none;
  padding-top: 0;
  text-align: center;
  width: 73%
}

.footer-widget-social a {
  height: auto;
  width: 43px;
  line-height: 46px;
  border-radius: 50%;
  font-size: 22px;
  /*color: #cd2280;*/
  color: var(--violet);
  transition: all 1s ease-out
}

.social-icons a {
  background-color: #28a745;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  text-decoration: none
}

.social-icons a:hover {
  /*background-color: #CD2280;*/
  background-color: var(--violet);
  color: #fff
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem
}

.contact-icon {
  background-color: #fff;
  /*color: #CD2280;*/
  color: var(--violet);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0
}

.contact-content h6 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .25rem
}

.contact-content .contact-value a {
  color: #fff;
  font-weight: 700;
  transition: all 0.5s cubic-bezier(.645, .045, .355, 1)
}

.contact-content .contact-value a:hover {
  /*color: #ff6b9d;*/
  color: var(--lime);
}

.footer-bottom a {
  color: #fff;
  text-decoration: none
}

.footer-bottom .fa-circle {
  color: #fff;
  font-size: .5rem;
  margin: 0 .5rem
}

.footer-bg .our-moto {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0
}

.footer .footer-widget-social a:hover {
  transform: scale(1.3)
}

/* Gallery Section */
.gallery-wrap {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0;
    width: max-content;
    animation: gallerySlider 60s linear infinite;
    will-change: transform;
    overflow: hidden;
}
@keyframes gallerySlider {
    0% {
        transform: translateX(5%);
    }
    100% {
        transform: translateX(-83%);
    }
}
.gallery-wrap > img {
    width: 24rem;
    height: 22rem;
    margin: 0;
    object-fit: cover;
    object-position: 50% 25%;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.28s ease;
}
/* Speakers Section */
.swiper-nav-btns {
    display: flex;
    gap: 12px;
}
#speakers .section-head {
    margin-bottom: 20px;
}
.speaker-prev, 
.speaker-next {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--lime);
    color: var(--navy);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.speaker-prev:hover, 
.speaker-next:hover {
    background-color: var(--navy);
    color: #fff;
}
.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.speakers-wrap .speaker-img {
    background-color: #BC8EFF;
}
.speakers .speaker-social {
    position: absolute;
    z-index: 9;
    top: 2%;
    right: 2%;
    background: #b7ff3c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 1s ease-out;
}
.speakers:hover .speaker-social {
    opacity: 1;
    animation: icons 1.5s linear infinite;
}
@keyframes icons {
    to {
        transform: scale(1);
    }
    from {
        transform: scale(1.1);
    }
}
.speakers .img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transition: all 1s ease-out;
}
.speakers .speaker-social a {
    color: #8b3dff;
    font-size: 25px;
}
.speaker-info {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    color: #000;
}
.speaker-info p {
    margin-bottom: 0.5rem;
}
.speaker-info h4 {
    font-weight: 600;
}
.speaker-info h5 {
    font-weight: 600;
    color: #0A2472;
}
#gallery .section-head {
    margin-bottom: 0;
}
#gallery .section-title {
    font-size: 2.8rem;
    margin: 0;
}
