:root {
  --navy: #020739;
  --orange: #e85102;
  --peach: #ffc69d;
  --paper: #fafafa;
  --ink: #171522;
  --muted: #737c90;
  --font: "Plus Jakarta Sans", Arial, sans-serif;
  --poppins: "Poppins", Arial, sans-serif;
  --page-gutter: clamp(22px, 5.8vw, 90px);
  --header-height: 76px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.12;
}
p {
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button:disabled {
  cursor: default;
  opacity: 0.45;
}
::selection {
  background: #ffc69d;
  color: #020739;
}
:focus-visible {
  outline: 3px solid #ef7d32;
  outline-offset: 6px;
}
section[id] {
  scroll-margin-top: 20px;
}
.sr-only {
  position: absolute !important;
  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: -100px;
  left: 20px;
  z-index: 300;
  padding: 14px 22px;
  background: white;
  color: var(--navy);
}
.skip-link:focus {
  top: 10px;
}
.section-shell {
  width: calc(100% - var(--page-gutter) * 2);
  max-width: 1280px;
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.5;
}
.muted {
  color: var(--muted);
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #c94200;
  transform: translateY(-2px);
}
.button .icon-arrow {
  filter: brightness(0) invert(1);
}
.button--peach {
  background: var(--peach);
  color: var(--navy);
}
.button--peach:hover {
  background: #ffb27c;
}
.button--peach .icon-arrow {
  filter: none;
}
.button--navy {
  background: var(--navy);
}
.button--navy:hover {
  background: #14246b;
}
.button--outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}
.button--outline:hover {
  background: #ffffff18;
}
.text-link {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
}
button.registration-trigger {
  appearance: none;
  font-family: inherit;
}
button.text-link.registration-trigger {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
}
.registration-trigger[aria-busy="true"] {
  cursor: wait;
}
.registration-feedback {
  position: fixed;
  right: max(20px, var(--page-gutter));
  bottom: 24px;
  z-index: 250;
  width: min(420px, calc(100vw - 40px));
  padding: 18px 58px 18px 20px;
  border: 1px solid #ffffff33;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  box-shadow: 0 16px 48px #00000045;
}
.registration-feedback[data-state="error"] {
  border-color: #ff9657;
}
.registration-feedback[data-state="success"] {
  border-color: #8fd3b0;
}
.registration-feedback p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}
.registration-feedback a {
  display: inline-block;
  margin-top: 8px;
  color: var(--peach);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.registration-feedback button {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 25px;
}
.icon-arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 28px;
  padding: 11px 0;
  border-top: 1px solid #ffffff55;
  font-size: 9px;
  color: white;
}
.section-label img {
  width: 64px;
  height: auto;
}
.section-label--dark {
  border-color: #17152244;
  color: var(--ink);
}
.section-label--dark img {
  filter: brightness(0);
}
/* Shared navigation. The fallback navigation remains usable without JavaScript. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: block;
  height: var(--header-height);
  padding: 0;
  color: white;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.site-header.menu-open {
  background: #020739ed;
  backdrop-filter: blur(18px);
  box-shadow: 0 3px 20px #0000000a;
}
.brand {
  position: absolute;
  /* Figma 66:4 / 195:3: x 41 in a 1440 px frame. */
  left: 2.8472222vw;
  top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  flex-shrink: 0;
  width: 84.6547px;
}
.brand img {
  width: 100%;
  height: auto;
}
.home-page .brand {
  width: 5.8787986vw;
}
.main-nav {
  position: absolute;
  /* Figma 214:1792: x 530.5, y 22 and width 489 in a 1440 px frame. */
  left: 36.8402778vw;
  top: 10px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.home-page .main-nav {
  width: 43.3333333vw;
  gap: 2.2222222vw;
}
.home-page .main-nav a {
  min-width: 0;
  font-size: 0.9111111vw;
  line-height: 1.3666667vw;
  letter-spacing: 0.0455556vw;
}
.home-page .main-nav a:nth-child(1),
.home-page .main-nav a:nth-child(5) {
  flex: 0 0 3.8194444vw;
}
.home-page .main-nav a:nth-child(2) {
  flex: 0 0 5.9027778vw;
}
.home-page .main-nav a:nth-child(3) {
  flex: 0 0 5.9722222vw;
}
.home-page .main-nav a:nth-child(4) {
  flex: 0 0 5.5555556vw;
}
.home-page .main-nav a:nth-child(6) {
  flex: 0 0 7.3611111vw;
}
.home-page .main-nav sup {
  font-size: 0.5555556vw;
  margin-top: -0.8333333vw;
}
.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  font: 13.12px/19.68px var(--poppins);
  letter-spacing: 0.656px;
}
.main-nav sup {
  font-size: 8px;
  opacity: 0.6;
  align-self: center;
  margin-top: -12px;
}
.main-nav a:after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.2s;
}
.main-nav a:hover:after,
.main-nav a[aria-current]:after {
  width: 100%;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 12px;
  touch-action: manipulation;
}
.menu-toggle span {
  font-size: 23px;
  transition: transform 0.2s;
}
.menu-open .menu-toggle span {
  transform: rotate(45deg);
}
/* Hero uses the original Figma image and exported marks. */
.hero {
  position: relative;
  isolation: isolate;
  height: 100svh;
  min-height: 720px;
  max-height: 1080px;
  overflow: hidden;
  color: white;
  background: #c43a05;
}
.hero-photo {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
.hero:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, #0000000d 40%, #26060028 70%, #330b0045);
}
.hero-glow {
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 800px;
  height: 800px;
  max-width: 75vw;
  max-height: 75vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #ffd074e6 0,
    #ff8c32ad 24%,
    #ff630047 48%,
    transparent 72%
  );
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
}
.hero-content {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -10%);
  width: min(850px, 72%);
  text-align: center;
}
.hero h1 {
  margin: 0 0 16px;
}
.hero h1 img {
  width: 100%;
  height: auto;
}
.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
}
.powered-by img {
  width: 73px;
  height: auto;
}
.hero .powered-by {
  justify-content: flex-end;
  margin: 20px 0 0 auto;
  font-size: 16px;
  gap: 12px;
}
.hero .powered-by img {
  width: 108px;
}
.hero-markers img {
  position: absolute;
  width: 22px;
  height: 22px;
}
.hero-markers img:nth-child(1) {
  left: 21%;
  top: 25%;
}
.hero-markers img:nth-child(2) {
  left: 74%;
  top: 33%;
}
.hero-markers img:nth-child(3) {
  left: 84%;
  top: 70%;
}
.hero-bottom {
  position: absolute;
  bottom: 28px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  font-family: var(--poppins);
}
.hero-year {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  line-height: 1.5;
  white-space: nowrap;
}
.hero-year-mark {
  font-size: 20px;
  line-height: 1;
}
.hero-bottom .text-link {
  position: relative;
  width: 322px;
  padding: 0 0 14px;
  border: 0;
  font-size: 20px;
  line-height: 1.5;
}
.hero-bottom .icon-arrow {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  filter: brightness(0) invert(1);
}
.hero-link-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
/* Invitation: a layered envelope; the static fallback is fully open. */
.invitation-section {
  position: relative;
  padding-top: 27px;
  background:
    radial-gradient(ellipse at 88% 100%, #ffe7b0 0, transparent 55%),
    radial-gradient(ellipse at 5% 100%, #c78a74 0, transparent 38%), #fafafa;
}
.invitation-stage {
  padding: 94px 0 0;
  overflow: clip;
}
.date-heading {
  text-align: center;
}
.date-heading .eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  color: #737c90;
  margin-bottom: 22px;
}
.date-heading h2 {
  font-size: clamp(62px, 9.15vw, 138px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin-bottom: 18px;
  background: linear-gradient(100deg, #e85102 25%, #813d2e 50%, #020739 79%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.date-heading .event-time {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: #e85102;
}
.venue-name {
  font-size: 24px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #6a7182;
  margin-bottom: 4px;
}
.date-heading .muted {
  font-size: 15px;
}
.envelope-scene {
  position: relative;
  z-index: 3;
  width: min(618px, 82vw);
  aspect-ratio: 619 / 423;
  margin: 220px auto -1px;
  perspective: 1100px;
  isolation: isolate;
}
.envelope-back,
.envelope-front {
  position: absolute;
  inset: 0;
  border-radius: 3px;
}
.envelope-back {
  z-index: 1;
  border: 1px solid #5279bc47;
  background:
    radial-gradient(circle at 51% 45%, #a52d2c38, transparent 31%),
    linear-gradient(155deg, #0d3273 0%, #092356 46%, #06142e 100%);
  box-shadow:
    0 20px 70px #02073942,
    inset 0 1px #668bd74d;
}
.envelope-back:before,
.envelope-back:after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 43%;
  pointer-events: none;
}
.envelope-back:before {
  left: 0;
  background: linear-gradient(45deg, transparent 49.7%, #7895cf40 50%, transparent 50.3%);
}
.envelope-back:after {
  right: 0;
  background: linear-gradient(-45deg, transparent 49.7%, #7895cf40 50%, transparent 50.3%);
}
.envelope-front {
  z-index: 4;
  top: 43%;
  overflow: hidden;
  border-top: 1px solid #6380ba36;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(180deg, #0a2356 0%, #06142f 100%);
}
.envelope-front:before,
.envelope-front:after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 58%;
}
.envelope-front:before {
  left: 0;
  background: linear-gradient(145deg, #123873 0%, #0a2456 48%, #06142f 100%);
  clip-path: polygon(0 0, 100% 48%, 0 100%);
}
.envelope-front:after {
  right: 0;
  background: linear-gradient(215deg, #0b2b66 0%, #081d47 50%, #06142f 100%);
  clip-path: polygon(100% 0, 0 48%, 100% 100%);
}
.envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 43%;
  background: linear-gradient(175deg, #123a7b 0%, #0b285f 58%, #071838 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: 50% 0;
  transform: rotateX(-180deg);
  opacity: 1;
  z-index: 1;
  backface-visibility: visible;
  will-change: transform;
}
.letter-track {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(-150% -10% 0 -10%);
}
.invitation-card {
  position: absolute;
  left: 4.5%;
  bottom: 3.5%;
  width: 91%;
  transform: translateY(-66%);
  transform-origin: 50% 100%;
  border-radius: 16px;
  box-shadow: 0 5px 28px #00000024;
  overflow: hidden;
  background: transparent;
  will-change: transform;
}
.invitation-card img {
  width: 100%;
  height: auto;
}
.invitation-artwork {
  /* Preserve the complete Figma export while cropping to its 1658 x 1057 card. */
  aspect-ratio: 1658 / 1057;
  overflow: hidden;
}
.invitation-artwork.invitation-card,
.invitation-artwork.manifesto-art-front {
  border-radius: 3.619% / 5.676%;
}
.invitation-artwork > img {
  position: absolute;
  left: -2.0507%;
  top: -2.0814%;
  width: 104.041%;
  max-width: none;
  height: auto;
}
.envelope-shadow {
  position: absolute;
  bottom: -25px;
  left: 10%;
  width: 80%;
  height: 30px;
  background: #02073930;
  filter: blur(22px);
  border-radius: 50%;
}
/* Program and people. */
.dark-world {
  position: relative;
  z-index: 2;
  background: linear-gradient(#020739 0%, #05051e 60%, #010105 100%);
  color: white;
}
.dark-world:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  right: 0;
  height: 90px;
  background: #020739;
  clip-path: polygon(0 98%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.manifesto {
  padding-top: 100px;
  padding-bottom: 95px;
}
.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(570px, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}
.manifesto-copy {
  max-width: 675px;
}
.manifesto h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}
.manifesto-art {
  position: relative;
  width: 100%;
  max-width: 558px;
  aspect-ratio: 496 / 380;
  justify-self: end;
}
.manifesto-art-front {
  position: absolute;
  width: 100%;
  height: auto;
  inset: 0;
  filter: drop-shadow(0 24px 24px #00000040);
}
.manifesto-art-front img {
  display: block;
  width: 100%;
  height: auto;
}
.manifesto-copy p {
  color: #c2c3d1;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.8;
}
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}
.topic-pills span {
  border: 1px solid #ffb68077;
  border-radius: 30px;
  padding: 8px 13px;
  font-size: 10px;
  color: #ffce9c;
}
.manifesto-action {
  text-align: center;
  margin-top: 74px;
}
.button--invitation {
  width: 168.469px;
  height: 52.248px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  overflow: hidden;
  font-size: 18.165px;
  font-weight: 500;
  line-height: 24.221px;
  white-space: nowrap;
  color: var(--navy);
  background: linear-gradient(90deg, var(--peach), var(--orange));
  box-shadow: 0 8px 28px #e8510226;
}
.button--invitation:hover {
  background: linear-gradient(90deg, #ffd4b5, #ff6715);
  box-shadow: 0 10px 32px #e8510240;
}
.event-clock {
  text-align: center;
  margin-top: 48px;
}
.coming-soon {
  color: #ffffff80;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: 9.58px;
  text-indent: 9.58px;
  margin-bottom: 19px;
  text-transform: uppercase;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 19px;
  margin-top: 0;
}
.countdown > div {
  min-width: 108px;
  padding: 24px 19px;
  border: 1.2px solid #ffffff1f;
  border-radius: 19px;
  background: #fbfbfd14;
  backdrop-filter: blur(14px);
}
.countdown > div:last-child {
  min-width: 120px;
}
.countdown strong {
  display: block;
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, #fff, #ccc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.countdown span {
  display: block;
  font-size: 10.8px;
  font-weight: 800;
  line-height: 16px;
  color: #ffffff80;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 2.15px;
}
.event-clock > .clock-note,
.event-clock > .countdown-status {
  font-size: 11px;
  color: #a3a3ba;
  margin-top: 18px;
}
.countdown-status:empty {
  display: none;
}
.programme-section {
  padding: 10px 0 60px;
}
.programme-list {
  padding-top: 64px;
}
.programme-module {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  min-height: 438px;
  padding: 48px 0;
  border-bottom: 1px solid #ffffff1a;
}
.programme-module:last-of-type {
  border-bottom: 0;
}
.programme-module:nth-child(even) .module-copy {
  order: 2;
}
.module-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  min-height: 283px;
}
.module-number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  font-family: var(--poppins);
  font-weight: 300;
  line-height: 1;
}
.module-index {
  font-size: clamp(32px, 3.36vw, 42.936px);
  line-height: 1;
  color: #ffffff1a;
}
.module-label {
  max-width: 100%;
  font-size: clamp(72px, 9.375vw, 120px);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(90deg, #fff 0%, #ffc69d 124.61%);
  background-clip: text;
  -webkit-background-clip: text;
}
.programme-module:nth-child(2) .module-label {
  background-image: linear-gradient(180deg, #fdbc8f, #e85102);
}
.programme-module:nth-child(3) .module-label {
  background-image: linear-gradient(90deg, #fffaf7, #0054e2);
}
.module-copy h2 {
  width: 100%;
  margin: 0;
  font-size: clamp(25px, 2.344vw, 30px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: normal;
  background: linear-gradient(90deg, #fff, #ffc69d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.module-copy h2::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 8px 0 16px;
  background: var(--orange);
}
.programme-module:nth-child(2) .module-copy h2 {
  background-image: linear-gradient(90deg, #ffc69d, #e85102);
}
.programme-module:nth-child(2) .module-copy h2::before {
  background-image: linear-gradient(90deg, #fdbc8f, #e85102);
}
.programme-module:nth-child(3) .module-copy h2 {
  background-image: linear-gradient(90deg, #fff, #095ae2);
}
.programme-module:nth-child(3) .module-copy h2::before {
  background-image: linear-gradient(90deg, #fff, #0859e2);
}
.module-copy > .module-description {
  max-width: 608px;
  margin: 16px 0 0;
  font: 400 14px/22.75px var(--font);
  color: #ffffffb3;
}
.module-art {
  position: relative;
  width: 100%;
  aspect-ratio: 608 / 342;
  overflow: hidden;
  border: 1px solid #ffffff33;
  border-radius: 24px;
  background: #ffffff1a;
}
.module-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.programme-module:nth-child(-n + 2) .module-art img {
  transform: rotate(90deg) scale(1.8);
}
@media (max-width: 900px) {
  .programme-list {
    padding-top: 40px;
  }
  .programme-module {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 40px 0;
  }
  .programme-module:nth-child(even) .module-copy {
    order: 0;
  }
  .module-copy {
    min-height: 0;
  }
  .module-label {
    font-size: clamp(58px, 16vw, 92px);
  }
  .module-art {
    order: 1;
  }
}
@media (max-width: 560px) {
  .programme-list {
    padding-top: 24px;
  }
  .programme-module {
    gap: 24px;
    padding: 32px 0;
  }
  .module-index {
    font-size: 28px;
  }
  .module-label {
    font-size: clamp(52px, 17vw, 76px);
  }
  .module-copy h2 {
    font-size: 24px;
  }
  .module-copy > .module-description {
    font-size: 13px;
    line-height: 1.75;
  }
  .module-art {
    border-radius: 18px;
  }
}
.programme-status {
  display: grid;
  place-items: center;
  width: min(305px, 100%);
  min-height: 52px;
  margin: 10px auto 34px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc69d, #f2650a);
  color: #16131c;
  font: 600 13px/1.3 var(--poppins);
  letter-spacing: 0.02em;
  text-align: center;
}
.people-section {
  padding: 0 0 100px;
}
.people-divider {
  height: 3px;
  margin: 0 28px;
  border: 0;
  background: #ffffff55;
}
.gradient-heading {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  font-size: 48px;
  line-height: 48px;
  font-weight: 500;
  background: linear-gradient(90deg, var(--peach) 32%, var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: normal;
  padding-top: 90px;
}
.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  gap: 36px;
  margin: 72px auto 0;
}
.person-card {
  position: relative;
  aspect-ratio: 0.75;
  overflow: hidden;
  background: #12121e;
  border-radius: 16px;
}
.person-card:focus-visible {
  outline: 2px solid #ff9657;
  outline-offset: 4px;
}
.person-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-card:after {
  content: "";
  position: absolute;
  inset: 65.5% 0 0;
  background: linear-gradient(transparent, #000000d9);
}
.person-card > div {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
}
.person-card > div h3 {
  font-size: 27px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 240px;
  margin-bottom: 6px;
}
.person-card > div h3.person-name-lines {
  font-size: 30px;
  line-height: 37.5px;
}
.person-name-lines > span[aria-hidden="true"] {
  display: block;
}
.person-card > div p {
  width: fit-content;
  white-space: nowrap;
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
  color: transparent;
  background: linear-gradient(180deg, #2d0905 32%, #e85102);
  /* Apply the gradient to the glyph height, not the extra line spacing. */
  background-size: 100% 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 1px 2px #00000055);
  margin-bottom: 0;
}
@media (hover: hover) and (pointer: fine) {
  .person-card > div p {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
  }
  .person-card:hover > div p,
  .person-card:focus-visible > div p {
    opacity: 1;
    transform: translateY(0);
  }
}
.speakers-block {
  text-align: center;
  padding-top: 105px;
  container-type: inline-size;
  margin: auto;
}
.speakers-block > h2 {
  font-size: 35px;
}
.speakers-pending {
  margin: 72px auto 0;
  font-family: var(--poppins);
  font-size: min(128px, 10cqw);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: normal;
  color: transparent;
  background: linear-gradient(90deg, #ffc69d4d, #e8510280);
  background-clip: text;
  -webkit-background-clip: text;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
/* Location and accommodation. */
.venue-section {
  position: relative;
  isolation: isolate;
  min-height: max(670px, 49.24vw);
  padding: 30px 0 45px;
  overflow: hidden;
  color: white;
  background: #020739;
}
.venue-photo {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Preserve the photo ratio while it fills the responsive section. */
  object-fit: cover;
  object-position: 50% 100%;
}
.venue-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #01052699, transparent 80%),
    linear-gradient(0deg, #020739aa, transparent 80%);
}
.venue-copy {
  position: relative;
  padding-top: 165px;
}
.venue-copy .eyebrow {
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 12px;
}
.venue-label-line {
  width: 69px;
  height: 1px;
  margin-bottom: 24px;
}
.venue-copy h2 {
  font-size: 128px;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  font-weight: 500;
}
.venue-address {
  color: #ff7f35;
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 6px;
}
.venue-copy .text-link {
  margin-top: 18px;
}
.venue-copy > .muted {
  color: #d5d6e2;
  font-size: 12px;
}
.venue-transport {
  display: grid;
  gap: 5px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  max-width: 520px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.144;
}
.venue-transport li {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
}
.venue-transport img {
  width: 15px;
  height: 16px;
  object-fit: contain;
  margin-top: 1px;
}
.button--venue-map {
  width: 180px;
  height: 50px;
  padding: 9px 10px;
  margin-top: 40px;
  border-radius: 9px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
  background: var(--orange);
}
.map-pending {
  font-size: 11px;
  color: #bdbfd1;
  margin-top: 28px;
}
/* Figma 489:5: two 408x538 cards, with a 128px gap on the desktop canvas. */
.benefits-section {
  padding-block: 80px 36px;
  text-align: center;
  font-family: var(--poppins);
}
.benefits-section h2 {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  font-size: 35px;
  font-weight: 500;
  line-height: 48px;
  color: #0c177d;
  background: linear-gradient(90deg, #0c177d 32%, var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefits-intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 408px));
  gap: clamp(32px, 8.89vw, 128px);
  max-width: 944px;
  margin: 69px auto 0;
}
.benefit-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  aspect-ratio: 408 / 538;
  border-radius: 60px;
  background: var(--navy);
  color: #fff;
}
.benefit-card-action {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.benefit-card-action:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -8px;
}
.benefit-card:has(.benefit-card-action:hover) .benefit-photo,
.benefit-card:has(.benefit-card-action:focus-visible) .benefit-photo {
  transform: scale(1.025);
}
.benefit-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 350ms ease;
}
.benefit-link {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 36px;
  min-height: 44px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding-right: 14px;
  font-size: 14.468px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  text-shadow: 0 1px 4px #000;
}
.benefit-link-line {
  max-width: 100%;
  height: 2.17px;
}
.benefit-link-arrow {
  position: absolute;
  top: 17px;
  right: 0;
  width: 7px;
  height: 7px;
}
.benefit-status {
  position: absolute;
  left: 10%;
  bottom: 16px;
  margin: 0;
  padding: 1px 8px;
  border-radius: 12px;
  background: #020739cc;
  font-size: 11px;
  line-height: 18px;
}
.benefit-dialog {
  width: min(1240px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #fafafa;
  color: #000;
  box-shadow: 0 30px 100px #0008;
}
.benefit-dialog::backdrop {
  background: #020739c7;
  backdrop-filter: blur(8px);
}
.benefit-dialog-scroll {
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.benefit-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #0c177d33;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 6px 24px #0207391f;
  font: 300 28px/1 var(--poppins);
  cursor: pointer;
}
.benefit-dialog-close:hover {
  background: #fff2e9;
}
.benefit-dialog-close:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.benefit-dialog .section-shell {
  width: 100%;
  max-width: none;
  padding-inline: clamp(28px, 5vw, 70px);
}
.benefit-dialog .accommodation-section,
.benefit-dialog .dining-section {
  padding-block: 76px 64px;
}
@media (prefers-reduced-motion: reduce) {
  .benefit-photo {
    transition: none;
  }
}
.dining-section {
  padding: 80px 0 88px;
}
.dining-section h2 {
  margin: 0;
  text-align: center;
  font-family: var(--poppins);
  font-size: 14.92px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}
.dining-title-line {
  width: 48.087px;
  height: 1.74px;
  margin: 10px auto 0;
}
.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 58px);
  margin-top: 76px;
}
.dining-card {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Open Sans", var(--font);
  color: #000;
}
.dining-card h3 {
  margin: 0 0 3px;
  font-size: clamp(28px, 3vw, 43.19px);
  font-weight: 700;
  line-height: 1.366;
}
.dining-offer {
  max-width: 330px;
  margin: 0 0 6px;
  font-size: clamp(23px, 2.1vw, 30.209px);
  font-weight: 700;
  line-height: 1.12;
}
.dining-code {
  margin: 0;
  font-family: "Inter", var(--font);
  font-size: clamp(15px, 1.3vw, 18.509px);
  line-height: 22px;
  color: var(--orange);
}
.accommodation-section {
  padding: 80px 0 88px;
}
.accommodation-section h2 {
  margin: 0;
  text-align: center;
  font-family: var(--poppins);
  font-size: 14.92px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: normal;
  color: #000;
}
.accommodation-title-line {
  width: 48.087px;
  height: 1.74px;
  margin: 10px auto 0;
}
.accommodation-carousel {
  position: relative;
  margin-top: 76px;
}
.accommodation-grid {
  --accommodation-gap: clamp(24px, 3.4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: var(--accommodation-gap);
  margin-top: 0;
}
.accommodation-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  box-shadow: 0 8px 26px #02073924;
  font: 500 27px/1 var(--poppins);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}
.accommodation-carousel-control--previous {
  left: -58px;
}
.accommodation-carousel-control--next {
  right: -58px;
}
.accommodation-carousel-control:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.accommodation-carousel-control:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.accommodation-grid:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 14px;
}
.accommodation-grid.is-enhanced {
  grid-template-columns: calc((100% - var(--accommodation-gap) - var(--accommodation-gap)) / 3);
  gap: 0;
  overflow: hidden;
}
.accommodation-grid.is-enhanced .hotel-card {
  grid-area: 1 / 1;
  transition:
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 350ms ease;
  will-change: transform, opacity;
}
.accommodation-grid.is-enhanced .hotel-card[data-position="previous"] {
  transform: translateX(0);
}
.accommodation-grid.is-enhanced .hotel-card[data-position="main"] {
  transform: translateX(calc(100% + var(--accommodation-gap)));
}
.accommodation-grid.is-enhanced .hotel-card[data-position="next"] {
  transform: translateX(calc(200% + var(--accommodation-gap) + var(--accommodation-gap)));
}
.accommodation-grid.is-enhanced .hotel-card[data-position="before"] {
  transform: translateX(calc(-100% - var(--accommodation-gap)));
  opacity: 0;
  pointer-events: none;
}
.accommodation-grid.is-enhanced .hotel-card[data-position="after"],
.accommodation-grid.is-enhanced .hotel-card[data-position="off"] {
  transform: translateX(calc(300% + var(--accommodation-gap) + var(--accommodation-gap) + var(--accommodation-gap)));
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .accommodation-grid.is-enhanced .hotel-card {
    transition: none;
  }
  .accommodation-carousel-control {
    transition: none;
  }
}
.hotel-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Open Sans", var(--font);
  color: #000;
}
.hotel-stars {
  display: flex;
  gap: 10.467px;
  margin-bottom: 27.66px;
}
.hotel-stars img {
  width: 17.642px;
  height: 16.775px;
}
.hotel-card h3 {
  font-size: clamp(28px, 3vw, 43.19px);
  font-weight: 700;
  line-height: 1.366;
  min-height: calc(2 * 1.366em);
  margin-bottom: 3px;
}
.hotel-title-line {
  width: min(278.969px, 100%);
  height: 0.8px;
  margin-bottom: 21px;
}
.hotel-card .hotel-rate {
  font-size: clamp(23px, 2.1vw, 30.209px);
  font-weight: 700;
  line-height: 1.36;
  min-height: calc(2 * 1.36em);
  margin: 0 0 1px;
}
.hotel-card .hotel-offer {
  font-family: "Inter", var(--font);
  font-size: clamp(15px, 1.3vw, 18.509px);
  line-height: 22px;
  color: var(--orange);
  margin: 0;
}
.hotel-contact {
  display: grid;
  gap: 12.93px;
  margin: auto 0 0;
  padding-top: 34px;
  font-style: normal;
  font-size: 13.744px;
  line-height: 20.044px;
}
.hotel-contact > div {
  display: grid;
  grid-template-columns: 20.044px minmax(0, 1fr);
  align-items: start;
  gap: 9.6px;
}
.hotel-icon {
  position: relative;
  display: inline-block;
  width: 20.044px;
  height: 20.044px;
}
.hotel-icon img {
  position: absolute;
  max-width: none;
}
.hotel-contact a {
  overflow-wrap: anywhere;
}
.hotel-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hotel-card .button--hotel,
.dining-card .button--hotel {
  width: 137.07px;
  min-height: 40.478px;
  height: 40.478px;
  padding: 0 12px;
  margin-top: 35px;
  border: 0;
  background: url("/assets/icons/hotel-button.svg") center / 100% 100% no-repeat;
  color: #fff;
  font-size: 13.371px;
  font-weight: 700;
  line-height: 18px;
}
/* Figma canvas: 1382x921; front 412x526, rear photos at 41.94%. */
.gallery-section {
  position: relative;
  isolation: isolate;
  container-type: inline-size;
  overflow: hidden;
  width: calc(100% - 56px);
  max-width: 1382px;
  aspect-ratio: 1382 / 921;
  margin: 28px auto;
  border-radius: 10px;
  background: #030305;
  color: white;
}
.gallery-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}
.gallery-heading {
  position: absolute;
  top: 43.3225%;
  left: 0;
  width: 100%;
  margin: 0;
  white-space: nowrap;
  font-family: var(--poppins);
  font-size: 6.8741cqw;
  font-weight: 400;
  line-height: 1.063;
  letter-spacing: normal;
  text-align: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.gallery-heading-track {
  display: flex;
  width: max-content;
}
.gallery-heading-copy {
  flex: 0 0 auto;
  min-width: 100cqw;
  padding-inline: 2.3878cqw;
  color: transparent;
  background: linear-gradient(90deg, #fff0, #fff 50.481%, #fff0);
  background-clip: text;
  -webkit-background-clip: text;
}
.gallery-heading-copy[aria-hidden="true"] {
  display: none;
}
.gallery-section.is-enhanced .gallery-heading-copy[aria-hidden="true"] {
  display: block;
}
.gallery-section.is-enhanced .gallery-heading-track {
  animation: gallery-heading-drift 24s linear infinite;
  animation-play-state: paused;
}
.gallery-section[data-playing="true"] .gallery-heading-track {
  animation-play-state: running;
}
@keyframes gallery-heading-drift {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.gallery-markers {
  position: absolute;
  inset: 39.74% 6.5% auto;
  height: 18.13%;
  display: grid;
  grid-template-columns: 18px 18px;
  grid-template-rows: 18px 18px;
  align-content: space-between;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}
.gallery-markers img {
  width: 100%;
  height: 100%;
}
.gallery-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  z-index: 2;
}
.gallery-stage:focus-visible {
  outline-offset: -6px;
}
.gallery-slide {
  position: absolute;
  left: 36.7583%;
  top: 21.4984%;
  margin: 0;
  width: 29.8119%;
  transform-origin: center top;
  transform: translate(0, 0) scale(1);
  z-index: 3;
}
.gallery-section.is-enhanced .gallery-slide {
  transition: transform 1s cubic-bezier(0.45, 0, 0.2, 1);
}
.gallery-slide[data-position="previous"] {
  transform: translate(-27.1782cqw, 25.5427cqw) scale(0.419408);
  z-index: 1;
}
.gallery-slide[data-position="next"] {
  transform: translate(27.1632cqw, 25.5427cqw) scale(0.419408);
  z-index: 2;
}
.gallery-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 412 / 526;
  border-radius: 2.36245cqw;
  overflow: hidden;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-photo img[src*="gallery-one"] {
  position: absolute;
  top: 0;
  left: -6.87%;
  width: 170.23%;
  max-width: none;
  object-fit: fill;
}
.gallery-slide figcaption {
  margin-top: 2.53256cqw;
  text-align: center;
  font-family: var(--poppins);
  font-weight: 400;
  font-size: 1.44718cqw;
  line-height: 2.67728cqw;
  color: white;
}
.gallery-caption-line {
  width: 25.7598cqw;
  max-width: 100%;
  height: 3px;
  margin-top: 0.72359cqw;
  margin-inline: auto;
}
.gallery-slide figcaption a {
  text-underline-offset: 4px;
}
.catalog-controls,
.rail-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.catalog-controls button,
.rail-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid #ffffff70;
  border-radius: 50%;
  color: inherit;
  font-size: 19px;
  transition: background 0.2s;
}
.rail-controls button:hover {
  background: #ffffff20;
}
.catalog-counter {
  font-size: 11px;
  letter-spacing: 0.07em;
  min-width: 50px;
  text-align: center;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding-top: 105px;
  padding-bottom: 115px;
}
.faq-intro h2 {
  font-size: clamp(32px, 3.3vw, 45px);
  letter-spacing: -0.04em;
}
.faq-intro p {
  font-size: 13px;
  color: var(--orange);
  max-width: none;
}
.faq-registration-button {
  width: fit-content;
  margin-top: 24px;
}
.faq-intro h2 strong {
  color: var(--orange);
}
.faq-list details {
  border-bottom: 1px solid #ddd9d5;
}
.faq-list details:first-child {
  border-top: 1px solid #ddd9d5;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 67px;
  font-size: 13px;
  cursor: pointer;
  padding: 15px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary img {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}
.faq-list details[open] summary img {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 12px;
  line-height: 1.9;
  color: #696576;
  padding: 0 30px 15px 0;
}
.faq-list details > p a {
  color: #c44807;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer {
  background: #0c177d;
  color: white;
  padding: 55px 0 25px;
}
.footer-top {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand > img {
  width: 150px;
  height: auto;
}
.footer-brand > p {
  font-size: 12px;
  color: #babee3;
  margin: 20px 0;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.social-links a,
.social-links > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.social-links img {
  width: 18px;
  height: 18px;
}
.social-links > span {
  opacity: 0.5;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px 45px;
  padding-top: 5px;
}
.footer-links a {
  font-size: 12px;
  min-height: 30px;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #ffffff28;
  margin-top: 44px;
  padding-top: 20px;
  font-size: 10px;
  color: #b2b7e0;
}
.footer-bottom p {
  margin: 0;
}

.gallery-heading strong {
  font-weight: 600;
}
.gradient-heading {
  text-align: center;
}
.manifesto h2 strong {
  font-weight: 600;
  color: #fff;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 45px;
  padding: 55px var(--page-gutter);
}
.venue-map-note {
  font-size: 11px;
  color: #d8d9e6;
  margin-top: 30px;
}

/* Registration page */
.registration-page {
  background: var(--paper);
}
.registration-page .site-header:not(.menu-open) {
  background: linear-gradient(180deg, #8f2908d9, transparent);
}
.registration-hero {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  overflow: hidden;
  padding: calc(var(--header-height) + 55px) 0 55px;
  background:
    radial-gradient(circle at 78% 20%, #ffd4b5 0 2px, transparent 3px),
    radial-gradient(circle at 84% 32%, #ffb477 0 2px, transparent 3px),
    radial-gradient(ellipse at 77% 18%, #ff7a27 0, transparent 35%),
    radial-gradient(ellipse at 20% 105%, #a52808 0, transparent 44%),
    var(--orange);
  color: white;
}
.registration-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 80px solid #ffd0a42f;
  border-top-color: #ffbd8275;
  border-radius: 50%;
  transform: rotate(-22deg);
}
.registration-hero__glow {
  position: absolute;
  z-index: -1;
  left: -12%;
  top: -60%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffba775f, transparent 68%);
}
.registration-hero__content {
  position: relative;
}
.registration-hero .eyebrow {
  margin-bottom: 24px;
  color: #fff1e7;
}
.registration-hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 600;
  letter-spacing: -0.065em;
}
.registration-hero__content > p:not(.eyebrow) {
  max-width: 610px;
  color: #fff0e6;
  font-size: clamp(16px, 1.6vw, 21px);
}
.registration-facts {
  display: flex;
  gap: 60px;
  margin: 32px 0 0;
}
.registration-facts div {
  display: grid;
  gap: 7px;
}
.registration-facts dt {
  color: #ffd3b4;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.registration-facts dd {
  margin: 0;
  font-family: var(--poppins);
  font-size: 13px;
}
.registration-section {
  padding: 75px 0 130px;
  background:
    radial-gradient(ellipse at 10% 100%, #ffc69d3b, transparent 38%),
    var(--paper);
}
.registration-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(560px, 1.35fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: start;
}
.registration-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}
.registration-intro .eyebrow {
  margin-bottom: 18px;
  color: var(--orange);
}
.registration-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4vw, 62px);
  letter-spacing: -0.05em;
}
.registration-intro > p:last-child {
  color: var(--muted);
  font-size: 12px;
}
.registration-intro > p span,
.registration-form label > span:not(.optional),
.access-options legend > span {
  color: var(--orange);
}
.registration-social-prompt {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #dedde4;
}
.registration-social-prompt h3 {
  margin: 0;
  color: var(--ink);
  font: 600 18px/1.3 var(--poppins);
  letter-spacing: -0.02em;
}
.registration-social-prompt > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.registration-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.registration-social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
}
.registration-social-links a:hover {
  background: var(--orange);
}
.registration-social-links a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.registration-social-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.registration-card {
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid #dedde4;
  border-radius: 10px;
  background: white;
  box-shadow: 0 24px 70px #02073912;
}
.registration-success {
  display: flex;
  gap: 16px;
  margin-bottom: 34px;
  padding: 20px;
  border-radius: 7px;
  background: #effaf4;
  color: #164c32;
}
.registration-success:focus {
  outline: none;
}
.registration-success > span {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: #148c55;
  color: white;
}
.registration-success strong {
  font-size: 14px;
}
.registration-success p {
  margin: 3px 0 0;
  font-size: 12px;
  line-height: 1.5;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 22px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field--wide {
  grid-column: 1 / -1;
}
.registration-form label,
.access-options legend {
  margin-bottom: 9px;
  color: #302d3b;
  font: 500 10px/1.45 var(--poppins);
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.registration-form .optional {
  margin-left: 5px;
  color: #9a97a5;
  font-size: 8px;
}
.registration-form input:not([type="radio"]),
.registration-form select,
.registration-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid #cac8d1;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: 14px/1.5 var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.registration-form textarea {
  min-height: 112px;
  resize: vertical;
}
.registration-form input:not([type="radio"]):focus,
.registration-form select:focus,
.registration-form textarea:focus {
  border-color: #315fe8;
  outline: 0;
  box-shadow: 0 0 0 3px #315fe824;
}
.form-field small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
}
.field-validation-error,
.validation-summary-errors {
  color: #b22d20;
  font-size: 10px;
}
.field-validation-error {
  margin-top: 6px;
}
.form-validation-summary:empty,
.validation-summary-valid {
  display: none;
}
.form-validation-summary ul {
  margin: 0 0 24px;
  padding: 15px 15px 15px 32px;
  border-left: 3px solid #b22d20;
  background: #fff4f2;
}
.access-options {
  margin: 34px 0 0;
  padding: 0;
  border: 0;
}
.access-options legend {
  width: 100%;
}
.access-options__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.access-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 85px;
  margin: 0 !important;
  padding: 17px;
  border: 1px solid #d4d2db;
  border-radius: 6px;
  cursor: pointer;
  text-transform: none !important;
  transition: border-color 0.2s, background 0.2s;
}
.access-option:has(input:checked) {
  border-color: #315fe8;
  background: #f3f6ff;
}
.access-option input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #315fe8;
}
.access-option span {
  display: grid;
  gap: 5px;
}
.access-option strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
}
.access-option small {
  color: var(--muted);
  font: 10px/1.45 var(--font);
  letter-spacing: 0;
}
.registration-submit {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.registration-submit .button {
  flex: 0 0 auto;
  min-width: 180px;
}
.registration-submit .button:disabled,
.registration-submit .button:disabled:hover {
  background: #b8440c;
  opacity: 0.72;
  transform: none;
}
[data-registration-form][data-submitting="true"] .registration-submit .icon-arrow {
  display: none;
}
.registration-submit > p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}
.registration-submit > p a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 899px) {
  .registration-hero {
    min-height: 390px;
    padding-top: calc(var(--header-height) + 45px);
  }
  .registration-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .registration-intro {
    position: static;
  }
}

@media (max-width: 600px) {
  .registration-hero {
    min-height: 420px;
    padding-bottom: 45px;
  }
  .registration-hero h1 {
    font-size: 58px;
  }
  .registration-facts {
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
  }
  .registration-section {
    padding: 55px 0 80px;
  }
  .registration-card {
    padding: 24px 18px 28px;
  }
  .form-grid,
  .access-options__grid {
    grid-template-columns: 1fr;
  }
  .form-field--wide {
    grid-column: auto;
  }
  .registration-submit {
    align-items: stretch;
    flex-direction: column;
  }
  .registration-submit .button {
    width: 100%;
  }
}
