:root {
  --ink: #f8f8ff;
  --muted: #b8b9cd;
  --night: #03040f;
  --navy: #070921;
  --violet: #8f62ff;
  --electric: #42d7ff;
  --line: rgba(184, 192, 255, 0.24);
  --glass: rgba(7, 8, 28, 0.72);
  --cta-radius: 999px;
  --cta-border: rgba(200, 193, 255, 0.48);
  --cta-border-bright: rgba(225, 220, 255, 0.82);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: #090a1a;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(3, 4, 15, 0.82), transparent);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled, .site-header--solid {
  border-color: rgba(255,255,255,.08);
  background: rgba(3,4,15,.82);
  backdrop-filter: blur(18px) saturate(120%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 50%; box-shadow: 0 0 20px rgba(72,206,255,.2); }
.brand span { font-family: var(--display); font-size: 1.05rem; letter-spacing: .04em; }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.site-header nav a {
  position: relative;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: color .22s ease, text-shadow .22s ease;
}
.site-header nav a[href^="/private-access/"] {
  color: rgba(224, 220, 255, .9);
  text-shadow: 0 0 16px rgba(119, 102, 255, .18);
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d6c7ff, transparent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.site-header nav a:hover, .site-header nav a:focus-visible, .site-header nav a[aria-current="page"] { color: white; }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after, .site-header nav a[aria-current="page"]::after { transform: scaleX(1); }

.eyebrow {
  margin: 0 0 14px;
  color: #d7d4ef;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .16em;
}
h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: .98;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.5rem, 5.3vw, 5.2rem); }
p { text-wrap: pretty; }

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--cta-radius);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .13em;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.2,.7,.2,1), color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0) scale(.985); }
.button:focus-visible, .text-action:focus-visible, input:focus-visible, textarea:focus-visible, .site-header a:focus-visible {
  outline: 2px solid rgba(140,232,255,.95);
  outline-offset: 4px;
}
.button--primary {
  color: #fbfaff;
  border-color: rgba(211, 203, 255, .66);
  background:
    radial-gradient(circle at 50% 0%, rgba(100, 122, 255, .14), transparent 56%),
    linear-gradient(145deg, rgba(19, 22, 58, .9), rgba(6, 8, 27, .88));
  box-shadow:
    0 0 0 1px rgba(112, 171, 255, .05),
    0 10px 32px rgba(26, 14, 76, .26),
    0 0 24px rgba(112, 82, 255, .13),
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -10px 26px rgba(44, 27, 112, .09);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}
.button--primary:hover {
  border-color: var(--cta-border-bright);
  background:
    radial-gradient(circle at 50% 0%, rgba(113, 143, 255, .18), transparent 58%),
    linear-gradient(145deg, rgba(23, 27, 68, .94), rgba(8, 10, 34, .92));
  box-shadow:
    0 0 0 1px rgba(133, 195, 255, .08),
    0 13px 36px rgba(24, 12, 70, .3),
    0 0 30px rgba(119, 87, 255, .2),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.button--outline {
  color: white;
  border-color: var(--cta-border);
  background: rgba(8,9,27,.42);
  box-shadow: 0 8px 26px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.07), inset 0 0 24px rgba(116,73,255,.055);
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
}
.button--outline:hover { border-color: rgba(230,226,255,.78); background: rgba(17,18,48,.58); box-shadow: 0 10px 30px rgba(0,0,0,.18), 0 0 22px rgba(114,83,255,.1), inset 0 1px 0 rgba(255,255,255,.1); }

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: #050518;
}
.hero__backdrop {
  position: absolute;
  inset: -5%;
  z-index: -3;
  background: url("/assets/hero-941.webp") center 38% / cover no-repeat;
  filter: blur(28px) saturate(.92) brightness(.48);
  transform: scale(1.08);
}
.hero__visual { position: absolute; inset: 0; z-index: -2; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3,4,15,.03) 25%, rgba(3,4,15,.28) 56%, rgba(3,4,15,.96) 100%),
    linear-gradient(90deg, rgba(3,4,15,.75), rgba(3,4,15,.06) 65%);
}
.hero__content {
  position: absolute;
  left: clamp(20px, 7vw, 112px);
  bottom: clamp(54px, 9vh, 104px);
  width: min(690px, calc(100% - 40px));
}
.hero__content h1 { max-width: 670px; margin-bottom: 28px; text-shadow: 0 4px 30px rgba(0,0,0,.5); }
.hero__content .button { min-width: 258px; min-height: 54px; padding-inline: 28px; }
.scroll-cue { position: absolute; right: clamp(20px,4vw,64px); bottom: 40px; width: 1px; height: 72px; background: rgba(255,255,255,.2); overflow: hidden; }
.scroll-cue span { display: block; width: 100%; height: 36%; background: linear-gradient(#fff, transparent); animation: scan 2.4s ease-in-out infinite; }
@keyframes scan { 0% { transform: translateY(-110%); } 70%,100% { transform: translateY(290%); } }

.world {
  position: relative;
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  background: #050617;
}
.world::before { content: ""; position: absolute; inset: -1px 0 auto; height: 120px; z-index: 2; background: linear-gradient(var(--night), transparent); pointer-events: none; }
.world__image { min-height: 920px; overflow: hidden; }
.world__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.world__copy {
  align-self: center;
  margin: 48px clamp(28px, 7vw, 112px) 48px clamp(22px, 5vw, 80px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 2px 34px 2px 34px;
  background: linear-gradient(145deg, rgba(10,12,39,.86), rgba(4,5,19,.72));
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 90px rgba(0,0,0,.42), inset 0 0 50px rgba(79,118,255,.05);
}
.world__copy h2 { margin-bottom: 28px; }
.world__copy p:not(.eyebrow) { max-width: 520px; margin: 0 0 18px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.65; }

.creator {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 10vw, 150px) clamp(16px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% -10%, rgba(91,61,255,.18), transparent 43%),
    linear-gradient(#050617, #03040f);
}
.creator__backdrop { position: absolute; inset: 0; z-index: -2; opacity: .17; }
.creator__backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: saturate(.86) contrast(1.05); }
.creator::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3,4,15,.94), rgba(5,6,23,.66) 48%, rgba(3,4,15,.96)), radial-gradient(circle at 50% 45%, transparent, rgba(3,4,15,.58) 70%); pointer-events: none; }
.section-heading { position: relative; z-index: 1; width: min(1180px, 100%); margin: 0 auto 42px; }
.section-heading h2 { max-width: 1050px; }
.section-heading h2 i { color: #9078ff; font-style: normal; }
.interface-frame {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(180,164,255,.3);
  border-radius: clamp(18px, 3vw, 38px);
  background: #0a0824;
  box-shadow: 0 36px 120px rgba(38,16,116,.36), 0 0 0 1px rgba(255,255,255,.04) inset;
}
.interface-frame img { width: 100%; height: auto; }
.interface-frame__glint { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.08) 48%, transparent 58%); transform: translateX(-110%); animation: glint 9s ease-in-out infinite 2s; }
@keyframes glint { 0%, 64%,100% { transform: translateX(-110%); } 82% { transform: translateX(110%); } }

.portal-story {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #03040f;
}
.portal-story__art { position: relative; min-height: 820px; background: #03040f; }
.portal-story__art img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 49%; }
.portal-story__player { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; border: 0; background: #000; }
.portal-story__art.is-playing picture { opacity: 0; pointer-events: none; }
.portal-story__card {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(520px, calc(100% - 80px));
  margin: 40px auto 40px clamp(0px, 3vw, 52px);
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(181,177,255,.28);
  border-radius: 36px 4px 36px 4px;
  background: linear-gradient(150deg, rgba(12,13,42,.9), rgba(4,5,18,.74));
  box-shadow: 0 35px 90px rgba(0,0,0,.45), inset 0 0 70px rgba(71,177,255,.05);
  backdrop-filter: blur(18px);
}
.portal-story__card::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(82,221,255,.35), transparent 27%, transparent 70%, rgba(155,86,255,.35)); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; padding: 1px; }
.portal-story__card h2 { margin-bottom: 30px; }
.unlock-mark { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 28px; border: 1px solid rgba(132,215,255,.45); border-radius: 50%; box-shadow: 0 0 30px rgba(65,184,255,.18); }
.unlock-mark span { width: 18px; height: 18px; border: 1px solid #dcf9ff; border-radius: 50% 50% 50% 4px; transform: rotate(45deg); }
.text-action { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; font-size: .75rem; font-weight: 650; text-transform: uppercase; letter-spacing: .13em; transition: color .22s ease, text-shadow .22s ease, transform .22s cubic-bezier(.2,.7,.2,1); }
.text-action::after { content: "→"; transition: transform .22s ease; }
.text-action:hover { color: #f3f0ff; text-shadow: 0 0 18px rgba(136,207,255,.18); transform: translateY(-1px); }
.text-action:hover::after { transform: translateX(4px); }
.text-action:active { transform: translateY(0) scale(.99); }
.play-dot { display: inline-block; width: 34px; height: 34px; border: 1px solid rgba(211,205,255,.46); border-radius: 50%; position: relative; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); transition: border-color .22s ease, box-shadow .22s ease, background .22s ease; }
.text-action:hover .play-dot { border-color: rgba(232,228,255,.8); background: rgba(85,75,176,.09); box-shadow: 0 0 20px rgba(104,112,255,.13), inset 0 1px 0 rgba(255,255,255,.12); }
.play-dot::after { content: ""; position: absolute; left: 13px; top: 10px; border-left: 8px solid white; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }

.partners-entry { position: relative; min-height: 390px; display: grid; place-items: center; overflow: hidden; text-align: center; }
.partners-entry__image, .partners-entry__image img, .partners-entry__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.partners-entry__image img { object-fit: cover; object-position: center 48%; }
.partners-entry__veil { background: linear-gradient(90deg, rgba(3,4,15,.9), rgba(3,4,15,.5), rgba(3,4,15,.9)), linear-gradient(0deg, rgba(3,4,15,.96), transparent 48%, rgba(3,4,15,.82)); }
.partners-entry__content { position: relative; z-index: 1; padding: 58px 20px; }
.partners-entry__content h2 { margin-bottom: 28px; font-size: clamp(2.3rem, 4.6vw, 4.7rem); }

.site-footer { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px clamp(20px, 5vw, 72px); border-top: 1px solid rgba(255,255,255,.08); background: #03040f; color: #8d8fa4; font-size: .78rem; }
.site-footer p { margin: 0; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; }
.footer-social span { color: rgba(215,216,231,.42); }
.site-footer a { color: #d7d8e7; text-decoration: none; transition: color .2s ease, text-shadow .2s ease; }
.site-footer a:hover, .site-footer a:focus-visible { color: white; text-shadow: 0 0 14px rgba(140,232,255,.16); }
.site-footer a:focus-visible { outline: 2px solid rgba(140,232,255,.95); outline-offset: 4px; border-radius: 2px; }

.form-page, .partners-page { min-height: 100vh; background: #03040f; }
.form-stage, .partner-stage { position: relative; min-height: calc(100svh - 90px); display: grid; place-items: center; padding: 118px 20px 64px; overflow: hidden; }
.form-stage__art, .form-stage__art img, .partner-stage__art, .partner-stage__art img, .form-stage__veil, .partner-stage__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.form-stage__art img { object-fit: cover; object-position: center; }
.partner-stage__art img { object-fit: cover; object-position: center; }
.form-stage__veil { background: radial-gradient(circle at 50% 42%, rgba(8,11,41,.26), rgba(3,4,15,.78) 72%), linear-gradient(90deg, rgba(3,4,15,.44), rgba(3,4,15,.18)); }
.partner-stage__veil { background: linear-gradient(90deg, rgba(3,4,15,.92), rgba(3,4,15,.42) 56%, rgba(3,4,15,.72)), linear-gradient(0deg, rgba(3,4,15,.94), transparent 62%); }
.form-panel, .partner-panel { position: relative; z-index: 1; border: 1px solid rgba(186,190,255,.24); background: rgba(5,7,25,.76); backdrop-filter: blur(22px) saturate(115%); box-shadow: 0 38px 120px rgba(0,0,0,.48), inset 0 0 70px rgba(86,100,255,.04); }
.form-panel { width: min(720px, 100%); padding: clamp(28px, 6vw, 64px); border-radius: 4px 42px 4px 42px; }
.form-panel h1, .partner-panel h1 { font-size: clamp(2.7rem, 6vw, 5.5rem); }
.form-intro { max-width: 570px; margin: 20px 0 34px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.field { display: grid; gap: 8px; color: #e9e9f5; font-size: .82rem; }
.field--wide { grid-column: 1 / -1; }
.field span { display: flex; justify-content: space-between; gap: 12px; }
.field b { color: #8ce8ff; font-weight: 500; }
.field em { color: #86889e; font-size: .72rem; font-style: normal; text-transform: uppercase; letter-spacing: .08em; }
.field input, .field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(209,211,255,.28); border-radius: 0; padding: 11px 0; color: white; background: transparent; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field textarea:focus { border-color: #8ce8ff; outline: 0; box-shadow: 0 8px 18px -16px #8ce8ff; }
.form-submit { margin-top: 32px; min-width: 210px; }
.honeypot { position: absolute; left: -9999px; }

.partner-panel { width: min(1100px, 100%); display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px, 7vw, 86px); align-items: center; padding: clamp(30px, 6vw, 72px); border-radius: 42px 4px 42px 4px; }
.partner-panel__intro p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); }
.partner-form { display: grid; gap: 20px; }
.partner-form .form-submit { justify-self: start; }
.site-footer--overlay { background: #03040f; }

.status-page { min-height: 100svh; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at 50% 36%, #171750, #03040f 65%); text-align: center; }
.status-card { width: min(620px, 100%); padding: clamp(36px, 7vw, 72px); border: 1px solid var(--line); border-radius: 42px 4px 42px 4px; background: rgba(5,7,24,.78); box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.status-card img { margin: 0 auto 24px; border-radius: 50%; }
.status-card h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
.status-card > p:not(.eyebrow) { color: var(--muted); }
.status-card .text-action { margin-top: 16px; }

.reveal { opacity: 1; transform: none; transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.is-pending { opacity: 0; transform: translateY(22px); }
.reveal--image.is-pending { transform: translateY(16px) scale(.985); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 900px) {
  .hero__visual img { width: 59%; margin-left: auto; object-fit: contain; object-position: center; filter: drop-shadow(-30px 0 60px rgba(0,0,0,.32)); }
  .hero__visual::after { content: ""; position: absolute; inset: 0 38% 0 0; background: linear-gradient(90deg, transparent 20%, #050617 95%); opacity: .16; }
  .hero__shade { background: linear-gradient(90deg, rgba(3,4,15,.94) 0%, rgba(3,4,15,.78) 31%, rgba(3,4,15,.15) 62%, rgba(3,4,15,.2)), linear-gradient(0deg, rgba(3,4,15,.78), transparent 36%); }
}

@media (max-width: 899px) {
  .brand span { display: none; }
  .site-header { min-height: 64px; padding: 10px 16px; }
  .site-header nav { gap: 18px; }
  .site-header nav a { font-size: .7rem; letter-spacing: .08em; }
  .hero { min-height: max(720px, 100svh); }
  .hero__content { left: 20px; bottom: 50px; width: min(560px, calc(100% - 40px)); }
  .hero__content h1 { max-width: 460px; font-size: clamp(3rem, 13vw, 5rem); }
  .scroll-cue { display: none; }
  .world { min-height: 0; display: block; padding-bottom: 70px; }
  .world__image { display: block; min-height: 0; height: min(78svh, 720px); }
  .world__image img { object-position: center 44%; }
  .world__copy { position: relative; z-index: 3; margin: -88px 16px 0; padding: 28px 24px 32px; }
  .world__copy h2 { font-size: clamp(2.6rem, 12vw, 4.4rem); }
  .creator { padding: 76px 16px 88px; }
  .creator__backdrop { opacity: .13; }
  .creator__backdrop img { object-position: center 42%; }
  .section-heading { margin-bottom: 28px; }
  .interface-frame { border-radius: 18px; }
  .portal-story { min-height: 0; display: block; padding-bottom: 74px; }
  .portal-story__art { height: min(76svh, 700px); min-height: 590px; }
  .portal-story__art img { object-position: 64% 48%; }
  .portal-story__card { margin: -92px 16px 0; width: auto; padding: 30px 24px 34px; }
  .partners-entry { min-height: 430px; }
  .partners-entry__image img { object-position: 54% center; }
  .partners-entry__content h2 { font-size: clamp(2.55rem, 11vw, 4rem); }
  .partner-panel { grid-template-columns: 1fr; }
  .partner-stage { padding-top: 108px; }
  .form-stage, .partner-stage { align-items: start; }
}

@media (max-width: 560px) {
  .hero__backdrop { display: none; }
  .hero__visual img { object-position: center top; }
  .hero__shade { background: linear-gradient(180deg, rgba(3,4,15,.06) 20%, rgba(3,4,15,.22) 55%, rgba(3,4,15,.97) 91%), linear-gradient(90deg, rgba(3,4,15,.22), transparent 70%); }
  .hero__content { bottom: 34px; }
  .hero__content .eyebrow { display: none; }
  .hero__content h1 { max-width: 340px; margin-bottom: 22px; font-size: clamp(2.9rem, 13vw, 4rem); }
  .hero__content .button { width: 100%; min-width: 0; min-height: 52px; padding-inline: 18px; }
  .creator { padding-top: 68px; }
  .section-heading h2 { font-size: clamp(2.55rem, 11vw, 3.7rem); line-height: 1.02; }
  .portal-story__card h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .button { min-height: 50px; padding-inline: 20px; font-size: .72rem; letter-spacing: .115em; }
  .site-footer { min-height: 112px; flex-direction: column; justify-content: center; gap: 8px; text-align: center; }
  .form-stage { padding: 92px 12px 42px; }
  .form-panel { padding: 28px 20px 34px; border-radius: 2px 28px 2px 28px; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .field--wide { grid-column: auto; }
  .form-submit { width: 100%; }
  .partner-stage { padding: 92px 12px 42px; }
  .partner-panel { padding: 28px 20px 34px; border-radius: 28px 2px 28px 2px; }
  .partner-panel h1 { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .partner-form .form-submit { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
