@font-face {
  font-family: Manrope;
  src: url("assets/manrope-regular.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-bold.ttf");
  font-weight: 700;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --paper: #f5f5f0;
  --muted: #b7b9bd;
  --line: #333638;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: #030403;
  color: var(--paper);
  font-family: Manrope, sans-serif;
}
::selection {
  background: #eee;
  color: #080808;
}
a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid white;
  outline-offset: 6px;
}
button,
a {
  touch-action: manipulation;
}
button:hover,
.button:hover {
  background: #ddd;
  color: #080808;
}
.text-link:hover {
  text-decoration: underline;
}
header {
  height: 92px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.5vw;
  background: #030403;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 32px;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--paper);
  color: #080808;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--paper);
  border-radius: 0;
}
.button.outline {
  background: transparent;
  color: var(--paper);
}
.button.outline:hover {
  background: #202220;
}
.hero {
  position: relative;
  min-height: 650px;
  height: calc(100svh - 92px);
  max-height: 1000px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero video,
.hero .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: -2;
}
.hero .poster {
  display: none;
}
.hero-copy {
  position: relative;
  margin-left: 6vw;
  padding-top: clamp(105px, 13vh, 165px);
  width: 50%;
  max-width: 760px;
}
h1 {
  font-size: clamp(46px, 5.1vw, 88px);
  line-height: 1.07;
  letter-spacing: -0.04em;
  margin: 0 0 26px;
  font-weight: 700;
}
h1 span {
  display: block;
}
.hero-copy p {
  color: #c5c7c9;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 34px;
}
.hero-copy .actions {
  gap: 26px;
}
.hero-copy .button {
  min-height: 54px;
  font-size: 15px;
}
.text-link {
  font-size: 14px;
}
.motion {
  position: absolute;
  bottom: 22px;
  right: 5.5vw;
  background: #080a08d9;
  border: 1px solid #646664;
  color: #e6e6e0;
  padding: 10px 15px;
  min-height: 44px;
  font-size: 12px;
}
.intro {
  padding: 70px 6vw 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  max-width: 1600px;
  margin: auto;
}
h2 {
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}
.intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}
.preview-note {
  border-top: 1px solid var(--line);
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #959a97;
  font-size: 12px;
}
.preview-note a {
  text-decoration: underline;
}
#sign-in-note {
  margin: 0;
  padding: 18px 6vw;
  border-bottom: 1px solid var(--line);
  background: #171a17;
  color: #e8ebe8;
  font-size: 14px;
}
#sign-in-note[hidden] {
  display: none;
}

@media (max-width: 900px) {
  header {
    padding: 0 5vw;
    height: 82px;
  }
  .brand {
    font-size: 26px;
    gap: 8px;
  }
  .brand img {
    width: 52px;
    height: 52px;
  }
  nav {
    gap: 16px;
  }
  nav > .text-link {
    display: none;
  }
  nav .button {
    padding: 0 15px;
  }
  .hero {
    height: auto;
    min-height: 850px;
  }
  .hero video {
    object-fit: cover;
    object-position: 70% center;
    top: 315px;
    height: 540px;
  }
  .hero-copy {
    width: auto;
    margin: 0;
    padding: 60px 6vw 0;
    max-width: 650px;
  }
  h1 {
    font-size: clamp(42px, 7vw, 65px);
  }
  .hero-copy p {
    max-width: 500px;
  }
  .hero-copy .actions {
    gap: 22px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 50px 6vw;
  }
  .motion {
    right: 6vw;
  }
  .preview-note {
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  header {
    height: 76px;
    padding: 0 5vw;
    gap: 10px;
  }
  .brand {
    font-size: 24px;
  }
  .brand img {
    width: 44px;
    height: 44px;
  }
  nav .primary-nav {
    display: none;
  }
  nav .button {
    min-height: 42px;
    padding: 0 17px;
  }
  .hero {
    min-height: 810px;
  }
  .hero-copy {
    padding-top: 48px;
  }
  h1 {
    font-size: clamp(37px, 9.5vw, 49px);
  }
  .hero-copy p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .hero-copy .actions {
    gap: 20px;
  }
  .hero-copy .button {
    padding: 0 18px;
    font-size: 13px;
    min-height: 48px;
  }
  .text-link {
    font-size: 13px;
  }
  .hero video {
    top: 350px;
    height: 455px;
    object-position: 85% center;
  }
  .motion {
    bottom: 18px;
  }
  h2 {
    font-size: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

:root {
  --muted: #b7b9bd;
}
html {
  scrollbar-color: #626663 #080a08;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
.skip {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 10;
  padding: 16px;
  background: #fff;
  color: #000;
}
.skip:focus {
  top: 12px;
}
.brand img {
  width: 52px;
  height: 52px;
}
header {
  max-width: 1920px;
  margin: auto;
}
.hero-copy {
  max-width: 760px;
}
.hero-copy p {
  max-width: 440px;
}
.hero video {
  background: #030403;
}
.section {
  max-width: 1400px;
  margin: auto;
  padding: 110px 6vw;
}
.intro {
  max-width: 1400px;
  padding: 100px 6vw 60px;
}
.intro h2 {
  font-size: clamp(32px, 3.3vw, 52px);
}
.section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}
.flow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  padding-top: 30px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.steps p {
  margin: 0;
  font-size: 16px;
}
.session {
  border: 1px solid var(--line);
  align-self: start;
  background: #0b0d0c;
}
.session-head {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.session-head span {
  color: var(--muted);
  font-size: 12px;
}
.messages {
  padding: 10px 28px 26px;
}
.message {
  padding: 24px 0;
  border-bottom: 1px solid #242724;
}
.message:last-child {
  border: 0;
  padding-bottom: 0;
}
.message strong {
  font-size: 14px;
}
.message p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.7;
}
.message .file {
  display: inline-block;
  border: 1px solid #484c48;
  padding: 10px 14px;
  color: #e3e5e2;
  margin-top: 18px;
  font-size: 13px;
}
.session figcaption {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  padding: 16px 26px;
  border-top: 1px solid var(--line);
}
figure {
  margin: 0;
}
.continuity {
  border-block: 1px solid var(--line);
  background: #0a0c0b;
}
.continuity .section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.continuity h2 {
  max-width: 440px;
}
.continuity p {
  margin: 0 0 24px;
}
.continuity p:last-child {
  margin: 0;
}
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
}
.about p {
  margin: 0 0 22px;
}
.faq {
  padding-top: 0;
}
.faq h2 {
  margin-bottom: 38px;
}
details {
  border-top: 1px solid var(--line);
  padding: 0;
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  padding: 25px 0;
  font-size: 19px;
  line-height: 1.5;
}
summary:hover {
  color: #b7b9bd;
}
summary:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}
details p {
  max-width: 780px;
  margin: 0 0 28px;
}
details a,
.access a:not(.button),
footer a {
  text-decoration: underline;
}
.access {
  border-top: 1px solid var(--line);
  text-align: center;
  padding-block: 90px;
}
.access p {
  max-width: 620px;
  margin: 26px auto 32px;
}
.access .small {
  font-size: 13px;
  margin-bottom: 0;
}
footer {
  max-width: 1400px;
  margin: auto;
  border-top: 1px solid var(--line);
  padding: 30px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}
footer .links {
  display: flex;
  gap: 24px;
}
.motion[hidden] {
  display: none;
}
@media (min-width: 901px) {
  .hero {
    height: auto;
    min-height: 650px;
    max-height: none;
    aspect-ratio: 16/9;
    max-width: 1920px;
    margin: auto;
  }
  .hero-copy {
    padding-top: clamp(100px, 10vw, 180px);
  }
}
@media (max-width: 900px) {
  .section {
    padding: 70px 6vw;
  }
  .intro {
    padding: 65px 6vw 30px;
  }
  .flow {
    padding-top: 15px;
    gap: 35px;
  }
  .flow,
  .continuity .section,
  .about {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq {
    padding-top: 0;
  }
  .continuity h2 {
    max-width: 550px;
  }
  .hero video {
    object-position: 70% center;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero-copy p {
    max-width: 500px;
  }
  footer {
    flex-wrap: wrap;
  }
  .session {
    width: 100%;
  }
  .access {
    padding-block: 65px;
  }
}
@media (max-width: 520px) {
  .brand img {
    width: 40px;
    height: 40px;
  }
  .brand {
    font-size: 23px;
  }
  .hero video {
    object-position: 85% center;
  }
  .section {
    padding-block: 55px;
  }
  .flow {
    padding-top: 0;
  }
  .faq {
    padding-top: 0;
  }
  .session-head {
    padding: 20px;
  }
  .messages {
    padding-inline: 20px;
  }
  .session-head {
    flex-wrap: wrap;
    gap: 8px;
  }
  footer {
    line-height: 1.8;
  }
  .hero-copy .actions {
    flex-wrap: wrap;
    gap: 18px;
  }
  .hero-copy p {
    max-width: 330px;
  }
}
