:root {
  --ink: #0b0d17;
  --ink-2: #1a1d2b;
  --muted: #6b6f80;
  --muted-2: #9aa0b0;
  --line: rgba(11, 13, 23, 0.08);
  --line-2: rgba(11, 13, 23, 0.14);
  --bg: #ffffff;
  --bg-soft: #f7f7fa;
  --navy: #1e2876;
  --navy-2: #2b36a8;
  --orange: #ff6b3d;

  /* Dome gradient stops (sampled from invitation) */
  --g-teal: #5ee3cf;
  --g-cyan: #7cc6ff;
  --g-blue: #6a7bff;
  --g-violet: #8a5ee3;
  --g-pink: #ff6fb5;
  --g-coral: #ff8a6b;

  --font-display: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Poppins", ui-monospace, monospace;

  --gradient-intensity: 1;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: 20px;
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(11,13,23,0.04), 0 8px 24px rgba(11,13,23,0.06);
  max-width: calc(100vw - 32px);
}
.nav__brand { display: flex; align-items: center; padding-right: 12px; border-right: 1px solid var(--line); }
.nav__links { display: flex; gap: 4px; }
.nav__links a {
  padding: 8px 12px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  transition: background .2s ease, color .2s ease;
}
.nav__links a:hover { background: var(--bg-soft); }
.nav__cta {
  padding: 9px 16px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 13.5px;
  transition: transform .2s ease, background .2s ease;
}
.nav__cta:hover { transform: translateY(-1px); background: var(--ink-2); }

/* Mobile burger (hidden on desktop) */
.nav__burger {
  display: none;
  position: fixed;
  top: 18px; left: 18px;
  z-index: 70;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(11,13,23,0.08);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  transition: background .2s ease;
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer scrim */
.nav__scrim {
  display: none;
  position: fixed; inset: 0;
  z-index: 55;
  background: rgba(11,13,23,0.4);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.nav__scrim.is-open { opacity: 1; pointer-events: auto; }

/* Drawer (slides in from the left, full height) */
.nav__drawer {
  display: none;
  position: fixed;
  top: 0; left: 0;
  height: 100dvh;
  width: min(86vw, 380px);
  z-index: 60;
  background: #fff;
  padding: 88px 28px 32px;
  flex-direction: column;
  box-shadow: 20px 0 60px rgba(11,13,23,0.18);
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.22,.61,.36,1);
  overflow-y: auto;
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer-top {
  position: absolute; top: 22px; left: 28px;
}
.nav__drawer-links {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.nav__drawer-links a {
  display: flex; align-items: baseline; gap: 14px;
  padding: 22px 2px;
  font-family: "Poppins", var(--font-display);
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, transform .2s ease;
}
.nav__drawer-links a:hover { color: var(--navy); transform: translateX(4px); }
.nav__drawer-links a .num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  min-width: 22px;
}
.nav__drawer-cta {
  margin-top: 28px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 15px;
  text-align: center;
  transition: background .2s ease;
}
.nav__drawer-cta:hover { background: var(--ink-2); }
.nav__drawer-foot {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--ink-3);
  line-height: 1.7;
}

@media (max-width: 820px) {
  .nav { display: none; }
  .nav__burger { display: flex; }
  .nav__scrim { display: block; }
  .nav__drawer { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--g-teal), var(--g-blue), var(--g-violet), var(--g-pink), var(--g-coral), var(--g-teal));
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__title {
  font-family: "Poppins", var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
  max-width: 16ch;
  font-optical-sizing: auto;
  text-wrap: balance;
}
.hero__title .gradient-text {
  background: linear-gradient(92deg,
    var(--g-coral) 0%,
    var(--g-pink) 22%,
    var(--g-violet) 48%,
    var(--g-blue) 70%,
    var(--g-teal) 100%
  );
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: slide-bg 14s ease-in-out infinite alternate;
}
@keyframes slide-bg { to { background-position: 100% 0; } }

.hero__subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  margin: 32px 0 0; max-width: 56ch;
  line-height: 1.55;
}

.hero__cta-row {
  margin-top: 34px;
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14.5px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 1px 2px rgba(11,13,23,0.2), 0 8px 24px rgba(11,13,23,0.18);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(11,13,23,0.2), 0 14px 32px rgba(11,13,23,0.22); }
.btn--ghost { background: rgba(255,255,255,0.6); border: 1px solid var(--line-2); }
.btn--ghost:hover { background: #fff; }
.btn__arrow { transition: transform .25s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Half-dome — full-bleed background, anchored to the hero section */
.dome-wrap {
  position: absolute;
  left: 0; right: 0;
  bottom: -4%;
  width: 100%;
  aspect-ratio: 2 / 1;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
/* Outer feathered halo — drawn as a full circle anchored at the TOP of the wrap
   so its lower half is visible (the dome arch) and the upper half is clipped. */
.dome__halo {
  position: absolute;
  left: 50%;
  top: 200px;
  width: 120%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 18% 55%, rgba(94, 227, 207, calc(0.42 * var(--gradient-intensity))), transparent 60%),
    radial-gradient(circle at 50% 35%, rgba(138, 94, 227, calc(0.38 * var(--gradient-intensity))), transparent 62%),
    radial-gradient(circle at 82% 55%, rgba(255, 111, 181, calc(0.45 * var(--gradient-intensity))), transparent 60%);
  filter: blur(80px);
  opacity: 0.85;
  transform-origin: 50% 0%;
  animation: dome-breathe-halo 16s ease-in-out infinite;
}

/* Main dome body — full circle anchored at the TOP of the wrap so only the upper
   half of the circle (the dome crown) is visible below. */
.dome {
  position: absolute;
  left: 50%;
  top: 200px;
  width: 92%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    /* left turquoise */
    radial-gradient(circle at 14% 50%, rgba(94, 227, 207, calc(0.95 * var(--gradient-intensity))) 0%, transparent 42%),
    /* top violet/blue crown (appears at top of visible dome) */
    radial-gradient(circle at 50% 82%, rgba(120, 110, 235, calc(0.90 * var(--gradient-intensity))) 0%, transparent 45%),
    /* right pink */
    radial-gradient(circle at 86% 50%, rgba(255, 111, 181, calc(0.95 * var(--gradient-intensity))) 0%, transparent 42%),
    /* soft blue inside */
    radial-gradient(circle at 52% 62%, rgba(150, 170, 245, calc(0.55 * var(--gradient-intensity))) 0%, transparent 45%),
    /* warm interior wash */
    radial-gradient(circle at 50% 38%, rgba(255, 225, 230, 0.55) 0%, transparent 55%);
  filter: blur(2px) saturate(1.12);
  transform-origin: 50% 0%;
  animation: dome-breathe-body 16s ease-in-out infinite;
  mask: radial-gradient(circle at 50% 50%, #000 68%, rgba(0,0,0,0.95) 74%, rgba(0,0,0,0.6) 84%, transparent 94%);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 68%, rgba(0,0,0,0.95) 74%, rgba(0,0,0,0.6) 84%, transparent 94%);
}

/* No specular — the invitation dome is flat-lit, not a 3D orb */
.dome::before,
.dome::after { content: none; }

@keyframes dome-breathe-body {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%      { transform: translateX(-50%) scale(1.02); }
}
@keyframes dome-breathe-halo {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%      { transform: translateX(-50%) scale(1.04); }
}

.dome--rotate {
  animation: dome-rotate 40s linear infinite;
}
@keyframes dome-rotate {
  to { transform: rotate(360deg); }
}

/* Save the date card over dome */
.savethedate {
  position: relative;
  z-index: 2;
  margin-top: clamp(40px, 10vw, 120px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3.4vw, 44px);
  align-items: center;
  max-width: 900px; width: 100%;
  padding: 18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 2px 6px rgba(11,13,23,0.05), 0 20px 50px rgba(11,13,23,0.08);
}
.savethedate__badge.cartouche {
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  width: clamp(119px, 11.2vw, 147px);
  aspect-ratio: 3 / 4;
  padding: 6px;
  border-radius: 17px;
  background:
    radial-gradient(120% 90% at 80% 100%, #6cd6e3 0%, #38a8d6 35%, #1f5fc4 75%, #1742a8 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 0 0 1px rgba(255,255,255,0.25),
    0 14px 30px rgba(23, 66, 168, 0.30),
    0 4px 10px rgba(11,13,23,0.10);
  color: #fff;
  border: 0;
}
.cartouche__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: clamp(10px, 1vw, 14px) 8px;
  border-radius: 12px;
  border: 0;
  font-family: "Poppins", var(--font-display);
  text-align: center;
  line-height: 1;
}
.cartouche__day {
  font-weight: 800;
  font-size: clamp(58px, 6.4vw, 83px);
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.cartouche__month {
  font-weight: 800;
  font-size: clamp(26px, 2.85vw, 36px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: clamp(8px, 1vw, 12px);
}
.cartouche__year {
  font-weight: 700;
  font-size: clamp(24px, 2.65vw, 34px);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 4px;
  opacity: 0.96;
}
.cartouche__time {
  font-weight: 400;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: clamp(10px, 1.2vw, 14px);
  opacity: 0.92;
  font-style: normal;
}
.std-date-inline {
  position: relative;
  display: inline-flex; align-items: baseline; flex-wrap: wrap;
  gap: 8px;
  font-family: "Poppins", var(--font-display);
  color: var(--ink);
  padding-left: 12px;
}
.std-d {
  font-weight: 800; font-size: clamp(28px, 3vw, 38px); line-height: 1;
  letter-spacing: -0.02em;
}
.std-m {
  font-weight: 700; font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.08em;
}
.std-y {
  font-weight: 600; font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.04em; color: var(--ink-2, var(--ink));
}
.std-sep {
  color: var(--muted); font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  margin: 0 2px;
}
.std-t {
  color: var(--muted); font-weight: 500;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.02em;
}
.std-spark {
  position: absolute; top: -10px; left: -6px;
  width: 18px; height: 18px; color: var(--orange);
}

.savethedate__body { text-align: left; padding: 4px 18px 4px 0; }
.savethedate__place {
  font-family: var(--font-display);
  font-weight: 700; font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.015em; line-height: 1.1;
}
.savethedate__venue {
  font-size: 11.5px; letter-spacing: 0.16em; font-weight: 700;
  color: var(--ink-2); margin-top: 4px;
}
.savethedate__desc { color: var(--muted); margin-top: 10px; font-size: 13.5px; line-height: 1.55; max-width: 46ch; }

@media (max-width: 720px) {
  .savethedate { grid-template-columns: 1fr; text-align: center; }
  .savethedate__body { padding: 4px 6px 10px; text-align: center; }
  .savethedate__desc { margin-left: auto; margin-right: auto; }
  .savethedate__badge { justify-self: center; }
  .savethedate__place { font-size: clamp(26px, 6.5vw, 34px); margin-bottom: 8px; }
  .savethedate__venue { font-size: 11px; letter-spacing: 0.14em; }
}

/* Countdown */
.countdown {
  display: flex; gap: clamp(10px, 2vw, 28px);
  margin-top: clamp(30px, 5vw, 60px);
  justify-content: center; align-items: flex-end;
  position: relative; z-index: 2;
}
.countdown__cell {
  min-width: clamp(72px, 9vw, 110px);
  padding: 14px 10px 10px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}
.countdown__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1; letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.countdown__label {
  margin-top: 6px; font-size: 10.5px; letter-spacing: 0.18em;
  font-weight: 600; color: var(--muted); text-transform: uppercase;
}
.countdown__sep {
  font-family: var(--font-display); font-weight: 600;
  color: var(--muted-2); font-size: clamp(18px, 2vw, 28px);
  padding-bottom: 24px;
}

/* Themes pills at bottom of hero */
.themes-bar {
  position: relative; z-index: 2;
  margin: 60px auto 0;
  max-width: 900px;
  display: flex; gap: 0; justify-content: center; align-items: center;
  flex-wrap: wrap;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(106, 123, 255, 0.08);
  border: 1px solid rgba(106, 123, 255, 0.12);
}
.themes-bar__item {
  padding: 6px 20px;
  font-size: 12.5px; letter-spacing: 0.16em; font-weight: 700;
  color: var(--ink-2); text-transform: uppercase;
}
.themes-bar__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--g-teal); background: #ffffff; }

/* ---------- Partners (logo marquee) ---------- */
.partners {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 clamp(20px, 3vw, 36px);
  border-top: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.partners__kicker {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(20px, 3vw, 32px);
}
.partners__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.partners__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(48px, 7vw, 96px);
  padding: 8px 0;
  animation: partners-scroll 32s linear infinite;
}
.partners:hover .partners__track { animation-play-state: paused; }
.partners__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity .25s ease, filter .25s ease;
  user-select: none;
}
.partners__item img {
  max-height: 100%;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  -webkit-user-drag: none;
}
.partners__wordmark {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 29px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9aa0b0;
}
.partners__item:hover {
  opacity: 1;
  filter: grayscale(0);
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partners__track { animation: none; }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 24px;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 721px) {
  .section { padding-top: clamp(40px, 5vw, 70px); padding-bottom: clamp(40px, 5vw, 70px); }
}
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
}
.section-head__left { max-width: 640px; }
.section-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.2em;
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 12px 0 0;
}
.section-lede {
  color: var(--muted); font-size: 17px; margin: 18px 0 0; max-width: 54ch;
}
.section-head__right {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--muted);
}

/* About */
.about-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.about-card {
  position: relative;
  padding: 28px; border-radius: 22px;
  background: #fff; border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 6px rgba(11,13,23,0.04), 0 24px 60px rgba(11,13,23,0.08);
  border-color: var(--line-2);
}
.about-card__num {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted-2);
  letter-spacing: 0.18em;
}
.about-card__title {
  font-size: 20px;
  margin: 30px 0 10px;
}
.about-card__body { color: var(--muted); font-size: 14.5px; }
.about-card__chip {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g-teal), var(--g-blue), var(--g-violet), var(--g-pink));
  opacity: 0.95;
  filter: saturate(0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(11,13,23,0.08);
}
.about-card__chip svg { display: block; }
@media (max-width: 1100px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* Program */
.program {
  border-top: 1px solid var(--line);
}
.program-row {
  display: grid; grid-template-columns: 120px 180px 1fr auto;
  align-items: center; gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .3s ease;
  position: relative;
}
.program-row--clickable { cursor: pointer; }
.program-row--clickable:hover { background: var(--bg-soft); padding-left: 20px; }
.program-row--clickable:focus-visible {
  outline: 2px solid var(--ink, #111);
  outline-offset: -2px;
  background: var(--bg-soft);
}
.program-row--clickable:hover .program-row__more { opacity: .7; gap: 10px; }
.program-row--clickable:hover .program-row__arrow { transform: translateX(4px); color: var(--ink, #111); }
.program-row__arrow { transition: transform .2s ease, color .2s ease; }
.program-row__time {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.program-row__tag {
  font-size: 10.5px; letter-spacing: 0.16em; font-weight: 700;
  color: var(--ink-2); text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(106, 123, 255, 0.08);
  border: 1px solid rgba(106, 123, 255, 0.14);
  justify-self: start;
}
.program-row__tag--gradient {
  background: linear-gradient(90deg, rgba(255,138,107,0.14), rgba(138,94,227,0.14), rgba(94,227,207,0.14));
  border-color: rgba(138,94,227,0.22);
}
.program-row__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; letter-spacing: -0.015em;
}
.program-row__sub { color: var(--muted); font-size: 13.5px; margin-top: 2px; }
.program-row__arrow { color: var(--muted-2); font-size: 20px; }
.program-row__more {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink, #111);
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .15s ease, gap .2s ease;
  pointer-events: none;
}

/* ---------- Conference modal ---------- */
.conf-modal {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 24px;
  animation: cm-fade .2s ease forwards;
}
@keyframes cm-fade { from { opacity: 0; } to { opacity: 1; } }
.conf-modal__dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 40px 40px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: cm-rise .3s cubic-bezier(.2,.7,.2,1) forwards;
  opacity: 0;
  transform: translateY(8px) scale(.985);
}
@keyframes cm-rise { to { opacity: 1; transform: translateY(0) scale(1); } }
.conf-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line, rgba(0,0,0,.12));
  background: transparent;
  display: grid; place-items: center;
  cursor: pointer; color: #111;
  transition: background .2s ease, color .2s ease;
}
.conf-modal__close:hover { background: #111; color: #fff; }
.conf-modal__meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.conf-modal__time {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.conf-modal__tag {
  font-size: 10.5px; letter-spacing: 0.16em; font-weight: 700;
  color: var(--ink-2, #111); text-transform: uppercase;
  border: 1px solid var(--line, rgba(0,0,0,.14));
  padding: 5px 10px;
  border-radius: 999px;
}
.conf-modal__tag--gradient {
  background: linear-gradient(90deg, rgba(255,138,107,0.14), rgba(138,94,227,0.14), rgba(94,227,207,0.14));
  border-color: rgba(138,94,227,0.22);
}
.conf-modal__title {
  font-family: var(--font-display);
  font-size: 30px; line-height: 1.15; font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.conf-modal__sub { color: var(--muted, #666); font-size: 15px; margin: 0 0 18px; }
.conf-modal__intro { font-size: 15.5px; line-height: 1.65; margin: 0 0 16px; color: #222; }
.conf-modal__points { margin: 0 0 22px; padding: 0 0 0 18px; color: #222; font-size: 15px; line-height: 1.7; }
.conf-modal__points li { margin-bottom: 4px; }
.conf-modal__speakers-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted, #666);
  margin: 8px 0 12px;
}
.conf-modal__speakers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.conf-speaker {
  display: flex; align-items: center; gap: 12px;
  padding: 10px;
  border: 1px solid var(--line, rgba(0,0,0,.10));
  border-radius: 12px;
  background: #fafafa;
}
.conf-speaker__photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}
.conf-speaker__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.conf-speaker__info { min-width: 0; }
.conf-speaker__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}
.conf-speaker__org {
  font-size: 12.5px;
  color: var(--muted, #666);
  margin-top: 2px;
}
@media (max-width: 520px) {
  .conf-modal__dialog { padding: 28px 22px; border-radius: 14px; }
  .conf-modal__title { font-size: 24px; }
}
@media (max-width: 860px) {
  .program-row { grid-template-columns: 84px 1fr; gap: 12px; }
  .program-row__tag, .program-row__arrow { display: none; }
}

/* Speakers */
.speakers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.speaker {
  position: relative;
}
.speaker__photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: var(--bg-soft);
  background-image:
    repeating-linear-gradient(135deg, rgba(11,13,23,0.04) 0 2px, transparent 2px 14px);
  position: relative;
  overflow: hidden;
  transition: transform .4s ease;
}
.speaker:hover .speaker__photo { transform: scale(1.01); }
.speaker__photo--gradient {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(94,227,207,0.55), transparent 60%),
    radial-gradient(ellipse at 70% 40%, rgba(106,123,255,0.55), transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(255,111,181,0.55), transparent 60%),
    #fff;
}
.speaker__placeholder {
  position: absolute; inset: auto 0 12px;
  font-family: var(--font-mono);
  font-size: 10.5px; color: var(--muted);
  text-align: center; letter-spacing: 0.12em;
}
.speaker__role {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.18em; color: var(--muted); margin-top: 14px; text-transform: uppercase;
}
.speaker__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; letter-spacing: -0.015em; margin-top: 4px;
}
.speaker__org { color: var(--muted); font-size: 13.5px; margin-top: 2px; }
.speaker--tbd .speaker__photo {
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
}
.speaker--tbd .speaker__photo::after {
  content: "à venir";
  font-family: var(--font-mono); color: var(--muted-2); font-size: 12px;
  letter-spacing: 0.16em;
}
.speaker__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Speakers — horizontal carousel */
.speakers-carousel {
  position: relative;
  margin: 0 calc(-1 * var(--page-pad, 0px));
}
.speakers-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;
  padding: 4px 2px 16px;
  scrollbar-width: none;
}
.speakers-track::-webkit-scrollbar { display: none; }
.speakers-track .speaker {
  scroll-snap-align: start;
  min-width: 0;
}

.speakers-nav {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.speakers-nav__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line, rgba(0,0,0,0.12));
  background: #fff;
  color: var(--ink, #111);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.speakers-nav__btn:hover:not(:disabled) {
  background: var(--ink, #111);
  color: #fff;
  border-color: var(--ink, #111);
}
/* Hero date + heure (remplace l'ancien SaveTheDate) */
.hero__datetime {
  margin-top: clamp(28px, 4vw, 44px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Poppins", var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.01em;
  color: var(--ink);
}
.hero__datetime-day {
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero__datetime-sep {
  color: var(--muted);
  font-weight: 400;
}
.hero__datetime-time {
  color: var(--muted);
}
@media (max-width: 560px) {
  .hero__datetime { flex-direction: column; gap: 4px; }
  .hero__datetime-sep { display: none; }
}

/* Speaker card — clickable */
.speakers-track .speaker {
  cursor: pointer;
  transition: transform .3s ease;
}
.speakers-track .speaker:hover {
  transform: translateY(-2px);
}
.speakers-track .speaker:focus-visible {
  outline: 2px solid var(--ink, #111);
  outline-offset: 6px;
  border-radius: 12px;
}

/* Speaker bio modal */
.speaker-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 16, 22, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  animation: speakerModalFadeIn .25s ease-out;
}
@keyframes speakerModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.speaker-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  width: min(960px, 100%);
  max-height: calc(100vh - 80px);
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: speakerModalPop .3s cubic-bezier(.2,.9,.3,1.1);
}
@keyframes speakerModalPop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.speaker-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line, rgba(0,0,0,0.1));
  background: #fff;
  color: var(--ink, #111);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease, color .2s ease;
}
.speaker-modal__close:hover {
  background: var(--ink, #111);
  color: #fff;
}
.speaker-modal__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  background: var(--bg-soft, #f3f3f3);
  overflow: hidden;
}
.speaker-modal__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 8px 8px 0;
  overflow-y: auto;
}
.speaker-modal__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.speaker-modal__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0 6px;
}
.speaker-modal__org {
  color: var(--muted);
  font-size: 15px;
}
.speaker-modal__divider {
  height: 1px;
  background: var(--line, rgba(0,0,0,0.1));
  margin: 20px 0;
}
.speaker-modal__bio {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink, #111);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .speaker-modal__dialog {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }
  .speaker-modal__photo {
    aspect-ratio: 16/10;
  }
  .speaker-modal__name {
    font-size: 26px;
  }
}
@media (max-width: 1000px) {
  .speakers-track { grid-auto-columns: calc((100% - 20px) / 2); }
}
@media (max-width: 520px) {
  .speakers-track { grid-auto-columns: 82%; }
}

/* Venue */
.venue {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
  align-items: stretch;
}
.venue__map {
  position: relative;
  border-radius: 28px; overflow: hidden;
  background: #eef0f6;
  min-height: 440px;
  border: 1px solid var(--line);
}
.venue__map iframe { filter: grayscale(0.15) contrast(1.02); }
.venue__info {
  padding: 34px; border-radius: 28px;
  background: #0b0d17; color: #fff;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.venue__info::before {
  content: "";
  position: absolute; right: -40%; top: -40%;
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(94,227,207,0.5), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(255,111,181,0.45), transparent 55%);
  filter: blur(30px);
}
.venue__info > * { position: relative; z-index: 1; }
.venue__kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
}
.venue__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 36px; letter-spacing: -0.02em; line-height: 1.05;
}
.venue__theatre {
  font-size: 11.5px; letter-spacing: 0.16em; font-weight: 700;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.venue__address {
  color: rgba(255,255,255,0.75); font-size: 14.5px; margin-top: 6px;
  line-height: 1.6;
}
.venue__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.venue__stat .n {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; letter-spacing: -0.02em;
}
.venue__stat .l {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55); margin-top: 4px;
}
@media (max-width: 860px) { .venue { grid-template-columns: 1fr; } }

/* Register */
.register {
  position: relative;
  margin: clamp(80px, 10vw, 140px) auto;
  max-width: 1100px;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.register__bg {
  position: absolute;
  left: 50%; top: 0;
  width: 1200px; aspect-ratio: 1;
  transform: translate(-50%, -40%);
  pointer-events: none;
}
.register__grid {
  display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 56px;
  position: relative; z-index: 1;
}
.register__left .kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted);
}
.register__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4vw, 54px); letter-spacing: -0.025em;
  line-height: 1.02; margin: 12px 0 18px;
}
.register__lede { color: var(--muted); font-size: 16px; max-width: 40ch; }
.register__meta { margin-top: 28px; display: grid; gap: 8px; }
.register__meta-row {
  display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--ink-2);
}
.register__meta-row .label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--muted); width: 80px; flex-shrink: 0;
}
.form {
  display: grid; gap: 14px;
  padding: 28px; border-radius: 24px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(11,13,23,0.03), 0 20px 50px rgba(11,13,23,0.05);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__field { display: grid; gap: 6px; }
.form__label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  color: var(--muted); text-transform: uppercase;
}
.form__input, .form__select {
  padding: 14px 14px; border-radius: 12px;
  border: 1px solid var(--line-2); background: #fff;
  font-family: inherit; font-size: 14.5px; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form__input:focus, .form__select:focus {
  outline: none;
  border-color: var(--navy-2);
  box-shadow: 0 0 0 4px rgba(43,54,168,0.12);
}
.form__consent { display: flex; gap: 10px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.form__consent input { accent-color: var(--navy); margin-top: 2px; }
.form__submit {
  margin-top: 4px;
  padding: 16px 22px; border-radius: 14px;
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 14.5px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .2s ease, background .2s ease;
}
.form__submit:hover { background: var(--ink-2); transform: translateY(-1px); }
.form__success {
  padding: 18px; border-radius: 12px;
  background: rgba(94,227,207,0.12);
  border: 1px solid rgba(94,227,207,0.4);
  font-size: 14px; color: var(--ink-2);
}
@media (max-width: 860px) {
  .register__grid { grid-template-columns: 1fr; gap: 32px; }
  .form__row { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  padding: 40px 24px 50px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  font-size: 13px; color: var(--muted);
  text-align: center;
}
.footer__logo {
  display: block;
  height: 52px;
  width: auto;
  filter: grayscale(1) brightness(.65) opacity(.55);
  user-select: none;
  -webkit-user-drag: none;
}
.footer__row {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer__row { flex-direction: column; gap: 16px; }
  .footer__logo { height: 42px; }
}
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer__links a:hover { color: var(--ink); }

.form--hubspot {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(11,13,23,0.03), 0 20px 50px rgba(11,13,23,0.05);
}
.form--hubspot .hs-form-frame { width: 100%; }

/* Tweaks panel */
.tweaks {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  width: 300px;
  padding: 18px; border-radius: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-2);
  box-shadow: 0 2px 6px rgba(11,13,23,0.05), 0 20px 50px rgba(11,13,23,0.12);
  font-size: 13px;
}
.tweaks__title {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; margin-bottom: 4px;
}
.tweaks__sub { color: var(--muted); font-size: 12px; margin-bottom: 14px; }
.tweaks__row { display: grid; gap: 8px; margin-top: 14px; }
.tweaks__row label {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--muted); text-transform: uppercase;
}
.tweaks__variants { display: flex; gap: 6px; }
.tweaks__variant {
  flex: 1; padding: 8px 10px; border-radius: 10px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  transition: all .2s ease;
}
.tweaks__variant.active { background: var(--ink); color: #fff; border-color: var(--ink); }
input[type="range"].tweaks__slider {
  appearance: none; -webkit-appearance: none;
  height: 4px; background: var(--line-2); border-radius: 999px;
  outline: none; width: 100%;
}
input[type="range"].tweaks__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink); cursor: pointer;
  border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
input[type="range"].tweaks__slider::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink); cursor: pointer; border: 2px solid #fff;
}

/* Hero variants ----- */
/* Variant B: split hero */
.hero--b .hero__inner { text-align: left; align-items: flex-start; }
.hero--b .hero__title { max-width: none; }
.hero--b .dome-wrap { left: auto; right: -15%; bottom: -30%; transform: none; width: min(1100px, 95vw); }

/* Variant C: dome behind fullbleed, text overlay */
.hero--c .dome-wrap { width: min(1900px, 190vw); bottom: -8%; }
.hero--c .dome { filter: blur(50px) saturate(1.15); }

/* Fade-in on load */
.fade-in {
  opacity: 0; transform: translateY(14px);
  animation: fade-up .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.fade-in.d1 { animation-delay: .1s; }
.fade-in.d2 { animation-delay: .2s; }
.fade-in.d3 { animation-delay: .35s; }
.fade-in.d4 { animation-delay: .5s; }
.fade-in.d5 { animation-delay: .7s; }
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* gradient-intensity visible toggle */
.reduce-gradient .dome { opacity: calc(0.6 * var(--gradient-intensity) + 0.2); }


/* Save-the-date stacked date/time (two lines) */
.std-date-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.std-spark { width: 18px; height: 18px; flex-shrink: 0; }
.std-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.15;
}
.std-stack__line {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.std-stack__date .std-d,
.std-stack__date .std-m,
.std-stack__date .std-y {
  font-weight: 600;
}
.std-stack__time .std-t {
  font-size: 0.78em;
  opacity: 0.8;
  letter-spacing: 0.02em;
}


/* Save-the-date — larger date text */
.std-stack__date {
  font-size: 1.35em;
  letter-spacing: 0.01em;
}
.std-stack__date .std-d {
  font-size: 1.15em;
}


/* ---------- Press contact modal ---------- */
.press-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: pm-fade .2s ease forwards;
}
@keyframes pm-fade { from { opacity: 0; } to { opacity: 1; } }
.press-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 36px 36px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  animation: pm-rise .3s cubic-bezier(.2,.7,.2,1) forwards;
  opacity: 0;
  transform: translateY(8px) scale(.985);
}
@keyframes pm-rise { to { opacity: 1; transform: translateY(0) scale(1); } }
.press-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line, rgba(0,0,0,.12));
  background: transparent;
  display: grid; place-items: center;
  cursor: pointer;
  color: #111;
  transition: background .2s ease, color .2s ease;
}
.press-modal__close:hover { background: #111; color: #fff; }
.press-modal__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted, #666);
}
.press-modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  margin: 8px 0 6px;
  font-weight: 600;
}
.press-modal__lede { color: var(--muted, #666); margin: 0 0 22px; font-size: 15px; }
.press-modal__hubspot {
  width: 100%;
  min-height: 200px;
}
.press-modal__hubspot iframe { max-width: 100%; }
.press-form { display: flex; flex-direction: column; gap: 14px; }
.press-form__field { display: flex; flex-direction: column; gap: 6px; }
.press-form__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted, #666);
}
.press-form__input,
.press-form__textarea {
  width: 100%;
  border: 1px solid var(--line, rgba(0,0,0,.18));
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  background: #fafafa;
  color: #111;
  transition: border-color .15s ease, background .15s ease;
  resize: vertical;
}
.press-form__input:focus,
.press-form__textarea:focus {
  outline: none;
  border-color: #111;
  background: #fff;
}
.press-form__textarea { min-height: 120px; }
.press-form__error {
  font-size: 13px;
  color: #c0392b;
  background: #fdecea;
  padding: 10px 12px;
  border-radius: 8px;
}
.press-form__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 6px;
}
.press-modal__success { text-align: center; padding: 12px 0 4px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.press-modal__success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #111; color: #fff;
  display: grid; place-items: center;
  font-size: 28px;
}
.press-modal__success-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.press-modal__success-text { color: var(--muted, #666); margin: 0 0 8px; }
@media (max-width: 520px) {
  .press-modal__dialog { padding: 28px 22px; border-radius: 14px; }
  .press-modal__title { font-size: 24px; }
}

/* ---------- Legal modal ---------- */
.legal-modal__dialog {
  width: min(720px, 100%);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.legal-modal__body {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.legal-section h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: var(--ink, #111);
}
.legal-section p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #333;
}
.legal-section a {
  color: var(--ink, #111);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section + .legal-section {
  border-top: 1px solid var(--line, rgba(0,0,0,.08));
  padding-top: 14px;
}

.site-header {
  position: absolute;
  top: 0; left: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  padding: 18px 28px;
  pointer-events: none;
}
.site-header__logo {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
}
.site-header__logo img {
  display: block;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.site-header__logo--left img  { height: 87px; }
.site-header__logo--right img { height: 87px; }

/* Nudge the floating nav pill down so it doesn't collide with the header logos */
.nav { top: 24px; }

/* Burger button also moves down on mobile */
.nav__burger { top: 22px; }

@media (max-width: 720px) {
  .site-header { padding: 12px 16px; }
  .site-header__logo--left  img { height: 66px; }
  .site-header__logo--right img { height: 60px; }
  .nav { top: 20px; }
}


/* Hero — event logo above the title */
.hero__event-logo {
  display: block;
  width: auto;
  height: clamp(72px, 11vw, 150px);
  margin: 0 auto 28px;
  user-select: none;
  -webkit-user-drag: none;
}
.hero__event-date {
  text-align: center;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  margin: -14px auto 26px;
}
@media (max-width: 720px) {
  .hero__event-logo {
    height: clamp(60px, 18vw, 110px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
    display: block;
    align-self: center;
  }
  .hero__event-date { font-size: 11px; letter-spacing: 0.16em; margin: 0 auto 22px; }
}

/* Mobile: center the Septeo PropTech header logo */
@media (max-width: 720px) {
  .site-header {
    left: 0;
    right: 0;
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  .site-header__logo--left { margin: 0 auto; }
}
