@font-face {
  font-family: "ECD Montserrat";
  src: url("assets/fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ECD Barlow";
  src: url("assets/fonts/barlow-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ECD Barlow";
  src: url("assets/fonts/barlow-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b0b0b;
  --ink-2: #171717;
  --paper: #f4f1eb;
  --white: #ffffff;
  --orange: #ff6b00;
  --orange-soft: #ff8a2b;
  --line: rgba(11, 11, 11, 0.16);
  --muted: #66615b;
  --container: 87.5rem;
  --radius: 24px;
  --step--1: clamp(0.8125rem, 0.79rem + 0.12vw, 0.875rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1: clamp(1.0625rem, 1rem + 0.32vw, 1.3125rem);
  --step-2: clamp(1.3125rem, 1.16rem + 0.78vw, 1.875rem);
  --step-3: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  --step-4: clamp(1.875rem, 1.45rem + 1.8vw, 3rem);
  --step-5: clamp(2.5rem, 1.75rem + 2.7vw, 4rem);
  --step-6: clamp(2.75rem, 1.75rem + 3.8vw, 4.75rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: "ECD Barlow", "Inter", Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img,
.site-footer img {
  width: 220px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.date-pill {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.date-pill span {
  display: inline-flex;
  margin-right: 8px;
  border-radius: 100px;
  padding: 4px 8px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  border-radius: 7px;
  padding: 0 26px;
  font-family: "ECD Barlow", "Inter", Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orange-soft);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.76rem;
}

.button-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(255, 107, 0, 0.2);
}

.button-primary:hover {
  background: #ff8123;
  box-shadow: 0 18px 38px rgba(255, 107, 0, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 840px;
  padding: 150px 0 84px;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 100%) 0 0 / 86px 86px,
    var(--ink);
  color: var(--white);
  font-family: "ECD Barlow", "Inter", Arial, sans-serif;
}

.hero-glow {
  position: absolute;
  top: -280px;
  right: -120px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,0.26), rgba(255,107,0,0) 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: 24px;
  min-height: 606px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #d4d0ca;
}

.eyebrow span {
  width: 29px;
  height: 3px;
  background: var(--orange);
}

h1,
h2,
.host-copy h3,
.enio-card h3 {
  margin: 0;
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.036em;
  text-transform: none;
}

h1 {
  max-width: 730px;
  font-size: clamp(3.7rem, 5.616vw, 4.44rem);
}

.hero h1 {
  max-width: 46rem;
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: none;
}

h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 640px;
  margin: 2.4rem 0 30px;
  color: #a7a7a7;
  font-family: "ECD Barlow", "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero .eyebrow {
  color: #8a8a8a;
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.32em;
}

.hero-proof {
  display: flex;
  width: fit-content;
  margin: 0 0 32px;
  border-block: 1px solid rgba(255,255,255,0.15);
}

.hero-proof div {
  display: grid;
  padding: 16px 28px 16px 0;
}

.hero-proof div + div {
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 28px;
}

.hero-proof strong {
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-proof span {
  color: #92908c;
  font-size: 0.76rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-cta small {
  flex-basis: 100%;
  max-width: 420px;
  color: #8f8b86;
  font-size: 0.72rem;
  line-height: 1.4;
}

.hero-cta .button {
  min-height: 52px;
  padding-inline: 1.25rem;
  font-family: "ECD Barlow", "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: grid;
  min-height: 606px;
  place-items: center;
}

.portrait-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 606px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.portrait-frame::after {
  display: none;
}

.portrait-frame img {
  position: absolute;
  z-index: 2;
  top: 80%;
  bottom: auto;
  left: 36%;
  width: 170%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.portrait-number {
  display: none;
}

.portrait-caption {
  display: none;
}

.portrait-caption span {
  display: block;
  color: #d7d2cb;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait-caption strong {
  font-size: 1.04rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.live-card {
  position: absolute;
  z-index: 7;
  top: auto;
  right: 14px;
  bottom: 48px;
  left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  padding: 14px 18px;
  background: rgba(20,20,20,0.86);
  box-shadow: 0 18px 44px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.live-card div {
  display: grid;
  line-height: 1.3;
}

.live-card strong {
  font-size: 0.84rem;
  text-transform: uppercase;
}

.live-card span:last-child {
  color: #99948d;
  font-size: 0.72rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,107,0,0.14);
}

.hero-marquee {
  position: absolute;
  inset: auto 0 0;
  overflow: hidden;
  border-block: 1px solid rgba(11,11,11,0.2);
  padding: 13px 0;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 13s linear infinite;
}

.hero-marquee-set {
  display: flex;
  min-width: 100vw;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding-inline: 15px;
}

.hero-marquee-set span {
  display: inline-block;
}

.hero-marquee-set i {
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: 104px 0;
}

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

.section-dark {
  background: var(--ink-2);
  color: var(--white);
}

.section-orange {
  background: var(--orange);
}

.section-kicker {
  color: var(--muted);
}

.section-kicker-orange {
  color: var(--orange);
}

.split-heading {
  display: block;
  margin-bottom: 52px;
}

.split-heading h2 {
  max-width: 100%;
}

h2 {
  font-size: var(--step-5);
}

.big-copy {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.25;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.problem-card {
  min-height: 270px;
  padding: 30px 34px 20px 0;
}

.problem-card + .problem-card {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.problem-card > span,
.access-icon {
  color: var(--orange);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 0.86rem;
}

.problem-card h3,
.steps h3,
.access-card h3 {
  margin: 48px 0 12px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.problem-card p,
.access-card p {
  margin: 0;
  color: var(--muted);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 72px;
}

.method-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.method-intro h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.7rem);
}

.method-intro > p:not(.section-kicker) {
  max-width: 480px;
  margin: 24px 0 28px;
  color: #9c9891;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

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

.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 34px 0 38px;
}

.steps li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.steps > li > span {
  color: var(--orange);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1rem;
}

.steps h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.45rem;
}

.steps p {
  margin: 0;
  color: #99958e;
}

.hosts-heading {
  display: block;
  margin-bottom: 52px;
}

.hosts-heading .section-kicker {
  color: rgba(11,11,11,0.58);
}

.hosts-heading h2 {
  max-width: 920px;
  text-align: left;
}

.host-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
}

.host-image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #0e0e0e;
}

.host-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
}

.host-image img {
  position: absolute;
  inset: auto auto 0 50%;
  width: 120%;
  transform: translateX(-50%);
}

.host-tag {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.host-copy {
  padding: 64px;
}

.host-role {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.host-copy h3,
.enio-card h3 {
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.host-copy > p:not(.host-role) {
  color: #aaa69f;
}

.host-stats {
  display: flex;
  gap: 60px;
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 28px;
}

.host-stats div {
  display: grid;
}

.host-stats strong {
  color: var(--orange);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 2rem;
}

.host-stats span {
  color: #8e8a83;
  font-size: 0.78rem;
}

.enio-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  border-top: 1px solid rgba(11,11,11,0.3);
  padding: 52px 0 0;
  margin-top: 52px;
}

.enio-card .host-role {
  color: rgba(11,11,11,0.58);
}

.enio-card h3 {
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
}

.enio-card > p {
  margin: 6px 0 0;
  font-size: 1.12rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: start;
  gap: 72px;
}

.audience-copy h2 {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.audience-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  border-top: 1px solid var(--line);
}

.check-list div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
  font-weight: 650;
}

.check-list span {
  color: var(--orange);
  font-weight: 900;
}

.access {
  --access-progress-value: 0;
  background: var(--ink);
  color: var(--white);
  min-height: 100svh;
  position: relative;
}

.access-scene {
  position: sticky;
  top: 0;
  display: flex;
  height: clamp(36rem, 68svh, 40rem);
  min-height: 0;
  overflow: hidden;
  align-items: center;
}

.access-container {
  display: grid;
  width: min(calc(100% - 2rem), var(--container));
  min-height: 100%;
  grid-template-rows: auto 1fr;
  align-content: center;
  padding-block: clamp(3rem, 7vh, 5.5rem) clamp(1.5rem, 3vh, 2rem);
}

.access-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 18rem);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2rem, 5vh, 4rem);
}

.access-heading {
  display: block;
  margin: 0;
}

.access-heading h2 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.036em;
  text-transform: none;
  transform: none;
}

.access-progress {
  position: relative;
  height: 2px;
  margin-bottom: 0.7rem;
  background: rgba(255, 255, 255, 0.14);
}

.access-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: var(--orange);
  transform: scaleX(var(--access-progress-value));
  transform-origin: left center;
  transition: transform 0.12s linear;
}

.access-progress::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(var(--access-progress-value) * 100%);
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0.3rem rgba(255, 107, 0, 0.12);
  transform: translate(-50%, -50%);
  transition: left 0.12s linear;
}

.access-grid {
  display: flex;
  width: max-content;
  gap: 15px;
  align-items: flex-start;
  padding: 18px 6px 12px;
  will-change: transform;
}

.access-viewport {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  margin-inline: -6px;
}

.access-card {
  position: relative;
  isolation: isolate;
  display: grid;
  flex: 0 0 auto;
  grid-template-rows: 1fr auto;
  gap: 14px;
  width: clamp(18.5rem, 27vw, 21rem);
  min-height: 22.75rem;
  border-radius: 26px;
  padding: 0;
  opacity: 0.3;
  filter: brightness(0.64) saturate(0.75);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.32s ease, filter 0.32s ease;
}

.access-active-border {
  position: absolute;
  z-index: 4;
  left: -2px;
  width: calc(100% + 4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.access-active-border-top {
  top: -2px;
  height: calc(15.125rem + 4px);
  border-radius: 28px;
}

.access-active-border-bottom {
  bottom: -2px;
  height: calc(6.75rem + 4px);
  border-radius: 18px;
}

.access-active-border svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.access-active-border rect {
  fill: none;
  stroke: rgba(255, 138, 43, 0.32);
  stroke-width: 0.72;
  vector-effect: non-scaling-stroke;
}

.access-active-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--access-border-angle),
    transparent 0deg,
    transparent 222deg,
    rgba(255, 107, 0, 0.18) 246deg,
    var(--orange-soft) 272deg,
    #ffffff 294deg,
    var(--orange-soft) 316deg,
    rgba(255, 107, 0, 0.18) 340deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 5px rgba(255, 138, 43, 0.42));
  animation: access-border-orbit 5.2s linear infinite paused;
}

.access-card[data-active="true"] {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: scale(1.035);
}

.access-card[data-active="true"] .access-active-border {
  opacity: 1;
}

.access-card[data-active="true"] .access-active-border::after {
  animation-play-state: running;
}

.access-card[data-active="true"] .access-active-border-bottom::after {
  animation-delay: -1.3s;
}

.access-card:not([data-active="true"]):hover,
.access-card:not([data-active="true"]):focus-visible {
  opacity: 0.7;
  filter: brightness(0.84) saturate(0.9);
}

.access-card:focus-visible {
  outline: 2px solid var(--orange-soft);
  outline-offset: 6px;
}

.access-card-main {
  display: grid;
  grid-template-rows: 7.875rem 1fr;
  place-items: start center;
  min-height: 15.125rem;
  overflow: hidden;
  border-radius: 26px;
  padding: 0 16px 24px;
  background: #48200a;
}

.access-card h3 {
  align-self: start;
  width: 100%;
  margin: 0;
  color: var(--white);
  font-family: "ECD Montserrat", "Arial Narrow", Arial, sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: scaleX(1.08);
  transform-origin: center top;
}

.access-icon {
  position: relative;
  top: -21px;
  color: var(--orange);
  font-family: "ECD Montserrat", "Arial Narrow", Arial, sans-serif;
  font-size: 8.75rem;
  font-weight: 600;
  line-height: 0.9;
  transform: scaleX(1.5);
  transform-origin: center top;
}

.access-card > p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.75rem;
  margin: 0;
  border-radius: 16px;
  padding: 20px 24px;
  background: #48200a;
  color: var(--white);
  font-family: "ECD Barlow", "Inter", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-align: center;
}

.access-followup {
  background: var(--ink);
  color: var(--white);
  padding: 0 0 104px;
}

.access-followup .participation-callout {
  margin-top: 0;
}

@keyframes access-border-orbit {
  to { --access-border-angle: 360deg; }
}

@property --access-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.signup {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,107,0,0.19), transparent 33%),
    var(--ink-2);
  color: var(--white);
}

.signup-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.signup-copy > img {
  width: 240px;
  margin-bottom: 60px;
}

.signup-copy h2 {
  max-width: 620px;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
}

.signup-copy > p:not(.section-kicker) {
  max-width: 600px;
  color: #a7a29b;
}

.event-lockup {
  display: flex;
  gap: 35px;
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 26px;
}

.event-lockup div {
  display: grid;
}

.event-lockup span {
  color: #77736e;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.event-lockup strong {
  font-size: 0.92rem;
}

.signup-form {
  border-radius: 18px;
  padding: 34px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(0,0,0,0.25);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--orange);
}

.signup-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 750;
}

.signup-form input:not([type="checkbox"]),
.signup-form select {
  width: 100%;
  height: 54px;
  border: 1px solid #d7d1c8;
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
  line-height: 1.4;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.button-full {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: #77716a;
  text-align: center;
  font-size: 0.68rem;
}

.form-message {
  display: none;
  margin-top: 16px;
  border-radius: 7px;
  padding: 12px 14px;
  background: rgba(255,107,0,0.1);
  color: #60300d;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-message.is-visible {
  display: block;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 36px 0;
  background: var(--ink);
  color: #85817b;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p,
.footer-inner a {
  font-size: 0.78rem;
}

.footer-inner a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 980px) {
  .hero-grid,
  .method-layout,
  .signup-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .portrait-frame {
    width: 76%;
    min-height: 620px;
  }

  .portrait-frame img {
    left: 50%;
  }

  .live-card {
    left: 8%;
  }

  .method-intro {
    position: static;
  }

  .method-layout {
    gap: 60px;
  }

  .hosts-heading,
  .access-heading {
    display: block;
  }

  .hosts-heading h2 {
    text-align: left;
  }

  .host-feature {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .host-copy {
    padding: 46px;
  }

  .audience-grid {
    gap: 50px;
  }

  .access-heading .section-kicker {
    margin-bottom: 24px;
  }
}

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

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 170px;
  }

  .header-actions .date-pill,
  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 73px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-proof {
    width: 100%;
  }

  .hero-proof div {
    flex: 1;
    padding-right: 16px;
  }

  .hero-proof div + div {
    padding-left: 16px;
  }

  .hero-cta {
    display: grid;
  }

  .hero-cta small {
    max-width: none;
  }

  .hero-visual {
    min-height: 480px;
    margin-top: 20px;
  }

  .portrait-frame {
    width: 100%;
    min-height: 480px;
    border-radius: 45% 45% 0 0 / 24% 24% 0 0;
  }

  .portrait-frame img {
    width: 148%;
  }

  .portrait-number {
    font-size: 7rem;
  }

  .live-card {
    top: auto;
    right: 12px;
    bottom: 16px;
    left: 12px;
  }

  .portrait-caption {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .split-heading,
  .problem-grid,
  .host-feature,
  .enio-card,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    margin-bottom: 40px;
  }

  h2 {
    font-size: clamp(2.7rem, 11vw, 4.4rem);
  }

  .problem-card {
    min-height: auto;
    border-top: 1px solid var(--line);
    padding: 24px 0 34px;
  }

  .problem-card + .problem-card {
    border-left: 0;
    padding-left: 0;
  }

  .problem-card h3 {
    margin-top: 32px;
  }

  .method-layout {
    gap: 52px;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
  }

  .hosts-heading {
    margin-bottom: 48px;
  }

  .host-image {
    min-height: 460px;
  }

  .host-image img {
    width: 142%;
  }

  .host-copy {
    padding: 40px 26px;
  }

  .host-copy h3,
  .enio-card h3 {
    font-size: 3.25rem;
  }

  .host-stats {
    gap: 28px;
  }

  .enio-card {
    gap: 20px;
  }

  .audience-grid {
    gap: 48px;
  }

  .signup-shell {
    gap: 58px;
  }

  .signup-copy > img {
    margin-bottom: 44px;
  }

  .signup-form {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-lockup {
    gap: 22px;
  }

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

  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--orange);
    color: var(--ink);
    box-shadow: 0 14px 36px rgba(0,0,0,0.32);
    font-size: 0.82rem;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

/* Escala tipográfica global alinhada ao sistema ECD. */
.section h2 {
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.036em;
  text-transform: none;
}

.section-kicker,
.eyebrow {
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.32em;
}

.problem-card h3,
.steps h3 {
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: var(--step-2);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.host-copy h3,
.enio-card h3 {
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: var(--step-5);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.036em;
  text-transform: none;
}

.big-copy,
.enio-card > p,
.audience-copy > p:not(.section-kicker) {
  font-size: var(--step-1);
  line-height: 1.55;
}

.problem-card p,
.steps p,
.host-copy > p:not(.host-role),
.check-list div,
.signup-copy > p:not(.section-kicker) {
  font-size: var(--step-0);
  line-height: 1.6;
}

/* Conteúdo integral do PDF: ajustes de composição sem reescrever a redação. */
.hero-grid,
.hero-visual,
.portrait-frame {
  min-height: 700px;
}

.hero h1 {
  max-width: 50rem;
  font-size: clamp(3rem, 4.2vw, 3.7rem);
}

.hero-title-main,
.hero h1 em {
  display: block;
  text-wrap: balance;
}

.hero-lead {
  margin: 1.7rem 0 0;
}

.hero-support {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  max-width: 720px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  color: #aaa69f;
  font-size: var(--step--1);
  line-height: 1.45;
}

.hero-support p {
  margin: 0;
}

.hero-support > div p:first-child {
  color: var(--white);
  font-weight: 500;
}

.hero-support > div p + p {
  margin-top: 8px;
}

.hero-mentor {
  display: grid;
  align-content: start;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 24px;
}

.hero-mentor strong {
  color: var(--white);
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-weight: 600;
}

.hero-mentor-enio {
  position: absolute;
  z-index: 7;
  top: calc(49% + 4.25rem);
  right: 0;
  width: min(16rem, 46%);
  border-left-color: var(--orange);
  padding-block: 4px;
  color: #aaa69f;
  font-size: var(--step--1);
  line-height: 1.45;
}

.hero-mentor-enio span {
  display: block;
}

.hero-mentor-enio span:first-of-type {
  white-space: nowrap;
}

.hero-cta {
  margin-top: 24px;
}

.problem.section {
  padding-block: 0;
}

.problem-layout {
  --problem-gutter: max(1rem, calc((100vw - var(--container)) / 2));
  --problem-gap: clamp(3.5rem, 6vw, 6.5rem);
  display: grid;
  width: 100%;
  grid-template-columns:
    minmax(0, calc(50vw - var(--problem-gutter) - var(--problem-gap)))
    50vw;
  align-items: stretch;
  gap: var(--problem-gap);
  margin-inline: 0;
  padding-left: var(--problem-gutter);
}

.problem-layout h2 {
  max-width: 650px;
}

.problem-content {
  min-width: 0;
  align-self: center;
  padding-block: 104px;
}

.problem-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(32rem, 42vw, 42rem);
  aspect-ratio: 1.16 / 1;
  margin: 0;
  border-radius: 0;
  background: var(--ink-soft);
}

.problem-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: inherit;
  box-shadow: inset 0 -70px 90px -90px rgba(255, 107, 0, 0.48);
  pointer-events: none;
}

.problem-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.problem-copy {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.problem-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--step-1);
  line-height: 1.55;
}

.problem-copy p + p {
  margin-top: 22px;
}

.method-note {
  max-width: 510px;
  margin: 28px 0 0;
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 20px;
  color: #bbb6ae;
  font-size: var(--step-0);
  line-height: 1.6;
}

.host-copy > p:not(.host-role) {
  margin: 20px 0 0;
}

.enio-bio p {
  margin: 0;
  font-size: var(--step-1);
  line-height: 1.55;
}

.enio-bio p + p {
  margin-top: 20px;
}

.enio-card {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  border-top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0;
}

.enio-content {
  padding: 64px;
}

.enio-card .host-role {
  color: var(--orange);
}

.enio-bio p {
  color: #aaa69f;
}

.enio-image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--surface);
  padding-top: 50px;
}

.enio-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.enio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.gallery {
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: var(--ink-soft);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 -70px 90px -90px rgba(255, 107, 0, 0.72);
  pointer-events: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item img:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -5px;
}

.gallery-lightbox {
  width: min(92vw, 78rem);
  max-width: none;
  max-height: 92vh;
  overflow: visible;
  border: 0;
  padding: 0;
  background: transparent;
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.gallery-lightbox img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 88vh;
  margin: auto;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
}

.gallery-lightbox-close {
  position: absolute;
  z-index: 2;
  top: -1rem;
  right: -1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 0 0 0.2rem;
  background: var(--orange);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-close:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

@media (hover: hover) {
  .gallery-item:hover img {
    transform: scale(1.025);
    filter: saturate(1.08) contrast(1.03);
  }
}

.participation-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px 40px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 42px;
}

.participation-callout h3 {
  margin: 0;
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: var(--step-3);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.participation-callout p {
  grid-column: 1 / -1;
  max-width: 780px;
  margin: 0;
  color: #aaa69f;
  font-size: var(--step-0);
  line-height: 1.6;
}

.signup-copy > p {
  margin: 18px 0 0;
}

.signup-cta {
  margin-top: 24px;
}

.signup-limited {
  color: #a7a29b;
}

.footer-inner {
  justify-content: space-between;
}

@media (max-width: 980px) {
  .hero-grid {
    min-height: auto;
  }

  .hero-visual,
  .portrait-frame {
    min-height: 620px;
  }

  .hero-mentor-enio {
    right: 3%;
    width: 16rem;
  }

  .problem-layout {
    width: min(calc(100% - 2rem), var(--container));
    grid-template-columns: 1fr;
    gap: 34px;
    margin-inline: auto;
    padding-left: 0;
  }

  .problem-content {
    align-self: auto;
    padding-block: 80px 0;
  }

  .problem-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }

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

  .enio-content {
    padding: 46px;
  }

  .enio-image {
    min-height: 600px;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.6rem);
  }

  .hero-title-break {
    display: none;
  }

  .hero-support {
    grid-template-columns: 1fr;
  }

  .hero-mentor {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    padding-top: 16px;
    padding-left: 0;
  }

  .hero-mentor-enio {
    top: auto;
    right: 0;
    bottom: 86px;
    width: min(14rem, 62%);
    border-top: 0;
    border-left: 2px solid var(--orange);
    padding: 4px 0 4px 14px;
    background: rgba(11, 11, 11, 0.76);
    backdrop-filter: blur(7px);
  }

  .hero-visual,
  .portrait-frame {
    min-height: 480px;
  }

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

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

  .enio-content {
    padding: 40px 26px;
  }

  .enio-image {
    min-height: 440px;
    aspect-ratio: auto;
  }

  .host-image {
    min-height: 440px;
  }

  .host-feature,
  .enio-card {
    border-radius: 20px;
  }

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

  .gallery-lightbox {
    width: calc(100vw - 32px);
  }

  .gallery-lightbox-close {
    top: -0.75rem;
    right: -0.25rem;
  }

  .access-grid {
    gap: 16px;
  }

  .access-card {
    width: min(calc((100vw - 32px - 15px) / 1.15), 21rem);
    min-height: 22.75rem;
  }

  .participation-callout p {
    grid-column: auto;
  }
}

@media (max-width: 64rem) {
  .access {
    height: auto !important;
    min-height: auto;
    padding: 104px 0;
  }

  .access-scene {
    position: relative;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .access-container {
    min-height: auto;
    padding-block: 0;
  }

  .access-header {
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 16rem);
  }

  .access-heading {
    display: block;
  }

  .access-heading h2 {
    font-size: 55px;
  }

  .access-viewport {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 6px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .access-viewport::-webkit-scrollbar {
    display: none;
  }

  .access-grid {
    transform: none !important;
  }

  .access-card,
  .access-card[data-active="true"] {
    opacity: 1;
    filter: none;
    scroll-snap-align: center;
    transform: none !important;
  }
}

@media (max-width: 52rem) {
  .access-header {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .access-progress {
    width: min(100%, 22rem);
  }
}

@media (max-width: 47.5rem) {
  .access {
    padding: 82px 0;
  }

  .access-container {
    width: min(calc(100% - 32px), var(--container));
  }

  .access-heading h2 {
    max-width: 100%;
    font-size: 55px;
    line-height: 0.99;
  }

  .access-followup {
    padding-bottom: 82px;
  }
}

@media (max-width: 38rem) {
  .access-grid {
    gap: 15px;
  }

  .access-card {
    width: min(calc((100vw - 32px - 15px) / 1.25), 21rem);
  }
}

.hero-mobile-people {
  display: none;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.signup-form button[aria-busy="true"] {
  opacity: 0.65;
  cursor: wait;
}

.footer-inner {
  flex-wrap: wrap;
}

.footer-inner p {
  flex-basis: 100%;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.back-to-top {
  position: fixed;
  z-index: 29;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--ink);
  color: var(--orange);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
}

.back-to-top:hover {
  background: var(--orange);
  color: var(--ink);
}

.simple-page {
  min-height: 100vh;
  padding: 32px 0 96px;
  background: var(--paper);
}

.simple-header {
  padding-bottom: 32px;
}

.simple-header .brand img {
  width: 220px;
}

.simple-content {
  max-width: 850px;
  padding-top: clamp(48px, 8vw, 100px);
}

.simple-content h1 {
  max-width: none;
  margin: 0 0 26px;
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: var(--step-5);
  line-height: 1.04;
  letter-spacing: -0.036em;
}

.simple-content h2 {
  margin: 36px 0 12px;
  font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
  font-size: var(--step-2);
  line-height: 1.2;
}

.simple-content p {
  color: var(--muted);
  font-size: var(--step-0);
}

.simple-content .button {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .header-inner {
    justify-content: center;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-bottom: 50px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    text-align: center;
  }

  .hero .eyebrow {
    display: block;
    text-align: center;
  }

  .hero .eyebrow span {
    display: block;
    margin: 0 auto 8px;
  }

  .hero h1,
  .hero-lead,
  .hero-support {
    margin-inline: auto;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > * {
    width: 100%;
  }

  .hero-support {
    margin-top: 20px;
    padding-bottom: 16px;
  }

  .hero-mentor-bruno,
  .hero-mentor-enio {
    display: none;
  }

  .hero-visual {
    order: 1;
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }

  .portrait-frame {
    width: 100%;
    height: min(86vw, 360px);
    min-height: 0;
    overflow: hidden;
    border-radius: 0;
  }

  .portrait-frame img {
    top: -24px;
    bottom: auto;
    left: 50%;
    width: 130%;
    transform: translateX(-50%);
  }

  .hero-mobile-people {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-mobile-people p {
    display: grid;
    align-content: start;
    gap: 2px;
    margin: 0;
    color: #aaa69f;
    font-size: 0.76rem;
    line-height: 1.35;
    text-align: center;
  }

  .hero-mobile-people strong {
    color: var(--white);
    font-family: "ECD Montserrat", "Inter", Arial, sans-serif;
    font-size: 0.8rem;
  }

  .live-card {
    position: static;
    align-self: stretch;
    justify-content: center;
    margin: 4px 0 0;
  }

  .hero-cta {
    order: 2;
    margin-top: 12px;
  }

  .hero-cta .button-primary {
    display: none;
  }

  .hero-cta .button-ghost {
    width: 100%;
  }

  .problem-layout {
    width: 100%;
    gap: 0;
  }

  .problem-content {
    padding: 82px 16px 40px;
    text-align: center;
  }

  .problem-media {
    width: 100%;
  }

  .method-layout,
  .hosts-heading,
  .host-copy,
  .enio-content,
  .audience-grid,
  .access-header,
  .participation-callout,
  .signup-copy,
  .signup-form,
  .footer-inner {
    text-align: center;
  }

  .method-intro > p:not(.section-kicker) {
    margin-inline: auto;
  }

  .steps li {
    display: block;
  }

  .steps > li > span {
    display: block;
    margin-bottom: 14px;
  }

  .hosts-heading h2 {
    text-align: center;
  }

  .host-image,
  .enio-image {
    width: 100%;
  }

  .host-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .enio-image img {
    object-fit: cover;
    object-position: center bottom;
  }

  .audience-copy > p:not(.section-kicker),
  .signup-copy h2,
  .signup-copy > p {
    margin-inline: auto;
  }

  .check-list div {
    display: block;
    text-align: center;
  }

  .access-progress {
    margin-inline: auto;
  }

  .access-heading h2 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
    text-align: center;
  }

  .participation-callout {
    justify-items: center;
  }

  .signup-shell {
    gap: 44px;
  }

  .signup-form label {
    text-align: left;
  }

  .signup-form .consent {
    text-align: left;
  }

  .signup-form .button-full {
    gap: 6px;
    padding-inline: 8px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .footer-inner {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .landing-page .back-to-top {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

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

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