/**
 * Masters AI — Conference Hub
 *
 * Full TechnoCat × Masters AI purple-dark treatment.
 * All sections use --color-conf-bg (#070410).
 * Single-line magenta dividers between sections.
 *
 * @package Masters_AI
 */

/* ── Conf page offset handled by .site-main in style.css ── */

/* ==========================================================
 * FORCE DARK MODE — conference page is always dark.
 *
 * The palette JS sets theme tokens as inline styles on <html>.
 * CSS custom properties resolve from the nearest *declaring*
 * ancestor, so re-declaring them here on .conf-page makes every
 * descendant use these values, regardless of the user's palette.
 * ========================================================== */
.conf-page {
  /* Core backgrounds */
  --bg:                  #050505;
  --bg-surface:          #0a0a0a;
  --bg-raised:           #0f0f0f;
  --color-bg:            #050505;
  --color-bg-surface:    #0a0a0a;
  --color-bg-raised:     #0f0f0f;

  /* Borders — dark so they're invisible on dark sections */
  --border:              #161616;
  --border-light:        #1e1e1e;
  --color-border:        #161616;

  /* Text hierarchy — light values for dark backgrounds */
  --text-primary:        #ffffff;
  --text-secondary:      #e0e0e0;
  --text-tertiary:       #c0c0c0;
  --text-muted:          #909090;
  --color-text:          #ffffff;
  --color-text-secondary:#e0e0e0;
  --color-text-tertiary: #c0c0c0;
  --color-text-muted:    #909090;

  /* Misc */
  --grey:                #2a2a2a;
  --grey-mid:            #3d3d3d;
  --card-hover:          rgba(27,189,196,0.015);
  --nav-bg:              rgba(5,5,5,0.92);

  /* Ensure no light body background bleeds through any gap */
  background: #070410;
  color: #ebebeb;
}

/* ── Section divider — full-bleed single magenta line ── */
.conf-divider {
  height: 1px;
  background: rgba(255, 0, 234, 0.12);
  width: 100%;
  display: block;
}

/* ── Kicker ── */
.kicker {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fc34ac;
  margin-bottom: var(--space-4);
}
.kicker--mag {
  color: #fc34ac;
}

/* ==========================================================
 * HERO — split grid, full-bleed, no image bg
 * Left: rev-lines + deck + CTAs + stats
 * Right: Next Stop card (fades in)
 * ========================================================== */

.conf-hero {
  background: #070410;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

/* Magenta radial glow — lower half, visible below text */
.conf-hero::before {
  content: '';
  position: absolute;
  top: 65%; left: 38%;
  transform: translate(-50%, -50%);
  width: 120vw; height: 120vh;
  background: radial-gradient(ellipse, rgba(255, 0, 234, 0.28) 0%, rgba(255, 0, 234, 0.08) 40%, transparent 65%);
  pointer-events: none;
}
.conf-hero::after {
  content: '';
  position: absolute;
  top: 55%; right: -5%;
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(252, 52, 172, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

/* Magenta grid overlay */
.conf-hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 0, 234, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 234, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Left column */
.conf-hero__left {
  padding: calc(var(--nav-height, 72px) + 40px) 40px 80px 48px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.conf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 32px;
}
.conf-hero__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #fc34ac;
  box-shadow: 0 0 8px #fc34ac;
  animation: conf-blink 2.2s ease-in-out infinite;
}
@keyframes conf-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* Headline — h1 reset so browser defaults don't override rev-line styles */
.conf-hero__headline {
  margin: 0 0 32px;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.rev-line {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: var(--weight-extrabold);
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  display: block;
  color: #ebebeb;
}
.rev-line--glow {
  background: linear-gradient(90deg, #ff00ea, #ff4488, #ff00ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: conf-shimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(255, 0, 234, 0.15));
  will-change: background-position;
}
@keyframes conf-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.conf-hero__deck {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 32px;
}

.conf-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Full-bleed rule — extends to left viewport edge and right column boundary.
   Negative margin-left matches the left column's padding-left (48px).
   Negative margin-right matches the left column's padding-right (40px). */
.conf-hero__rule {
  height: 1px;
  background: rgba(255, 0, 234, 0.12);
  margin-left: -48px;
  margin-right: -40px;
  margin-bottom: 32px;
}

/* Stats — vertical single-line dividers between items */
.conf-hero__stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.conf-hero__stat {
  padding-right: 40px;
  border-right: 1px solid rgba(255, 0, 234, 0.12);
  margin-right: 40px;
}
.conf-hero__stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.conf-hero__stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: var(--weight-extrabold);
  letter-spacing: -1px;
  line-height: 1;
  color: #ffffff;
}
.conf-hero__stat-num em {
  font-style: normal;
  color: #fc34ac;
}
.conf-hero__stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Right column — Next Stop card */
.conf-hero__right {
  padding: 100px 48px 80px 24px;
  position: relative;
  z-index: 1;
  animation: heroCardIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes heroCardIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-next-card {
  background: rgba(14, 9, 32, 0.9);
  border: 1px solid rgba(252, 52, 172, 0.3);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 60px rgba(252, 52, 172, 0.1), 0 8px 32px rgba(0, 0, 0, 0.5);
}
.hero-next-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
}
.hero-next-card__image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: brightness(0.5) saturate(0.8);
}
.hero-next-card__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(14, 9, 32, 0.95));
}
.hero-next-card__image-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-ui);
  font-size: 9px; font-weight: var(--weight-semibold);
  letter-spacing: 3px; text-transform: uppercase;
  background: #fc34ac; color: #fff;
  padding: 4px 12px; border-radius: 4px;
}
.hero-next-card__body { padding: 20px 24px 24px; }
.hero-next-card__city {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: var(--weight-extrabold);
  letter-spacing: -1px; color: #ebebeb;
  line-height: 1; margin-bottom: 4px;
}
.hero-next-card__date {
  font-family: var(--font-ui);
  font-size: 13px; color: var(--color-text-secondary);
  margin-bottom: 4px;
}
.hero-next-card__venue {
  font-family: var(--font-ui);
  font-size: 11px; color: var(--color-text-muted);
  margin-bottom: 20px;
}
.hero-next-card__themes {
  display: flex; flex-wrap: wrap;
  gap: 6px; margin-bottom: 20px;
}
.hero-next-card__theme {
  font-family: var(--font-ui);
  font-size: 9px; color: #fc34ac;
  border: 1px solid rgba(252, 52, 172, 0.2);
  border-radius: 999px; padding: 3px 9px;
  background: rgba(252, 52, 172, 0.05);
}
.hero-next-card__register {
  display: flex; align-items: center; justify-content: space-between;
}
.hero-next-card__spots {
  font-family: var(--font-ui);
  font-size: 10px; color: var(--color-text-muted);
}
.hero-next-card__spots strong { color: #fc34ac; }

/* ── Small neon button variant for the card ── */
.btn-neon-sm {
  display: inline-flex; align-items: center;
  padding: 11px 20px;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: var(--weight-semibold);
  text-transform: uppercase; letter-spacing: 1.5px; line-height: 1;
  border-radius: 4px; cursor: pointer; text-decoration: none; border: none;
  background: linear-gradient(135deg, #ff00ea, #b800a8);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 234, 0.45);
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
}
.btn-neon-sm:hover {
  box-shadow: 0 0 32px rgba(255, 0, 234, 0.45), 0 0 60px rgba(255, 0, 234, 0.25);
  filter: brightness(1.1);
}

/* ==========================================================
 * SKEWED IMAGES — exact showcase.php clip-path treatment
 * ========================================================== */

.skewed-section {
  background: #070410;
  padding: 80px 0 80px 48px;
  position: relative;
  overflow: hidden;
}
.skewed-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 0, 234, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 234, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(225deg, black 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(225deg, black 0%, transparent 70%);
  pointer-events: none;
}
.skewed-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  padding-right: 48px;
  position: relative;
  z-index: 2;
}
.skewed-header h2 {
  font-family: var(--font-accent);
  font-size: 48px; font-weight: 400; font-style: italic;
  color: #ebebeb; line-height: 1.1;
}
.skewed-header .tag {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #fc34ac;
}
.skewed-scroll {
  display: flex; gap: 0;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  position: relative; z-index: 2;
  padding-right: 48px;
}
.skewed-scroll::-webkit-scrollbar { display: none; }
.skewed-card {
  flex: 0 0 480px; height: 420px;
  position: relative; overflow: hidden;
  background: #0e0920;
  scroll-snap-align: start; cursor: pointer;
  margin-right: -40px;
}
.skewed-card:nth-child(odd)  { clip-path: polygon(0 0, 95% 0, 85% 100%, 0 100%); }
.skewed-card:nth-child(even) { clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); margin-top: 20px; height: 400px; }
.skewed-card:last-child       { clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%); }
.skewed-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.15) brightness(0.45);
  transform: scale(1);
  transform-origin: center center;
  will-change: filter, transform;
  backface-visibility: hidden;
  transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.skewed-card:hover img {
  filter: grayscale(0%) contrast(1.05) brightness(0.65) saturate(0.85);
  transform: scale(1.05);
}
.skewed-card__label {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
}
.skewed-card__label span {
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 12px; backdrop-filter: blur(8px);
}

/* ==========================================================
 * SHARED SECTION CHROME — all sections purple-dark
 * ========================================================== */

.conf-section {
  background: #070410;
  padding: 80px 48px;
}
.conf-section__header { margin-bottom: 48px; }
.conf-section__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--weight-extrabold);
  letter-spacing: -1px;
  color: #ebebeb;
  line-height: 1.15;
  margin-bottom: 16px;
}
.conf-section__title em {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 400;
  color: #fc34ac;
}
.conf-section__desc {
  font-family: var(--font-body);
  font-size: 16px; color: var(--color-text-secondary);
  line-height: 1.6; max-width: 520px;
}

/* ==========================================================
 * 11-CITY GRID
 * No inner max-width container — full-bleed within padding
 * ========================================================== */

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: 16px;
}
.city-card {
  position: relative; display: block; text-decoration: none; color: inherit;
  background: rgba(14, 9, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px; padding: 28px 24px 24px; overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 140px;
}
/* Left accent bar */
.city-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: #1bbdc4; opacity: 0;
  transition: opacity 0.2s ease;
}
/* "Register →" hint on hover */
.city-card:not(.city-card--past)::after {
  content: 'Register →';
  position: absolute; bottom: 22px; right: 20px;
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #1bbdc4;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.city-card:hover {
  border-color: rgba(27, 189, 196, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(27, 189, 196, 0.06);
}
.city-card:hover::before { opacity: 1; }
.city-card:not(.city-card--past):hover::after { opacity: 1; }

/* Past cards — readable, visually de-emphasised */
.city-card--past {
  opacity: 0.6;
  background: rgba(20, 16, 40, 0.6);
  border-color: rgba(255, 255, 255, 0.06);
}
.city-card--past::before { background: rgba(255, 255, 255, 0.2); opacity: 1; }
.city-card--past:hover {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  box-shadow: none;
}

/* Next-stop highlight */
.city-card--next { border-color: rgba(252, 52, 172, 0.35); box-shadow: 0 0 32px rgba(252, 52, 172, 0.1); }
.city-card--next::before { background: #fc34ac; opacity: 1; }

/* ── Status badge ── */
.city-card__status {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  display: inline-block; margin-bottom: 18px;
}
.city-card__status--upcoming {
  background: rgba(27, 189, 196, 0.12);
  color: #1bbdc4;
  border: 1px solid rgba(27, 189, 196, 0.3);
}
.city-card__status--next {
  background: rgba(252, 52, 172, 0.1);
  color: #fc34ac;
  border: 1px solid rgba(252, 52, 172, 0.3);
}
.city-card__status--past {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── City name ── */
.city-card__city {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: var(--weight-bold);
  letter-spacing: -0.5px; color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.15;
}
/* ── Date ── */
.city-card__date {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  color: rgba(235, 235, 235, 0.75);
  margin-bottom: 3px;
}
/* ── Venue ── */
.city-card__venue {
  font-family: var(--font-ui);
  font-size: 11px; color: rgba(235, 235, 235, 0.4);
  margin-bottom: 0;
}
.city-card__themes {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
}
.city-card__theme {
  font-family: var(--font-ui);
  font-size: 10px; color: rgba(235, 235, 235, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px; padding: 3px 9px;
}

/* ==========================================================
 * PILLARS
 * ========================================================== */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  background: #0e0920;
  border: 1px solid rgba(255, 0, 234, 0.12);
  border-top: 3px solid #fc34ac;
  border-radius: 8px; padding: 32px 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.pillar:hover {
  border-color: rgba(252, 52, 172, 0.35);
  box-shadow: 0 0 48px rgba(252, 52, 172, 0.12), 0 4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}
.pillar--crimson {
  border-color: rgba(255, 0, 234, 0.12);
  border-top-color: #fc34ac;
}
.pillar--crimson:hover {
  border-color: rgba(252, 52, 172, 0.35);
  box-shadow: 0 0 48px rgba(252, 52, 172, 0.12), 0 4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}
.pillar__number {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: var(--weight-semibold);
  letter-spacing: 3px; text-transform: uppercase;
  color: #fc34ac; margin-bottom: 16px;
}
.pillar__title {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: var(--weight-bold);
  letter-spacing: -0.5px; color: #ebebeb;
  margin-bottom: 16px;
}
.pillar__desc {
  font-family: var(--font-body);
  font-size: 14px; color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ==========================================================
 * WHY ATTEND — single-line grid dividers
 * ========================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255, 0, 234, 0.12);
  border-radius: 8px; overflow: hidden;
}
.why-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 0, 234, 0.12);
  background: #0e0920;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.why-item::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #ff00ea, #fc34ac);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-item:last-child { border-right: none; }
.why-item:hover {
  background: rgba(255, 0, 234, 0.04);
  box-shadow: inset 0 0 32px rgba(255, 0, 234, 0.04);
}
.why-item:hover::after { opacity: 1; }
.why-item__label {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: var(--weight-semibold);
  letter-spacing: 3px; text-transform: uppercase;
  color: #fc34ac; margin-bottom: 16px;
}
.why-item__title {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: var(--weight-bold);
  color: #ebebeb; margin-bottom: 8px;
}
.why-item__desc {
  font-family: var(--font-body);
  font-size: 12px; color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ==========================================================
 * CAT CASEY
 * ========================================================== */

.cat-section {
  background: #070410;
  padding: 80px 48px;
  position: relative; overflow: hidden;
}
.cat-section::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(252, 52, 172, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cat-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px; align-items: start;
}
.cat-image {
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(252, 52, 172, 0.3);
  aspect-ratio: 3 / 4; position: relative;
  box-shadow: 0 0 60px rgba(252, 52, 172, 0.08);
}
.cat-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.cat-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(7, 4, 16, 0.5));
  pointer-events: none;
}
.cat-body { padding-top: 16px; position: relative; z-index: 1; }
.cat-body__quote {
  font-family: var(--font-accent);
  font-size: 24px; font-style: italic;
  color: #ebebeb; line-height: 1.3;
  border-left: 3px solid #fc34ac;
  padding-left: 24px; margin-bottom: 32px;
}
.cat-body__bio {
  font-family: var(--font-body);
  font-size: 15px; color: var(--color-text-secondary);
  line-height: 1.6; margin-bottom: 32px;
}
.cat-body__name {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: var(--weight-bold);
  color: #ebebeb;
}
.cat-body__role {
  font-family: var(--font-ui);
  font-size: 12px; color: #fc34ac;
  margin-top: 2px;
}

/* ==========================================================
 * FOOTER CTA
 * ========================================================== */

.conf-footer-cta {
  background: #070410;
  padding: 96px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.conf-footer-cta::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 600px;
  background: radial-gradient(ellipse, rgba(255, 0, 234, 0.15) 0%, rgba(252, 52, 172, 0.06) 40%, transparent 70%);
  pointer-events: none;
}
.conf-footer-cta__logo {
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.conf-footer-cta__logo img {
  height: 220px;
  object-fit: contain; margin: 0 auto; display: block;
  filter:
    drop-shadow(0 0 40px rgba(255, 0, 234, 0.55))
    drop-shadow(0 0 100px rgba(252, 52, 172, 0.3))
    drop-shadow(0 0 160px rgba(255, 0, 234, 0.15));
  animation: logo-pulse 4s ease-in-out infinite;
  will-change: filter;
}
@keyframes logo-pulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 40px rgba(255, 0, 234, 0.55))
      drop-shadow(0 0 100px rgba(252, 52, 172, 0.3))
      drop-shadow(0 0 160px rgba(255, 0, 234, 0.15));
  }
  50% {
    filter:
      drop-shadow(0 0 60px rgba(255, 0, 234, 0.75))
      drop-shadow(0 0 120px rgba(252, 52, 172, 0.45))
      drop-shadow(0 0 200px rgba(255, 0, 234, 0.25));
  }
}
.conf-footer-cta__headline {
  font-family: var(--font-heading);
  font-size: 40px; font-weight: var(--weight-extrabold);
  letter-spacing: -1px; color: #ebebeb;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.conf-footer-cta__desc {
  font-family: var(--font-body);
  font-size: 16px; color: var(--color-text-secondary);
  margin-bottom: 40px; position: relative; z-index: 1;
}
.conf-footer-cta__actions {
  display: flex; gap: 16px; justify-content: center;
  position: relative; z-index: 1;
}

/* ==========================================================
 * RESPONSIVE
 * ========================================================== */

@media (max-width: 1200px) {
  .conf-hero { grid-template-columns: 1fr; }
  .conf-hero__right { display: none; }
  .conf-hero__rule { margin-right: 0; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(2) { border-right: none; }
  .why-item:nth-child(odd) { border-right: 1px solid rgba(255, 0, 234, 0.12); }
  .cat-inner { grid-template-columns: 1fr; }
  .cat-image { max-width: 320px; }
}

@media (max-width: 768px) {
  .conf-section, .cat-section, .conf-footer-cta { padding: 48px 24px; }
  .conf-hero__left { padding: 80px 24px 48px; }
  .skewed-section { padding: 48px 0 48px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-bottom: 1px solid rgba(255, 0, 234, 0.12); }
  .why-item:last-child { border-bottom: none; }
  .conf-hero__stat { padding-right: 24px; margin-right: 24px; }
  .city-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .city-grid { grid-template-columns: 1fr; }
}
