/* ============================================
   SECTIONS: All blocks
   ============================================ */

/* --- BLOCK 1: Sticky Nav --- */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 0 var(--space-lg);
  transition: box-shadow 0.4s ease;
}
/* Progressive blur: 4 stacked layers, each with stronger blur + softer mask.
   Extends below nav so fadeout is gradual. */
.nav__blur {
  position: absolute; inset: 0 0 -80px 0;
  pointer-events: none; z-index: -1;
}
.nav__blur-layer {
  position: absolute; inset: 0;
  backdrop-filter: blur(var(--b));
  -webkit-backdrop-filter: blur(var(--b));
  -webkit-mask-image: linear-gradient(to bottom, #000 var(--s1), transparent var(--s2));
          mask-image: linear-gradient(to bottom, #000 var(--s1), transparent var(--s2));
}
/* Dark tint always on — keeps nav text readable over any background.
   Fades out softly at bottom so there's no hard edge. */
.nav::before {
  content: ""; position: absolute; inset: 0 0 -60px 0;
  pointer-events: none; z-index: -1;
  background: linear-gradient(to bottom,
    rgba(5,8,20,0.85) 0%,
    rgba(5,8,20,0.7) 40%,
    rgba(5,8,20,0.3) 75%,
    rgba(5,8,20,0) 100%);
}
.nav--scrolled::before { opacity: 1; }
.nav__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; height: 72px;
}
.nav__logo svg { height: 24px; width: auto; }
.nav__links { display: flex; align-items: center; gap: var(--space-xl); }
.nav__link {
  font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-secondary); transition: color 0.3s; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--neon); transition: width 0.3s;
}
.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { width: 100%; }
/* Nav CTA inherits btn--shiny; size down for nav context */
.nav__cta.btn--shiny {
  padding: 10px 20px;
  font-size: 0.8125rem;
  letter-spacing: 1px;
}
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: transform 0.3s, opacity 0.3s; }
.nav__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- BLOCK 2: Hero --- */
.section--hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden; background: var(--deep-black);
}
.hero__video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1; object-fit: cover;
}
.hero__overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 40%, transparent 55%, var(--dark-navy) 100%);
}
/* Extra fade-out into next section so there is no hard cut */
.section--hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 180px; pointer-events: none; z-index: 2;
  background: linear-gradient(to bottom, transparent 0%, var(--dark-navy) 100%);
}
/* Solid dark-navy wipe that JS fades in on scroll — kills any "step"
   at the hero/about boundary by turning the whole hero into a flat
   dark-navy field before the section exits the viewport. */
.hero__fade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: var(--dark-navy);
  opacity: 0;
}
.hero__inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-2xl) clamp(80px, 12vh, 140px);
  display: flex; flex-direction: column; justify-content: flex-end;
  flex: 1;
}
.hero__eventmeta {
  display: grid; grid-template-columns: auto auto; gap: 16px;
  margin: 0 0 clamp(40px, 6vh, 72px);
  justify-content: flex-start;
}
.hero__eventmeta-tile {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 18px 26px;
  background: rgba(0, 18, 24, 0.55);
  border: 1px solid rgba(0, 240, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(0,240,255,0.08), 0 0 24px rgba(0,240,255,0.12) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__eventmeta-icon {
  width: 28px; height: 28px; display: inline-flex;
  color: var(--neon);
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.7));
  flex: 0 0 auto;
}
.hero__eventmeta-icon svg { width: 100%; height: 100%; stroke: currentColor; }
.hero__eventmeta-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.hero__eventmeta-label {
  font-family: var(--font-heading); font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--neon);
}
.hero__eventmeta-value {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 900; letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.1;
}
.hero__eyebrow {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--neon);
  margin: 0;
}
.hero__content { max-width: 960px; }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  margin-bottom: var(--space-xl);
  display: flex; flex-direction: column;
}
.hero__title-light {
  font-weight: 300; letter-spacing: -1px;
  color: var(--text-secondary);
  font-size: clamp(1.2rem, 3vw, 2rem);
}
.hero__title-bold {
  font-weight: 900; letter-spacing: -2px;
  color: var(--text-primary);
  white-space: nowrap;
}
.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--text-primary); line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: clamp(40px, 6vh, 72px);
  max-width: 760px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero__cta { align-self: flex-start; }

/* --- BLOCK 3: About --- */
.section--about { padding: var(--space-section) 0; background: var(--dark-navy); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(48px, 6vw, 96px);
  row-gap: 0;
  align-items: start;
}
.about__intro  { grid-column: 1; grid-row: 1; }
.about__visual { grid-column: 2; grid-row: 1; z-index: 1; align-self: start; }
.about__divider {
  display: none;
}
.about__grid > .about__stats {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 40px;
  padding-top: 0;
  border-top: 0;
}
.about__intro { display: flex; flex-direction: column; align-items: flex-start; }
.about__eyebrow { margin-bottom: 24px; }
.about__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 28px;
}
.about__copy {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 40px;
  max-width: 64ch;
}
.about__ctas {
  display: flex; align-items: center; gap: 32px; flex-wrap: nowrap;
}
.about__ctas > * { flex-shrink: 0; }
.about__link > span { white-space: nowrap; }
.about__link {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 200ms ease, border-color 200ms ease, gap 240ms ease;
}
.about__link i, .about__link svg { width: 18px; height: 18px; }
.about__link:hover { color: var(--neon); border-bottom-color: var(--neon); gap: 14px; }
.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  animation: aboutVisualReveal 1100ms cubic-bezier(0.76, 0, 0.24, 1) 200ms forwards;
}
.about__visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.12);
}
@keyframes aboutVisualReveal {
  to { clip-path: inset(0 0 0 0); }
}
@media (prefers-reduced-motion: reduce) {
  .about__visual { clip-path: inset(0); animation: none; }
  .about__visual img { transform: none; animation: none; }
}
.about__visual-tint {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, var(--dark-navy) 0%, transparent 22%, transparent 60%, var(--dark-navy) 100%),
    linear-gradient(90deg, var(--dark-navy) 0%, transparent 14%, transparent 86%, var(--dark-navy) 100%),
    radial-gradient(ellipse at 20% 100%, rgba(0, 240, 255, 0.12), transparent 65%);
}
.about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px 40px;
  margin-top: 40px;
  padding-top: 0;
  border-top: 0;
}
.about__stat { display: flex; flex-direction: column; gap: 10px; }
.about__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 4.8vw, 4.25rem);
  font-weight: 900; line-height: 0.95;
  color: var(--neon); letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(0,240,255,0.35);
}
.about__stat-label {
  font-size: 0.875rem; color: var(--text-secondary);
  line-height: 1.5; font-weight: 400;
}
/* legacy (unused now, kept for safety) */
.about__number-item {
  padding: var(--space-xl);
  border: 1px solid var(--neon-20);
  background: rgba(0,240,255,0.03);
  transition: border-color 0.3s, transform 0.3s;
}
.about__number-item:hover { border-color: var(--neon-60); transform: translateY(-2px); }
.about__number {
  display: block; font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 900; color: var(--neon);
  line-height: 1; margin-bottom: var(--space-sm);
  text-shadow: var(--glow-neon);
}
.about__number-label { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.4; }
.about__cta { margin-top: var(--space-2xl); }

.about__secondary {
  margin-top: clamp(80px, 12vw, 140px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about__secondary-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text-primary);
  margin: 24px 0 32px;
}
.about__secondary-copy {
  display: flex; flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}
.about__secondary-copy p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.about__signoff {
  margin-top: 24px;
  font-style: italic;
  color: var(--text-primary) !important;
}
.about__signoff span {
  display: block; margin-top: 4px;
  font-style: normal;
  color: var(--neon);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- BLOCK 4: Pillars --- */
.section--pillars { padding: var(--space-section) 0; background: linear-gradient(180deg, var(--dark-navy) 0%, var(--deep-black) 100%); }
.pillars__header { text-align: center; margin-bottom: var(--space-2xl); }
.pillars__row { display: grid; column-gap: 48px; row-gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
.pillars__row:last-child { margin-bottom: 0; }
.pillars__row--3 { grid-template-columns: repeat(3, 1fr); }

/* --- BLOCK 5: Experts --- */
.section--experts { padding: var(--space-section) 0; background: var(--deep-black); }
.experts__header { text-align: center; margin-bottom: 96px; }
.experts__grid {
  display: flex; flex-direction: column;
  gap: clamp(100px, 14vh, 180px);
}
.experts__grid--single { max-width: 980px; margin: 0 auto; }

/* --- BLOCK 6: Speakers --- */
.section--speakers { padding: var(--space-section) 0; background: linear-gradient(180deg, var(--deep-black) 0%, var(--dark-navy) 100%); }
.speakers__header { text-align: center; margin-bottom: 64px; }
.speakers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 24px;
}
.speakers__cta { margin-top: 40px; text-align: center; }

/* --- BLOCK 7: Agenda --- */
.section--agenda { padding: var(--space-section) 0; background: var(--dark-navy); }
.agenda__header { text-align: center; margin-bottom: var(--space-2xl); }
.agenda__lead {
  font-family: var(--font-body); font-size: 1.125rem; font-weight: 300;
  color: var(--text-secondary);
  margin-top: calc(-1 * var(--space-lg));
}
.agenda__list { display: flex; flex-direction: column; max-width: 1100px; margin: 0 auto; }

/* --- BLOCK 7b: Stay (Hotel + Afterparty, z-pattern) --- */
.section--stay {
  padding: var(--space-section) 0;
  background: var(--dark-navy);
}
.section--stay .container { display: flex; flex-direction: column; gap: clamp(80px, 12vw, 140px); }
.stay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.stay-row--left .stay-row__text { grid-column: 1; grid-row: 1; }
.stay-row--left .stay-row__media { grid-column: 2; grid-row: 1; }
.stay-row--right .stay-row__media { grid-column: 1; grid-row: 1; }
.stay-row--right .stay-row__text { grid-column: 2; grid-row: 1; }

.stay-row__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 16px 0 28px;
}
.stay-row__copy {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.stay-row__bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stay-row__bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-primary);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.stay-row__bullets i {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: var(--neon);
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.2);
}
.stay-row__bullets i svg { width: 18px; height: 18px; }
.stay-row__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 30px 80px -28px rgba(0, 0, 0, 0.8),
              0 0 0 1px rgba(0, 240, 255, 0.12);
}
.stay-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.stay-row__tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0) 50%, rgba(8, 12, 24, 0.55) 100%);
  pointer-events: none;
}

/* --- BLOCK 8: Video --- */
.section--video { padding: var(--space-section) 0; background: linear-gradient(180deg, var(--dark-navy) 0%, var(--deep-black) 100%); }
.video__header { margin-bottom: 64px; text-align: center; }
.video__header .section-title { margin-bottom: 16px; }
.video__lead {
  font-family: var(--font-body); font-size: 1.125rem; font-weight: 300;
  color: var(--text-secondary); line-height: 1.6;
  max-width: 56ch; margin: 0 auto;
}
.video__thumb {
  position: relative; display: block;
  width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 40%, rgba(0,240,255,0.18), transparent 60%),
              linear-gradient(135deg, #0a2a33 0%, #041319 100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: 0; padding: 0;
}
.video__thumb:hover { transform: translateY(-4px); }
.video__thumb-media { position: absolute; inset: 0; pointer-events: none; }
.video__thumb-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.video__thumb:hover .video__thumb-media img { transform: scale(1.04); }
.video__thumb-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.video__play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 88px;
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.22) 0%, rgba(0, 240, 255, 0.08) 50%, rgba(10, 18, 32, 0.32) 100%);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 0 0 1px rgba(0, 240, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 20px 60px -15px rgba(0, 240, 255, 0.4),
    0 8px 24px -8px rgba(0, 0, 0, 0.6);
  transition:
    transform 400ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 400ms ease,
    background 400ms ease;
}
.video__play::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  opacity: 0;
  transition: opacity 400ms ease, transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.video__thumb:hover .video__play {
  transform: scale(1.06);
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.32) 0%, rgba(0, 240, 255, 0.14) 50%, rgba(10, 18, 32, 0.28) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(0, 240, 255, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 30px 80px -15px rgba(0, 240, 255, 0.6),
    0 8px 24px -8px rgba(0, 0, 0, 0.6);
}
.video__thumb:hover .video__play::before {
  opacity: 1;
  transform: scale(1.06);
}
.video__play > svg { position: relative; z-index: 1; color: #fff; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25)); margin-left: 4px; }

/* --- BLOCK 8b: Gallery (post-video, before register) --- */
.section--gallery {
  padding: var(--space-section) 0;
  background: var(--deep-black);
}
.gallery__header { text-align: center; margin-bottom: 48px; }
.gallery__header .section-title { margin-bottom: 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 8px;
}
.gallery__item {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #0a2a33 0%, #041319 100%);
  outline: 1px solid rgba(0, 240, 255, 0.08);
  outline-offset: -1px;
  transition: outline-color 300ms var(--ease-out), transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
  filter: saturate(0.95);
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,240,255,0.08) 100%);
  opacity: 0; transition: opacity 400ms ease;
  pointer-events: none;
}
.gallery__item:hover {
  outline-color: rgba(0, 240, 255, 0.55);
  transform: translateY(-2px);
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.1); }
.gallery__item:hover::after { opacity: 1; }

@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* --- BLOCK 9: Register (intro + form, watermark bg) --- */
.section--register {
  padding: var(--space-section) 0;
  background:
    linear-gradient(180deg, var(--deep-black) 0%, #060a12 48%, var(--deep-black) 100%);
  position: relative; overflow: hidden;
}
.section--register::before,
.section--register::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 120px;
  pointer-events: none; z-index: 0;
}
.section--register::before {
  top: 0;
  background: linear-gradient(180deg, var(--deep-black) 0%, transparent 100%);
}
.section--register::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--deep-black) 0%, transparent 100%);
}
.register__watermark {
  position: absolute;
  top: 50%; left: 42%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 240, 255, 0.1);
  text-stroke: 1.5px rgba(0, 240, 255, 0.1);
  text-align: left;
  z-index: 0;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
  mask-image: radial-gradient(ellipse 85% 70% at 42% 50%, #000 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 42% 50%, #000 25%, transparent 85%);
}
.register__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 40% at 22% 35%, rgba(0, 240, 255, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 35% at 82% 70%, rgba(0, 240, 255, 0.10), transparent 75%);
}
.section--register .container { position: relative; z-index: 1; }
.register__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: stretch;
}
.register__intro { display: flex; flex-direction: column; height: 100%; }
.register__photo {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  margin-top: 48px;
  background: var(--deep-black);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--neon-20);
}
.register__photo img { position: absolute; inset: 0; }
.register__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.6s ease;
}
.register__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 6, 14, 0.55) 100%);
  pointer-events: none;
}
.register__eyebrow {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--neon); margin: 0 0 20px;
}
.register__title {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900; color: var(--text-primary); line-height: 1.02;
  letter-spacing: -0.02em; margin: 0 0 28px;
}
.register__title-accent { display: inline-block; color: var(--text-primary); }
.register__lead {
  color: var(--text-secondary);
  font-size: 1.0625rem; line-height: 1.7;
  margin: 0;
  max-width: none;
}
.register__form {
  position: relative;
  padding: 40px;
  background: rgba(5, 10, 20, 0.65);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(0, 240, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 60px -20px rgba(0, 0, 0, 0.6);
}
/* Tech HUD corner brackets */
.register__form::before,
.register__form::after {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  border: 1px solid var(--neon);
  pointer-events: none;
}
.register__form::before {
  top: -1px; left: -1px;
  border-right: 0; border-bottom: 0;
}
.register__form::after {
  bottom: -1px; right: -1px;
  border-left: 0; border-top: 0;
}
.register__fields {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 640px) {
  .register__fields { grid-template-columns: 1fr; }
}
.register__field {
  display: block; position: relative;
  padding-top: 24px;
}
.register__field--full { grid-column: 1 / -1; }
.register__input {
  display: block; width: 100%;
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  padding: var(--space-sm) 0;
  font-family: var(--font-body); font-size: 1rem;
  border-radius: 0; outline: none;
  transition: border-color 250ms var(--ease-out),
              box-shadow 250ms var(--ease-out);
}
.register__input::placeholder { color: transparent; }
.register__input:focus {
  border-bottom-color: var(--neon);
  box-shadow: 0 1px 0 0 var(--neon);
}
.register__label {
  position: absolute; left: 0; bottom: 9px;
  pointer-events: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  transform-origin: left bottom;
  transition: transform 250ms var(--ease-out),
              color 250ms var(--ease-out),
              letter-spacing 250ms var(--ease-out);
}
/* Raised state: focused OR has a value */
/* wpcf7-form-control-wrap wraps the input, so we use :has() to reach the sibling label */
.register__input:focus ~ .register__label,
.register__input:not(:placeholder-shown) ~ .register__label,
.wpcf7-form-control-wrap:has(.register__input:focus) ~ .register__label,
.wpcf7-form-control-wrap:has(.register__input:not(:placeholder-shown)) ~ .register__label {
  transform: translateY(-28px) scale(0.72);
  color: var(--neon);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 700;
}
.wpcf7-list-item {margin:0 !important;}

/* Field icon */
.register__field--icon { padding-left: 32px; }
.register__icon {
  position: absolute; left: 0; bottom: 13px;
  width: 18px; height: 18px;
  color: var(--neon);
  pointer-events: none;
  transition: color 250ms var(--ease-out), transform 250ms var(--ease-out);
}
.register__icon svg { width: 100%; height: 100%; stroke-width: 1.6; display: block; }
.register__field--icon .register__input:focus ~ .register__icon,
.register__field--icon .register__input:not(:placeholder-shown) ~ .register__icon,
.register__field--icon.is-open .register__icon,
.register__field--icon.is-filled .register__icon { color: var(--neon); }
.register__field--icon .register__label,
.register__field--icon .register__label--cdrop { left: 32px; }
.register__field--icon .cdrop__menu { left: -32px; right: 0; }

/* Custom dropdown */
.register__field--cdrop { position: relative; }
.cdrop__trigger {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  padding: var(--space-sm) 0;
  font-family: var(--font-body); font-size: 1rem;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}
.cdrop__trigger:focus-visible,
.register__field--cdrop.is-open .cdrop__trigger {
  border-bottom-color: var(--neon);
  box-shadow: 0 1px 0 0 var(--neon);
}
.cdrop__value {
  display: block;
  min-width: 0; flex: 1 1 auto;
  min-height: 1.5em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--text-primary);
}
.cdrop__chevron {
  width: 12px; height: 8px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: transform 250ms var(--ease-out), color 250ms var(--ease-out);
}
.register__field--cdrop.is-filled .cdrop__chevron,
.register__field--cdrop.is-open .cdrop__chevron { color: var(--neon); }
.register__field--cdrop.is-open .cdrop__chevron { transform: rotate(180deg); }
.register__label--cdrop {
  position: absolute; left: 0; bottom: 9px;
  pointer-events: none;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 400;
  color: var(--text-muted);
  transform-origin: left bottom;
  transition: transform 250ms var(--ease-out),
              color 250ms var(--ease-out),
              letter-spacing 250ms var(--ease-out);
}
.register__field--cdrop.is-filled .register__label--cdrop {
  transform: translateY(-28px) scale(0.72);
  color: var(--neon);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading); font-weight: 700;
}
.cdrop__menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  z-index: 20;
  list-style: none; margin: 0; padding: 6px;
  background: rgba(8, 12, 24, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--neon-20);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.8),
              0 0 0 1px rgba(0, 240, 255, 0.08),
              inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0; transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.register__field--cdrop.is-open .cdrop__menu {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.cdrop__option {
  position: relative;
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), padding-left 180ms var(--ease-out);
}
.cdrop__option::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 2px; height: 0; background: var(--neon);
  transform: translateY(-50%);
  transition: height 180ms var(--ease-out);
}
.cdrop__option:hover,
.cdrop__option.is-active {
  background: rgba(0, 240, 255, 0.08);
  color: var(--text-primary);
  padding-left: 20px;
}
.cdrop__option:hover::before,
.cdrop__option.is-active::before { height: 60%; }
.cdrop__option.is-selected {
  color: var(--neon);
}
.cdrop__option.is-selected::before { height: 60%; }
.register__consents {
  display: flex; flex-direction: column; gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.register__check, .wpcf7-list-item-label {
  display: flex; align-items: flex-start; gap: var(--space-2sm);
  cursor: pointer; user-select: none;
}
.register__check input { position: absolute; opacity: 0; pointer-events: none; }
.register__check-box {
  flex-shrink: 0; width: 18px; height: 18px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  position: relative; margin-top: 2px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.register__check-box::after {
  content: ""; position: absolute;
  left: 5px; top: 1px; width: 5px; height: 10px;
  border: solid var(--deep-black); border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0); transform-origin: center;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.register__check input:checked + .wpcf7-list-item-label .register__check-box,
.register__check input:checked + .register__check-box {
  background: var(--neon); border-color: var(--neon);
  box-shadow: 0 0 12px rgba(0,240,255,0.45);
}
.register__check input:checked + .wpcf7-list-item-label .register__check-box::after,
.register__check input:checked + .register__check-box::after { transform: rotate(45deg) scale(1); }
.register__check input:focus-visible + .wpcf7-list-item-label .register__check-box,
.register__check input:focus-visible + .register__check-box { box-shadow: 0 0 0 2px var(--neon-60); }
.register__check-text { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.5; }
.register__check-text a { color: var(--text-primary); border-bottom: 1px solid var(--neon-20); transition: color 0.3s, border-color 0.3s; }
.register__check-text a:hover { color: var(--neon); border-bottom-color: var(--neon); }
.register__actions { display: flex; flex-direction: column; gap: var(--space-md); }
.register__submit.btn--shiny {
  width: 100%; min-width: 0;
  padding: 22px 32px;
  font-size: 1rem;
  letter-spacing: 1.5px;
}
.wpcf7-form-control-wrap {display:block;}
.wpcf7-not-valid-tip {position: absolute; width: 100%; left: 0; font-size: 12px !important; letter-spacing: 1px; text-transform: uppercase;bottom:-20px;}
/* --- BLOCK 10: Partners --- */
.section--partners { padding: var(--space-section) 0; background: linear-gradient(180deg, var(--deep-black) 0%, var(--dark-navy) 100%); }
.partners__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2xl); align-items: center; }
.partners__grid .partner-logo { flex: 0 0 auto; }

/* --- BLOCK 11: Contact (between Partners and Footer, seamless bg) --- */
.section--contact {
  padding: clamp(64px, 9vh, 110px) 0;
  background: var(--dark-navy);
  position: relative;
  overflow: hidden;
}
.section--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(0,240,255,0.10), transparent 65%);
  pointer-events: none;
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}
.contact__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  max-height: 480px;
  overflow: hidden;
}
.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 800ms cubic-bezier(0.23, 1, 0.32, 1);
}
.contact__photo:hover img { transform: scale(1.05); }
.contact__title {
  font-family: var(--font-display, 'Lato'), sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 16px 0 32px;
}
.contact__person {
  border-left: 2px solid var(--neon);
  padding-left: 16px;
  margin-bottom: 32px;
}
.contact__name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.contact__role {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  letter-spacing: 0.02em;
}
.contact__details {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 160ms ease;
}
.contact__link:hover { color: var(--neon); }
.contact__link svg { width: 18px; height: 18px; color: var(--neon); }
.contact__cta { align-self: flex-start; }

/* --- BLOCK 12: Footer --- */
.section--footer-contact {
  padding: 28px 0;
  background: linear-gradient(180deg, var(--dark-navy) 0%, #050a14 100%);
  border-top: 1px solid rgba(0, 240, 255, 0.12);
}
/* Single-row footer: logo + social (left) ........... legal + copy (right) */
.fc__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.fc__brand {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.fc__meta {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.fc__logo-big { display: block; height: 24px; width: auto; }
.fc__copy-link {
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}
.fc__copy-link:hover { color: var(--neon); border-bottom-color: var(--neon); }
.fc__www {
  display: inline-block; margin: 0;
  color: var(--text-secondary); text-decoration: none;
  font-size: 13px; letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}
.fc__www:hover { color: var(--neon); border-bottom-color: var(--neon); }

.fc__col-title {
  font-family: var(--font-heading); font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 var(--space-lg);
}

/* Nav-style underline hover on footer navigation links */
.fc__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.fc__links a {
  position: relative; display: inline-block;
  font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 300ms var(--ease-out);
}
.fc__links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--neon);
  transition: width 400ms var(--ease-out);
}
.fc__links a:hover { color: var(--text-primary); }
.fc__links a:hover::after { width: 100%; }

/* Address block */
.fc__address { font-style: normal; display: flex; flex-direction: column; gap: var(--space-md); }
.fc__address p { margin: 0; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }
.fc__addr-label {
  display: block; font-family: var(--font-heading);
  font-size: 0.625rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.fc__addr-link {
  position: relative; display: inline-block;
  font-size: 0.9375rem; color: var(--text-primary);
  transition: color 300ms var(--ease-out);
}
.fc__addr-link::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--neon);
  transition: width 400ms var(--ease-out);
}
.fc__addr-link:hover { color: var(--neon); }
.fc__addr-link:hover::after { width: 100%; }

/* Contact column */
.fc__person { display: flex; gap: var(--space-lg); align-items: center; margin-bottom: var(--space-lg); }
.fc__photo {
  flex-shrink: 0; width: 72px; height: 72px;
  background: radial-gradient(ellipse at 30% 40%, rgba(0,240,255,0.18), transparent 60%),
              linear-gradient(135deg, #0a2a33 0%, #041319 100%);
  overflow: hidden;
}
.fc__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fc__name { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; margin: 0 0 2px; color: var(--text-primary); }
.fc__role { font-size: 0.75rem; color: var(--neon); margin: 0; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.fc__details { display: flex; flex-direction: row; flex-wrap: wrap; gap: var(--space-xl); }
.fc__detail {
  color: var(--text-primary); font-size: 1.0625rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 12px;
  position: relative;
  transition: color 300ms var(--ease-out);
}
.fc__detail:hover { color: var(--neon); }
.fc__detail svg {
  width: 18px; height: 18px; color: var(--neon); flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0,240,255,0.55));
}

/* Social — CTA-style (btn--shiny bg + hover glow) WITHOUT the rotating gradient border */
.fc__social { display: flex; gap: 10px; }
.fc__social-link.btn--shiny {
  width: 44px; height: 44px; padding: 11px; line-height: 0;
  /* kill rotating conic border, replace with a static neon border */
  background: var(--shiny-bg);
  border: 1px solid rgba(0, 240, 255, 0.45);
}
/* freeze all rotation animations */
.fc__social-link.btn--shiny,
.fc__social-link.btn--shiny::before,
.fc__social-link.btn--shiny::after {
  animation: none !important;
}
.fc__social-link.btn--shiny:hover,
.fc__social-link.btn--shiny:focus-visible {
  border-color: var(--neon);
  --gradient-angle-offset: 0deg;
  --gradient-percent: 5%;
}
.fc__social-link.btn--shiny > span {
  display: inline-flex; align-items: center; justify-content: center;
}
.fc__social-link svg { width: 20px; height: 20px; display: block; }

.fc__copy { font-size: 0.875rem; color: var(--text-muted); margin: 0; white-space: nowrap; }
.fc__legal { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.fc__link {
  position: relative; font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 300ms var(--ease-out);
}
.fc__link::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px; background: var(--neon);
  transition: width 400ms var(--ease-out);
}
.fc__link:hover { color: var(--text-primary); }
.fc__link:hover::after { width: 100%; }

/* === RESPONSIVE === */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  :root { --space-section: 48px; }
  .container { padding: 0 var(--space-xl); }

  /* Hero */
  .hero__inner { padding: var(--space-2xl) var(--space-xl) var(--space-3xl); }
  .hero__title { font-size: clamp(3rem, 8vw, 5rem); }

  /* About */
  .about__grid { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 48px; }
  .about__intro, .about__visual, .about__divider, .about__grid > .about__stats { grid-column: 1; grid-row: auto; }
  .about__visual { aspect-ratio: 4 / 5; max-height: 620px; }
  .about__stats { gap: 24px 40px; }
  .about__divider { margin-top: 0; }

  /* Pillars */
  .pillars__row--3 { grid-template-columns: repeat(2, 1fr); }
  .pillars__row { column-gap: var(--space-xl); row-gap: var(--space-2xl); }

  /* Experts + Speakers */
  .experts__grid { gap: var(--space-3xl) var(--space-2xl); }
  .speakers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 28px; }

  /* Stay (hotel + afterparty) */
  .stay-row { grid-template-columns: 1fr; gap: 32px; }
  .stay-row--left .stay-row__text,
  .stay-row--right .stay-row__text { grid-column: 1; grid-row: 2; }
  .stay-row--left .stay-row__media,
  .stay-row--right .stay-row__media { grid-column: 1; grid-row: 1; aspect-ratio: 4 / 3; }

  /* Video */
  .video__header { margin-bottom: var(--space-3xl); }

  /* Register */
  .register__grid { grid-template-columns: 1fr; gap: 48px; }
  .register__title { font-size: clamp(2rem, 5vw, 3rem); }

  /* Partners */
  .partners__grid { gap: var(--space-xl); }

  /* Footer — single brand column, no override needed */
  .fc__details { gap: var(--space-lg); }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  :root { --space-section: 40px; }
  .container { padding: 0 var(--space-lg); }

  /* Nav */
  .nav { height: 60px; }
  .nav__bar { height: 60px; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    flex-direction: column; justify-content: center; gap: var(--space-2xl);
    background: rgba(10,14,26,0.98); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); transition: right 0.4s; padding: var(--space-2xl);
    z-index: 100;
  }
  .nav__links.is-open { right: 0; }
  .nav__links .nav__cta { display: inline-flex; }
  .nav__hamburger { display: flex; position: relative; z-index: 101; }

  /* Hero */
  .hero__inner { padding: var(--space-4xl) var(--space-lg) var(--space-2xl); }
  .hero__title { font-size: clamp(2.5rem, 11vw, 4rem); letter-spacing: var(--ls-tight); }
  .hero__subtitle { font-size: var(--fs-base); }
  .hero__eventmeta { grid-template-columns: 1fr; gap: 10px; }
  .hero__eventmeta-tile { padding: 14px 18px; gap: 14px; }
  .hero__eventmeta-icon { width: 22px; height: 22px; }
  .hero__cta { width: 100%; }
  .hero__cta.btn--shiny { padding: var(--space-md) var(--space-lg); font-size: var(--fs-sm); }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .about__visual { aspect-ratio: 4 / 3; }
  .about__ctas { gap: 20px; flex-wrap: wrap; }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
  .about__stat-number { font-size: clamp(2rem, 8vw, 2.5rem); }
  .about__stat-label { font-size: 0.8125rem; }

  /* Pillars */
  .pillars__row--3 { grid-template-columns: 1fr; }
  .pillars__row { row-gap: var(--space-xl); margin-bottom: var(--space-xl); }
  .pillars__row--3 .pillar-card { border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--space-xl); }
  .pillars__row--3 .pillar-card:first-child { border-top: 0; padding-top: 0; }

  /* Experts */
  .experts__grid { gap: 80px; }
  .expert-card { grid-template-columns: 1fr; gap: 32px; }
  .expert-card__body, .expert-card__photo { grid-column: 1 !important; }
  .expert-card__body { grid-row: 2 !important; }
  .expert-card__photo { grid-row: 1 !important; aspect-ratio: 4 / 5; max-width: 100%; }
  .expert-card__name { font-size: clamp(2rem, 8vw, 3rem); }

  /* Speakers */
  .speakers__grid { grid-template-columns: 1fr; gap: 40px; }

  /* Video */
  .video__play { width: 64px; height: 64px; }
  .video__play svg { width: 16px; height: 18px; }

  /* Register */
  .register__title { font-size: clamp(1.75rem, 7vw, 2.5rem); letter-spacing: var(--ls-tight); }
  .register__form { padding: 28px 20px; }
  .register__fields { row-gap: 4px; margin-bottom: 20px; }
  .register__submit { min-width: 100%; }
  .register__consents { margin-bottom: var(--space-xl); }
  .register__watermark { font-size: clamp(5rem, 28vw, 10rem); }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; }
  .contact__photo { aspect-ratio: 3 / 4; max-height: 480px; }

  /* Partners */
  .partners__grid { gap: var(--space-md); }
  .partner-logo img, .partner-logo svg { max-height: 52px; }

  /* Footer */
  .fc__top { padding-bottom: var(--space-2xl); }
  .fc__tagline { font-size: var(--fs-base); max-width: none; }
  .fc__logo-big { height: 28px; }
  .fc__person { gap: var(--space-md); }
  .fc__photo { width: 56px; height: 56px; }
  .fc__details { flex-direction: column; gap: var(--space-sm); }
  .fc__detail { font-size: var(--fs-base); }
  .fc__bar { grid-template-columns: 1fr; gap: var(--space-md); text-align: left; padding-top: 0; }
  .fc__legal { justify-content: flex-start; }
  .fc__credit { text-align: left; }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
  .container { padding: 0 var(--space-md); }
  .about__stats { grid-template-columns: 1fr; }
  .about__numbers { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2rem, 12vw, 3rem); }
  .hero__eventmeta-value { font-size: 1rem; }
  .fc__legal { flex-direction: column; gap: var(--space-sm); }
}

/* ─────────────────────────────────────────
   SECTION: Content page (page.php)
───────────────────────────────────────── */
.section--content {
  padding: clamp(80px, 10vw, 120px) 0 var(--space-section);
  background: var(--dark-navy);
  min-height: 60vh;
}

.content-page__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-2xl);
}

.content-page__body {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--text-secondary);
}

.content-page__body p { margin-bottom: var(--space-lg); }
.content-page__body p:last-child { margin-bottom: 0; }

.content-page__body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--ls-tight);
}

.content-page__body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.content-page__body a {
  color: var(--neon);
  text-decoration: underline;
  text-decoration-color: var(--neon-20);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.content-page__body a:hover { text-decoration-color: var(--neon); }

.content-page__body ul,
.content-page__body ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.content-page__body li { margin-bottom: var(--space-sm); }

.wp-block-list {list-style: disc;}

@media (max-width: 640px) {
  .pillar-card__desc {max-width:100% !important;}
}

@media (max-width: 760px) {
  .expert-card {grid-template-columns: 100% !important;}
  .expert-card__bio {max-width:100% !important;}
  .expert-card__photo {aspect-ratio: 4 / 4 !important;}
  .experts__grid {gap: 20px !important;}
}