/* ============================================================
   PPL USA 2027 — Pharma Packaging & Labelling Forum
   Premium single-page conference landing
   ============================================================ */

:root {
  --navy-950: #1a0810;
  --navy-900: #2a0d18;
  --ink: #2a1018;
  --muted: #7a5560;
  --muted-on-dark: #f0c9d4;
  --paper: #fff7fa;
  --paper-2: #ffeef4;
  --white: #ffffff;
  --text-dark: #101820;
  --accent: #c44569;
  --accent-2: #ff6b9d;
  --line: rgba(98, 11, 45, 0.12);
  --line-dark: rgba(255, 238, 244, 0.14);
  --font-sans: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --header-h: 84px;
  --radius: 2px;
  --border: #dee2e6;
  --off-white: #FFF7F9;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --cta-gradient: linear-gradient(180deg, #ff8fb3 0%, #ff6b9d 48%, #c44569 100%);
  --cta-gradient-hover: linear-gradient(180deg, #ff9ec0 0%, #ff7aa8 48%, #d14a72 100%);
  --band-dark: radial-gradient(ellipse 60% 70% at 0% 100%, rgba(255, 107, 157, 0.16), transparent 48%), radial-gradient(ellipse 50% 60% at 100% 0%, rgba(196, 69, 105, 0.14), transparent 46%), linear-gradient(180deg, #6c273b 0%, #541e2d 46%, #3a1220 100%);
  --noise-svg: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@property --count {
  syntax: "<integer>";
  inherits: false;
  initial-value: 0;
}

@property --target {
  syntax: "<integer>";
  inherits: false;
  initial-value: 0;
}

@property --why-on {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2000;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  color: var(--white);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #ff6b9d, #c44569);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1400;
  pointer-events: none;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: scrollProgress 1s linear;
    animation-timeline: scroll();
  }
}

@keyframes scrollProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.12;
  color: var(--navy-900);
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  text-wrap: balance;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 62ch;
}

.section-kicker {
  margin: 0 0 28px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
}

.section-pad {
  padding: 64px 0;
}

/* ---------- Buttons ---------- */
.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0.88rem 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--cta-gradient);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 22px rgba(196, 69, 105, 0.38);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-130%);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}

.btn-cta::after {
  content: "\F138";
  font-family: "bootstrap-icons";
  font-size: 0.95em;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.35s var(--ease);
}

.btn-cta:hover::before,
.btn-cta:focus-visible::before {
  transform: translateX(130%);
}

.btn-cta:hover::after,
.btn-cta:focus-visible::after {
  transform: translateX(4px);
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background: var(--cta-gradient-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 14px 28px rgba(196, 69, 105, 0.48), 0 0 24px rgba(255, 107, 157, 0.28);
}

/* ---------- Navbar ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(42, 13, 24, 0.96);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.navbar {
  padding: 0.85rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: var(--white) !important;
}

.brand-logo {
  display: block;
  width: auto;
  height: 36px;
}

.navbar-nav .nav-link {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.7rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0.4rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.header-register {
  white-space: nowrap;
  min-height: 44px;
  padding: 0.7rem 1.25rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #ffeef4;
  background: var(--navy-900);
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(16 5 10) 0%, rgb(42 13 24 / 78%) 46%, rgba(42, 13, 24, 0.22) 100%), linear-gradient(rgba(16, 5, 10, 0.12) 0%, transparent 50%, rgba(16, 5, 10, 0.28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 64px;
}

.hero-eyebrow {
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: clamp(0.84rem, 1.4vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  animation: eyebrowIn 0.85s var(--ease) both, eyebrowGlow 2.6s ease-in-out 0.9s infinite;
}

.hero-eyebrow::before {
  width: 42px;
  height: 2px;
  background: var(--accent-2);
  animation: eyebrowLine 0.7s var(--ease) both;
}

@keyframes eyebrowIn {
  from { opacity: 0; transform: translateX(-18px); letter-spacing: 0.34em; }
  to { opacity: 1; transform: none; letter-spacing: 0.16em; }
}

@keyframes eyebrowGlow {
  0%, 100% { color: var(--accent-2); text-shadow: 0 0 0 rgba(255, 107, 157, 0); }
  50% { color: #ff9ec0; text-shadow: 0 0 16px rgba(255, 107, 157, 0.7); }
}

@keyframes eyebrowLine {
  from { width: 0; opacity: 0; }
  to { width: 42px; opacity: 1; }
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 6.8vw, 5.6rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero h1 span { display: block; }

.hero-positioning {
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 14px 8px 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.35;
  color: #ffd0dc;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(16, 5, 10, 0.85);
}

.hero-positioning em {
  font-style: italic;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, transparent 62%, rgba(255, 107, 157, 0.55) 62%);
  padding: 0 0.11em;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
  margin: 0 0 28px;
}

.hero-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  border-left: 2px solid var(--accent-2);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.hero-detail:hover {
  transform: translateY(-2px);
  border-color: #ffd0dc;
}

.hero-detail-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-detail-label i {
  font-size: 0.95rem;
}

.hero-detail-value {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-side-link {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-2);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  text-shadow: 0 0 18px rgba(255, 107, 157, 0.45);
  animation: sideLinkIn 0.9s var(--ease) 0.45s both, sideLinkGlow 2.8s ease-in-out 1.3s infinite;
}

.hero-side-text {
  display: block;
}

.hero-side-dot {
  display: block;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  animation: sideDot 2.8s ease-in-out 1.3s infinite;
}

.hero-side-line {
  display: block;
  width: 2px;
  height: 42px;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.85;
  animation: sideLine 2.8s ease-in-out 1.3s infinite;
}

.hero-side-arrows {
  display: inline-flex;
  writing-mode: horizontal-tb;
  transform: rotate(90deg);
  font-size: 1.05em;
  line-height: 1;
  animation: sideArrows 1.6s ease-in-out 1.3s infinite;
}

.hero-side-arrows i {
  margin-left: -6px;
}

.hero-side-arrows i:first-child {
  margin-left: 0;
}

@keyframes sideLinkIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sideLinkGlow {
  0%, 100% { color: var(--accent-2); text-shadow: 0 0 10px rgba(255, 107, 157, 0.25); }
  50% { color: #ff9ec0; text-shadow: 0 0 22px rgba(255, 107, 157, 0.7); }
}

@keyframes sideDot {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes sideLine {
  0%, 100% { height: 42px; opacity: 0.65; }
  50% { height: 54px; opacity: 1; }
}

@keyframes sideArrows {
  0%, 100% { transform: rotate(90deg) translateX(0); }
  50% { transform: rotate(90deg) translateX(5px); }
}

.year-bridge {
  position: absolute;
  left: auto;
  right: 2%;
  top: 0;
  z-index: 0;
  transform: translateY(-50%);
  width: auto;
  text-align: right;
  font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.25px rgb(255 246 248 / 49%);
  pointer-events: none;
  user-select: none;
}

/* ---------- Snapshot ---------- */
.snapshot {
  position: relative;
  z-index: 1;
  overflow: visible;
  background: var(--band-dark);
  color: var(--white);
  padding: 96px 0 72px;
}

.snapshot::before,
.experience::before,
.faq::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: var(--noise-svg);
}

.snapshot .container {
  position: relative;
  z-index: 2;
}

.snapshot .eyebrow,
.experience .eyebrow,
.audience .eyebrow,
.faq .eyebrow{
  color: var(--white);
}

.snapshot .eyebrow::before,
.experience .eyebrow::before,
.audience .eyebrow::before,
.faq .eyebrow::before{
  background: var(--accent-2);
}

.snapshot-title {
  margin: 0 0 48px;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}

.snapshot-title .tone-light {
  color: var(--white);
}

.snapshot-title .tone-accent {
  color: var(--accent-2);
}

.snapshot-stop {
  display: inline-block;
  margin: 0 0.06em 0 0.02em;
  font-size: 1.7em;
  font-style: italic;
  font-weight: 600;
  line-height: 0.45;
  color: var(--accent-2);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-item {
  position: relative;
  padding: 22px 18px 18px;
  opacity: 0;
  transform: translateY(18px);
  border: 1px solid transparent;
  background: rgba(16, 5, 10, 0.22);
}

.stat-item:nth-child(1) { --enter-delay: 0s; --cycle-delay: 1.84s; }
.stat-item:nth-child(2) { --enter-delay: 0.24s; --cycle-delay: 3.44s; }
.stat-item:nth-child(3) { --enter-delay: 0.48s; --cycle-delay: 5.04s; }
.stat-item:nth-child(4) { --enter-delay: 0.72s; --cycle-delay: 6.64s; }
.stat-item:nth-child(5) { --enter-delay: 0.96s; --cycle-delay: 8.24s; }
.stat-item:nth-child(6) { --enter-delay: 1.2s; --cycle-delay: 9.84s; }

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: width 0.55s var(--ease);
  transition-delay: var(--enter-delay);
}

.stat-number {
  --count: 0;
  position: relative;
  display: block;
  font-size: clamp(2.8rem, 5.6vw, 4.5rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: transparent;
  counter-reset: stat var(--count);
}

.stat-number::before {
  content: counter(stat) "+";
  position: absolute;
  inset: 0;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.stat-number[data-suffix="%"]::before {
  content: counter(stat) "%";
}

.stat-number-static {
  color: var(--white);
}

.stat-number-static::before {
  content: none;
}

.stat-label {
  display: block;
  margin-top: 10px;
  min-height: 2.6em;
  color: rgba(255, 238, 244, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-grid.is-inview .stat-item {
  animation:
    statReveal 0.55s var(--ease) var(--enter-delay) forwards,
    statActive 9.6s linear var(--cycle-delay) infinite;
}

.stat-grid.is-inview .stat-item::before {
  width: 28px;
  animation: statLine 9.6s linear var(--cycle-delay) infinite;
}

.stat-grid.is-inview .stat-number:not(.stat-number-static) {
  animation: statCount 1.1s cubic-bezier(0.215, 0.61, 0.355, 1) var(--enter-delay) forwards;
}

.stat-grid.is-inview .stat-number::before {
  animation: statNumGlow 9.6s linear var(--cycle-delay) infinite;
}

.stat-grid.is-inview .stat-label {
  animation: statLabel 9.6s linear var(--cycle-delay) infinite;
}

.stat-grid.is-inview .stat-item:hover {
  border-color: rgba(255, 107, 157, 0.7) !important;
  background: rgba(255, 107, 157, 0.1) !important;
  box-shadow: 0 12px 32px rgba(16, 5, 10, 0.28) !important;
  transform: translateY(-4px) !important;
}

.stat-grid.is-inview .stat-item:hover::before {
  width: 100% !important;
}

.stat-grid.is-inview .stat-item:hover .stat-number::before {
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.35) !important;
}

.stat-grid.is-inview .stat-item:hover .stat-label {
  color: #ffeef4 !important;
}

@keyframes statReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes statCount {
  from { --count: 0; }
  to { --count: var(--target); }
}

@keyframes statActive {
  0% {
    background: rgba(16, 5, 10, 0.22);
    box-shadow: none;
    transform: translateY(0);
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    animation-timing-function: var(--ease);
  }
  5.73% {
    background: rgba(255, 107, 157, 0.1);
    box-shadow: 0 12px 32px rgba(16, 5, 10, 0.28);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 157, 0.7);
  }
  16.67% {
    background: rgba(255, 107, 157, 0.1);
    box-shadow: 0 12px 32px rgba(16, 5, 10, 0.28);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 157, 0.7);
    animation-timing-function: var(--ease);
  }
  22.4%, 100% {
    background: rgba(16, 5, 10, 0.22);
    box-shadow: none;
    transform: translateY(0);
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
}

@keyframes statLine {
  0% {
    width: 28px;
    animation-timing-function: var(--ease);
  }
  5.73% { width: 100%; }
  16.67% {
    width: 100%;
    animation-timing-function: var(--ease);
  }
  22.4%, 100% { width: 28px; }
}

@keyframes statNumGlow {
  0% {
    text-shadow: none;
    animation-timing-function: var(--ease);
  }
  5.73% { text-shadow: 0 0 22px rgba(255, 255, 255, 0.35); }
  16.67% {
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.35);
    animation-timing-function: var(--ease);
  }
  22.4%, 100% { text-shadow: none; }
}

@keyframes statLabel {
  0% {
    color: rgba(255, 238, 244, 0.62);
    animation-timing-function: var(--ease);
  }
  5.73% { color: #ffeef4; }
  16.67% {
    color: #ffeef4;
    animation-timing-function: var(--ease);
  }
  22.4%, 100% { color: rgba(255, 238, 244, 0.62); }
}

/* ---------- About ---------- */
.about {
  background: var(--white);
}

.about-title {
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
}

.about-lead {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent);
}

.about-visual {
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 42%;
}

.about-body {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 2px dashed var(--muted-on-dark);
}

.about-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.about-body p + p {
  margin-top: 22px;
}

.about-body strong {
  color: var(--navy-900);
  font-weight: 600;
}

/* ---------- Experience ---------- */
.experience {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--band-dark);
}

.experience .container {
  position: relative;
  z-index: 1;
}

.experience-head {
  margin-bottom: 36px;
}

.experience-title {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--white);
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
}

.experience-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-2);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.experience-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  padding: 28px 24px 32px;
  border: 1px solid rgba(255, 238, 244, 0.16);
  background: rgb(255 107 157 / 56%);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.experience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-2);
  transition: width 0.45s var(--ease);
}

.experience-card::after {
  content: attr(data-n);
  position: absolute;
  right: 10px;
  bottom: -18px;
  z-index: 0;
  font-size: 5.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 238, 244, 0.22);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.45s var(--ease);
}

.experience-card:hover {
  border-color: rgba(255, 107, 157, 0.7);
  background: rgba(255, 107, 157, 0.16);
  box-shadow: 0 12px 32px rgba(16, 5, 10, 0.28);
  transform: translateY(-4px);
}

.experience-card:hover::before {
  width: 100%;
}

.experience-card:hover::after {
  -webkit-text-stroke-color: rgba(255, 107, 157, 0.35);
}

.experience-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 107, 157, 0.28) 48%, rgba(196, 69, 105, 0.38) 100%);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 22px rgba(16, 5, 10, 0.22);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.experience-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.5), transparent 52%);
  pointer-events: none;
}

.experience-icon i {
  position: relative;
  z-index: 1;
}

.experience-card:hover .experience-icon {
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(165deg, rgba(255, 184, 206, 0.45) 0%, rgba(255, 107, 157, 0.5) 52%, rgba(196, 69, 105, 0.55) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 0 24px rgba(255, 107, 157, 0.42);
  transform: translateY(-2px);
}

.experience-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.experience-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 238, 244, 0.78);
}

.experience-cta {
  display: flex;
  align-items: flex-end;
}

/* ---------- Why attend ---------- */
.why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(255, 107, 157, 0.1), transparent 50%),
    var(--paper);
}

.why-mark {
  position: absolute;
  right: 9%;
  bottom: 2%;
  z-index: 1;
  font-size: clamp(11rem, 26vw, 18rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1px rgba(98, 11, 44, 0.358);
  pointer-events: none;
  user-select: none;
}

.why .container {
  position: relative;
  z-index: 0;
}

.why-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 16px;
}

.why .section-title {
  margin: 0;
}

.why-cta {
  flex: 0 0 auto;
}

.why-item {
  --why-on: 0;
  display: grid;
  grid-template-columns: 2.4em minmax(0, 1fr);
  gap: 10px 20px;
  align-items: center;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper-2) calc(var(--why-on) * 100%), transparent);
  transition: --why-on 0.85s var(--ease);
}

.why-item:nth-child(1) { --why-delay: 0s; }
.why-item:nth-child(2) { --why-delay: 2.2s; }
.why-item:nth-child(3) { --why-delay: 4.4s; }
.why-item:nth-child(4) { --why-delay: 6.6s; }

.why-item:last-child {
  border-bottom: 0;
}

.why-item:hover {
  --why-on: 1;
}

.why-list.is-cycling .why-item {
  animation: whyOn 8.8s linear var(--why-delay) infinite;
}

.why-list.is-cycling:hover .why-item {
  animation: none;
  --why-on: 0;
}

.why-list.is-cycling:hover .why-item:hover {
  --why-on: 1;
}

.why-step {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
  transform: scale(calc(1 + 0.08 * var(--why-on)));
}

.why-copy {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-rule {
  display: none;
}

.why-item h3 {
  margin: 0;
  min-width: 0;
  padding-top: 0;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
  color: color-mix(in srgb, var(--accent) calc(var(--why-on) * 100%), var(--navy-900));
}

.why-item p {
  margin: 0;
  min-width: 0;
  color: var(--muted);
}

@keyframes whyOn {
  0% { --why-on: 0; }
  9.66% { --why-on: 1; }
  25% { --why-on: 1; }
  34.66% { --why-on: 0; }
  100% { --why-on: 0; }
}

/* ---------- Audience ---------- */
.audience {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--band-dark);
}

.audience .section-title {
  color: var(--white);
}

.audience-head {
  display: grid;
  gap: 16px;
  margin-bottom: 14px;
}

.audience-head .section-title {
  margin: 0;
}

.audience-cta {
  justify-self: start;
}

.audience .section-kicker {
  margin-bottom: 22px;
  color: var(--accent-2);
  font-size: 1.23rem;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-tags li {
  display: flex;
  flex: 0 0 100%;
  min-width: 0;
  filter: drop-shadow(0 12px 18px rgba(16, 5, 10, 0.34));
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}

.audience-ribbon {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 46px 16px 43px;
  color: var(--white);
  background: var(--accent);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%, 28px 50%);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-shadow: 0 1px 8px rgba(42, 13, 24, 0.22);
  transition: background 0.4s var(--ease);
}

.audience-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.1));
}

.audience-ribbon span {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
}

.audience-ribbon i {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 0.95rem;
  line-height: 1;
  text-shadow: none;
}

.audience-tags li:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 16px 26px rgba(196, 69, 105, 0.42));
}

.audience-tags li:hover .audience-ribbon {
  background: linear-gradient(165deg, #ffb0cc 0%, #ff7aa8 44%, #d14a72 100%);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255, 107, 157, 0.08), transparent 55%),
    var(--paper);
}

.community-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.testimonials .section-title {
  margin: 0;
  max-width: 12ch;
}

.testimonials-intro {
  padding-right: 8px;
}

.testimonials-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 48px 36px 28px 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #fff 48%),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(72, 24, 37, 0.1);
}

.testimonials-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff8fb3 0%, #c44569 100%);
}

.testimonials-stage-mark {
  position: absolute;
  top: 6px;
  left: 28px;
  z-index: 0;
  font-family: var(--font-serif);
  font-size: clamp(6.5rem, 12vw, 9rem);
  font-weight: 500;
  line-height: 0.72;
  color: transparent;
  -webkit-text-stroke: 1px rgb(196 69 105 / 63%);
  pointer-events: none;
}

.testimonials-slides {
  position: relative;
  z-index: 1;
  min-height: 240px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s var(--ease);
}

.testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.testimonial-slide blockquote {
  margin: 0;
  padding-top: 28px;
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  font-style: italic;
  line-height: 1.42;
  color: var(--navy-900);
  flex: 1;
}

.testimonial-logo {
  display: flex;
  align-items: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 16px 108px 4px 0;
  border-top: 1px solid var(--line);
}

.testimonial-logo img {
  width: auto;
  max-width: 168px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.testimonials-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.testimonial-nav-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--cta-gradient);
  color: var(--white);
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(196, 69, 105, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.testimonial-nav-btn:hover,
.testimonial-nav-btn:focus-visible {
  background: var(--cta-gradient-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(196, 69, 105, 0.36);
}

/* ---------- Venue ---------- */
.venue {
  background: var(--white);
}

.venue-visual {
  position: relative;
  overflow: hidden;
  min-height: 465px;
}

.venue-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 465px;
  border-radius: 15px;
  object-fit: cover;
}

.venue-map-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: min(248px, 54%);
  overflow: hidden;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(42, 13, 24, 0.28);
}

.venue-map-card iframe {
  display: block;
  width: 100%;
  height: 176px;
  border: 0;
}

.venue-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  background: var(--cta-gradient);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.venue-map-btn:hover,
.venue-map-btn:focus-visible {
  background: var(--cta-gradient-hover);
  color: var(--white);
}

.venue-subhead {
  margin: 0 0 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.venue-date {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0 0;
}

.venue-date-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--paper);
}

.venue-date-item i {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.15rem;
  line-height: 1;
}

.venue-date-value {
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* ---------- Mobile CTA ---------- */
.mobile-cta {
  display: none;
}

/* ---------- Reveal animations ---------- */
.fade-up,
.fade-in,
.scale-in {
  opacity: 0;
  animation: none;
}

.fade-up {
  transform: translateY(22px);
}

.scale-in {
  transform: scale(0.98);
}

.fade-up.is-visible,
.fade-in.is-visible,
.scale-in.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up,
  .fade-in,
  .scale-in,
  .fade-up.is-visible,
  .fade-in.is-visible,
  .scale-in.is-visible,
  .experience-card,
  .testimonial-slide,
  .audience-tags li,
  .btn-cta,
  .stat-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .stat-item::before {
    width: 28px;
    transition: none;
    animation: none !important;
  }

  .stat-number {
    color: var(--white) !important;
    --count: var(--target);
    animation: none !important;
  }

  .stat-number::before,
  .stat-label {
    animation: none !important;
  }

  .stat-number::before {
    content: none !important;
  }

  .why-list.is-cycling .why-item {
    animation: none !important;
  }

  .hero-eyebrow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    letter-spacing: 0.16em !important;
    text-shadow: none !important;
  }

  .hero-eyebrow::before {
    animation: none !important;
    width: 42px;
    opacity: 1 !important;
  }

  .hero-side-link,
  .hero-side-link .hero-side-arrows,
  .hero-side-link .hero-side-line,
  .hero-side-link .hero-side-dot {
    animation: none !important;
    text-shadow: none !important;
  }
}
/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 88% 8%, rgb(255 0 111 / 16%), transparent 42%), radial-gradient(ellipse at 6% 92%, rgb(200 0 42 / 10%), transparent 40%), #F5F9FC;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.contact-orb--a {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgb(200 0 57 / 20%) 0%, transparent 70%);
}

.contact-orb--b {
  width: min(46vw, 360px);
  height: min(46vw, 360px);
  bottom: -18%;
  left: -10%;
  background: radial-gradient(circle, rgb(255 0 139 / 28%) 0%, transparent 70%);
}

.contact-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.contact-heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.contact-heading span {
  background: linear-gradient(105deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.contact-head-sub {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.4rem 1.3rem 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgb(250 232 241 / 55%) 100%);
  border-radius: 14px;
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 12px 32px rgba(7, 17, 31, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--teal), var(--emerald));
}

.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgb(255 0 16 / 55%), rgb(215 0 125 / 20%) 42%, rgb(200 0 94 / 35%));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgb(215 0 107 / 28%);
}

.contact-card[data-tone="speak"]::before {background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.contact-card[data-tone="ticket"]::before {background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.contact-card[data-tone="sponsor"]::before {background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.contact-card[data-tone="media"]::before {background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.contact-card-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin: 0 0 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(255 0 158 / 20%), rgb(215 0 93 / 16%));
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--navy);
}

.contact-card[data-tone="ticket"] .contact-card-tag {
  background: linear-gradient(90deg, rgb(255 0 158 / 20%), rgb(215 0 93 / 16%));
}

.contact-card[data-tone="sponsor"] .contact-card-tag {
  background: linear-gradient(90deg, rgb(255 0 158 / 20%), rgb(215 0 93 / 16%));
}

.contact-card[data-tone="media"] .contact-card-tag {
  background: linear-gradient(90deg, rgb(255 0 158 / 20%), rgb(215 0 93 / 16%));
}

.contact-card-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

.contact-card-role {
  margin: 0.3rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-card-role::after {
  content: '';
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.8rem 0 0.9rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
}

.contact-card-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  word-break: break-word;
  color: var(--navy);
}

.contact-card-email i {
  color: var(--teal);
  font-size: 0.95rem;
}

.contact-card-email:hover { color: var(--teal); }

.contact-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.7rem 1.7rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(232,244,250,0.45) 100%);
  border-radius: 14px;
  border: 1px solid transparent;
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.08);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--ink));
}

.contact-form::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 1px;
      background: linear-gradient(160deg, rgb(255 0 88 / 50%), rgb(215 0 111 / 18%) 50%, rgb(200 0 79 / 32%));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.contact-form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-form .form-control,
.contact-form .form-select {
  background: #F5F9FC;
  border-color: var(--border);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--white);
}

.contact-form .form-control::placeholder {
  color: #9aabb6;
  font-style: italic;
}

.contact-form-submit {
  width: 100%;
  justify-content: center;
  border: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 22px rgb(215 0 107 / 28%);
}

.contact-form-submit:hover {
  background: linear-gradient(90deg, var(--accent-2) 50%, var(--accent));
  border: 0;
}
/* ---------- FAQ ---------- */
.faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--band-dark);
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq-head {
  margin-bottom: 40px;
}

.faq-head .section-title {
  margin-bottom: 16px;
  color: var(--white);
}

.faq-head .section-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-2);
}

.faq-intro {
  margin: 0;
  max-width: none;
  color: rgba(255, 238, 244, 0.78);
}

.faq-grid {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-color: var(--white);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-color: var(--white);
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-border-color: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 0;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.faq-card {
  overflow: hidden;
  margin: 0;
  background: rgba(16, 5, 10, 0.34);
  border: 1px solid rgba(255, 238, 244, 0.16);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.faq-card:hover,
.faq-card:has(.faq-card-trigger:not(.collapsed)) {
  border-color: rgba(255, 107, 157, 0.55);
  background: rgba(255, 107, 157, 0.12);
  box-shadow: 0 14px 34px rgba(16, 5, 10, 0.28);
}

.faq-card .accordion-header {
  margin: 0;
}

.faq-card-trigger {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 92px;
  padding: 20px 18px !important;
  color: var(--white) !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: left;
}

.faq-card-trigger:focus {
  box-shadow: none !important;
}

.faq-card-trigger::after {
  display: none !important;
}

.faq-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 107, 157, 0.55);
  color: var(--accent-2);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.faq-q {
  min-width: 0;
}

.faq-toggle {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
    linear-gradient(#fff, #fff) center / 2px 12px no-repeat,
    var(--accent);
  box-shadow: 0 8px 18px rgba(196, 69, 105, 0.35);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.faq-card-trigger:not(.collapsed) .faq-toggle {
  transform: rotate(45deg);
  background:
    linear-gradient(#fff, #fff) center / 12px 2px no-repeat,
    var(--accent-2);
}

.faq-card-body {
  padding: 0 18px 20px 76px;
  color: rgba(255, 238, 244, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-card-body p {
  margin: 0;
}

.faq-card-body p + p,
.faq-card-body p + .faq-roles,
.faq-card-body p + .faq-contacts,
.faq-card-body .faq-roles + p {
  margin-top: 14px;
}

.faq-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.faq-roles li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 238, 244, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffeef4;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.faq-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.faq-contacts li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 238, 244, 0.14);
  background: rgba(16, 5, 10, 0.28);
}

.faq-contact-label {
  color: var(--accent-2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-contacts a,
.faq-card-body a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.faq-contacts a:hover,
.faq-contacts a:focus-visible,
.faq-card-body a:hover,
.faq-card-body a:focus-visible {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Agenda */
.agenda-section {
  background: #F5F9FC;
}

.page-inner .agenda-section {
  padding-top: 2.75rem;
}

.page-inner .agenda-legend {
  margin-top: 0;
}

.agenda-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 1.5rem 0 0;
}

.agenda-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.agenda-legend-item::before {
  content: '';
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid rgba(7, 17, 31, 0.12);
}

.agenda-legend-item[data-tone="session"]::before { background: var(--white); }
.agenda-legend-item[data-tone="partner"]::before { background: rgba(0, 200, 83, 0.28); }
.agenda-legend-item[data-tone="challenge"]::before { background: rgba(255, 107, 157, 0.38); }
.agenda-legend-item[data-tone="break"]::before { background: rgba(251, 211, 4, 0.55); }

.agenda-board {
  background: var(--white);
  border: 1px solid var(--border);
}

.agenda-board-head,
.agenda-item {
  display: grid;
  grid-template-columns: 8.75rem 16.5rem minmax(0, 1fr) auto;
  gap: 1rem 1.15rem;
  align-items: start;
}

.agenda-board-head {
  padding: 0.85rem 1.25rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agenda-item {
  padding: 1.2rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.agenda-item--break {
  background: rgba(251, 211, 4, 0.28);
  align-items: center;
}

.agenda-item--partner {
  background: rgba(0, 200, 83, 0.14);
}

.agenda-item--challenge {
  background: rgba(255, 107, 157, 0.2);
}

.agenda-item-time {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  white-space: nowrap;
}

.agenda-item-type {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--teal);
}

.agenda-item--partner .agenda-item-type { color: #057a36; }
.agenda-item--challenge .agenda-item-type { color: var(--cyan); }
.agenda-item--break .agenda-item-type { color: var(--navy); }

.agenda-item-body {
  min-width: 0;
}

.agenda-item-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
}

.agenda-item-body p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.agenda-item-body ul {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.agenda-item-body li + li { margin-top: 0.15rem; }

.agenda-item-session {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
}

.agenda-people {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.agenda-person {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: center;
}

.agenda-person img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 2px;
  background: var(--ice);
}

.agenda-person-meta {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.agenda-person-name {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
}

.agenda-person-role,
.agenda-person-org {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-muted);
}

.agenda-person-org {
  display: none;
}

.agenda-session {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}

.agenda-session:hover { border-color: var(--teal); }

.agenda-session-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.btn-agenda-add {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
  cursor: pointer;
  white-space: nowrap;
  align-self: start;
  transition: all var(--transition);
}

.btn-agenda-add:hover,
.btn-agenda-add.added {
  background: var(--teal);
  color: var(--white);
}

/* Forms */
.form-control, .form-select {
  border-radius: 2px;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(196,69,105,0.15);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback { font-size: 0.8rem; }

/* Modal */
.modal-content {
  border-radius: 2px;
  border: none;
}

.modal-header {
  /*border-bottom: 1px solid var(--border);*/
  padding: 1.5rem 2rem;
}

.modal-body { padding: 2rem; }

.modal-footer {
  /*border-top: 1px solid var(--border);*/
  padding: 1rem 2rem;
}

/* Reveal Animation */
.reveal {
  opacity: 1;
  transform: none;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal:not(.forum-promise-point) {
      opacity: 0;
      transform: translateY(18px);
      animation: revealIn cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-timeline: view();
      animation-range: entry 0% entry 85%;
    }
  }
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-weight: 700;
}

.skip-link:focus { top: 1rem; }

/* Utility */
.text-muted-custom { color: var(--text-muted); }

/* Agenda */
.agenda-section {
  background: #F5F9FC;
}

.page-inner .agenda-section {
  padding-top: 2.75rem;
}

.page-inner .agenda-legend {
  margin-top: 0;
}

.agenda-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 1.5rem 0 0;
}

.agenda-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.agenda-legend-item::before {
  content: '';
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid rgba(7, 17, 31, 0.12);
}

.agenda-legend-item[data-tone="session"]::before { background: var(--white); }
.agenda-legend-item[data-tone="partner"]::before { background: rgba(0, 200, 83, 0.28); }
.agenda-legend-item[data-tone="challenge"]::before { background: rgba(255, 107, 157, 0.38); }
.agenda-legend-item[data-tone="break"]::before { background: rgba(251, 211, 4, 0.55); }

.agenda-board {
  background: var(--white);
  border: 1px solid var(--border);
}

.agenda-board-head,
.agenda-item {
  display: grid;
  grid-template-columns: 8.75rem 16.5rem minmax(0, 1fr) auto;
  gap: 1rem 1.15rem;
  align-items: start;
}

.agenda-board-head {
  padding: 0.85rem 1.25rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agenda-item {
  padding: 1.2rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.agenda-item--break {
  background: rgba(251, 211, 4, 0.28);
  align-items: center;
}

.agenda-item--partner {
  background: rgba(0, 200, 83, 0.14);
}

.agenda-item--challenge {
  background: rgba(255, 107, 157, 0.2);
}

.agenda-item-time {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  white-space: nowrap;
}

.agenda-item-type {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--teal);
}

.agenda-item--partner .agenda-item-type { color: #057a36; }
.agenda-item--challenge .agenda-item-type { color: var(--cyan); }
.agenda-item--break .agenda-item-type { color: var(--navy); }

.agenda-item-body {
  min-width: 0;
}

.agenda-item-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
}

.agenda-item-body p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.agenda-item-body ul {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.agenda-item-body li + li { margin-top: 0.15rem; }

.agenda-item-session {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
}

.agenda-people {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.agenda-person {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: center;
}

.agenda-person img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 2px;
  background: var(--ice);
}

.agenda-person-meta {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.agenda-person-name {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
}

.agenda-person-role,
.agenda-person-org {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-muted);
}

.agenda-person-org {
  display: none;
}

.agenda-session {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}

.agenda-session:hover { border-color: var(--teal); }

.agenda-session-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.btn-agenda-add {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
  cursor: pointer;
  white-space: nowrap;
  align-self: start;
  transition: all var(--transition);
}

.btn-agenda-add:hover,
.btn-agenda-add.added {
  background: var(--teal);
  color: var(--white);
}

/* Forms */
.form-control, .form-select {
  border-radius: 2px;
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(196,69,105,0.15);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback { font-size: 0.8rem; }

/* Modal */
.modal-content {
  border-radius: 2px;
  border: none;
}

.modal-header {
  /*border-bottom: 1px solid var(--border);*/
  padding: 1.5rem 2rem;
}

.modal-body { padding: 2rem; }

.modal-footer {
  /*border-top: 1px solid var(--border);*/
  padding: 1rem 2rem;
}

/* Reveal Animation */
.reveal {
  opacity: 1;
  transform: none;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal:not(.forum-promise-point) {
      opacity: 0;
      transform: translateY(18px);
      animation: revealIn cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-timeline: view();
      animation-range: entry 0% entry 85%;
    }
  }
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-weight: 700;
}

.skip-link:focus { top: 1rem; }

/* Utility */
.text-muted-custom { color: var(--text-muted); }

.page-hero {
    background: #2b1420;
    color: #ffffff;
    padding: calc(72px + 4rem) 0 4rem;
    position: relative;
}
.page-hero, .hero-inner, .breadcrumb-nav {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}
.page-hero, .hero-inner, .breadcrumb-nav a {
    color: #ff6b9d;
    font-weight: 700;
}
.page-hero, .hero-inner, .breadcrumb-nav a:hover {
    color: #ffffff;
}
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
}
.venue-eyebrow {
    margin: 0 0 1.1rem;
    padding: 0;
    border: 0;
    background: none;
}
.page-hero .venue-eyebrow, .page-hero .section-eyebrow {
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #ff6b9d;
}
.section-eyebrow::before {
    content: '';
    width: 2.25rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #ff6b9d);
}
.page-hero .venue-eyebrow::before, .page-hero .section-eyebrow::before {
    width: 2.75rem;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #ff6b9d);
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 1rem;
    color: #ffffff;
}
.page-hero-accent {
    background: linear-gradient(90deg, #FF8FB3, #ff6b9d, #FF7AA8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.page-hero-sub {
    margin: 0;
    /* max-width: 38rem; */
    font-size: 1.125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}
/* tickets */
/* Tickets */
.ticket-section {
  position: relative;
  background: #F5F9FC;
  color: var(--text-dark);
  overflow: hidden;
}

.ticket-bg::before {
  background: radial-gradient(circle, rgb(215 0 82 / 16%) 0%, rgb(255 0 87 / 8%) 42%, transparent 70%);
  top: -28%;
  left: -16%;
  animation: forumPromiseGlowA 16s ease-in-out infinite;
}

.section-glow::before, .section-glow::after {
    content: '';
    position: absolute;
    width: min(70vw, 640px);
    height: min(70vw, 640px);
    border-radius: 50%;
    filter: blur(8px);
    will-change: transform;
}

.ticket-bg::after {
  background: radial-gradient(circle, rgb(200 0 106 / 12%) 0%, rgb(215 0 58 / 6%) 45%, transparent 70%);
  bottom: -32%;
  right: -18%;
  animation: forumPromiseGlowB 20s ease-in-out infinite;
}

@keyframes forumPromiseGlowA {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(55vw, 18vh) scale(1.12); }
  50%  { transform: translate(35vw, 48vh) scale(0.95); }
  75%  { transform: translate(-5vw, 30vh) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes forumPromiseGlowB {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-45vw, -20vh) scale(1.1); }
  50%  { transform: translate(-55vw, -45vh) scale(0.92); }
  75%  { transform: translate(-15vw, -10vh) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}


.ticket-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.ticket-heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.ticket-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  background: linear-gradient(105deg, var(--accent) 0%, var(--accent-2) 45%, var(--ink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ticket-paths {
  position: relative;
  z-index: 1;
}

.ticket-path {
  --stub: var(--teal);
  --ticket-notch: #F5F9FC;
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  width: 100%;
  min-height: 14.5rem;
  background: transparent;
  transition: transform var(--transition);
}

.ticket-path[data-tone="meet"] { --stub: var(--teal); }
.ticket-path[data-tone="solve"] { --stub: var(--navy); }
.ticket-path[data-tone="peer"] { --stub: #0B7A3E; }

.ticket-path:hover {
  transform: translateY(-6px) rotate(-0.35deg);
}

.ticket-stub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.05rem 0.4rem;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.08);
}

.ticket-stub::before,
.ticket-stub::after {
  content: '';
  position: absolute;
  right: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ticket-notch);
  transform: translateX(50%);
  z-index: 2;
}

.ticket-stub::before { top: -9px; }
.ticket-stub::after { bottom: -9px; }

.ticket-stub-no {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.ticket-kicker {
  margin: auto 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.ticket-admit {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.3rem 1.2rem 1.45rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
  border: 2px dashed var(--ink);
  border-left: 0;
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.08);
  overflow: visible;
}

.ticket-admit::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  bottom: 1.15rem;
  border-left: 2px dashed rgba(7, 17, 31, 0.16);
}

.ticket-path h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.ticket-copy {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.ticket-cta {
  align-self: flex-end;
  margin-top: auto;
  padding: 0.65rem 1.05rem;
  font-size: 0.72rem;
}

.ticket-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticket-cta i {
  display: inline-block;
  transition: transform 0.35s ease;
}

.ticket-cta:hover i {
  transform: translateX(4px);
}

.ticket-path[data-tone="solve"] .ticket-cta {
  background: var(--cta-gradient-hover);
  background: var(--cta-gradient-hover);
}

.ticket-path[data-tone="solve"] .ticket-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.ticket-path[data-tone="peer"] .ticket-cta {
  background: var(--ink);
  border-color: var(--ink);
}

.ticket-path[data-tone="peer"] .ticket-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}
/* Footer */
.footer-bg {
    background-color: #C44569;
}
.footer-bg .our-moto {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}
.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: #C44569;
    transition: all 1s ease-out;
}
.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);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.contact-icon {
    background-color: #fff;
    color: #C44569;
    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);
}
.footer-bottom {
    background-color: #FF6B9D;
    color: #fff;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
}
.footer-links .fa-circle {
    color: #fff;
    font-size: .5rem;
    margin-right: .75rem;
}
.footer-bottom .fa-circle {
    color: #fff;
    font-size: .5rem;
    margin: 0 .5rem;
}
.footer-links a:hover {
    color: #FF6B9D;
}
.contact-content .contact-value a:hover {
    color: #FF6B9D;
}

/* agenda form*/
.form-control, .form-select {
    border-radius: 2px;
    border: 1px solid #F0D0DA;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}
.error {
    color: red;
}

/* Sponsors */
.sponsor {
    padding: 2rem 0;
    border-radius: 0 0 40px 40px;
}
#sponsors .supporters-wrap {
    margin-bottom: 10px;
}
.supporter {
    padding: 10px 8px;
}
.supporter-logo {
    cursor: pointer;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 30px rgb(0 0 0 / .05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 120px;
}
.supporter img {
    transition: all 0.4s ease-in-out;
    max-width: 100%;
    height: auto;
}
#sponsors img:hover {
    transform: scale(1.05);
}
.btn-closed {
    font-size: 26px;
    background-color: #fff0;
    border: none;
}
.modal-body p {
    text-align: justify;
}
.sponsor-modal .modal-body{
    padding: 1rem;
}
    .modal-header {
    
}