:root {
  --navy: #06142e;
  --navy-2: #0b2147;
  --blue: #2458d3;
  --sky: #91b8ff;
  --red: #ed282b;
  --red-dark: #b91522;
  --cream: #f5efe4;
  --paper: #fffdf7;
  --gold: #f0c355;
  --ink: #081630;
  --muted: #657083;
  --line: rgba(8, 22, 48, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { color: white; background: var(--red); }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  color: white;
  background: var(--red);
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.topline {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0 33.333%, #fff 33.333% 66.666%, var(--blue) 66.666%);
}

.site-header {
  position: absolute;
  z-index: 30;
  inset: 5px 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 68px);
  color: white;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand-mark { width: 40px; height: 40px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark circle,
.brand-mark path { fill: none; stroke: currentColor; stroke-width: 1.8; }
.site-header nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 36px); }
.site-header nav a {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header nav a:not(.nav-cta) { opacity: .8; }
.site-header nav a:hover { opacity: 1; }
.nav-cta { padding: 12px 16px; border: 1px solid rgba(255,255,255,.55); }

.hero {
  position: relative;
  min-height: 920px;
  height: 100svh;
  color: white;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(.92) contrast(1.05);
  animation: hero-drift 15s ease-out both;
}
@keyframes hero-drift { from { transform: scale(1.08); } to { transform: scale(1.01); } }
.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, transparent 0 14%, rgba(6,20,46,.25) 38%, rgba(6,20,46,.72) 100%),
    linear-gradient(180deg, rgba(6,20,46,.15) 0%, rgba(6,20,46,.05) 38%, rgba(6,20,46,.93) 87%, var(--navy) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(90deg, var(--red) 0 2px, transparent 2px calc(33.333% - 1px), rgba(255,255,255,.23) calc(33.333% - 1px) 33.333%, transparent 33.333% calc(66.666% - 1px), rgba(255,255,255,.23) calc(66.666% - 1px) 66.666%, transparent 66.666%);
  opacity: .4;
}
.hero-grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit::after {
  content: "";
  position: absolute;
  top: 50%; left: -5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 22px rgba(237,40,43,.9);
}
.orbit-one { width: 48vw; height: 48vw; right: -17vw; top: 15vh; animation: spin 25s linear infinite; }
.orbit-two { width: 29vw; height: 29vw; right: -7vw; top: 26vh; animation: spin 17s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-copy {
  position: absolute;
  left: clamp(22px, 6vw, 98px);
  right: clamp(22px, 38vw, 600px);
  bottom: clamp(62px, 10vh, 120px);
}
.kicker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker span + span::before { content: "★"; margin-right: 20px; color: var(--red); }
.hero h1 {
  display: flex;
  align-items: baseline;
  gap: .12em;
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(4.8rem, 10vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .78;
  text-transform: uppercase;
}
.hero h1 span:last-child { display: none; }
.hero h1 strong {
  color: var(--red);
  font-family: "Newsreader", serif;
  font-size: .74em;
  font-weight: 600;
}
.hero-thesis {
  max-width: 640px;
  margin: 26px 0 30px;
  font-family: "Newsreader", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 250px;
  padding: 18px 20px;
  border: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: white; background: var(--red); border-color: var(--red); }
.text-link {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.date-card {
  position: absolute;
  right: clamp(22px, 5vw, 80px);
  bottom: clamp(62px, 10vh, 120px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 10px 18px;
  width: min(420px, calc(100% - 44px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(6,20,46,.76);
  backdrop-filter: blur(12px);
}
.date-card-label { grid-column: 1 / -1; margin: 0; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sky); }
.date-card time { display: flex; align-items: baseline; gap: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.date-card time strong { font-family: "Anton", sans-serif; font-size: 3.3rem; font-weight: 400; letter-spacing: 0; line-height: 1; }
.date-arrow { align-self: center; color: var(--red); }
.date-card > p:not(.date-card-label) { grid-column: span 3; margin: 4px 0 0; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.16); font-size: .78rem; line-height: 1.5; }

.countdown-band {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  align-items: stretch;
  color: white;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.12);
}
.countdown-band > p { margin: 0; padding: 38px clamp(22px, 5vw, 78px); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; display: flex; align-items: center; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); }
.countdown > span { display: flex; flex-direction: column; justify-content: center; min-height: 150px; padding: 22px clamp(12px, 2vw, 32px); border-left: 1px solid rgba(255,255,255,.16); }
.countdown strong { font-family: "Anton", sans-serif; font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400; line-height: 1; color: var(--sky); }
.countdown small { margin-top: 6px; font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.section-pad { padding: clamp(82px, 11vw, 170px) clamp(22px, 6vw, 98px); }
.section-label { margin: 0 0 28px; color: var(--blue); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.section-label-light { color: var(--sky); }

.house-section { background: var(--paper); }
.statement-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(38px, 8vw, 130px); }
.statement-grid h2,
.format-heading h2,
.outputs-section > h2,
.faq-section > h2,
.who-layout h2 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(3.5rem, 7vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .9;
  text-transform: uppercase;
}
.statement-grid h2 em { color: var(--red); font-family: "Newsreader", serif; font-weight: 600; text-transform: none; }
.body-copy { max-width: 680px; align-self: end; }
.body-copy p { margin: 0 0 22px; font-size: clamp(1.05rem, 1.45vw, 1.35rem); line-height: 1.62; }
.house-rule { display: flex; justify-content: space-between; gap: 20px; margin-top: clamp(70px, 9vw, 120px); padding: 18px 0; border-block: 1px solid var(--line); font-size: .65rem; font-weight: 700; letter-spacing: .16em; }
.house-rule span::before { content: "●"; margin-right: 12px; color: var(--red); }

.signal-section {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  grid-template-rows: auto auto;
  gap: 70px 40px;
  padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 98px);
  color: white;
  background: var(--navy);
  overflow: hidden;
}
.signal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(145,184,255,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(145,184,255,.24) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}
.signal-intro { position: relative; z-index: 1; align-self: center; max-width: 560px; }
.signal-intro h2 {
  margin: 0 0 28px;
  font-family: "Anton", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.8rem);
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
}
.signal-intro > p:last-child { color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.65; }
.signal-stage { position: relative; z-index: 1; min-height: 620px; display: grid; place-items: center; }
.signal-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.signal-rings span { position: absolute; border: 1px solid rgba(145,184,255,.27); border-radius: 50%; animation: pulse-ring 4s ease-in-out infinite; }
.signal-rings span:nth-child(1) { width: 26%; aspect-ratio: 1; }
.signal-rings span:nth-child(2) { width: 48%; aspect-ratio: 1; animation-delay: .4s; }
.signal-rings span:nth-child(3) { width: 70%; aspect-ratio: 1; animation-delay: .8s; }
.signal-rings span:nth-child(4) { width: 92%; aspect-ratio: 1; animation-delay: 1.2s; }
@keyframes pulse-ring { 50% { border-color: rgba(237,40,43,.55); transform: scale(1.035); } }
.signal-core {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 170px;
  aspect-ratio: 1;
  padding: 22px;
  border-radius: 50%;
  text-align: center;
  background: var(--red);
  box-shadow: 0 0 60px rgba(237,40,43,.35);
}
.signal-core small { font-size: .57rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.signal-core strong { margin: 5px 0 2px; font-family: "Anton", sans-serif; font-size: 2rem; font-weight: 400; text-transform: uppercase; }
.signal-core span { font-family: "Newsreader", serif; font-style: italic; }
.signal-node {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(6,20,46,.82);
  box-shadow: 0 12px 35px rgba(0,0,0,.2);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: node-float 4s ease-in-out infinite;
}
.signal-node::before { content: "●"; margin-right: 8px; color: var(--sky); }
.node-one { top: 12%; left: 42%; }
.node-two { top: 26%; right: 5%; animation-delay: -.7s; }
.node-three { top: 56%; right: 8%; animation-delay: -1.4s; }
.node-four { bottom: 10%; left: 45%; animation-delay: -2.1s; }
.node-five { top: 61%; left: 4%; animation-delay: -2.8s; }
.node-six { top: 28%; left: 1%; animation-delay: -3.5s; }
@keyframes node-float { 50% { transform: translateY(-10px) rotate(-1deg); } }
.signal-steps { position: relative; z-index: 1; grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.signal-steps li { min-height: 220px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); }
.signal-steps li:last-child { border-right: 0; }
.signal-steps li > span { display: block; margin-bottom: 34px; color: var(--red); font-family: "Anton", sans-serif; font-size: 2rem; }
.signal-steps strong { display: block; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.signal-steps p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.55; }

.format-section { background: var(--cream); }
.format-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 40px; margin-bottom: 74px; }
.format-heading > p { max-width: 470px; margin: 0 0 8px; font-family: "Newsreader", serif; font-size: clamp(1.5rem, 2.5vw, 2.3rem); line-height: 1.15; }
.day-card { position: relative; display: grid; grid-template-columns: .24fr .7fr 1.35fr; gap: 34px; padding: clamp(34px, 5vw, 72px); margin-top: 28px; overflow: hidden; }
.day-one { color: white; background: var(--blue); }
.day-two { color: var(--ink); background: var(--paper); border: 1px solid var(--line); }
.day-number { font-family: "Anton", sans-serif; font-size: clamp(5rem, 10vw, 10rem); line-height: .75; opacity: .18; }
.day-title { position: relative; z-index: 1; }
.day-title > p { margin: 0 0 20px; font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.day-title h3 { margin: 0; font-family: "Anton", sans-serif; font-size: clamp(2.4rem, 4.5vw, 5rem); font-weight: 400; line-height: .92; text-transform: uppercase; }
.day-flow { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,.28); }
.day-flow > div { padding: 24px; border-right: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.day-flow > div:nth-child(even) { border-right: 0; }
.day-flow > div:nth-last-child(-n+2) { border-bottom: 0; }
.day-flow time { color: #dbe6ff; font-family: "Anton", sans-serif; font-size: 1.5rem; }
.day-flow p { margin: 14px 0 0; font-size: .9rem; line-height: 1.55; }
.day-flow strong { display: block; margin-bottom: 4px; text-transform: uppercase; }
.unconference-board { border: 2px solid var(--ink); background: #fff; box-shadow: 12px 12px 0 var(--red); transform: rotate(-.8deg); }
.board-header { display: flex; justify-content: space-between; gap: 15px; padding: 14px 18px; color: white; background: var(--ink); font-size: .59rem; font-weight: 700; letter-spacing: .13em; }
.board-grid { display: grid; grid-template-columns: repeat(2,1fr); }
.board-grid span { min-height: 82px; padding: 18px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.board-grid span:nth-child(even) { border-right: 0; }
.board-grid span:nth-last-child(-n+2) { border-bottom: 0; }
.integration-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; margin-top: 28px; padding: clamp(34px, 5vw, 70px); color: white; background: var(--navy); }
.integration-card h3 { margin: 0; font-family: "Anton", sans-serif; font-size: clamp(2.5rem, 5vw, 5.5rem); font-weight: 400; line-height: .9; text-transform: uppercase; }
.integration-card > p { align-self: end; margin: 0; color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.65; }

.principle-section {
  position: relative;
  padding: clamp(100px, 14vw, 220px) clamp(22px, 7vw, 120px);
  color: white;
  background: var(--red);
  overflow: hidden;
}
.principle-section::after { content: "★"; position: absolute; right: -4vw; top: -10vw; font-size: 45vw; line-height: 1; color: rgba(255,255,255,.08); }
.principle-small { position: relative; z-index: 1; margin: 0 0 38px; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.principle-section h2 { position: relative; z-index: 1; margin: 0; font-family: "Anton", sans-serif; font-size: clamp(5rem, 14vw, 14rem); font-weight: 400; letter-spacing: -.03em; line-height: .72; text-transform: uppercase; }
.principle-section h2 span { color: var(--navy); font-family: "Newsreader", serif; font-size: .65em; font-style: italic; text-transform: none; }
.wisdom-meter { position: relative; z-index: 1; max-width: 900px; margin-top: 80px; }
.meter-track { height: 14px; padding: 3px; border: 1px solid rgba(255,255,255,.55); }
.meter-track span { display: block; width: 88%; height: 100%; background: white; animation: wisdom 2.3s ease-out both; transform-origin: left; }
@keyframes wisdom { from { transform: scaleX(0); } }
.meter-labels { display: flex; justify-content: space-between; gap: 20px; margin-top: 12px; font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; }
.principle-copy { position: relative; z-index: 1; max-width: 620px; margin: 54px 0 0 auto; font-family: "Newsreader", serif; font-size: clamp(1.55rem, 2.7vw, 2.6rem); line-height: 1.14; }

.outputs-section { background: var(--paper); }
.outputs-section > h2 { max-width: 980px; }
.outputs-grid { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 74px; border: 1px solid var(--line); }
.outputs-grid article { position: relative; min-height: 360px; padding: 26px; border-right: 1px solid var(--line); }
.outputs-grid article:last-child { border-right: 0; }
.outputs-grid article > span { font-family: "Anton", sans-serif; font-size: 2rem; color: var(--red); }
.outputs-grid svg { width: 64px; height: 64px; margin: 50px 0 34px; }
.outputs-grid svg * { fill: none; stroke: var(--blue); stroke-width: 2; }
.outputs-grid h3 { margin: 0 0 14px; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.outputs-grid p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }

.questions-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding: clamp(90px, 11vw, 160px) clamp(22px, 6vw, 98px); color: white; background: var(--navy); }
.questions-copy h2 { margin: 0 0 28px; font-family: "Anton", sans-serif; font-size: clamp(3.5rem, 6.5vw, 7rem); font-weight: 400; line-height: .88; text-transform: uppercase; }
.questions-copy > p:not(.section-label) { max-width: 560px; color: rgba(255,255,255,.66); font-size: 1.05rem; line-height: 1.65; }
.questions-copy .question-button { width: max-content; margin-top: 26px; color: var(--ink); background: var(--sky); border-color: var(--sky); }
.question-stack { border-top: 1px solid rgba(255,255,255,.25); }
.question-stack > div { display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: center; min-height: 104px; border-bottom: 1px solid rgba(255,255,255,.25); transition: color .2s, padding .2s, background .2s; }
.question-stack > div:hover { padding-inline: 18px; color: var(--navy); background: var(--sky); }
.question-stack span { color: var(--red); font-family: "Anton", sans-serif; font-size: 1.5rem; }
.question-stack p { margin: 0; font-family: "Newsreader", serif; font-size: clamp(1.25rem, 2.2vw, 2rem); line-height: 1.1; }

.who-section { background: var(--cream); }
.who-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; }
.who-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.who-tags span { padding: 13px 16px; border: 1px solid var(--ink); background: var(--paper); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transform: rotate(var(--tilt, 0deg)); }
.who-tags span:nth-child(3n+1) { --tilt: -1.5deg; color: white; background: var(--blue); border-color: var(--blue); }
.who-tags span:nth-child(4n) { --tilt: 1.5deg; color: white; background: var(--red); border-color: var(--red); }

.faq-section { background: var(--paper); border-top: 1px solid var(--line); }
.faq-section > h2 { max-width: 1000px; }
.faq-list { margin-top: 64px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0; cursor: pointer; list-style: none; font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-family: "Anton", sans-serif; font-size: 1.8rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 850px; margin: -8px 0 32px; color: var(--muted); font-size: 1rem; line-height: 1.68; }

.rsvp-section { position: relative; padding: clamp(110px, 13vw, 210px) clamp(22px, 7vw, 120px); text-align: center; color: white; background: var(--blue); overflow: hidden; }
.rsvp-section::before { content: ""; position: absolute; inset: 0; opacity: .2; background: repeating-radial-gradient(circle at 50% 50%, transparent 0 49px, white 50px 51px); }
.rsvp-stars { position: relative; display: flex; justify-content: center; gap: 24px; color: var(--red); font-size: 1.4rem; }
.rsvp-stars span:nth-child(2) { color: white; }
.rsvp-section h2 { position: relative; margin: 22px auto 50px; font-family: "Anton", sans-serif; font-size: clamp(4rem, 9vw, 9.5rem); font-weight: 400; letter-spacing: -.02em; line-height: .83; text-transform: uppercase; }
.button-light { position: relative; color: var(--ink); background: white; border-color: white; }
.rsvp-note { position: relative; margin: 22px 0 0; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

footer { padding: 70px clamp(22px, 6vw, 98px) 28px; color: white; background: var(--navy); }
.footer-brand { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.18); }
.footer-brand strong { font-family: "Anton", sans-serif; font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400; text-transform: uppercase; }
.footer-brand p { align-self: end; max-width: 430px; margin: 0; color: rgba(255,255,255,.62); font-family: "Newsreader", serif; font-size: 1.5rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-left: 50%; padding: 46px 0 60px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-links small { margin-bottom: 8px; color: var(--sky); font-size: .61rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.75); font-size: .92rem; text-decoration: none; }
.footer-links a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin: 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.5); font-size: .59rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 1060px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 860px; height: auto; }
  .hero-copy { right: 22px; bottom: 270px; }
  .date-card { left: 22px; right: auto; bottom: 54px; }
  .hero h1 { font-size: clamp(4.4rem, 14vw, 8rem); }
  .countdown-band { grid-template-columns: 1fr; }
  .countdown-band > p { border-bottom: 1px solid rgba(255,255,255,.16); }
  .statement-grid,
  .format-heading,
  .who-layout,
  .questions-section { grid-template-columns: 1fr; }
  .signal-section { grid-template-columns: 1fr; }
  .signal-stage { min-height: 560px; }
  .signal-steps { grid-template-columns: 1fr 1fr; }
  .signal-steps li:nth-child(2) { border-right: 0; }
  .signal-steps li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .day-card { grid-template-columns: .2fr 1fr; }
  .day-flow,
  .unconference-board { grid-column: 1 / -1; }
  .outputs-grid { grid-template-columns: 1fr 1fr; }
  .outputs-grid article { border-bottom: 1px solid var(--line); }
  .outputs-grid article:nth-child(even) { border-right: 0; }
  .outputs-grid article:last-child { border-bottom: 0; }
  .footer-links { margin-left: 0; }
}

@media (max-width: 680px) {
  .site-header { padding-top: 18px; }
  .brand span:last-child { font-size: .64rem; }
  .nav-cta { padding: 11px 12px; }
  .hero { min-height: 820px; }
  .hero-image { object-position: 55% center; }
  .hero-copy { bottom: 290px; }
  .kicker { display: block; }
  .kicker span { display: block; margin-top: 8px; }
  .kicker span + span::before { margin-right: 10px; }
  .hero h1 { display: block; font-size: 15.2vw; letter-spacing: -.055em; line-height: .76; }
  .hero h1 span:first-child,
  .hero h1 strong { display: block; margin-left: 0; }
  .hero h1 strong { font-size: 1.08em; }
  .hero-thesis { margin-top: 18px; }
  .text-link { display: none; }
  .button { width: 100%; min-width: 0; }
  .date-card { grid-template-columns: 1fr auto 1fr; }
  .countdown { grid-template-columns: 1fr 1fr; }
  .countdown > span:nth-child(3) { border-top: 1px solid rgba(255,255,255,.16); }
  .countdown > span:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
  .house-rule { display: grid; }
  .signal-stage { min-height: 420px; }
  .signal-core { width: 130px; padding: 16px; }
  .signal-core strong { font-size: 1.55rem; }
  .signal-node { font-size: .5rem; padding: 8px 9px; }
  .signal-steps { grid-template-columns: 1fr; }
  .signal-steps li { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .signal-steps li > span { margin-bottom: 16px; }
  .day-card { grid-template-columns: 1fr; padding: 28px 20px; }
  .day-number { position: absolute; right: 16px; top: 26px; }
  .day-title { padding-right: 72px; }
  .day-flow { grid-template-columns: 1fr; }
  .day-flow > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28) !important; }
  .day-flow > div:last-child { border-bottom: 0 !important; }
  .board-grid { grid-template-columns: 1fr; }
  .board-grid span { border-right: 0; border-bottom: 1px solid var(--ink) !important; }
  .board-grid span:last-child { border-bottom: 0 !important; }
  .integration-card { grid-template-columns: 1fr; }
  .outputs-grid { grid-template-columns: 1fr; }
  .outputs-grid article { min-height: 290px; border-right: 0; }
  .outputs-grid svg { margin-block: 28px 22px; }
  .question-stack > div { grid-template-columns: 44px 1fr; }
  .footer-brand { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
