:root {
  --bg: #10051f;
  --bg-2: #18072f;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --stroke: rgba(255, 255, 255, 0.13);
  --stroke-strong: rgba(255, 255, 255, 0.22);
  --text: #f6f6f9;
  --muted: #b9b5ca;
  --soft: #8f88aa;
  --violet: #342886;
  --violet-2: #443b92;
  --magenta: #c146ff;
  --magenta-2: #9d2cf5;
  --lavender: #a7a5ff;
  --cyan: #7dd3fc;
  --green: #80f7c1;
  --max: 1180px;
  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 24px 90px rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(93, 55, 180, .28), transparent 34rem),
    linear-gradient(180deg, #0d0419 0%, #120523 46%, #0d0419 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--magenta-2);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  mix-blend-mode: screen;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-kicker {
  color: var(--magenta);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .17em;
  margin-bottom: 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2,
.about-heading h2,
.participation-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.65rem, 6vw, 5.7rem);
  line-height: .93;
  letter-spacing: -.055em;
  font-weight: 600;
}

.section-heading h2 em,
.about-heading h2 em,
.participation-copy h2 em,
.final-cta h2 em {
  font-style: normal;
  color: var(--magenta);
}

.section-heading > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
  max-width: 36rem;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 30px), 1220px);
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: .35s ease;
}

.site-header.scrolled {
  background: rgba(13, 4, 25, .78);
  border-color: var(--stroke);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-family: "Space Grotesk", sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links > a {
  color: #ddd9e8;
  font-size: .87rem;
  font-weight: 600;
  transition: .2s ease;
}

.nav-links > a:hover {
  color: #fff;
}

.nav-links .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-2));
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(174, 63, 242, .25);
}

.nav-links .nav-whatsapp {
  background: linear-gradient(135deg, #18b9c7, #397cff);
  box-shadow: 0 10px 30px rgba(36, 174, 211, .22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 50% 44%, rgba(174, 63, 242, .12), transparent 28rem),
    linear-gradient(180deg, rgba(9, 2, 19, .22), rgba(12, 3, 26, .9));
}

#networkCanvas,
#ctaNetworkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 3, 22, .14), rgba(11, 3, 22, .58) 75%, #10051f 100%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .22;
  z-index: -2;
  pointer-events: none;
}

.hero-orb-a {
  width: 360px;
  height: 360px;
  left: -140px;
  top: 18%;
  background: #4938cf;
}

.hero-orb-b {
  width: 420px;
  height: 420px;
  right: -180px;
  top: 28%;
  background: #be33ff;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrap {
  width: 112px;
  height: 112px;
  margin-bottom: 28px;
  position: relative;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 15%;
  background: var(--magenta);
  filter: blur(34px);
  opacity: .16;
  z-index: -1;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d8d2e4;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
}

.hero-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .94;
  font-size: clamp(3.1rem, 8.3vw, 8.4rem);
  max-width: 11ch;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.hero-title span {
  color: #fff;
}

.hero-title strong {
  color: var(--magenta);
  font-weight: 600;
}

.hero-deck {
  color: var(--muted);
  max-width: 670px;
  margin: 28px auto 0;
  line-height: 1.72;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: #f4f1f8;
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.hero-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 16px var(--magenta);
}

.hero-actions,
.final-actions,
.participation-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: .9rem;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #c949ff 0%, #9b2df5 100%);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 14px 38px rgba(174, 63, 242, .24);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(174, 63, 242, .34);
}

.button-ghost {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-soft:hover {
  border-color: var(--stroke-strong);
  background: rgba(255,255,255,.08);
}

.button-soft {
  background: rgba(255,255,255,.07);
}

.community-strip {
  margin-top: 28px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ded9e8;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(128, 247, 193, .14);
  background: rgba(8, 25, 18, .18);
  font-size: .83rem;
  backdrop-filter: blur(12px);
  transition: .2s ease;
}

.community-strip:hover {
  background: rgba(31, 102, 75, .2);
  border-color: rgba(128, 247, 193, .3);
}

.community-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(128, 247, 193, .75);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  width: 28px;
  height: 44px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  opacity: .75;
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  animation: scrollCue 1.8s infinite ease-in-out;
}

@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 0; }
  25% { opacity: 1; }
  70% { opacity: .8; }
  100% { transform: translateY(17px); opacity: 0; }
}

/* About */
.about {
  background:
    radial-gradient(circle at 10% 40%, rgba(68, 59, 146, .18), transparent 24rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: start;
}

.about-copy {
  padding-top: 12px;
}

.about-copy p {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.82;
}

.discipline-network {
  margin-top: 76px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
  padding: 50px 20px;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.discipline-network::before {
  content: "";
  position: absolute;
  inset: 50% 8% auto 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 70, 255, .38), transparent);
  z-index: -1;
}

.discipline-network span {
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 12px 17px;
  color: #e9e6ee;
  font-size: .88rem;
  backdrop-filter: blur(12px);
}

/* Talks */
.talks-section {
  background:
    radial-gradient(circle at 90% 18%, rgba(193, 70, 255, .12), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,.016), transparent);
}

.featured-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.voice-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.voice-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: var(--magenta);
  filter: blur(55px);
  opacity: .08;
  transition: opacity .25s ease;
}

.voice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 70, 255, .35);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.voice-card:hover::after {
  opacity: .2;
}

.voice-index {
  color: var(--soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
}

.voice-card h3 {
  margin: 58px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.voice-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.voice-card > span:last-child {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: var(--magenta);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Program */
.program-section {
  background:
    radial-gradient(circle at 10% 30%, rgba(55, 44, 136, .22), transparent 25rem),
    #0e041b;
}

.program-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(100%, 600px);
}

.day-tab {
  border: 1px solid var(--stroke);
  border-radius: 15px;
  min-height: 74px;
  text-align: left;
  padding: 13px 15px;
  color: var(--muted);
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: .2s ease;
}

.day-tab b,
.day-tab span {
  display: block;
}

.day-tab b {
  color: #eeeaf5;
  font-family: "Space Grotesk", sans-serif;
  font-size: .82rem;
  letter-spacing: .06em;
}

.day-tab span {
  margin-top: 6px;
  font-size: .76rem;
}

.day-tab:hover {
  background: rgba(255,255,255,.06);
}

.day-tab.active {
  background:
    linear-gradient(135deg, rgba(193, 70, 255, .2), rgba(83, 58, 190, .18));
  border-color: rgba(193, 70, 255, .4);
  box-shadow: inset 0 0 0 1px rgba(193, 70, 255, .06);
}

.day-tab.active b {
  color: #fff;
}

.program-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-chip {
  min-height: 37px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.035);
  color: var(--muted);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
}

.filter-chip.active {
  color: #fff;
  border-color: rgba(193, 70, 255, .38);
  background: rgba(193, 70, 255, .14);
}

.daily-meeting-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(125, 211, 252, .16);
  background: rgba(47, 115, 150, .08);
  color: #e5edf3;
  margin-bottom: 34px;
}

.daily-meeting-point b,
.daily-meeting-point span {
  display: block;
}

.daily-meeting-point b {
  font-size: .8rem;
}

.daily-meeting-point span {
  margin-top: 3px;
  color: #aebdcc;
  font-size: .78rem;
}

.meeting-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, .22);
  color: var(--cyan);
  background: rgba(125, 211, 252, .08);
  flex: 0 0 auto;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: start;
}

.schedule-list {
  position: relative;
}

.schedule-list::before {
  content: "";
  position: absolute;
  left: 104px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(193,70,255,.28) 6%, rgba(255,255,255,.12) 50%, transparent);
}

.schedule-entry {
  position: relative;
  display: grid;
  grid-template-columns: 83px minmax(0, 1fr);
  gap: 44px;
  min-height: 112px;
  padding: 12px 0;
}

.schedule-time {
  color: #a9a2ba;
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.25;
  padding-top: 17px;
  text-align: right;
}

.schedule-node {
  position: absolute;
  left: 99px;
  top: 33px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #1c0a34;
  border: 2px solid rgba(193,70,255,.8);
  box-shadow: 0 0 0 5px rgba(193,70,255,.07);
  z-index: 2;
}

.schedule-card {
  appearance: none;
  width: 100%;
  color: inherit;
  text-align: left;
  border: 1px solid var(--stroke);
  border-radius: 19px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  padding: 20px 22px;
  cursor: default;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.schedule-card.is-talk {
  cursor: pointer;
}

.schedule-card.is-talk:hover {
  transform: translateX(4px);
  border-color: rgba(193, 70, 255, .34);
  background:
    linear-gradient(135deg, rgba(193,70,255,.08), rgba(255,255,255,.032));
}

.schedule-card.is-special {
  background:
    linear-gradient(135deg, rgba(125, 211, 252, .07), rgba(255,255,255,.025));
}

.schedule-card.is-break {
  opacity: .72;
  background: rgba(255,255,255,.025);
}

.schedule-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.session-type {
  color: var(--magenta);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.status-chip,
.room-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color: #bbb5c6;
  font-size: .66rem;
  font-weight: 700;
}

.status-chip.virtual {
  color: #b9e6ff;
  border-color: rgba(125, 211, 252, .2);
  background: rgba(125, 211, 252, .06);
}

.status-chip.in-person {
  color: #c8ffe7;
  border-color: rgba(128, 247, 193, .2);
  background: rgba(128, 247, 193, .06);
}

.status-chip.hybrid {
  color: #ead7ff;
  border-color: rgba(193, 70, 255, .22);
  background: rgba(193, 70, 255, .07);
}

.schedule-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.48rem);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.schedule-speaker {
  margin: 9px 0 0;
  color: #eeeaf5;
  font-size: .88rem;
  font-weight: 650;
}

.schedule-institution {
  color: var(--muted);
  font-weight: 400;
}

.schedule-footer {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,.075);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-size: .72rem;
}

.open-abstract {
  color: #dfb5ff;
  font-weight: 700;
}

.program-aside {
  min-width: 0;
}

.aside-sticky {
  position: sticky;
  top: 112px;
  padding: 25px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 0%, rgba(128, 247, 193, .08), transparent 12rem),
    rgba(255,255,255,.035);
}

.aside-label {
  color: var(--green);
  font-family: "Space Grotesk", sans-serif;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.aside-sticky h3 {
  margin: 15px 0 11px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.1;
  font-size: 1.5rem;
  letter-spacing: -.035em;
}

.aside-sticky > p:not(.aside-label) {
  color: var(--muted);
  line-height: 1.65;
  font-size: .86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  margin-top: 14px;
  font-size: .85rem;
  font-weight: 700;
}

.text-link span {
  color: var(--magenta);
}

/* Participation */
.participation-section {
  background:
    radial-gradient(circle at 75% 50%, rgba(193, 70, 255, .12), transparent 28rem);
}

.participation-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--stroke);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.participation-copy {
  padding: 58px;
}

.participation-copy > p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 590px;
  margin: 26px 0 0;
}

.participation-copy .participation-actions {
  justify-content: flex-start;
}

.participation-modes {
  display: grid;
  grid-template-columns: 1fr;
  border-left: 1px solid var(--stroke);
}

.participation-modes article {
  padding: 38px;
  position: relative;
}

.participation-modes article + article {
  border-top: 1px solid var(--stroke);
}

.mode-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: rgba(255,255,255,.18);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.mode-label {
  margin: 0 0 30px;
  color: var(--magenta);
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 800;
}

.participation-modes h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -.03em;
}

.participation-modes article > p:not(.mode-label) {
  margin: 7px 0;
  color: var(--muted);
}

.participation-modes small {
  display: block;
  color: var(--soft);
  margin-top: 18px;
  line-height: 1.5;
}

/* Venue */
.venue-section {
  background:
    radial-gradient(circle at 20% 75%, rgba(125, 211, 252, .08), transparent 25rem);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 14px;
}

.venue-main,
.venue-detail {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
}

.venue-main {
  min-height: 430px;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  background:
    linear-gradient(180deg, rgba(53, 42, 124, .14), rgba(255,255,255,.03));
}

.venue-map-art {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.map-ring {
  position: absolute;
  border: 1px solid rgba(193, 70, 255, .22);
  border-radius: 50%;
  left: 54%;
  top: 47%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 170px;
  height: 170px;
}

.ring-2 {
  width: 300px;
  height: 300px;
  opacity: .5;
}

.map-pin {
  position: absolute;
  left: 54%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50% 50% 50% 8px;
  rotate: -45deg;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), #6a4df0);
  box-shadow: 0 16px 50px rgba(193,70,255,.3);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.map-pin::before {
  content: "W";
  rotate: 45deg;
}

.map-pin {
  font-size: 0;
}

.map-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, .5), transparent);
  transform-origin: left center;
}

.line-a { width: 430px; left: 5%; top: 28%; rotate: 16deg; }
.line-b { width: 410px; left: 33%; top: 72%; rotate: -20deg; }
.line-c { width: 350px; left: 58%; top: 28%; rotate: 68deg; opacity: .55; }

.venue-content {
  padding: 28px 32px 33px;
  border-top: 1px solid var(--stroke);
}

.venue-overline {
  color: var(--magenta);
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 800;
}

.venue-content h3,
.venue-detail h3 {
  margin: 9px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -.035em;
}

.venue-content > p:last-child,
.venue-detail > p:not(.venue-overline) {
  color: var(--muted);
}

.venue-detail {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 80% 10%, rgba(193,70,255,.1), transparent 15rem),
    rgba(255,255,255,.035);
}

.venue-detail h3 {
  max-width: 12ch;
}

.venue-detail > p:not(.venue-overline) {
  line-height: 1.7;
}

/* Coordinators */
.coordinators-section {
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,.012));
}

.coordinator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.coordinator-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.coordinator-mark {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(193,70,255,.2), rgba(68,59,146,.18));
  border: 1px solid rgba(193,70,255,.2);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.coordinator-role {
  margin: 0 0 8px;
  color: var(--magenta);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.coordinator-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  letter-spacing: -.02em;
}

.coordinator-card div > p:not(.coordinator-role) {
  color: var(--muted);
  font-size: .82rem;
  margin: 6px 0 11px;
}

.coordinator-card a {
  color: #eeeaf5;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

/* Final CTA */
.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(193,70,255,.15), transparent 27rem),
    #0b0315;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(11,3,21,.24), rgba(11,3,21,.82));
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner > p {
  color: #d5cfdf;
  letter-spacing: .15em;
  font-size: .7rem;
  font-weight: 800;
}

.final-cta h2 {
  max-width: 12ch;
  margin-inline: auto;
  margin-top: 20px;
}

/* Footer */
.site-footer {
  padding: 70px 0 25px;
  border-top: 1px solid var(--stroke);
  background: #090211;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr .9fr .8fr;
  gap: 50px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: top;
}

.footer-brand p {
  color: var(--muted);
  font-size: .85rem;
  max-width: 250px;
  line-height: 1.6;
}

.footer-label {
  color: var(--soft);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0 0 15px;
}

.footer-grid > div:not(.footer-brand):not(.footer-date) a {
  display: block;
  color: #ddd8e5;
  font-size: .82rem;
  margin: 0 0 11px;
}

.footer-date strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  line-height: .95;
  letter-spacing: -.04em;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #716a80;
  font-size: .7rem;
}

/* Modal */
.talk-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}

.talk-modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 1, 10, .76);
  backdrop-filter: blur(16px);
  animation: fadeIn .2s ease;
}

.modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 30px), 780px);
  max-height: min(82vh, 850px);
  overflow: auto;
  border: 1px solid var(--stroke-strong);
  border-radius: 26px;
  padding: 38px;
  background:
    radial-gradient(circle at 90% 5%, rgba(193,70,255,.14), transparent 20rem),
    #150729;
  box-shadow: 0 45px 140px rgba(0,0,0,.55);
  animation: modalIn .24s ease;
}

.modal-close {
  position: sticky;
  float: right;
  top: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  color: #fff;
  background: rgba(255,255,255,.055);
  cursor: pointer;
  font-size: 1.35rem;
}

.modal-time {
  color: var(--magenta);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 800;
  margin: 2px 0 17px;
}

.modal-panel h2 {
  margin: 0;
  max-width: 17ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.modal-speaker {
  color: #eee9f6;
  font-weight: 650;
  margin: 21px 0 14px;
  line-height: 1.55;
}

.modal-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-rule {
  height: 1px;
  background: var(--stroke);
  margin: 29px 0;
}

.modal-abstract-label {
  color: var(--magenta);
  letter-spacing: .13em;
  font-size: .66rem;
  font-weight: 800;
}

.modal-abstract {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.8;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -46%) scale(.98); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .section {
    padding: 90px 0;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--stroke);
    border-radius: 22px;
    background: rgba(13, 4, 25, .95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a {
    padding: 13px 15px;
    border-radius: 12px;
  }

  .nav-links .nav-cta {
    text-align: center;
    margin-top: 5px;
  }

  .menu-toggle {
    display: flex;
  }

  .section-heading,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .featured-voices {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-layout {
    grid-template-columns: 1fr;
  }

  .program-aside {
    order: -1;
  }

  .aside-sticky {
    position: static;
  }

  .participation-card {
    grid-template-columns: 1fr;
  }

  .participation-modes {
    border-left: 0;
    border-top: 1px solid var(--stroke);
    grid-template-columns: repeat(2, 1fr);
  }

  .participation-modes article + article {
    border-top: 0;
    border-left: 1px solid var(--stroke);
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }

  .venue-detail {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-date {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 920px;
    padding-top: 130px;
  }

  .hero-logo-wrap {
    width: 96px;
    height: 96px;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero-deck {
    max-width: 34ch;
  }

  .hero-meta {
    max-width: 320px;
  }

  .community-strip {
    border-radius: 17px;
    text-align: left;
    max-width: 360px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .about-heading h2,
  .participation-copy h2,
  .final-cta h2 {
    font-size: clamp(2.55rem, 13vw, 4.6rem);
  }

  .discipline-network {
    justify-content: flex-start;
    padding-inline: 0;
  }

  .featured-voices {
    grid-template-columns: 1fr;
  }

  .voice-card {
    min-height: 195px;
  }

  .program-toolbar {
    display: block;
  }

  .day-tabs {
    width: 100%;
  }

  .day-tab {
    min-height: 68px;
    padding: 11px;
  }

  .day-tab b {
    font-size: .73rem;
  }

  .day-tab span {
    font-size: .68rem;
  }

  .program-filters {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .schedule-list::before {
    left: 11px;
  }

  .schedule-entry {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 30px;
    margin-bottom: 5px;
  }

  .schedule-time {
    text-align: left;
    padding: 0;
    font-size: .72rem;
  }

  .schedule-node {
    left: 6px;
    top: 19px;
  }

  .schedule-card {
    padding: 17px;
  }

  .schedule-card.is-talk:hover {
    transform: none;
  }

  .schedule-footer {
    align-items: flex-start;
  }

  .participation-copy {
    padding: 34px 25px 38px;
  }

  .participation-modes {
    grid-template-columns: 1fr;
  }

  .participation-modes article + article {
    border-left: 0;
    border-top: 1px solid var(--stroke);
  }

  .coordinator-grid {
    grid-template-columns: 1fr;
  }

  .coordinator-card {
    align-items: flex-start;
  }

  .final-cta {
    min-height: 600px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-date {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .modal-panel {
    padding: 26px 22px;
    max-height: 88vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  #networkCanvas,
  #ctaNetworkCanvas {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   REFINEMENT V2 — compact rhythm without losing the original
   design language or the interactive program.
   ========================================================= */

/* More restrained vertical rhythm and typography */
.section {
  padding: 86px 0;
}

.section-kicker {
  font-size: .70rem;
  margin-bottom: 17px;
}

.section-heading {
  gap: 44px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-heading h2,
.participation-copy h2,
.final-cta h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.65rem);
  line-height: .97;
  letter-spacing: -.048em;
}

.section-heading > p {
  font-size: .96rem;
  line-height: 1.64;
}

/* Make the workshop identity visibly present in the header */
.brand img {
  width: 50px;
  height: 50px;
}

.brand span {
  font-size: .82rem;
}

/* HERO: same experience, logo now deliberately placed at the side */
.hero {
  min-height: 92svh;
  padding: 112px 0 58px;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  column-gap: clamp(42px, 6.5vw, 96px);
  row-gap: 0;
  align-items: center;
  text-align: left;
}

.hero-logo-wrap {
  grid-column: 1;
  grid-row: 1 / span 7;
  width: min(100%, 350px);
  height: 430px;
  margin: 0;
  justify-self: center;
  align-self: center;
}

.hero-logo-wrap::before {
  inset: 18%;
  filter: blur(54px);
  opacity: .13;
}

.hero-logo {
  object-position: center;
}

.hero-content > :not(.hero-logo-wrap) {
  grid-column: 2;
  justify-self: start;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: .68rem;
}

.hero-title {
  font-size: clamp(3rem, 5.65vw, 5.75rem);
  line-height: .96;
  max-width: 12ch;
}

.hero-deck {
  max-width: 590px;
  margin: 20px 0 0;
  font-size: .98rem;
  line-height: 1.65;
}

.hero-meta {
  justify-content: flex-start;
  margin-top: 20px;
  font-size: .72rem;
}

.hero-actions,
.participation-actions {
  justify-content: flex-start;
  margin-top: 25px;
}

.community-strip {
  margin-top: 18px;
  min-height: 47px;
  font-size: .78rem;
}

/* About: keep content, remove excess empty space */
.about-grid {
  gap: 54px;
}

.about-copy p {
  margin-bottom: 16px;
  font-size: .98rem;
  line-height: 1.68;
}

.discipline-network {
  margin-top: 38px;
  padding: 28px 14px;
  gap: 9px;
}

.discipline-network span {
  padding: 9px 14px;
  font-size: .79rem;
}

/* Talks: preserve the six featured voices, but make the section denser */
.featured-voices {
  gap: 11px;
}

.voice-card {
  min-height: 182px;
  padding: 21px;
  border-radius: 22px;
}

.voice-card h3 {
  margin: 40px 0 6px;
  font-size: 1.3rem;
}

.voice-card p {
  font-size: .80rem;
}

.voice-card > span:last-child {
  left: 21px;
  bottom: 18px;
  font-size: .67rem;
}

/* Interactive program is intentionally preserved.
   Only typography and vertical spacing are tightened. */
.program-toolbar {
  margin-bottom: 14px;
}

.day-tab {
  min-height: 68px;
  padding: 11px 13px;
}

.daily-meeting-point {
  padding: 13px 16px;
  margin-bottom: 24px;
}

.program-layout {
  gap: 30px;
}

.schedule-entry {
  min-height: 98px;
  padding: 8px 0;
}

.schedule-time {
  font-size: .73rem;
  padding-top: 14px;
}

.schedule-node {
  top: 28px;
}

.schedule-card {
  padding: 16px 19px;
  border-radius: 17px;
}

.schedule-topline {
  margin-bottom: 8px;
}

.schedule-card h3 {
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.2;
}

.schedule-speaker {
  margin-top: 7px;
  font-size: .82rem;
}

.schedule-footer {
  margin-top: 10px;
  padding-top: 9px;
}

.aside-sticky {
  padding: 21px;
}

.aside-sticky h3 {
  margin: 11px 0 9px;
  font-size: 1.3rem;
}

/* Participation and practical information: same blocks, less height */
.participation-copy {
  padding: 42px;
}

.participation-copy > p {
  margin-top: 20px;
  line-height: 1.65;
}

.participation-modes article {
  padding: 29px 32px;
}

.participation-modes h3 {
  font-size: 1.4rem;
}

/* Venue stays visual, but no longer consumes almost a full viewport */
.venue-main {
  min-height: 350px;
}

.venue-map-art {
  min-height: 218px;
}

.venue-content {
  padding: 22px 27px 25px;
}

.venue-detail {
  padding: 28px;
}

.venue-content h3,
.venue-detail h3 {
  font-size: 1.55rem;
}

/* Coordinators remain clearly available without oversized cards */
.coordinator-card {
  padding: 23px;
}

.coordinator-mark {
  width: 58px;
  height: 58px;
}

/* Closing section and footer */
.final-cta {
  min-height: 445px;
}

.final-cta h2 {
  font-size: clamp(2.45rem, 4.7vw, 4.8rem);
}

.final-actions {
  margin-top: 26px;
}

.site-footer {
  padding: 48px 0 22px;
}

.footer-brand img {
  width: 92px;
  height: 92px;
}

.footer-bottom {
  margin-top: 38px;
}

/* Tablet: retain a two-column hero while there is enough space */
@media (max-width: 980px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 86svh;
    padding: 104px 0 58px;
  }

  .hero-content {
    grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr);
    column-gap: 34px;
  }

  .hero-logo-wrap {
    width: min(100%, 280px);
    height: 350px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 6.7vw, 4.6rem);
  }

  .featured-voices {
    grid-template-columns: repeat(3, 1fr);
  }

  .voice-card {
    min-height: 170px;
  }

  .venue-detail {
    min-height: 250px;
  }
}

/* Phone / narrow tablet: stack hero cleanly and keep logo prominent. */
@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 106px 0 62px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 0;
  }

  .hero-logo-wrap {
    grid-column: 1;
    grid-row: auto;
    width: min(72vw, 250px);
    height: 295px;
    margin: 0 auto 18px;
  }

  .hero-content > :not(.hero-logo-wrap) {
    grid-column: 1;
    justify-self: center;
  }

  .hero-title {
    font-size: clamp(2.75rem, 9.7vw, 4.35rem);
    max-width: 12ch;
  }

  .hero-deck {
    margin: 18px auto 0;
    max-width: 38rem;
  }

  .hero-meta,
  .hero-actions {
    justify-content: center;
  }

  .community-strip {
    justify-self: center !important;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 58px 0;
  }

  .site-header {
    min-height: 58px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding: 94px 0 52px;
  }

  .hero-logo-wrap {
    width: min(72vw, 225px);
    height: 270px;
  }

  .hero-title {
    font-size: clamp(2.55rem, 11vw, 3.9rem);
    line-height: .98;
  }

  .hero-deck {
    font-size: .92rem;
    line-height: 1.58;
    max-width: 34ch;
  }

  .hero-meta {
    margin-top: 18px;
    font-size: .67rem;
  }

  .section-heading h2,
  .about-heading h2,
  .participation-copy h2,
  .final-cta h2 {
    font-size: clamp(2.1rem, 9.8vw, 3.45rem);
  }

  .section-heading {
    margin-bottom: 29px;
  }

  .discipline-network {
    margin-top: 28px;
    padding-block: 22px;
  }

  /* Featured speakers become a horizontal swipe instead of six tall rows */
  .featured-voices {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .featured-voices::-webkit-scrollbar {
    display: none;
  }

  .voice-card {
    flex: 0 0 min(82vw, 310px);
    min-height: 165px;
    scroll-snap-align: start;
  }

  .program-toolbar {
    margin-bottom: 12px;
  }

  .daily-meeting-point {
    margin-bottom: 18px;
  }

  .schedule-entry {
    min-height: auto;
    padding: 6px 0 6px 30px;
  }

  .schedule-card {
    padding: 14px 15px;
  }

  .schedule-card h3 {
    font-size: 1rem;
  }

  .schedule-speaker {
    font-size: .76rem;
    line-height: 1.4;
  }

  .schedule-footer {
    font-size: .66rem;
  }

  .participation-copy {
    padding: 30px 24px 32px;
  }

  .participation-modes article {
    padding: 25px;
  }

  .venue-main {
    min-height: 300px;
  }

  .venue-map-art {
    min-height: 185px;
  }

  .coordinator-card {
    padding: 20px;
  }

  .final-cta {
    min-height: 390px;
    padding: 54px 0;
  }

  .footer-brand img {
    width: 108px;
    height: 108px;
  }
}


/* =========================================================
   HERO V3 — dates as protagonist
   Keeps the existing site and interactive program intact.
   ========================================================= */

.hero {
  min-height: 88svh;
  padding: 96px 0 46px;
}

.hero-content {
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  column-gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

/* Larger, slightly higher logo on desktop */
.hero-logo-wrap {
  grid-row: 1 / span 8;
  width: min(100%, 390px);
  height: 430px;
  transform: translateY(-34px);
  align-self: center;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Location remains elegant and secondary */
.eyebrow {
  margin-bottom: 10px;
  font-size: .66rem;
  letter-spacing: .17em;
}

/* Dates become the primary event-information moment */
.hero-date {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
}

.hero-date-days {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-date-days span {
  color: #fff;
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
  line-height: .82;
  font-weight: 600;
  letter-spacing: -.065em;
}

.hero-date-days i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(193, 70, 255, .65);
}

.hero-date-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 3px;
}

.hero-date-label strong {
  color: var(--magenta);
  font-size: clamp(.78rem, 1.05vw, 1.02rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .14em;
}

.hero-date-label small {
  margin-top: 6px;
  color: #fff;
  font-size: clamp(1.03rem, 1.4vw, 1.34rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: .06em;
}

/* Main statement remains strong, but more refined than before */
.hero-title {
  font-size: clamp(2.8rem, 4.45vw, 4.7rem);
  line-height: .97;
  max-width: 13ch;
}

.hero-deck {
  margin-top: 17px;
  max-width: 560px;
  font-size: .92rem;
  line-height: 1.6;
}

/* Metadata is intentionally quieter now that the date leads */
.hero-meta {
  justify-content: flex-start;
  margin-top: 17px;
  font-size: .67rem;
  letter-spacing: .13em;
}

.hero-actions {
  margin-top: 21px;
}

.community-strip {
  margin-top: 15px;
}

/* Tablet */
@media (max-width: 980px) {
  .hero {
    min-height: 84svh;
    padding: 92px 0 44px;
  }

  .hero-content {
    grid-template-columns: minmax(210px, .64fr) minmax(0, 1.36fr);
    column-gap: 30px;
  }

  .hero-logo-wrap {
    width: min(100%, 310px);
    height: 350px;
    transform: translateY(-24px);
  }

  .hero-date {
    gap: 14px;
    margin-bottom: 16px;
  }

  .hero-date-days {
    gap: 9px;
  }

  .hero-date-days span {
    font-size: clamp(3.15rem, 6vw, 4.7rem);
  }

  .hero-title {
    font-size: clamp(2.5rem, 4.9vw, 3.95rem);
  }
}

/* Narrow tablet and phones: stack cleanly */
@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 88px 0 48px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo-wrap {
    grid-column: 1;
    grid-row: auto;
    width: min(68vw, 265px);
    height: 230px;
    margin: 0 auto 4px;
    transform: translateY(-12px);
  }

  .hero-content > :not(.hero-logo-wrap) {
    grid-column: 1;
    justify-self: center;
  }

  .hero-date {
    justify-content: center;
    align-items: center;
    margin: 2px 0 18px;
  }

  .hero-date-label {
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(2.55rem, 8.8vw, 3.8rem);
    max-width: 12ch;
  }

  .hero-deck {
    margin: 16px auto 0;
  }

  .hero-meta,
  .hero-actions {
    justify-content: center;
  }
}

/* Phone */
@media (max-width: 700px) {
  .hero {
    padding: 80px 0 42px;
  }

  .hero-logo-wrap {
    width: min(66vw, 220px);
    height: 195px;
    transform: translateY(-8px);
    margin-bottom: 0;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: .59rem;
    line-height: 1.5;
  }

  .hero-date {
    flex-direction: column;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
  }

  .hero-date-days {
    gap: 8px;
  }

  .hero-date-days span {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .hero-date-days i {
    width: 4px;
    height: 4px;
  }

  .hero-date-label {
    flex-direction: row;
    align-items: baseline;
    gap: 9px;
    padding: 0;
  }

  .hero-date-label strong {
    font-size: .72rem;
  }

  .hero-date-label small {
    margin: 0;
    font-size: .92rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
    line-height: .99;
  }

  .hero-deck {
    font-size: .87rem;
    line-height: 1.55;
    max-width: 33ch;
  }

  .hero-meta {
    margin-top: 15px;
    font-size: .61rem;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .community-strip {
    margin-top: 13px;
    max-width: 340px;
  }
}
