:root {
  --ink: #090b0b;
  --ink-soft: #0b1315;
  --ink-muted: #0d1716;
  --paper: #090b0b;
  --cream: #0d120c;
  --cream-deep: #182314;
  --white: #eef7f6;
  --accent-cyan: #59bed4;
  --accent-cyan-light: #96dae8;
  --accent-cyan-soft: #96dae8;
  --accent-cyan-deep: #13262d;
  --accent-cyan-rgb: 89 190 212;
  --accent-green: #79a83f;
  --accent-green-light: #b5d978;
  --accent-green-deep: #182314;
  --accent-green-rgb: 121 168 63;
  --red: var(--accent-green);
  --red-deep: #638d37;
  --red-dark: var(--accent-green-deep);
  --gold: var(--accent-cyan);
  --gold-soft: var(--accent-cyan-soft);
  --muted: #91a3a0;
  --line-dark: rgb(var(--accent-cyan-rgb) / 0.14);
  --line-light: rgb(var(--accent-cyan-rgb) / 0.2);
  --glass-band-bg: rgb(255 255 255 / 0.045);
  --glass-band-border: rgb(var(--accent-cyan-rgb) / 0.26);
  --glass-band-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    0 18px 55px rgb(0 0 0 / 0.18);
  --accent-gradient: linear-gradient(
    100deg,
    #75daf5 0%,
    var(--accent-cyan) 40%,
    var(--accent-green) 100%
  );
  --accent-gradient-hover: linear-gradient(
    100deg,
    var(--accent-cyan-light) 0%,
    var(--accent-green-light) 100%
  );
  --button-gradient: linear-gradient(
    105deg,
    #7bdcf0 0%,
    #66cadb 38%,
    #61bdb9 68%,
    #72b176 88%,
    #7fa84d 100%
  );
  --button-gradient-hover: linear-gradient(
    105deg,
    #91e4f3 0%,
    #72d2df 38%,
    #6ac7c0 68%,
    #82bd7f 88%,
    #91bb59 100%
  );
  --button-sheen: linear-gradient(
    to bottom,
    rgb(255 255 255 / 0.2),
    transparent 48%,
    rgb(5 16 14 / 0.1)
  );
  --accent-gradient-deep: linear-gradient(
    110deg,
    var(--accent-cyan-deep) 0%,
    var(--accent-green-deep) 100%
  );
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --font-sans: "Arial Nova", "Aptos", "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --container: 1180px;
  --section-space: clamp(5.5rem, 10vw, 9.5rem);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--ink);
  background: var(--red);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--white);
}

.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;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

.section--dark,
.section--ink {
  color: var(--white);
  background:
    radial-gradient(
      circle at 8% 14%,
      rgb(var(--accent-cyan-rgb) / 0.05),
      transparent 31rem
    ),
    var(--ink-soft);
}

.section--cream {
  color: var(--white);
  background:
    radial-gradient(
      circle at 92% 12%,
      rgb(var(--accent-green-rgb) / 0.05),
      transparent 34rem
    ),
    var(--cream);
}

.section--light {
  color: var(--white);
  background: var(--paper);
}

.announcement {
  position: relative;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.45rem 1rem;
  color: var(--ink);
  background: var(--accent-gradient);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.announcement__dot {
  width: 3px;
  height: 3px;
  margin-inline: 1rem;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.65;
}

.site-header {
  position: absolute;
  top: 2.25rem;
  right: 0;
  left: 0;
  z-index: 70;
  color: var(--white);
  transition:
    color 280ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  color: var(--white);
  background: rgb(9 11 11 / 0.94);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header.is-sticky .site-header__inner {
  min-height: 4.65rem;
  border-bottom-color: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
  position: absolute;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand__mark::before {
  inset: 0.35rem;
  opacity: 0.8;
}

.brand__mark::after {
  inset: 0.7rem;
  background: var(--accent-gradient);
  border-color: transparent;
}

.brand__mark span {
  inset: -0.25rem;
  border-color: rgb(var(--accent-green-rgb) / 0.35);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.brand__text small {
  margin-top: 0.32rem;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.23em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav > a:not(.button) {
  position: relative;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

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

.button--small {
  min-height: 2.75rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.68rem;
}

.button--large {
  min-height: 4.1rem;
  padding-inline: 1.75rem;
}

.button--primary {
  color: var(--ink);
  background:
    var(--button-sheen),
    var(--button-gradient);
  border-color: rgb(255 255 255 / 0.16);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.28),
    inset 0 -1px 0 rgb(5 16 14 / 0.16),
    0 12px 30px rgb(0 0 0 / 0.2),
    0 0 26px rgb(var(--accent-cyan-rgb) / 0.1);
}

.button--primary:hover {
  background:
    var(--button-sheen),
    var(--button-gradient-hover);
  border-color: rgb(255 255 255 / 0.24);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.34),
    inset 0 -1px 0 rgb(5 16 14 / 0.14),
    0 16px 36px rgb(0 0 0 / 0.24),
    0 0 32px rgb(var(--accent-cyan-rgb) / 0.15),
    0 0 24px rgb(var(--accent-green-rgb) / 0.1);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--ink);
  background: var(--accent-gradient);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button--outline-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--ticket {
  color: var(--white);
  background: transparent;
  border-color: rgba(247, 251, 248, 0.48);
}

.button--ticket:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: var(--red);
}

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

.section-index {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(3.25rem, 6vw, 5.5rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.section-heading h2 {
  max-width: 18ch;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p,
.section-heading--split > p {
  max-width: 36rem;
  color: inherit;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
  opacity: 0.72;
}

/* Hero */

.hero {
  position: relative;
  min-height: 60rem;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero .eyebrow {
  color: var(--accent-cyan-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.hero .eyebrow > span {
  background: var(--accent-cyan);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: 0;
  padding-top: clamp(2.25rem, 4vw, 3.75rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.75rem);
}

.hero__content {
  display: flex;
  width: 100%;
  max-width: 70rem;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero h1 {
  width: 100%;
  max-width: 70rem;
  margin-top: 1.15rem;
  font-size: clamp(2.75rem, 4.1vw, 4.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero h1 em {
  display: block;
  margin-top: 0.08em;
  color: var(--accent-cyan);
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  font-family: var(--font-display);
  font-weight: 500;
}

.hero__lead {
  max-width: 54rem;
  margin-top: 1.4rem;
  color: rgb(238 247 246 / 0.82);
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.55;
}

.event-meta {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  width: min(100%, 48rem);
  max-width: 48rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.event-meta__item {
  padding: 0.68rem 1rem;
}

.event-meta__item + .event-meta__item {
  border-left: 1px solid var(--line-light);
}

.event-meta__label {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--accent-cyan);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-meta strong {
  font-size: 0.875rem;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.55rem;
  margin-top: 1.1rem;
}

.hero .button--primary {
  min-height: 3.1rem;
  color: var(--ink);
  background: var(--accent-cyan);
  border-color: rgb(var(--accent-cyan-rgb) / 0.7);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.2),
    0 14px 32px rgb(0 0 0 / 0.24),
    0 0 24px rgb(var(--accent-cyan-rgb) / 0.14);
  font-size: 0.8rem;
  letter-spacing: 0.045em;
}

.hero .button--primary:hover {
  background: var(--accent-cyan-light);
  border-color: rgb(var(--accent-cyan-rgb) / 0.9);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.26),
    0 18px 38px rgb(0 0 0 / 0.28),
    0 0 30px rgb(var(--accent-cyan-rgb) / 0.2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.75rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero .text-link {
  color: var(--accent-cyan-light);
  border-bottom-color: rgb(var(--accent-cyan-rgb) / 0.42);
}

.text-link:hover {
  color: var(--white);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.6rem;
  margin-top: 1rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-list li {
  position: relative;
  padding-left: 1rem;
}

.trust-list li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  content: "";
  background: var(--accent-cyan);
  border-radius: 50%;
}

.hero-video {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 48rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 1.25rem;
}

.hero-video::before {
  position: absolute;
  inset: -1.35rem;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgb(var(--accent-cyan-rgb) / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--accent-cyan-rgb) / 0.08) 1px, transparent 1px);
  background-size: 1.6rem 1.6rem;
  border-radius: 1.8rem;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}

.hero-video__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-video__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgb(var(--accent-cyan-rgb) / 0.34);
  border-radius: 1.2rem;
  box-shadow:
    0 32px 90px rgb(0 0 0 / 0.52),
    0 0 52px rgb(var(--accent-cyan-rgb) / 0.08);
}

.hero-video__frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
}

.hero-video__footer {
  display: none;
}

.hero-video__footer span {
  position: relative;
  padding-left: 0.75rem;
}

.hero-video__footer span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  content: "";
  background: var(--accent-cyan);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-video__footer span:last-child::before {
  background: var(--accent-green);
}

.hero-arena {
  position: relative;
  width: min(100%, 33rem);
  aspect-ratio: 1;
  justify-self: center;
}

.hero-arena::before {
  position: absolute;
  inset: 8%;
  content: "";
  background: radial-gradient(circle, rgb(var(--accent-green-rgb) / 0.15), transparent 64%);
  border-radius: 50%;
}

.hero-arena::after {
  position: absolute;
  inset: 4%;
  content: "";
  background:
    linear-gradient(rgb(var(--accent-cyan-rgb) / 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--accent-cyan-rgb) / 0.1) 1px, transparent 1px);
  background-size: 2rem 2rem;
  border-radius: 50%;
  mask-image: radial-gradient(circle, black 0 69%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-arena__ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-arena__ring::before,
.hero-arena__ring::after {
  position: absolute;
  content: "";
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 22px rgb(var(--accent-green-rgb) / 0.72);
}

.hero-arena__ring--outer {
  inset: 3%;
  border-style: dashed;
  animation: slow-spin 32s linear infinite;
}

.hero-arena__ring--outer::before {
  top: 14%;
  right: 11%;
  width: 0.45rem;
  height: 0.45rem;
}

.hero-arena__ring--outer::after {
  bottom: 8%;
  left: 24%;
  width: 0.28rem;
  height: 0.28rem;
}

.hero-arena__ring--inner {
  inset: 23%;
  border-color: rgb(var(--accent-cyan-rgb) / 0.44);
  animation: slow-spin 22s linear reverse infinite;
}

.hero-arena__ring--inner::before {
  top: 8%;
  left: 17%;
  width: 0.32rem;
  height: 0.32rem;
  background: var(--gold);
}

.hero-arena__ring--inner::after {
  right: 4%;
  bottom: 30%;
  width: 0.22rem;
  height: 0.22rem;
  background: var(--gold);
}

.hero-arena__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: 12.5rem;
  aspect-ratio: 1.38;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      rgb(var(--accent-cyan-rgb) / 0.13),
      rgb(var(--accent-green-rgb) / 0.13)
    ),
    rgb(8 11 11 / 0.94);
  border: 1px solid rgb(var(--accent-cyan-rgb) / 0.66);
  border-radius: 1.15rem;
  box-shadow:
    0 0 0 0.45rem rgba(1, 3, 2, 0.78),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 20px 70px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%);
}

.hero-arena__center span {
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.26em;
}

.hero-arena__center strong {
  color: transparent;
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 2.2rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-arena__center small {
  margin-top: 0.4rem;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbit-photo {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  background: var(--ink-muted);
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.44);
}

.orbit-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgb(8 11 11 / 0.34), transparent 55%);
}

.orbit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.85) contrast(1.05);
}

.orbit-photo--one {
  top: 3%;
  left: 8%;
  width: 9.6rem;
  height: 9.6rem;
}

.orbit-photo--two {
  top: 9%;
  right: 5%;
  width: 7.5rem;
  height: 7.5rem;
}

.orbit-photo--three {
  right: 0;
  bottom: 8%;
  width: 9.25rem;
  height: 9.25rem;
}

.orbit-photo--four {
  bottom: 2%;
  left: 4%;
  width: 7.8rem;
  height: 7.8rem;
}

.hero-arena__badge {
  position: absolute;
  top: 51%;
  right: -1rem;
  z-index: 4;
  display: flex;
  width: 6rem;
  height: 6rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--accent-gradient);
  border: 0.35rem solid var(--ink-soft);
  border-radius: 50%;
  transform: rotate(7deg);
}

.hero-arena__badge strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.hero-arena__badge span {
  margin-top: 0.2rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-arena__lab-label {
  position: absolute;
  z-index: 4;
  padding: 0.28rem 0.48rem;
  color: var(--gold);
  background: rgb(8 11 11 / 0.82);
  border: 1px solid rgb(var(--accent-cyan-rgb) / 0.3);
  border-radius: 0.3rem;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.hero-arena__lab-label--one {
  top: 43%;
  left: -1%;
}

.hero-arena__lab-label--two {
  top: 28%;
  right: 1%;
}

.hero-arena__lab-label--three {
  right: 14%;
  bottom: 0;
}

.countdown {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 8rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 1.7rem;
  background: rgb(7 13 14 / 0.46);
  border: 1px solid rgb(var(--accent-cyan-rgb) / 0.3);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.055),
    0 18px 55px rgb(0 0 0 / 0.2);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.hero .countdown {
  width: min(calc(100% - 2.5rem), 70rem);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.4rem;
  margin-inline: auto;
  text-align: center;
}

.hero .countdown > p {
  max-width: none;
}

.hero .countdown__grid {
  width: min(100%, 42rem);
}

.countdown > p {
  max-width: 15rem;
  color: var(--accent-cyan-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(4.7rem, 1fr));
  gap: 0.75rem;
}

.countdown__grid > div {
  min-width: 5.25rem;
  padding-left: 1.2rem;
  border-left: 1px solid var(--line-light);
}

.countdown__grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1;
}

.countdown__grid span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Manifesto */

.manifesto {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  color: var(--white);
  background: var(--paper);
}

.manifesto__station {
  position: relative;
  isolation: isolate;
}

.manifesto__station::before,
.manifesto__station::after {
  display: none;
}

.manifesto__header {
  display: flex;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.manifesto__header::after {
  display: none;
}

.manifesto__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  min-height: 32rem;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.manifesto__stage::after {
  display: none;
}

.manifesto__copy h2 {
  max-width: 13ch;
  font-family: var(--font-sans);
  font-size: clamp(2.9rem, 5.1vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.manifesto .section-index {
  padding: 0.48rem 0.75rem;
  color: var(--accent-cyan-light);
  background: rgb(var(--accent-cyan-rgb) / 0.11);
  border-radius: 999px;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
}

.manifesto .eyebrow--dark {
  color: var(--accent-cyan-light);
  letter-spacing: 0.1em;
}

.manifesto__statement {
  max-width: 38rem;
  margin-top: 2.25rem;
  padding: 1.15rem 1.35rem;
  color: rgb(238 247 246 / 0.78);
  background: rgb(var(--accent-cyan-rgb) / 0.09);
  border-radius: 1.4rem;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.65;
}

.decision-lens {
  position: relative;
  justify-self: center;
  width: min(31vw, 25rem);
  min-width: 19rem;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgb(238 247 246 / 0.035);
  border: 0;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.06),
    0 1.8rem 4.5rem rgb(0 0 0 / 0.22),
    0 0 4rem rgb(var(--accent-cyan-rgb) / 0.09);
}

.decision-lens__ring,
.decision-lens__axis,
.decision-lens__scan,
.decision-lens__label,
.decision-lens__core {
  position: absolute;
}

.decision-lens__ring {
  border-radius: 50%;
}

.decision-lens__ring--outer {
  inset: 5%;
  border: 0.8rem solid rgb(var(--accent-cyan-rgb) / 0.12);
  border-top-color: var(--accent-cyan);
  border-right-color: var(--accent-cyan);
  animation: lens-spin 28s linear infinite;
}

.decision-lens__ring--middle {
  inset: 18%;
  border: 0.42rem solid rgb(238 247 246 / 0.1);
  border-bottom-color: rgb(var(--accent-cyan-rgb) / 0.52);
}

.decision-lens__ring--inner {
  inset: 31%;
  border: 0.5rem solid rgb(var(--accent-cyan-rgb) / 0.1);
  border-left-color: var(--accent-green);
  border-bottom-color: var(--accent-green);
  animation: lens-spin-reverse 18s linear infinite;
}

.decision-lens__axis {
  display: none;
}

.decision-lens__scan {
  z-index: 0;
  top: 50%;
  left: 14%;
  width: 72%;
  height: 3.2rem;
  background: rgb(var(--accent-cyan-rgb) / 0.055);
  border-radius: 999px;
  box-shadow: 0 0 2rem rgb(var(--accent-cyan-rgb) / 0.08);
  opacity: 1;
  animation: lens-scan 5.4s var(--ease) infinite;
}

.decision-lens__core {
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 43%;
  aspect-ratio: 1;
  place-content: center;
  padding: 1rem;
  text-align: center;
  color: var(--ink);
  background: var(--accent-cyan);
  border: 0;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.25),
    0 1.25rem 3rem rgb(0 0 0 / 0.36),
    0 0 2.5rem rgb(var(--accent-cyan-rgb) / 0.16);
  transform: translate(-50%, -50%);
}

.decision-lens__core small,
.decision-lens__core span {
  color: rgb(9 11 11 / 0.62);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.decision-lens__core strong {
  margin-block: 0.15rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.25vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.decision-lens__label {
  z-index: 2;
  padding: 0.5rem 0.68rem;
  color: var(--accent-cyan-light);
  background: rgb(9 18 20 / 0.88);
  border: 0;
  border-radius: 999px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.decision-lens__label--one {
  top: 15%;
  left: 12%;
}

.decision-lens__label--two {
  top: 48%;
  right: 4%;
}

.decision-lens__label--three {
  bottom: 14%;
  left: 16%;
  color: var(--accent-green-light);
}

.manifesto__protocol {
  display: grid;
  margin: 0;
  padding: 0.7rem;
  gap: 0.35rem;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  background: rgb(238 247 246 / 0.035);
  border-radius: 2rem;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.045);
}

.manifesto__protocol li {
  position: relative;
  min-height: 9.5rem;
  padding: 1.25rem 1.45rem 1.5rem;
  overflow: hidden;
  border-radius: 1.4rem;
  transition:
    background-color 240ms var(--ease);
}

.manifesto__protocol li::after {
  display: none;
}

.manifesto__protocol li:hover {
  background: rgb(var(--accent-cyan-rgb) / 0.07);
}

.manifesto__protocol li > span {
  display: grid;
  width: 2.15rem;
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
  color: var(--ink);
  background: var(--accent-cyan);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  place-items: center;
}

.manifesto__protocol p {
  color: rgb(238 247 246 / 0.6);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.manifesto__protocol strong {
  display: block;
  margin-top: 0.15rem;
  color: var(--accent-cyan-light);
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.manifesto__protocol li:last-child > span {
  background: var(--accent-green);
}

.manifesto__protocol li:last-child strong {
  color: var(--accent-green-light);
}

@keyframes lens-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes lens-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes lens-scan {
  0%,
  100% {
    transform: translateY(-6.5rem);
  }

  50% {
    transform: translateY(6.5rem);
  }
}

/* Evolution / video */

.evolution {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
}

.evolution__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.48fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
}

.evolution__intro h2 {
  max-width: 15ch;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: clamp(2.9rem, 5.1vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.evolution .eyebrow {
  width: max-content;
  padding: 0.5rem 0.85rem;
  color: var(--ink);
  background: var(--accent-cyan);
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.evolution__intro > p {
  max-width: 29rem;
  padding: 1.15rem 1.35rem;
  color: rgb(238 247 246 / 0.76);
  background: rgb(var(--accent-cyan-rgb) / 0.09);
  border-radius: 1.4rem;
  font-size: 0.96rem;
  line-height: 1.65;
}

.lab-flow {
  position: relative;
  --flow-step: 8.25rem;
  --flow-track: 4.25rem;
  --flow-pad: clamp(1.25rem, 3vw, 2.4rem);

  padding: 1rem var(--flow-pad);
  overflow: hidden;
  background: rgb(238 247 246 / 0.035);
  border-radius: clamp(1.8rem, 4vw, 3rem);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.055),
    0 1.5rem 4rem rgb(0 0 0 / 0.12);
}

.lab-flow::before {
  position: absolute;
  z-index: 0;
  top: 5.4rem;
  bottom: 5.4rem;
  left: calc(var(--flow-pad) + var(--flow-step) + (var(--flow-track) / 2));
  width: 0.72rem;
  content: "";
  background: rgb(var(--accent-cyan-rgb) / 0.16);
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgb(var(--accent-cyan-rgb) / 0.06);
}

.lab-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns:
    var(--flow-step)
    var(--flow-track)
    minmax(0, 0.78fr)
    minmax(16rem, 1fr);
}

.lab-flow article::before {
  z-index: 2;
  width: 1.75rem;
  height: 1.75rem;
  grid-column: 2;
  align-self: center;
  justify-self: center;
  content: "";
  background: var(--accent-cyan);
  border: 0.45rem solid #0e1516;
  border-radius: 50%;
  box-shadow:
    0 0 0 0.45rem rgb(var(--accent-cyan-rgb) / 0.12),
    0 0.7rem 1.6rem rgb(0 0 0 / 0.28);
}

.lab-flow article {
  align-items: center;
  min-height: 11rem;
  padding-block: 0.75rem;
}

.lab-flow article:last-child::before {
  background: var(--accent-green);
  border-color: #0e1516;
  box-shadow:
    0 0 0 0.45rem rgb(var(--accent-green-rgb) / 0.14),
    0 0.7rem 1.6rem rgb(0 0 0 / 0.28);
}

.lab-flow__step {
  display: inline-flex;
  width: max-content;
  min-width: 6.8rem;
  min-height: 4.4rem;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0.72rem 0.95rem;
  grid-column: 1;
  align-self: center;
  background: rgb(var(--accent-cyan-rgb) / 0.1);
  border-radius: 1.2rem;
}

.lab-flow__step small,
.lab-flow__step strong {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.lab-flow__step small {
  color: rgb(238 247 246 / 0.52);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.lab-flow__step strong {
  margin-top: 0.18rem;
  color: var(--accent-cyan-light);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.lab-flow article:last-child .lab-flow__step strong {
  color: var(--accent-green-light);
}

.lab-flow article:last-child .lab-flow__step {
  background: rgb(var(--accent-green-rgb) / 0.11);
}

.lab-flow h3 {
  max-width: 15ch;
  padding-right: clamp(1.5rem, 4vw, 4rem);
  grid-column: 3;
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 2.45vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.lab-flow p {
  max-width: 36rem;
  padding-left: clamp(1.5rem, 4vw, 4rem);
  color: rgb(238 247 246 / 0.68);
  font-size: 0.9rem;
  grid-column: 4;
  line-height: 1.65;
}

.evolution__outcome {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin: 1.4rem 0 0 auto;
  padding: 0.65rem 0.8rem 0.65rem 1.15rem;
  color: rgb(238 247 246 / 0.58);
  background: rgb(var(--accent-green-rgb) / 0.1);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.evolution__outcome::before {
  display: none;
}

.evolution__outcome i {
  display: grid;
  width: 1.75rem;
  aspect-ratio: 1;
  color: var(--ink);
  background: var(--accent-cyan);
  border-radius: 50%;
  font-style: normal;
  place-items: center;
}

.evolution__outcome strong {
  color: var(--accent-green-light);
  font-weight: 800;
}

.video-stage {
  position: relative;
  display: grid;
  min-height: clamp(24rem, 55vw, 38rem);
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at center, rgb(var(--accent-green-rgb) / 0.16), transparent 38%),
    linear-gradient(135deg, var(--cream), var(--ink));
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
}

.video-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
}

.video-stage__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.video-stage__rings span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.4rem;
}

.video-stage__rings span:nth-child(1) {
  width: 66%;
  height: 78%;
}

.video-stage__rings span:nth-child(2) {
  width: 46%;
  height: 56%;
}

.video-stage__rings span:nth-child(3) {
  width: 23%;
  height: 30%;
  background: var(--accent-gradient);
  border: 0.5rem solid var(--ink);
  border-radius: 1rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.video-stage__content {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  padding: 2rem;
  text-align: center;
}

.video-stage__kicker {
  display: block;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-stage__content strong {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.video-stage__content p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
}

.video-stage__label {
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Pain */

.pain {
  padding-block: var(--section-space);
}

.pain__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 10vw, 9rem);
  align-items: end;
}

.pain__intro h2 {
  max-width: 14ch;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.96;
}

.pain__lead {
  max-width: 23rem;
  margin-top: 1.4rem;
  color: var(--red-deep);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
}

.question-stack {
  border-top: 1px solid var(--line-dark);
}

.question-stack p {
  position: relative;
  padding: 1.15rem 2rem 1.15rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.96rem;
}

.question-stack p::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--red);
  content: "?";
  font-family: var(--font-display);
  font-size: 1.3rem;
  transform: translateY(-50%);
}

.truth-block {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
  align-items: center;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  background: var(--glass-band-bg);
  border: 1px solid var(--glass-band-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-band-shadow);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.truth-block > div {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan-light);
}

.truth-block > div span + span {
  margin-top: 0.4rem;
}

.truth-block > p {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

/* What is */

.what-is {
  padding-block: var(--section-space);
}

.what-is__top {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.what-is__top h2 {
  max-width: 12ch;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.what-is__statement {
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  border-left: 2px solid var(--red);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.topics-grid article {
  min-height: 12rem;
  padding: 1.3rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.topics-grid article:hover {
  background: rgb(var(--accent-green-rgb) / 0.1);
}

.topics-grid span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.topics-grid h3 {
  max-width: 15ch;
  margin-top: 3rem;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
}

.format-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
  color: var(--white);
  background: var(--glass-band-bg);
  border: 1px solid var(--glass-band-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-band-shadow);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.format-strip > div {
  padding: 1.4rem;
}

.format-strip > div + div {
  border-left: 1px solid var(--line-light);
}

.format-strip strong,
.format-strip span {
  display: block;
}

.format-strip strong {
  color: var(--accent-cyan-light);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.format-strip span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Promise */

.promise-band {
  padding-block: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  background: transparent;
}

.promise-band .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.6rem;
  align-items: center;
  min-height: 9rem;
  padding: 1.3rem 1.7rem;
  background: var(--glass-band-bg);
  border: 1px solid var(--glass-band-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-band-shadow);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.promise-band__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  color: var(--accent-cyan-light);
  border: 1px solid rgb(var(--accent-cyan-rgb) / 0.38);
  border-radius: 50%;
  font-size: 1.7rem;
}

.promise-band p {
  max-width: 48rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.25;
}

.promise-band p strong {
  color: var(--accent-green-light);
  font-weight: 700;
}

.promise-band a {
  color: var(--accent-cyan-light);
  font-size: 0.7rem;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
}

/* Action plan */

.action-plan {
  padding-block: var(--section-space);
}

.plan-explorer {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: stretch;
}

.plan-explorer__tabs {
  border-top: 1px solid var(--line-dark);
}

.plan-explorer__tabs button {
  display: flex;
  width: 100%;
  min-height: 4.35rem;
  align-items: center;
  gap: 1.1rem;
  padding: 0.85rem 1rem 0.85rem 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
  font-size: 0.9rem;
  text-align: left;
  transition:
    color 220ms ease,
    padding 220ms var(--ease);
}

.plan-explorer__tabs button span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1rem;
}

.plan-explorer__tabs button::after {
  margin-left: auto;
  content: "→";
  opacity: 0;
  transform: translateX(-0.5rem);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.plan-explorer__tabs button[aria-selected="true"] {
  padding-left: 1rem;
  color: var(--white);
  background: var(--ink-muted);
  font-weight: 700;
}

.plan-explorer__tabs button[aria-selected="true"]::after {
  opacity: 1;
  transform: translateX(0);
}

.plan-explorer__content {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  background: var(--ink-muted);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.plan-explorer__content::before {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 25rem;
  height: 25rem;
  content: "";
  background: radial-gradient(circle, rgb(var(--accent-green-rgb) / 0.13), transparent 66%);
  border-radius: 50%;
}

.plan-panel {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(2.2rem, 5vw, 4.4rem);
}

.plan-panel__number {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  color: rgba(247, 251, 248, 0.05);
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: 1;
}

.plan-panel h3 {
  max-width: 13ch;
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.plan-panel > p:not(.eyebrow, .plan-panel__number) {
  max-width: 34rem;
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
}

.plan-panel ul {
  display: grid;
  gap: 0.75rem;
  max-width: 31rem;
  margin-top: 2.1rem;
  list-style: none;
}

.plan-panel li {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  color: var(--white);
  background: var(--cream-deep);
  border-radius: 0.6rem;
  font-size: 0.85rem;
  font-weight: 650;
}

.plan-panel li::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.plan-panel.is-entering {
  animation: panel-in 350ms var(--ease);
}

.arena-quote {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 60rem;
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  padding-top: 2.1rem;
  border-top: 1px solid var(--line-dark);
}

.arena-quote > span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
}

.arena-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

/* Method */

.method {
  padding-block: var(--section-space);
  border-top: 1px solid var(--line-dark);
}

.method .section-heading h2 {
  max-width: none;
}

.method .section-index {
  float: right;
  margin-top: 0.3rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.method-grid article {
  position: relative;
  min-height: 24rem;
  padding: 1.5rem;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.method-grid article::after {
  position: absolute;
  right: -6rem;
  bottom: -6rem;
  width: 12rem;
  height: 12rem;
  content: "";
  border: 1px solid rgb(var(--accent-green-rgb) / 0.2);
  border-radius: 50%;
  transition:
    background-color 260ms ease,
    transform 360ms var(--ease);
}

.method-grid article:hover::after {
  background: rgb(var(--accent-green-rgb) / 0.07);
  transform: scale(1.8);
}

.method-grid__number {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.method-grid h3 {
  margin-top: 8rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}

.method-grid p {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Schedule */

.schedule {
  padding-block: var(--section-space);
}

.schedule-tabs__controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line-light);
}

.schedule-tabs__controls button {
  padding: 1.5rem 1rem 1.5rem 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-top: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  transition:
    color 220ms ease,
    border-color 220ms ease;
}

.schedule-tabs__controls button + button {
  padding-left: 2rem;
  border-left: 1px solid var(--line-light);
}

.schedule-tabs__controls button[aria-selected="true"] {
  color: var(--white);
  border-top-color: var(--red);
}

.schedule-tabs__controls span,
.schedule-tabs__controls strong {
  display: block;
}

.schedule-tabs__controls span {
  color: var(--red);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.schedule-tabs__controls strong {
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.schedule-panel {
  padding-top: 2rem;
}

.schedule-panel.is-entering {
  animation: panel-in 350ms var(--ease);
}

.schedule-panel > article {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-light);
}

.schedule-panel > article > span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

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

.schedule-panel article p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
}

.schedule-panel__result {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.6rem;
  color: var(--white);
  background: var(--glass-band-bg);
  border: 1px solid var(--glass-band-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--glass-band-shadow);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.schedule-panel__result span {
  color: var(--accent-cyan-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.schedule-panel__result p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.schedule-panel__people {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.schedule-panel__people > span {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-panel__people ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.schedule-panel__people li {
  padding: 0.35rem 0.65rem;
  color: rgba(247, 251, 248, 0.7);
  background: rgba(247, 251, 248, 0.05);
  border: 1px solid rgba(247, 251, 248, 0.1);
  border-radius: 999px;
  font-size: 0.63rem;
}

.schedule__note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Mentors */

.mentors {
  padding-block: var(--section-space);
}

.mentors-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.mentor-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(145deg, var(--accent-cyan-deep), var(--accent-green-deep));
  border-radius: var(--radius-md);
  isolation: isolate;
}

.mentor-card--featured {
  grid-row: auto;
  min-height: 0;
}

.mentor-card--wide {
  grid-column: auto;
}

.mentor-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(to top, rgb(8 11 11 / 0.94), transparent 58%);
}

.mentor-card::before {
  position: absolute;
  inset: 0.75rem;
  z-index: 2;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: calc(var(--radius-md) - 0.35rem);
  opacity: 0;
  transition: opacity 260ms ease;
}

.mentor-card:hover::before {
  opacity: 1;
}

.mentor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.78) contrast(1.03);
  transition:
    transform 700ms var(--ease),
    filter 400ms ease;
}

.mentor-card:hover img {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.035);
}

.mentor-card img[src*="Ana Julia"] {
  object-position: 50% 8%;
}

.mentor-card img[src*="Eduardo Koetz"] {
  object-position: 50% 28%;
}

.mentor-card img[src*="Fernando Ricciardi"] {
  object-position: 50% 24%;
}

.mentor-card img[src*="Gisele Paiva"] {
  object-position: 50% 42%;
}

.mentor-card img[src*="Greicy Mandelli"] {
  object-position: 50% 30%;
}

.mentor-card img[src*="Ibraim Djalma"] {
  object-position: 52% 25%;
}

.mentor-card img[src*="Jane Berwanger"] {
  object-position: 50% 18%;
}

.mentor-card img[src*="kleiton ferreira"] {
  object-position: 50% 34%;
}

.mentor-card img[src*="Luiz Madeira"] {
  object-position: 50% 50%;
}

.mentor-card img[src*="Maria Fernanda"] {
  object-position: 50% 0;
}

.mentor-card img[src*="Tassio Gutierre"] {
  object-position: 50% 50%;
}

.mentor-card img[src*="Theodoro Agostinho"] {
  object-position: 50% 18%;
}

.mentor-card img[src*="Vanusa Mendes"] {
  object-position: 50% 34%;
}

.mentor-card img.mentor-photo--maria {
  transform: scale(1.8);
  transform-origin: 50% 18%;
}

.mentor-card:hover img.mentor-photo--maria {
  transform: scale(1.84);
}

.mentor-card > div {
  position: absolute;
  right: 1.3rem;
  bottom: 1.25rem;
  left: 1.3rem;
  z-index: 3;
}

.mentor-card span {
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mentor-card h3 {
  max-width: 13ch;
  margin-top: 0.22rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

/* Audience */

.audience {
  padding-block: var(--section-space);
}

.audience__heading {
  max-width: 55rem;
  margin-bottom: 4rem;
}

.audience__heading h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.4vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.97;
}

.audience__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.audience-card {
  padding: clamp(1.8rem, 4vw, 3.4rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}

.audience-card--yes {
  background:
    linear-gradient(145deg, rgb(var(--accent-green-rgb) / 0.1), transparent 50%),
    var(--ink-muted);
}

.audience-card--no {
  background: var(--ink-muted);
}

.audience-card__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-dark);
}

.audience-card__title span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: var(--accent-gradient);
  border-radius: 50%;
  font-size: 1.2rem;
}

.audience-card--no .audience-card__title span {
  color: var(--white);
  background: var(--cream-deep);
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 500;
}

.audience-card ul {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.audience-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.audience-card--no li::before {
  background: var(--muted);
}

/* Takeaways */

.takeaways {
  padding-block: var(--section-space);
}

.takeaways__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.takeaways__intro {
  position: sticky;
  top: 7rem;
}

.takeaways__intro h2 {
  max-width: 12ch;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.takeaways__intro > p {
  max-width: 30rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}

.takeaways__intro .button {
  margin-top: 2rem;
}

.takeaways-list {
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.takeaways-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line-light);
}

.takeaways-list li > span {
  color: var(--red);
  font-family: var(--font-display);
}

.takeaways-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
}

.takeaways-list p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Tickets */

.tickets {
  padding-block: var(--section-space);
}

.tickets__heading {
  max-width: 54rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.tickets__heading .eyebrow {
  justify-content: center;
}

.tickets__heading h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.4vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.tickets__heading > p {
  margin-top: 1.3rem;
  color: var(--muted);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.ticket-card {
  position: relative;
  display: flex;
  min-height: 40rem;
  padding: 2rem;
  flex-direction: column;
  background: var(--ink-muted);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}

.ticket-card--featured {
  min-height: 44rem;
  color: var(--white);
  background:
    linear-gradient(150deg, rgb(var(--accent-green-rgb) / 0.12), transparent 40%),
    var(--ink);
  border-color: rgb(var(--accent-green-rgb) / 0.5);
  box-shadow: 0 30px 80px rgb(0 0 0 / 0.34);
}

.ticket-card--elite {
  background:
    linear-gradient(145deg, rgb(var(--accent-cyan-rgb) / 0.13), transparent 48%),
    var(--ink-muted);
  border-color: rgb(var(--accent-cyan-rgb) / 0.38);
}

.ticket-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 0.55rem 1.2rem;
  color: var(--ink);
  background: var(--accent-gradient);
  border-radius: 0 0 0.8rem 0.8rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.ticket-card--featured .ticket-card__top {
  margin-top: 1rem;
}

.ticket-card__category {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.ticket-card--elite .ticket-card__category {
  color: var(--gold);
}

.ticket-card__top p {
  min-height: 3.4rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.ticket-card--featured .ticket-card__top p,
.ticket-card--featured .ticket-card__includes {
  color: rgba(255, 255, 255, 0.55);
}

.ticket-card__price {
  display: flex;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.ticket-card--featured .ticket-card__price {
  border-bottom-color: var(--line-light);
}

.ticket-card__price span {
  margin-top: 0.55rem;
  margin-right: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.ticket-card__price strong {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.ticket-card__price small {
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

.ticket-card__includes {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.ticket-card ul {
  display: grid;
  gap: 0.72rem;
  margin-block: 1.5rem 2rem;
  list-style: none;
}

.ticket-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.79rem;
}

.ticket-card--featured li {
  color: rgba(255, 255, 255, 0.7);
}

.ticket-card li::before {
  position: absolute;
  top: 0.3rem;
  left: 0;
  color: var(--red);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.ticket-card .button {
  width: 100%;
  margin-top: auto;
}

.tickets__note {
  max-width: 45rem;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.comparison {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(1.7rem, 4vw, 3.3rem);
  background: var(--ink-muted);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}

.comparison__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.comparison__heading h3 {
  max-width: 21ch;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-align: right;
}

.comparison__scroll {
  overflow-x: auto;
}

.comparison table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.comparison th,
.comparison td {
  padding: 1rem;
  border-bottom: 1px solid var(--line-dark);
  text-align: center;
}

.comparison th:first-child {
  width: 46%;
  text-align: left;
}

.comparison thead th {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison tbody th {
  color: var(--muted);
  font-weight: 500;
}

.comparison .is-featured {
  background: rgb(var(--accent-green-rgb) / 0.07);
}

.comparison .check {
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  color: var(--ink);
  background: var(--accent-gradient);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.comparison .dash {
  color: var(--muted);
}

/* Legacy */

.legacy {
  padding-block: var(--section-space);
}

.legacy__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.legacy__copy h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.legacy__copy > p {
  max-width: 37rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.legacy__words {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.legacy__words span {
  padding: 0.55rem 0.85rem;
  color: var(--white);
  background: var(--cream-deep);
  border-radius: 999px;
  font-family: var(--font-display);
}

.legacy__numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.legacy__numbers > div {
  min-height: 11rem;
  padding: 1.3rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.legacy__numbers strong,
.legacy__numbers span {
  display: block;
}

.legacy__numbers strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 500;
}

.legacy__numbers span {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Venue */

.venue {
  padding-block: var(--section-space);
  overflow: hidden;
}

.venue__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.venue__visual {
  position: relative;
  display: grid;
  padding: 0.65rem;
  gap: 0.65rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-height: 39rem;
  overflow: hidden;
  background: rgb(238 247 246 / 0.035);
  border: 0;
  border-radius: 2.5rem;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.055),
    0 1.5rem 4rem rgb(0 0 0 / 0.16);
}

.venue__visual::before,
.venue__visual::after {
  display: none;
}

.venue-gallery__item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
  border-radius: 1.25rem;
}

.venue-gallery__item--main {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
  border-radius: 1.9rem;
}

.venue-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.venue-gallery__item:hover img {
  transform: scale(1.035);
}

.venue-gallery__item--main img {
  object-position: center;
}

.venue-gallery__item:nth-child(2) img,
.venue-gallery__item:nth-child(3) img {
  object-position: center;
}

.venue-gallery__item:nth-child(4) img {
  object-position: center 42%;
}

.venue-gallery__item figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.65rem 0.8rem;
  color: var(--white);
  background: rgb(6 12 13 / 0.72);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.venue-gallery__item figcaption strong {
  font-size: 0.75rem;
  letter-spacing: -0.01em;
}

.venue-gallery__item figcaption span {
  color: rgb(238 247 246 / 0.66);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.venue__copy h2 {
  max-width: 11ch;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.venue__copy dl {
  margin-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.venue__copy dl > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-light);
}

.venue__copy dt {
  color: var(--red);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.venue__copy dd {
  font-size: 0.88rem;
  font-weight: 650;
}

.venue__copy > p {
  max-width: 33rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.venue__copy .button {
  margin-top: 1.7rem;
}

/* FAQ */

.faq {
  padding-block: var(--section-space);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 7rem;
}

.faq__intro h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.faq__intro > p {
  margin-top: 1.2rem;
  color: var(--muted);
}

.faq__list {
  border-top: 1px solid var(--line-dark);
}

.faq details {
  border-bottom: 1px solid var(--line-dark);
}

.faq summary {
  position: relative;
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 500;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 1px;
  content: "";
  background: var(--red);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq details p {
  max-width: 42rem;
  padding: 0 3.5rem 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Decision / final CTA */

.decision {
  padding-block: var(--section-space);
  border-top: 1px solid var(--line-dark);
}

.decision__grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 2rem clamp(3rem, 8vw, 8rem);
}

.decision h2 {
  max-width: 15ch;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.decision__question {
  display: flex;
  min-height: 20rem;
  align-items: end;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--ink);
  background: var(--accent-gradient);
  border-radius: 50% 50% var(--radius-lg) var(--radius-lg);
}

.decision__question p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.18;
}

.decision__truth {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.7rem;
  color: var(--muted);
  border-top: 1px solid var(--line-dark);
}

.final-cta {
  position: relative;
  min-height: 50rem;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.final-cta__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.final-cta__rings span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  transform: rotate(-4deg);
}

.final-cta__rings span:nth-child(1) {
  width: min(80vw, 54rem);
  height: min(68vw, 38rem);
}

.final-cta__rings span:nth-child(2) {
  width: min(58vw, 38rem);
  height: min(47vw, 28rem);
}

.final-cta__rings span:nth-child(3) {
  width: min(35vw, 23rem);
  height: min(27vw, 16rem);
  border-color: rgb(var(--accent-green-rgb) / 0.48);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 50rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 6rem;
  text-align: center;
}

.final-cta__content h2 {
  max-width: 18ch;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.final-cta__content > p {
  max-width: 44rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
}

.final-cta__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.6rem;
  margin-top: 2rem;
  color: var(--gold-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta__meta span {
  position: relative;
}

.final-cta__meta span + span::before {
  position: absolute;
  top: 50%;
  left: -0.9rem;
  width: 0.25rem;
  height: 0.25rem;
  content: "";
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.final-cta .button {
  margin-top: 2.3rem;
}

.final-cta small {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
}

/* Section-specific laboratory backgrounds */

.chapter {
  position: relative;
  isolation: isolate;
  background-color: var(--ink);
}

.surface-background {
  --surface-art: var(--surface-art-desktop);
  --surface-overlay: linear-gradient(rgb(9 11 11 / 0.6), rgb(9 11 11 / 0.6));

  background-color: var(--ink);
  background-image:
    var(--surface-overlay),
    var(--surface-art),
    var(--surface-art);
  background-repeat: no-repeat;
  background-position:
    center,
    center top,
    center bottom;
  background-size:
    100% 100%,
    100% auto,
    100% auto;
}

.hero.surface-background {
  background-image: var(--surface-art);
  background-position: center;
  background-size: cover;
}

.manifesto.surface-background,
.promise-band.surface-background,
.final-cta.surface-background {
  background-image:
    var(--surface-overlay),
    var(--surface-art);
  background-position:
    center,
    center;
  background-size:
    cover,
    cover;
}

.hero {
  --surface-art-desktop: url("assets/backgrounds/bg-hero-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-hero-mobile.webp");
}

.manifesto {
  --surface-art-desktop: url("assets/backgrounds/bg-manifesto-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-manifesto-mobile.webp");
}

.evolution {
  --surface-art-desktop: url("assets/backgrounds/bg-evolution-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-evolution-mobile.webp");
}

.pain {
  --surface-art-desktop: url("assets/backgrounds/bg-pain-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-pain-mobile.webp");
}

.what-is {
  --surface-art-desktop: url("assets/backgrounds/bg-what-is-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-what-is-mobile.webp");
}

.promise-band {
  --surface-art-desktop: url("assets/backgrounds/bg-promise-band-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-promise-band-mobile.webp");
}

.action-plan {
  --surface-art-desktop: url("assets/backgrounds/bg-action-plan-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-action-plan-mobile.webp");
}

.method {
  --surface-art-desktop: url("assets/backgrounds/bg-method-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-method-mobile.webp");
}

.schedule {
  --surface-art-desktop: url("assets/backgrounds/bg-schedule-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-schedule-mobile.webp");
}

.mentors {
  --surface-art-desktop: url("assets/backgrounds/bg-mentors-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-mentors-mobile.webp");
}

.audience {
  --surface-art-desktop: url("assets/backgrounds/bg-audience-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-audience-mobile.webp");
}

.takeaways {
  --surface-art-desktop: url("assets/backgrounds/bg-takeaways-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-takeaways-mobile.webp");
}

.tickets {
  --surface-art-desktop: url("assets/backgrounds/bg-tickets-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-tickets-mobile.webp");
}

.legacy {
  --surface-art-desktop: url("assets/backgrounds/bg-legacy-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-legacy-mobile.webp");
}

.venue {
  --surface-art-desktop: url("assets/backgrounds/bg-venue-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-venue-mobile.webp");
}

.faq {
  --surface-art-desktop: url("assets/backgrounds/bg-faq-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-faq-mobile.webp");
}

.decision {
  --surface-art-desktop: url("assets/backgrounds/bg-decision-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-decision-mobile.webp");
}

.final-cta {
  --surface-art-desktop: url("assets/backgrounds/bg-final-cta-desktop.webp");
  --surface-art-mobile: url("assets/backgrounds/bg-final-cta-mobile.webp");
}

/* Footer */

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: 3rem;
  border-bottom: 1px solid var(--line-light);
}

.brand--footer {
  color: var(--white);
}

.site-footer__top > p {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.7rem;
  font-weight: 700;
}

.site-footer nav a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 3rem;
  align-items: end;
  padding-block: 2.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.6;
}

.site-footer__bottom span {
  text-align: right;
}

/* Dialog / toast */

.checkout-dialog {
  width: min(34rem, calc(100% - 2rem));
  padding: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  background: var(--ink-muted);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.checkout-dialog::backdrop {
  background: rgb(8 11 11 / 0.82);
  backdrop-filter: blur(8px);
}

.checkout-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: var(--cream-deep);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
}

.checkout-dialog h2 {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.checkout-dialog > p:not(.eyebrow) {
  margin-top: 1.3rem;
  color: var(--muted);
}

.checkout-dialog .button {
  margin-top: 1.8rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  max-width: 22rem;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

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

/* Motion */

.reveal-pending {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.7;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

/* Responsive */

@media (min-width: 901px) and (max-height: 900px) {
  .hero__grid {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 3.7vw, 3.85rem);
  }

  .hero-video {
    max-width: 42rem;
  }

  .hero h1 {
    margin-top: 0.85rem;
  }

  .hero__lead {
    margin-top: 1.15rem;
  }

  .event-meta {
    margin-top: 0.85rem;
  }

  .hero__actions {
    margin-top: 0.9rem;
  }

  .trust-list {
    margin-top: 0.8rem;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav > a:not(.button) {
    font-size: 0.7rem;
  }

  .hero-arena__badge {
    right: 0;
  }

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

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

  .format-strip > div:nth-child(3) {
    border-top: 1px solid rgba(1, 3, 2, 0.2);
    border-left: 0;
  }

  .format-strip > div:nth-child(4) {
    border-top: 1px solid rgba(1, 3, 2, 0.2);
  }

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

  .mentor-card--featured {
    grid-row: auto;
    min-height: 0;
  }

  .ticket-grid {
    gap: 0.7rem;
  }

  .ticket-card {
    padding: 1.5rem;
  }
}

@media (max-width: 900px) {
  .surface-background {
    --surface-art: var(--surface-art-mobile);
  }

  .container {
    width: min(var(--container), calc(100% - 2rem));
  }

  .announcement {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-header {
    top: 2.25rem;
  }

  .site-header__inner {
    min-height: 4.7rem;
  }

  .menu-toggle {
    display: block;
    z-index: 3;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(0.15rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-0.15rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
    padding: 7rem 2rem 3rem;
    color: var(--white);
    background: rgb(8 11 11 / 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 220ms ease,
      transform 220ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 8vw, 3.4rem);
    font-weight: 500;
  }

  .site-nav .button {
    margin-top: 1rem;
  }

  .site-header.is-sticky .menu-toggle[aria-expanded="true"] {
    color: var(--white);
    border-color: var(--white);
  }

  .site-header.is-sticky .brand:has(+ .menu-toggle[aria-expanded="true"]) {
    position: relative;
    z-index: 3;
    color: var(--white);
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    padding-top: clamp(3.5rem, 8vw, 5rem);
    padding-bottom: 2rem;
  }

  .hero__content {
    max-width: 60rem;
  }

  .hero-arena {
    width: min(100%, 31rem);
    margin-top: 1rem;
  }

  .hero-video {
    max-width: 46rem;
  }

  .countdown {
    margin-top: 1rem;
  }

  .manifesto__stage {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    min-height: 0;
  }

  .manifesto__stage::after {
    display: none;
  }

  .manifesto__copy {
    max-width: 48rem;
  }

  .decision-lens {
    width: min(64vw, 23rem);
  }

  .evolution__intro {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .evolution__intro > p {
    max-width: 42rem;
  }

  .lab-flow {
    --flow-step: 7.25rem;
    --flow-track: 3.25rem;
    --flow-pad: 1.5rem;
  }

  .lab-flow article {
    grid-template-columns:
      var(--flow-step)
      var(--flow-track)
      minmax(0, 1fr);
  }

  .lab-flow article {
    min-height: 10rem;
    padding-block: 1rem;
  }

  .lab-flow__step,
  .lab-flow article::before {
    grid-row: 1 / 3;
  }

  .lab-flow h3 {
    padding-right: 0;
    grid-column: 3;
    grid-row: 1;
  }

  .lab-flow p {
    margin-top: 0.65rem;
    padding-left: 0;
    border-left: 0;
    grid-column: 3;
    grid-row: 2;
  }

  .evolution__outcome {
    margin-left: auto;
  }

  .section-heading--split,
  .pain__grid,
  .what-is__top,
  .legacy__grid,
  .venue__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 1.8rem;
  }

  .section-heading--split > p {
    max-width: 42rem;
  }

  .pain__grid {
    gap: 3rem;
  }

  .question-stack {
    max-width: 42rem;
  }

  .plan-explorer {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1rem;
  }

  .method-grid article {
    min-height: 19rem;
  }

  .method-grid h3 {
    margin-top: 5rem;
  }

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

  .ticket-grid {
    grid-template-columns: 1fr;
    max-width: 40rem;
    margin-inline: auto;
  }

  .ticket-card,
  .ticket-card--featured {
    min-height: auto;
  }

  .ticket-card--featured {
    order: -1;
  }

  .ticket-card__top p {
    min-height: auto;
  }

  .ticket-card .button {
    margin-top: 0;
  }

  .venue__visual {
    min-height: 30rem;
  }

  .venue__copy {
    max-width: 42rem;
  }

  .site-footer__top {
    grid-template-columns: auto 1fr;
  }

  .site-footer nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 5.2rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .announcement {
    min-height: 2rem;
    font-size: 0.56rem;
  }

  .announcement__dot {
    margin-inline: 0.7rem;
  }

  .site-header {
    top: 2rem;
  }

  .brand__mark {
    width: 2rem;
    height: 2rem;
  }

  .hero__grid {
    padding-top: 3.25rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 11vw, 4rem);
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .event-meta {
    grid-template-columns: 1fr;
  }

  .event-meta__item + .event-meta__item {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 32rem);
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: center;
  }

  .hero-arena {
    width: min(100%, 26rem);
  }

  .orbit-photo--one {
    width: 7.2rem;
    height: 7.2rem;
  }

  .orbit-photo--two {
    width: 6rem;
    height: 6rem;
  }

  .orbit-photo--three {
    width: 7rem;
    height: 7rem;
  }

  .orbit-photo--four {
    width: 6.2rem;
    height: 6.2rem;
  }

  .hero-arena__center {
    width: 8.8rem;
  }

  .hero-arena__center strong {
    font-size: 2.1rem;
  }

  .hero-arena__badge {
    width: 5.1rem;
    height: 5.1rem;
  }

  .countdown {
    align-items: flex-start;
    flex-direction: column;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .countdown > p {
    max-width: none;
  }

  .countdown__grid {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .countdown__grid > div {
    min-width: 0;
    padding-left: 0.7rem;
  }

  .countdown__grid strong {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .manifesto__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .manifesto__stage {
    gap: 2.8rem;
    padding-block: 3.5rem;
  }

  .section-heading h2,
  .pain__intro h2,
  .what-is__top h2,
  .audience__heading h2,
  .takeaways__intro h2,
  .tickets__heading h2,
  .legacy__copy h2,
  .venue__copy h2,
  .faq__intro h2,
  .decision h2 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .manifesto__copy h2 {
    max-width: 14ch;
    font-size: clamp(2.55rem, 11vw, 4rem);
    line-height: 0.99;
  }

  .manifesto__statement {
    margin-top: 1.8rem;
    font-size: 1rem;
  }

  .decision-lens {
    width: min(82vw, 20.5rem);
    min-width: 0;
  }

  .manifesto__protocol {
    padding: 0.5rem;
    gap: 0.2rem;
    grid-template-columns: 1fr;
    border-radius: 1.6rem;
  }

  .manifesto__protocol li {
    min-height: 7.6rem;
    border: 0;
  }

  .manifesto__protocol li > span {
    margin-bottom: 0.9rem;
  }

  .video-stage {
    min-height: 25rem;
    border-radius: var(--radius-md);
  }

  .evolution__intro {
    margin-bottom: 4rem;
  }

  .evolution__intro h2 {
    font-size: clamp(2.65rem, 11.5vw, 4.2rem);
  }

  .lab-flow {
    --flow-step: 5.75rem;
    --flow-track: 2.75rem;
    --flow-pad: 1rem;
  }

  .lab-flow::before {
    top: 5rem;
    bottom: 5rem;
  }

  .lab-flow article {
    min-height: 0;
    padding-block: 1.5rem;
  }

  .lab-flow__step {
    min-width: 5.1rem;
    min-height: 4rem;
    padding: 0.6rem 0.7rem;
  }

  .lab-flow h3 {
    max-width: 18ch;
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .lab-flow p {
    font-size: 0.86rem;
  }

  .evolution__outcome {
    justify-content: flex-start;
    margin-left: auto;
    flex-wrap: wrap;
  }

  .video-stage__rings span:nth-child(1) {
    width: 95%;
  }

  .video-stage__rings span:nth-child(2) {
    width: 65%;
  }

  .video-stage__rings span:nth-child(3) {
    width: 30%;
  }

  .truth-block {
    grid-template-columns: 1fr;
  }

  .topics-grid,
  .format-strip {
    grid-template-columns: 1fr;
  }

  .topics-grid article {
    min-height: 9rem;
  }

  .topics-grid h3 {
    margin-top: 2rem;
  }

  .format-strip > div + div {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .promise-band .container {
    grid-template-columns: auto 1fr;
  }

  .promise-band a {
    grid-column: 2;
  }

  .plan-explorer {
    grid-template-columns: 1fr;
  }

  .plan-explorer__tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .plan-explorer__tabs button {
    min-width: 13rem;
    border-right: 1px solid var(--line-dark);
    scroll-snap-align: start;
  }

  .plan-explorer__tabs button::after {
    display: none;
  }

  .plan-explorer__content {
    min-height: 31rem;
  }

  .plan-panel {
    padding: 2rem 1.5rem;
  }

  .plan-panel__number {
    font-size: 5rem;
  }

  .method .section-index {
    float: none;
    margin-bottom: 1rem;
  }

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

  .method-grid article {
    min-height: 15rem;
  }

  .method-grid h3 {
    margin-top: 3rem;
  }

  .schedule-tabs__controls {
    grid-template-columns: 1fr;
  }

  .schedule-tabs__controls button + button {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .schedule-panel > article {
    grid-template-columns: 2.7rem 1fr;
    gap: 0.8rem;
  }

  .schedule-panel__result {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .schedule-panel__people {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .mentors-grid {
    gap: 0.7rem;
  }

  .mentor-card,
  .mentor-card--featured {
    min-height: 0;
  }

  .mentor-card--wide {
    grid-column: auto;
  }

  .mentor-card h3 {
    font-size: 1.3rem;
  }

  .audience__columns,
  .takeaways__grid,
  .faq__grid,
  .decision__grid {
    grid-template-columns: 1fr;
  }

  .takeaways__intro,
  .faq__intro {
    position: static;
  }

  .comparison {
    padding: 1.2rem;
  }

  .comparison__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison__heading h3 {
    text-align: left;
  }

  .legacy__numbers > div {
    min-height: 9rem;
  }

  .venue__visual {
    min-height: 34rem;
    padding: 0.5rem;
    gap: 0.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(0, 1fr));
    border-radius: 1.8rem;
  }

  .venue-gallery__item--main {
    grid-column: 1 / 3;
    grid-row: 1 / 7;
    border-radius: 1.35rem;
  }

  .venue-gallery__item {
    border-radius: 0.95rem;
  }

  .venue__copy dl > div {
    grid-template-columns: 5.2rem 1fr;
  }

  .decision__question {
    min-height: 18rem;
  }

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

  .final-cta,
  .final-cta__content {
    min-height: 44rem;
  }

  .final-cta__content h2 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .final-cta__rings span:nth-child(1) {
    width: 150vw;
  }

  .final-cta__rings span:nth-child(2) {
    width: 110vw;
  }

  .final-cta__rings span:nth-child(3) {
    width: 70vw;
  }

  .site-footer__top,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom span {
    text-align: left;
  }
}

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

  .button {
    min-height: 3.35rem;
    padding-inline: 1rem;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero .button {
    font-size: 0.8rem;
  }

  .hero-arena {
    width: 100%;
  }

  .hero-video {
    padding: 0;
    border-radius: 1rem;
  }

  .hero-video__frame {
    border-radius: 1rem;
  }

  .hero-video__footer {
    gap: 0.6rem;
    overflow-x: auto;
  }

  .hero-arena__center {
    width: 7.5rem;
  }

  .hero-arena__center span {
    font-size: 0.62rem;
  }

  .hero-arena__center strong {
    font-size: 1.85rem;
  }

  .hero-arena__center small {
    display: none;
  }

  .orbit-photo--one {
    width: 6.3rem;
    height: 6.3rem;
  }

  .orbit-photo--two,
  .orbit-photo--four {
    width: 5.25rem;
    height: 5.25rem;
  }

  .orbit-photo--three {
    width: 6rem;
    height: 6rem;
  }

  .hero-arena__badge {
    right: -0.25rem;
    width: 4.5rem;
    height: 4.5rem;
    border-width: 0.25rem;
  }

  .hero-arena__badge strong {
    font-size: 1.35rem;
  }

  .countdown {
    padding-inline: 0.8rem;
  }

  .countdown__grid span {
    font-size: 0.6875rem;
  }

  .venue-gallery__item figcaption {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    padding: 0.55rem 0.65rem;
  }

  .venue-gallery__item figcaption span {
    display: none;
  }

  .evolution__intro > p {
    padding-left: 1rem;
  }

  .lab-flow {
    --flow-step: 4.75rem;
    --flow-track: 2.1rem;
    --flow-pad: 0.75rem;
  }

  .lab-flow__step {
    min-width: 4.15rem;
    min-height: 3.75rem;
    padding: 0.55rem 0.6rem;
  }

  .lab-flow__step strong {
    font-size: 0.58rem;
  }

  .lab-flow h3 {
    font-size: 1.5rem;
  }

  .lab-flow p {
    font-size: 0.82rem;
  }

  .evolution__outcome {
    gap: 0.6rem;
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .plan-explorer__content {
    min-height: 33rem;
  }

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

  .mentor-card,
  .mentor-card--featured {
    min-height: 0;
  }

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

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

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

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