:root {
  --ink: #34383f;
  --ink-soft: #3f434a;
  --paper: #f4f5f7;
  --white: #ffffff;
  --teal: #58998e;
  --teal-light: #7bc5ba;
  --silver: #d9dce2;
  --blue: #516382;
  --line: rgba(81, 99, 130, 0.18);
  --line-light: rgba(255, 255, 255, 0.72);
  --error: #b73d45;
  --header-height: 62px;
  --side-padding: 20px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Montserrat",
    "Avenir Next",
    "Inter",
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.02;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: auto;
  bottom: auto;
  left: var(--side-padding);
  z-index: 30;
  width: calc(100vw - (var(--side-padding) * 2));
  max-width: calc(100vw - (var(--side-padding) * 2));
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 104px 0 22px;
  color: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(229, 231, 237, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 46px rgba(81, 99, 130, 0.12);
  backdrop-filter: blur(16px) saturate(1.08);
  overflow: hidden;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(241, 242, 246, 0.86);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 50px rgba(81, 99, 130, 0.16);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: max-content;
  line-height: 1;
}

.wordmark img {
  width: 122px;
  height: auto;
}

.desktop-nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.header-cta {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: none;
  max-width: 154px;
  min-width: 126px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--teal-light);
  color: #314348;
  box-shadow: 0 10px 18px rgba(88, 153, 142, 0.24);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding:
    calc(var(--header-height) + 82px)
    var(--side-padding)
    96px;
  background: #eef0f4;
  color: var(--blue);
}

.hero-video,
.hero-shade,
.hero-grid,
.hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 2;
  object-fit: cover;
  object-position: center center;
  opacity: 0.96;
  filter: brightness(1.02) saturate(0.96) contrast(1.02);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(238, 240, 244, 0.52) 0%,
      rgba(238, 240, 244, 0.18) 48%,
      rgba(238, 240, 244, 0.02) 100%
    ),
    linear-gradient(
      180deg,
      rgba(238, 240, 244, 0.08) 0%,
      rgba(246, 247, 249, 0.1) 64%,
      rgba(246, 247, 249, 0.5) 100%
    );
}

.hero-grid {
  display: none;
}

.hero::after {
  content: "";
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(246, 247, 249, 0.98) 0%,
      rgba(246, 247, 249, 0.97) 28%,
      rgba(246, 247, 249, 0.88) 48%,
      rgba(246, 247, 249, 0.42) 68%,
      rgba(246, 247, 249, 0.08) 86%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(246, 247, 249, 0.42) 0%,
      rgba(246, 247, 249, 0.2) 56%,
      rgba(20, 24, 30, 0.22) 100%
    );
  -webkit-backdrop-filter: blur(3px) saturate(0.92);
  backdrop-filter: blur(3px) saturate(0.92);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(100%, 740px);
  min-width: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: #3f434a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.next-section {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94),
    0 0 8px rgba(255, 255, 255, 0.86);
}

.eyebrow--dark {
  color: var(--blue);
}

.hero h1 {
  margin-bottom: 22px;
  max-width: 100%;
  color: var(--blue);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero h1 > span {
  display: block;
}

.hero-title-main {
  max-width: 11.5em;
}

.hero-title-accent {
  max-width: 11.8em;
  color: var(--teal);
}

.hero-copy {
  max-width: min(100%, 18em);
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 420px) {
  .site-header {
    gap: 8px;
    padding-left: 20px;
    padding-right: 92px;
  }

  .wordmark img {
    width: 118px;
  }

  .header-cta {
    right: 8px;
    max-width: none;
    min-width: 76px;
    padding-inline: 14px;
    font-size: 12px;
  }
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 0;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible,
.header-cta:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 3px;
}

.button--primary {
  flex: 1;
  background: var(--teal-light);
  color: #314348;
  box-shadow: 0 14px 28px rgba(88, 153, 142, 0.24);
}

.button--primary:hover {
  background: var(--white);
}

.availability {
  min-width: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 14px;
  border-left: 1px solid rgba(81, 99, 130, 0.22);
  color: var(--blue);
}

.availability strong {
  font-size: 22px;
  line-height: 1;
}

.availability span {
  margin-top: 5px;
  color: rgba(63, 67, 74, 0.68);
  font-size: 10px;
  line-height: 1.2;
}

.hero-rail {
  display: none;
}

.next-section {
  position: absolute;
  z-index: 5;
  right: var(--side-padding);
  bottom: 25px;
  left: var(--side-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(81, 99, 130, 0.22);
  color: rgba(63, 67, 74, 0.7);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-grid {
  position: relative;
  padding: 88px var(--side-padding);
}

.section-index {
  margin-bottom: 52px;
  color: rgba(17, 23, 25, 0.46);
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.manifesto {
  overflow: hidden;
  background: #f7f8fa;
}

.manifesto::before,
.outcomes::before,
.speaker::before,
.program::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 25% 100%, 100% 88px;
}

.manifesto > *,
.outcomes > *,
.speaker > *,
.program > * {
  position: relative;
}

.manifesto h2,
.outcomes h2,
.speaker h2,
.program h2,
.registration h2,
.event-heading h2,
.shift h2 {
  font-size: 42px;
}

.manifesto h2 {
  max-width: 560px;
  margin-bottom: 40px;
}

.manifesto h2 span {
  display: block;
  color: var(--teal);
}

.manifesto-copy {
  max-width: 640px;
}

.manifesto-copy p:last-child {
  margin-bottom: 0;
  color: #465152;
  line-height: 1.7;
}

.large-copy {
  margin-bottom: 24px;
  font-size: 22px;
  line-height: 1.3;
}

.large-copy strong {
  display: block;
  color: var(--blue);
}

.shift {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 72px var(--side-padding);
  background: #eef0f4;
  color: var(--blue);
}

.shift-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.portal {
  position: absolute;
  top: 12%;
  left: 50%;
  aspect-ratio: 1;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid rgba(81, 99, 130, 0.22);
}

.portal--outer {
  width: 480px;
}

.portal--middle {
  top: 17%;
  width: 360px;
  border-color: rgba(123, 197, 186, 0.42);
  animation: portal-pulse 5s ease-in-out infinite;
}

.portal--inner {
  top: 22%;
  width: 240px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--teal-light);
}

.portal--inner img {
  width: 74%;
  height: auto;
  transform: rotate(-45deg);
}

.portal-code {
  position: absolute;
  color: rgba(81, 99, 130, 0.36);
  font-family: inherit;
  font-size: 9px;
}

.portal-code--one {
  top: 10%;
  left: var(--side-padding);
}

.portal-code--two {
  top: 47%;
  right: var(--side-padding);
}

@keyframes portal-pulse {
  0%,
  100% {
    opacity: 0.48;
    transform: translateX(-50%) rotate(45deg) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) scale(1);
  }
}

.shift-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.shift h2 {
  margin-bottom: 26px;
}

.shift h2 span {
  display: block;
  color: var(--teal-light);
}

.shift-statement {
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
}

.shift-copy > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: #626a70;
  line-height: 1.7;
}

.outcomes {
  background: var(--white);
}

.outcomes-heading {
  margin-bottom: 52px;
}

.outcomes-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.outcomes-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px 14px;
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
}

.outcome-number {
  grid-row: 1 / span 2;
  color: var(--teal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.outcomes-list h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.outcomes-list p {
  margin-bottom: 0;
  color: #4c5758;
  line-height: 1.65;
}

.event-facts {
  background: #e8ebf1;
  color: var(--blue);
}

.event-facts-inner {
  padding: 88px var(--side-padding) 70px;
}

.event-heading {
  margin-bottom: 56px;
}

.event-heading h2 {
  margin-bottom: 24px;
}

.event-heading > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: #626a70;
}

.fact-list {
  margin: 0;
  border-top: 1px solid rgba(81, 99, 130, 0.2);
}

.fact-list > div {
  display: grid;
  grid-template-columns: minmax(92px, 0.42fr) 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(81, 99, 130, 0.2);
}

.fact-list dt {
  color: var(--teal);
  font-family: inherit;
  font-size: 10px;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  font-size: 16px;
}

.map-link {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-padding);
  background: var(--teal-light);
  color: #314348;
  font-weight: 700;
}

.map-link:hover {
  background: var(--white);
}

.speaker {
  overflow: hidden;
  background: #eef0f4;
  color: var(--blue);
}

.speaker::after {
  content: "";
  position: absolute;
  inset: auto -18% -18% 30%;
  height: 360px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 197, 186, 0.2), transparent 62%),
    linear-gradient(90deg, rgba(81, 99, 130, 0.08), transparent 70%);
  transform: rotate(-6deg);
}

.speaker-heading {
  margin-bottom: 34px;
}

.speaker h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--blue);
}

.speaker-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  background: rgba(244, 246, 249, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 70px rgba(81, 99, 130, 0.18);
  backdrop-filter: blur(18px);
}

.speaker-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
}

.speaker-card figcaption {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-top: 1px solid rgba(81, 99, 130, 0.14);
  background: rgba(244, 246, 249, 0.82);
}

.speaker-card span {
  color: #626a70;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.speaker-card strong {
  color: var(--teal);
  font-size: 32px;
  line-height: 1;
}

.program {
  background: #f7f8fa;
}

.program-heading {
  margin-bottom: 60px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 58px 18px 1fr;
  gap: 12px;
  min-height: 148px;
}

.timeline time {
  padding-top: 1px;
  color: var(--blue);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
}

.timeline-line {
  position: relative;
  display: block;
}

.timeline-line::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--blue);
  background: #f7f8fa;
}

.timeline-line::after {
  content: "";
  position: absolute;
  top: 17px;
  bottom: 0;
  left: 9px;
  width: 1px;
  background: var(--blue);
}

.timeline li:last-child .timeline-line::after {
  display: none;
}

.timeline h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.timeline p {
  margin-bottom: 0;
  color: #465153;
}

.registration {
  position: relative;
  display: grid;
  gap: 54px;
  padding: 88px var(--side-padding);
  overflow: hidden;
  background: #f7f8fa;
  color: var(--blue);
}

.registration::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.72;
  background-image:
    url("data:image/svg+xml,%3Csvg width='520' height='360' viewBox='0 0 520 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23dfe3ea' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' opacity='.72'%3E%3Cpath d='M22 264c102 54 208 59 318 14'/%3E%3Cpath d='M52 232c62 56 140 72 234 50'/%3E%3Cpath d='M426 22l14 35 36 7-28 23 5 37-31-20-34 16 10-36-25-27 37-2z'/%3E%3Cpath d='M102 52l14 7 15-7-6 16 6 15-15-7-14 7 5-15z'/%3E%3Ccircle cx='492' cy='98' r='11'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 88% 14%, rgba(223, 227, 234, 0.82) 0 8px, transparent 9px);
  background-position:
    right -140px top 20px,
    0 0;
  background-repeat: no-repeat;
}

.registration > * {
  position: relative;
  min-width: 0;
}

.registration h2 {
  font-size: 36px;
}

.registration-intro > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 34px;
  color: #5e666d;
  line-height: 1.7;
}

.seat-meter {
  max-width: 540px;
}

.seat-meter-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
}

.seat-meter-track {
  width: 100%;
  height: 6px;
  overflow: hidden;
  background: #e2e5ea;
}

.seat-meter-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--teal-light);
  transform-origin: left center;
  transition: transform 500ms ease;
}

.form-frame {
  position: relative;
  padding: 28px 20px;
  border: 1px solid rgba(213, 217, 225, 0.96);
  border-radius: 24px;
  background: rgba(244, 246, 249, 0.78);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 54px rgba(81, 99, 130, 0.14);
  backdrop-filter: blur(18px);
}

.registration-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field {
  margin-bottom: 24px;
}

.field label,
.choice-field legend {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.field input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid #dfe2e8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field input:focus {
  border-color: var(--teal);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 3px rgba(123, 197, 186, 0.22);
}

.field input::placeholder {
  color: #909797;
}

.choice-field {
  margin-bottom: 25px !important;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 56px;
  border: 0;
  border-radius: 0;
}

.segmented-control label {
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.segmented-control label + label {
  border-left: 0;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
}

.segmented-control span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid #dfe2e8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  font-weight: 800;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.segmented-control input:checked + span {
  border-color: var(--teal-light);
  background: var(--teal-light);
  color: #314348;
}

.segmented-control input:focus-visible + span {
  outline: 2px solid var(--teal);
  outline-offset: -3px;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 24px;
  color: #4b5556;
  font-size: 12px;
  line-height: 1.55;
  cursor: pointer;
}

.consent input {
  position: absolute;
  opacity: 0;
}

.consent-box {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid #717a7a;
  background: var(--white);
}

.consent input:checked + .consent-box {
  background: var(--teal);
  border-color: var(--teal);
}

.consent input:checked + .consent-box::after {
  content: "";
  width: 9px;
  height: 5px;
  transform: translateY(-1px) rotate(-45deg);
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.consent input:focus-visible + .consent-box {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 0;
  margin-bottom: 0;
  color: var(--error);
  font-size: 13px;
  line-height: 1.45;
}

.form-message:not(:empty) {
  min-height: 20px;
  margin-bottom: 14px;
}

.button--submit {
  width: 100%;
  min-height: 64px;
  background: var(--teal-light);
  color: #314348;
  box-shadow: 0 14px 28px rgba(88, 153, 142, 0.22);
}

.button--submit:hover {
  background: #8ad0c7;
}

.button--submit:disabled {
  background: #8c9292;
  cursor: wait;
}

.form-note {
  margin: 13px 0 0;
  color: #737b7b;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.success-panel {
  text-align: center;
}

.registration-form[hidden],
.success-panel[hidden],
.waitlist-form[hidden],
.waitlist-success[hidden] {
  display: none;
}

.success-panel .eyebrow {
  color: var(--teal);
}

.success-panel h3 {
  margin-bottom: 22px;
  font-size: 32px;
}

.success-panel img {
  width: min(100%, 260px);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border: 10px solid var(--white);
}

.success-ticket-id {
  margin-bottom: 12px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 19px;
  font-weight: 700;
}

.success-panel > p:not(.eyebrow, .success-ticket-id) {
  margin-bottom: 24px;
  color: #586263;
  font-size: 14px;
}

.waitlist-copy {
  margin-bottom: 28px;
}

.waitlist-copy .eyebrow,
.waitlist-success .eyebrow {
  color: var(--teal);
}

.waitlist-copy h3,
.waitlist-success h3 {
  margin-bottom: 16px;
  font-size: 31px;
}

.waitlist-copy p:not(.eyebrow),
.waitlist-success p:not(.eyebrow) {
  margin-bottom: 0;
  color: #586263;
  font-size: 14px;
  line-height: 1.65;
}

.waitlist-success {
  text-align: center;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 54px var(--side-padding) max(40px, env(safe-area-inset-bottom));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.wordmark--footer {
  opacity: 0.98;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

.ticket-body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--blue);
}

.ticket-shell {
  position: relative;
  width: min(100%, 560px);
  padding: 38px 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.ticket-shell::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 52px;
  height: 52px;
  border-right: 5px solid var(--teal-light);
  border-bottom: 5px solid var(--teal-light);
}

.ticket-status-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 27px;
  font-weight: 700;
}

.ticket-shell--invalid .ticket-status-mark {
  background: var(--error);
}

.ticket-shell--used .ticket-status-mark {
  background: var(--error);
}

.ticket-shell--used::after {
  border-color: var(--error);
}

.ticket-shell h1 {
  margin-bottom: 8px;
  font-size: 34px;
}

.ticket-organization {
  margin-bottom: 36px;
  color: #626c6d;
}

.ticket-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.ticket-facts > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.ticket-facts dt {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.ticket-facts dd {
  margin: 0;
}

.ticket-note {
  margin: 24px 0 0;
  color: #727b7c;
  font-size: 11px;
  text-transform: uppercase;
}

.checkin-body {
  min-height: 100svh;
  background: var(--ink);
  color: var(--white);
}

.checkin-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:
    max(12px, env(safe-area-inset-top))
    var(--side-padding)
    12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.checkin-mode {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.checkin-main {
  width: min(100%, 620px);
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: 42px var(--side-padding) max(42px, env(safe-area-inset-bottom));
}

.checkin-login,
.checkin-workspace {
  position: relative;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.checkin-login {
  margin-top: 10vh;
}

.checkin-login h1,
.checkin-title h1 {
  margin-bottom: 34px;
  font-size: 34px;
}

.checkin-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.icon-button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #7a8383;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.icon-button svg,
.checkin-action svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.checkin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.checkin-action {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #7a8383;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.checkin-action:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.checkin-action input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.camera-frame {
  margin-bottom: 22px;
  padding: 10px;
  border: 1px solid #7a8383;
  background: var(--white);
}

#qr-reader {
  width: 100%;
  overflow: hidden;
}

#qr-reader video {
  width: 100% !important;
  aspect-ratio: 1;
  object-fit: cover;
}

.camera-stop {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  border: 1px solid #7a8383;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.scanner-message {
  min-height: 0;
  margin: 0;
  font-size: 13px;
}

.scanner-message:not(:empty) {
  min-height: 20px;
  margin-bottom: 18px;
}

.scanner-message[data-type="error"] {
  color: var(--error);
}

.manual-checkin {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.checkin-result {
  padding-top: 4px;
}

.checkin-result-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
}

.checkin-result[data-status="used"] .checkin-result-mark {
  background: var(--error);
}

.checkin-result[data-status="used"] [data-result-status] {
  color: var(--error);
}

.checkin-result h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.checkin-result-org {
  margin-bottom: 28px;
  color: #5e6869;
}

.checkin-result-facts {
  margin: 0 0 26px;
  border-top: 1px solid var(--line);
}

.checkin-result-facts > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.checkin-result-facts dt {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.checkin-result-facts dd {
  margin: 0;
}

@media (min-width: 700px) {
  :root {
    --side-padding: 40px;
    --header-height: 62px;
  }

  .site-header {
    gap: 24px;
  }

  .desktop-nav {
    display: flex;
    gap: 26px;
    font-size: 13px;
  }

  .desktop-nav a {
    color: rgba(81, 99, 130, 0.78);
    font-weight: 800;
  }

  .desktop-nav a:hover {
    color: var(--teal);
  }

  .header-cta {
    display: inline-flex;
    position: absolute;
    right: 12px;
    justify-self: end;
    padding-inline: 18px;
  }

  .hero {
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-title-main,
  .hero-title-accent {
    max-width: 11.8em;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button--primary {
    flex: 0 0 250px;
  }

  .availability {
    min-width: 120px;
  }

  .section-grid {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .manifesto h2,
  .outcomes h2,
  .speaker h2,
  .program h2,
  .registration h2,
  .event-heading h2,
  .shift h2 {
    font-size: 60px;
  }

  .manifesto-copy {
    margin-left: 30%;
  }

  .large-copy {
    font-size: 28px;
  }

  .shift {
    min-height: 900px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .portal--outer {
    width: 690px;
  }

  .portal--middle {
    width: 510px;
  }

  .portal--inner {
    width: 330px;
  }

  .shift-copy {
    margin-left: 32%;
  }

  .outcomes-list li {
    grid-template-columns: 50px minmax(190px, 0.6fr) 1fr;
    align-items: start;
    gap: 26px;
    padding: 32px 0;
  }

  .outcome-number {
    grid-row: auto;
  }

  .outcomes-list h3 {
    font-size: 24px;
  }

  .event-facts-inner {
    padding: 120px var(--side-padding) 90px;
  }

  .fact-list > div {
    grid-template-columns: 180px 1fr;
  }

  .map-link {
    min-height: 84px;
  }

  .speaker-card {
    max-width: 520px;
  }

  .program-heading {
    max-width: 720px;
  }

  .timeline {
    margin-left: 18%;
  }

  .timeline li {
    grid-template-columns: 86px 20px 1fr;
  }

  .registration {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .registration h2 {
    font-size: 48px;
  }

  .form-frame {
    padding: 42px;
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }
}

@media (min-width: 1060px) {
  :root {
    --side-padding: 64px;
  }

  .site-header {
    padding: 0 12px 0 24px;
  }

  .hero {
    min-height: 850px;
    padding-left: 12%;
  }

  .hero-content {
    width: min(66%, 820px);
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-title-main,
  .hero-title-accent {
    max-width: 11em;
  }

  .hero-video {
    object-position: center 46%;
  }

  .hero-rail {
    position: absolute;
    z-index: 5;
    top: 26%;
    right: var(--side-padding);
    bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(81, 99, 130, 0.48);
    font-family: inherit;
    font-size: 9px;
    font-weight: 800;
    writing-mode: vertical-rl;
  }

  .hero-rail-line {
    width: 1px;
    flex: 1;
    background: rgba(81, 99, 130, 0.26);
  }

  .section-grid {
    display: grid;
    grid-template-columns: minmax(130px, 0.28fr) 1fr 1fr;
    column-gap: 56px;
  }

  .section-index {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .manifesto-lead {
    grid-column: 2;
  }

  .manifesto-copy {
    grid-column: 3;
    margin: 88px 0 0;
  }

  .manifesto h2,
  .outcomes h2,
  .speaker h2,
  .program h2,
  .registration h2,
  .event-heading h2,
  .shift h2 {
    font-size: 68px;
  }

  .shift {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-left: 55%;
  }

  .shift-visual {
    right: 46%;
  }

  .portal {
    top: 50%;
    left: 50%;
  }

  .portal--outer {
    width: 740px;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .portal--middle {
    top: 50%;
    width: 550px;
    animation: none;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .portal--inner {
    top: 50%;
    width: 350px;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .shift-copy {
    grid-column: 1 / -1;
    margin: 0;
  }

  .shift h2 {
    font-size: 52px;
  }

  .outcomes-heading,
  .outcomes-list {
    grid-column: 2 / -1;
  }

  .outcomes-heading {
    margin-bottom: 50px;
  }

  .event-facts-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
  }

  .event-heading {
    margin: 0;
  }

  .speaker-heading {
    grid-column: 2;
    margin: 0;
  }

  .speaker-card {
    grid-column: 3;
    max-width: 480px;
    justify-self: end;
  }

  .program-heading {
    grid-column: 2;
  }

  .timeline {
    grid-column: 3;
    margin: 20px 0 0;
  }

  .registration {
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1fr);
    align-items: start;
    gap: 9%;
    padding-inline: max(var(--side-padding), 8%);
  }

  .registration h2 {
    font-size: 54px;
  }

  .registration-intro {
    position: sticky;
    top: 130px;
  }
}

@media (min-width: 1440px) {
  :root {
    --side-padding: 88px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .manifesto h2,
  .outcomes h2,
  .speaker h2,
  .program h2,
  .registration h2,
  .event-heading h2,
  .shift h2 {
    font-size: 76px;
  }

  .registration h2 {
    font-size: 56px;
  }

  .shift h2 {
    font-size: 60px;
  }
}

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

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

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