@font-face {
  font-family: Geist;
  src: url("assets/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Geist;
  src: url("assets/Geist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Geist;
  src: url("assets/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  text-wrap: balance;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
a,
button,
input {
  transition:
    background-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}
:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
}
::selection {
  background: var(--color-indigo-100);
}
.container {
  width: min(100% - 64px, 1280px);
  margin-inline: auto;
}
.site-header {
  background: var(--background);
  border-bottom: 1px solid var(--border);
}
.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: var(--text-h2);
  font-weight: 600;
  letter-spacing: var(--text-h2--letter-spacing);
  min-height: 44px;
}
.launch-label,
.pill {
  font-size: var(--text-body-xs);
  font-weight: 500;
  letter-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  color: var(--foreground-muted);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a,
.footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--text-body-sm);
  color: var(--foreground-muted);
}
.nav-links a:hover,
.footer nav a:hover {
  color: var(--foreground);
}
.nav-links a[aria-current="page"],
.footer nav a[aria-current="page"] {
  color: var(--foreground);
  font-weight: 500;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: var(--text-body);
  line-height: 1.4;
}
.button svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}
.button:hover svg {
  transform: translateX(4px);
}
.hero-cta {
  min-width: 350px;
  min-height: 50px;
  padding: 10px 30px;
  border-radius: var(--radius-lg);
  font-size: var(--text-body-lg);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.hero-cta svg {
  width: 20px;
  height: 20px;
}
.primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.primary:hover {
  background: var(--primary-hover);
}
.primary:active {
  background: var(--primary-active);
}
.secondary {
  border-color: var(--border);
  background: var(--surface);
  font-size: var(--text-body-sm);
}
.secondary:hover {
  background: var(--surface-sunken);
  border-color: var(--border-strong);
}
.secondary:active,
.light:active {
  background: var(--color-neutral-200);
}
.button:disabled {
  cursor: wait;
  background: var(--color-neutral-200);
  color: var(--foreground-muted);
}
.hero {
  overflow: hidden;
  background: radial-gradient(
    ellipse 640px 420px at 50% 0%,
    var(--color-indigo-50),
    transparent 70%
  );
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
  gap: 24px;
}
.eyebrow {
  font-size: var(--text-overline);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: var(--text-overline--letter-spacing);
  text-transform: uppercase;
  color: var(--foreground-muted);
}
h1 {
  max-width: 22ch;
  font-size: clamp(1.875rem, 7vw, var(--text-display-xl));
  line-height: var(--text-display-xl--line-height);
  letter-spacing: var(--text-display-xl--letter-spacing);
}
.lede {
  font-size: var(--text-body-lg);
  line-height: 1.62;
  color: var(--foreground-muted);
  max-width: 52ch;
}
.small-note {
  font-size: var(--text-body-xs);
  color: var(--foreground-muted);
}
.hero-copy .small-note {
  margin-top: -12px;
}
.fan {
  --fan-u: clamp(0.72rem, 0.55vw + 0.5rem, 1rem);
  height: calc(19 * var(--fan-u));
  position: relative;
  overflow: clip;
}
.fan-card {
  position: absolute;
  bottom: calc(0.4 * var(--fan-u));
  left: 50%;
  width: calc(var(--w) * var(--fan-u));
  aspect-ratio: var(--aspect);
  transform: translateX(calc(-50% + var(--x) * var(--fan-u)))
    rotate(var(--angle));
  z-index: var(--z);
  border: 8px solid var(--color-neutral-0);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-e2);
  background: var(--color-neutral-100);
}
.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fan-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 12px 12px;
  color: var(--color-neutral-0);
  font-size: var(--text-body-sm);
  font-weight: 500;
  background: linear-gradient(
    transparent,
    color-mix(in oklch, var(--color-neutral-950) 85%, transparent)
  );
}
.fan-card.label-right figcaption {
  text-align: right;
}
@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fan-enter {
  from {
    translate: 0 115%;
  }
  to {
    translate: 0 0;
  }
}
.hero-copy > * {
  animation: page-rise var(--duration-slower) var(--ease-out) both;
  animation-delay: calc(var(--duration-stagger) * var(--hero-order, 0));
}
.hero-copy > :nth-child(2) {
  --hero-order: 1;
}
.hero-copy > :nth-child(3) {
  --hero-order: 2;
}
.fan-card {
  animation: fan-enter var(--duration-slower) var(--ease-out) both;
  animation-delay: calc(var(--duration-stagger) * var(--fan-order, 0));
}
.fan-card:nth-child(1) {
  --fan-order: 0;
}
.fan-card:nth-child(2) {
  --fan-order: 1;
}
.fan-card:nth-child(4) {
  --fan-order: 2;
}
.fan-card:nth-child(5) {
  --fan-order: 3;
}
.fan-card:nth-child(3) {
  --fan-order: 4;
}
.reveal {
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
  transition-delay: calc(var(--duration-stagger) * var(--reveal-order, 0));
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.section {
  padding-block: 80px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
.section-heading h2 {
  font-size: var(--text-h2);
  line-height: 1.25;
  letter-spacing: var(--text-h2--letter-spacing);
}
.section-heading p:not(.eyebrow) {
  color: var(--foreground-muted);
  margin-top: 12px;
  max-width: 68ch;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
.section-note {
  color: var(--foreground-muted);
  font-size: var(--text-body-xs);
  white-space: nowrap;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.category {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius-lg);
  font-size: var(--text-body-sm);
  font-weight: 500;
  line-height: 1.5;
  background: var(--surface);
}
.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  height: 44px;
  border-radius: var(--radius-full);
}
.category-icon.info {
  color: var(--color-info);
  background: var(--color-info-bg);
}
.category-icon.success {
  color: var(--color-success);
  background: var(--color-success-bg);
}
.category-icon.danger {
  color: var(--color-danger);
  background: var(--color-danger-bg);
}
.category-icon.warning {
  color: var(--color-warning);
  background: var(--color-warning-bg);
}
.discovery-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 80px;
  align-items: center;
  padding-block: 96px;
}
.story-visual {
  min-width: 0;
}
.story-visual picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-2xl);
  background: var(--surface-sunken);
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy .eyebrow {
  margin-bottom: 20px;
}
.story-copy h2 {
  max-width: 20ch;
}
.story-copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin-top: 20px;
  color: var(--foreground-muted);
}
.story-copy > p:nth-of-type(2) {
  color: var(--foreground);
}
.how-section {
  background: var(--surface-sunken);
  border-block: 1px solid var(--border);
}
.how-content {
  padding-block: 96px;
}
.how-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.how-heading .eyebrow {
  margin-bottom: 16px;
}
.how-heading > p:last-child {
  margin-top: 12px;
  color: var(--foreground-muted);
}
.section-display,
.section-heading .section-display {
  font-size: clamp(var(--text-h2), 3vw, var(--text-display-md));
  line-height: 1.12;
  letter-spacing: var(--text-display-md--letter-spacing);
}
.capability-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 80px 96px;
  margin-top: 64px;
}
.capability-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 224px;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 32px;
  background: var(--surface);
}
.capability-discover {
  grid-column: 1;
  grid-row: 1;
}
.capability-register {
  grid-column: 2;
  grid-row: 1;
}
.capability-organise {
  grid-column: 1 / 3;
  grid-row: 2;
  width: calc(50% + 48px);
  min-height: 0;
  margin-inline: auto;
}
.capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--surface-sunken);
  color: var(--foreground-muted);
}
.capability-icon svg {
  width: 24px;
  height: 24px;
}
.step-number {
  display: block;
  margin-bottom: 8px;
  color: var(--foreground-muted);
  font-size: var(--text-caption);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.capability-card h3 {
  font-size: var(--text-h3);
  line-height: 1.35;
  letter-spacing: var(--text-h3--letter-spacing);
  margin-bottom: 12px;
}
.capability-card p {
  color: var(--foreground-muted);
  max-width: 58ch;
}
.flow-connectors {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.flow-connectors path {
  fill: none;
  stroke: var(--border-strong);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 5 8;
}
.org-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 40px 24px;
  align-items: center;
  margin-top: 48px;
}
.organisation {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 96px;
  border: 0;
  padding: 0;
  border-radius: 0;
}
.organisation img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border-radius: 0;
}
.organisation-text span {
  max-width: 14ch;
  text-align: center;
  font-size: var(--text-body-sm);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: var(--text-body-sm--letter-spacing);
}
.organisation-heading {
  justify-content: center;
  margin-bottom: 0;
  text-align: center;
}
.organisation-heading p:not(.eyebrow) {
  margin-inline: auto;
}
.organisation-wall-section .org-disclosure {
  max-width: 68ch;
  margin: 40px auto 0;
  text-align: center;
}
.organisation h3 {
  font-size: var(--text-body-sm);
  font-weight: 500;
  line-height: 1.55;
}
.organisation p,
.org-disclosure {
  font-size: var(--text-body-xs);
  color: var(--foreground-muted);
}
.org-disclosure {
  margin-top: 20px;
}
.organiser-band {
  background: var(--color-neutral-950);
  color: var(--color-neutral-0);
  padding: 48px;
  border-radius: var(--radius-2xl);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}
.organiser-band .eyebrow {
  color: var(--color-neutral-300);
  margin-bottom: 20px;
}
.organiser-band h2 {
  font-size: clamp(var(--text-h2), 3vw, var(--text-display-md));
  line-height: 1.12;
  letter-spacing: var(--text-display-md--letter-spacing);
}
.organiser-band p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--color-neutral-300);
  max-width: 48ch;
}
.light {
  background: var(--color-neutral-0);
  color: var(--foreground);
  margin-top: 32px;
}
.light:hover {
  background: var(--color-neutral-200);
}
.organiser-band .light {
  margin-top: 0;
  flex-shrink: 0;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 96px;
}
.about-section .eyebrow {
  margin-bottom: 24px;
}
.about-copy {
  padding-top: 32px;
}
.about-copy p {
  color: var(--foreground-muted);
  max-width: 52ch;
  margin-bottom: 20px;
}
.about-copy p:first-child {
  color: var(--foreground);
  font-size: var(--text-body-lg);
}
.about-copy .origin-note {
  font-size: var(--text-body-sm);
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin: 32px 0 0;
}
.name-note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.name-note > span {
  font-size: var(--text-h2);
  font-weight: 600;
  letter-spacing: var(--text-h2--letter-spacing);
}
.name-note p {
  font-size: var(--text-body-xs);
  color: var(--foreground-muted);
  max-width: 24ch;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}
.about-hero {
  padding-top: 96px;
  padding-bottom: 48px;
}
.about-hero .eyebrow {
  margin-bottom: 24px;
}
.about-hero h1 {
  max-width: 18ch;
  font-size: clamp(var(--text-display-md), 5vw, var(--text-display-xl));
}
.about-hero > p:last-child {
  max-width: 60ch;
  margin-top: 32px;
  color: var(--foreground-muted);
  font-size: var(--text-body-lg);
}
.about-photo {
  position: relative;
}
.about-photo picture {
  display: block;
  width: 100%;
}
.about-photo img {
  width: 100%;
  height: clamp(420px, 55vw, 680px);
  object-fit: cover;
  border-radius: var(--radius-2xl);
}
.about-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 28ch;
  padding: 10px 14px;
  color: var(--color-neutral-0);
  background: color-mix(in oklab, var(--color-neutral-950) 80%, transparent);
  border-radius: var(--radius-md);
  font-size: var(--text-body-xs);
  line-height: var(--text-body-xs--line-height);
}
.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-block: 80px;
}
.about-story-card {
  padding: 48px;
  background: var(--surface-sunken);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
}
.about-story-card .eyebrow {
  margin-bottom: 20px;
}
.about-story-card h2 {
  max-width: 18ch;
  font-size: var(--text-h2);
  line-height: var(--text-h2--line-height);
  letter-spacing: var(--text-h2--letter-spacing);
}
.about-story-card > p:not(.eyebrow) {
  max-width: 52ch;
  margin-top: 20px;
  color: var(--foreground-muted);
}
.about-story-card .card-emphasis {
  padding-top: 20px;
  color: var(--foreground);
  border-top: 1px solid var(--border);
  font-weight: 500;
}
.about-name-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  padding: 64px;
  color: var(--primary-subtle-fg);
  background: var(--primary-subtle);
  border: 1px solid var(--color-indigo-100);
  border-radius: var(--radius-2xl);
}
.about-name-band .eyebrow {
  margin-bottom: 20px;
  color: var(--color-indigo-700);
}
.about-name-band h2 {
  font-size: var(--text-display-md);
  line-height: var(--text-display-md--line-height);
  letter-spacing: var(--text-display-md--letter-spacing);
}
.about-name-band > div:last-child {
  max-width: 56ch;
}
.about-name-band > div:last-child p + p {
  margin-top: 20px;
}
.about-closing {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 32px;
  margin-top: 80px;
  margin-bottom: 96px;
  padding: 56px;
  text-align: center;
  color: var(--color-neutral-0);
  background: var(--color-neutral-950);
  border-radius: var(--radius-2xl);
}
.about-closing .eyebrow {
  margin-bottom: 20px;
  color: var(--color-neutral-300);
}
.about-closing h2 {
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(var(--text-h2), 3vw, var(--text-display-md));
  line-height: 1.12;
  letter-spacing: var(--text-display-md--letter-spacing);
}
.about-closing p:not(.eyebrow) {
  max-width: 46ch;
  margin: 20px auto 0;
  color: var(--color-neutral-300);
}
.about-closing .light {
  width: min(100%, 320px);
  flex-shrink: 0;
  margin-top: 0;
}
.waitlist-dialog {
  width: min(calc(100% - 32px), 560px);
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  background: var(--surface);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-e3);
  animation: var(--animate-rise-in);
}
.team-dialog {
  width: min(calc(100% - 32px), 620px);
}
.waitlist-dialog::backdrop {
  background: color-mix(in oklab, var(--color-neutral-950) 72%, transparent);
  backdrop-filter: blur(4px);
  animation: var(--animate-fade-in);
}
.dialog-content {
  position: relative;
  padding: 40px;
}
.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--foreground-muted);
  background: var(--surface-sunken);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}
.dialog-close:hover {
  color: var(--foreground);
  background: var(--surface-hover);
}
.dialog-close svg {
  width: 18px;
  height: 18px;
}
.dialog-heading {
  padding-right: 48px;
  margin-bottom: 28px;
}
.dialog-heading .eyebrow {
  margin-bottom: 16px;
}
.dialog-heading h2 {
  font-size: var(--text-h2);
  line-height: var(--text-h2--line-height);
  letter-spacing: var(--text-h2--letter-spacing);
}
.dialog-heading > p:last-child {
  margin-top: 12px;
  color: var(--foreground-muted);
  max-width: 40ch;
}
form {
  max-width: none;
  width: 100%;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label,
legend {
  font-size: var(--text-body-sm);
  font-weight: 500;
}
.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--foreground);
}
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--foreground-muted) 50%),
    linear-gradient(135deg, var(--foreground-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}
.field input::placeholder {
  color: var(--foreground-muted);
}
.field input:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-e-focus);
}
.field input[aria-invalid="true"] {
  border-color: var(--color-danger);
}
.team-form-fields {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}
fieldset {
  margin: 20px 0 24px;
  padding: 0;
  border: 0;
}
legend {
  margin-bottom: 8px;
}
.interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.interest-options label {
  position: relative;
  display: flex;
  cursor: pointer;
}
.interest-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.interest-options span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: var(--text-body-sm);
  background: var(--surface);
  color: var(--foreground-muted);
}
.interest-options input:checked + span {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-subtle);
}
.interest-options input:focus-visible + span {
  outline: 2px solid var(--ring);
  outline-offset: 4px;
}
.interest-options label:hover span {
  border-color: var(--primary);
}
form .button {
  width: 100%;
}
.privacy-note {
  font-size: var(--text-body-xs);
  color: var(--foreground-muted);
  margin-top: 16px;
  max-width: 58ch;
}
.form-status {
  font-size: var(--text-body-sm);
  line-height: var(--text-body-sm--line-height);
  margin-top: 12px;
  color: var(--foreground-muted);
}
.form-status:empty {
  margin-top: 0;
}
.form-status.error {
  color: var(--color-danger);
}
.form-status.is-success {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: var(--foreground);
  background: var(--color-success-bg);
  border: 1px solid color-mix(in oklab, var(--color-success) 24%, transparent);
  border-radius: var(--radius-md);
  animation: var(--animate-rise-in);
}
.form-status.is-success::before {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--color-neutral-0);
  font-size: var(--text-body-sm);
  font-weight: 600;
  line-height: 1;
  background: var(--color-success);
  border-radius: var(--radius-full);
  content: "✓";
}
@media (prefers-reduced-motion: reduce) {
  .form-status.is-success {
    animation: none;
  }
}
.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding-block: 48px;
}
.footer p {
  font-size: var(--text-body-xs);
  color: var(--foreground-muted);
}
.footer nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.copyright {
  text-align: right;
  padding-top: 8px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  background: var(--background);
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
@media (min-width: 1440px) {
  .container {
    width: min(100% - 96px, 1280px);
  }
}
@media (max-width: 1100px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .org-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .section-note {
    display: none;
  }
  .capability-flow {
    column-gap: 48px;
  }
  .capability-organise {
    width: calc(50% + 24px);
  }
  .organiser-band {
    gap: 32px;
    padding: 40px;
  }
  .about-section {
    gap: 48px;
  }
  .about-story-card {
    padding: 40px;
  }
  .about-name-band {
    gap: 48px;
    padding: 48px;
  }
  .about-closing {
    padding: 48px;
  }
  .discovery-story {
    gap: 48px;
  }
  .footer nav {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
  }
  .nav {
    min-height: 72px;
    gap: 12px;
    flex-wrap: wrap;
    padding-block: 12px;
  }
  .wordmark {
    gap: 8px;
  }
  .nav .launch-label {
    display: none;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 32px;
    border-top: 1px solid var(--border);
    padding-top: 4px;
  }
  .nav-links a {
    font-size: var(--text-body-sm);
  }
  .nav-cta {
    min-height: 44px;
    padding: 8px 12px;
  }
  .hero-cta {
    width: min(100%, 320px);
    min-width: 0;
    min-height: 58px;
    padding: 16px 24px;
    font-size: var(--text-body);
  }
  .hero-copy {
    padding-top: 48px;
    padding-bottom: 32px;
    gap: 20px;
  }
  .hero-copy .eyebrow {
    font-size: var(--text-overline);
  }
  .hero-copy h1 {
    max-width: 22ch;
  }
  .lede {
    font-size: var(--text-body);
    max-width: 36ch;
  }
  .desktop-break {
    display: none;
  }
  .hero-copy .small-note {
    margin-top: -8px;
  }
  .fan {
    height: calc(18 * var(--fan-u));
  }
  .section {
    padding-block: 48px;
  }
  .section-heading {
    align-items: start;
    gap: 16px;
    margin-bottom: 24px;
  }
  .section-heading h2 {
    font-size: var(--text-h2);
  }
  .section-heading p:not(.eyebrow) {
    font-size: var(--text-body-sm);
  }
  .category-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, calc(100% - 48px));
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .category-grid::-webkit-scrollbar {
    display: none;
  }
  .category {
    scroll-snap-align: start;
    padding: 12px;
    gap: 8px;
    font-size: var(--text-body-xs);
  }
  .category-icon {
    flex-basis: 40px;
    height: 40px;
  }
  .category-icon svg {
    width: 20px;
    height: 20px;
  }
  .discovery-story {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 64px;
  }
  .story-copy h2 {
    max-width: 24ch;
  }
  .story-copy > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: var(--text-body-sm);
  }
  .how-content {
    padding-block: 64px;
  }
  .capability-flow {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 24px;
    margin-top: 40px;
    padding-left: 20px;
  }
  .capability-card,
  .capability-discover,
  .capability-register,
  .capability-organise {
    grid-column: 1;
    grid-row: auto;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 24px;
  }
  .capability-card {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .capability-icon {
    width: 40px;
    height: 40px;
  }
  .capability-icon svg {
    width: 20px;
    height: 20px;
  }
  .capability-card h3 {
    font-size: var(--text-h4);
  }
  .capability-card p {
    font-size: var(--text-body-sm);
    max-width: 52ch;
  }
  .flow-connectors {
    inset: 20px auto 20px 0;
    width: 1px;
    height: calc(100% - 40px);
    border-left: 1px dashed var(--border-strong);
  }
  .flow-connectors path {
    display: none;
  }
  .org-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 12px;
    margin-top: 28px;
  }
  .organisation {
    min-height: 56px;
  }
  .organisation img {
    height: 52px;
  }
  .organisation-text span {
    max-width: 10ch;
    font-size: var(--text-overline);
    line-height: 1.25;
  }
  .organisation-wall-section .org-disclosure {
    margin-top: 28px;
  }
  .organiser-band {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }
  .organiser-band h2 {
    font-size: var(--text-h2);
  }
  .organiser-band p:not(.eyebrow) {
    font-size: var(--text-body-sm);
  }
  .organiser-band .light {
    width: min(100%, 320px);
    justify-self: center;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 64px;
  }
  .about-hero {
    padding-top: 64px;
    padding-bottom: 32px;
  }
  .about-hero .eyebrow {
    margin-bottom: 16px;
  }
  .about-hero h1 {
    font-size: var(--text-display-md);
  }
  .about-hero > p:last-child {
    margin-top: 24px;
    font-size: var(--text-body);
  }
  .about-photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .about-photo figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 48px;
  }
  .about-story-card {
    padding: 28px 24px;
  }
  .about-story-card h2 {
    font-size: var(--text-h3);
  }
  .about-story-card > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: var(--text-body-sm);
  }
  .about-story-card .card-emphasis {
    padding-top: 16px;
  }
  .about-name-band {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .about-name-band h2 {
    font-size: var(--text-h1);
  }
  .about-name-band > div:last-child {
    font-size: var(--text-body-sm);
  }
  .about-closing {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    margin-top: 48px;
    margin-bottom: 64px;
    padding: 32px 24px;
  }
  .about-closing h2 {
    font-size: var(--text-h2);
  }
  .about-closing p:not(.eyebrow) {
    font-size: var(--text-body-sm);
  }
  .about-closing .light {
    width: min(100%, 320px);
  }
  .about-copy {
    padding-top: 0;
  }
  .name-note {
    margin-top: 24px;
  }
  .about-copy p:first-child {
    font-size: var(--text-body);
  }
  .waitlist-dialog {
    inset: auto 0 0;
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 16px);
    margin: 0;
    border-bottom: 0;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    animation: var(--animate-sheet-up);
  }
  .dialog-content {
    padding: 40px 24px calc(24px + env(safe-area-inset-bottom));
  }
  .dialog-content::before {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 40px;
    height: 4px;
    border-radius: var(--radius-full);
    background: var(--border-strong);
    content: "";
    transform: translateX(-50%);
  }
  .dialog-close {
    top: 16px;
    right: 16px;
  }
  .dialog-heading {
    padding-right: 40px;
    margin-bottom: 24px;
  }
  .dialog-heading h2 {
    font-size: var(--text-h3);
  }
  .interest-options span {
    padding-inline: 12px;
  }
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-block: 32px;
    text-align: center;
  }
  .footer > div {
    display: grid;
    justify-items: center;
  }
  .footer nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
  }
  .copyright {
    max-width: 30ch;
    padding-top: 0;
    text-align: center;
  }
  .section-display {
    font-size: var(--text-h2);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .how-content {
    padding-block: 80px;
  }
  .capability-flow {
    gap: 48px 20px;
  }
  .capability-card {
    padding: 20px;
  }
  .capability-card p {
    font-size: var(--text-body-sm);
  }
  .capability-organise {
    width: calc(50% + 12px);
  }
  .organiser-band {
    padding: 32px;
    gap: 24px;
  }
}
