:root {
  --paper: #f4f1eb;
  --ink: #202223;
  --ink-soft: #4d4d4a;
  --line: #d5d0c8;
  --cyan: #197f9e;
  --cyan-bright: #46b7d7;
  --night: #242627;
  --night-soft: #c9c9c5;
  --serif: "Newsreader", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --page-gutter: clamp(1.25rem, 5.1vw, 4.875rem);
  --content-width: 86.25rem;
  --focus: 0 0 0 3px var(--paper), 0 0 0 5px var(--cyan);
}

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

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

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

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.sr-only,
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.wordmark {
  font-family: var(--sans);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.site-header__inner {
  display: flex;
  width: min(100%, 96rem);
  height: 5.95rem;
  margin: 0 auto;
  padding: 0 clamp(2.25rem, 3vw, 2.9rem);
  align-items: center;
  justify-content: space-between;
}

.site-nav ul,
.site-footer ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(2.6rem, 4.8vw, 4.75rem);
  list-style: none;
}

.site-nav a,
.site-footer nav a {
  position: relative;
  font-size: 1.25rem;
  text-decoration: none;
}

.site-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.55rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.hero {
  display: grid;
  min-height: min(49.5rem, calc(100svh - 5.95rem));
  padding: 2.5rem var(--page-gutter) 2.15rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  display: grid;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.94fr) minmax(28rem, 1.06fr);
  gap: clamp(3rem, 5.5vw, 5.6rem);
  align-items: center;
}

.registration-rail {
  position: relative;
}

.registration-rail::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--cyan);
  content: "";
}

.registration-rail__mark {
  position: absolute;
  z-index: 1;
  top: var(--mark-position, 33%);
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  background: var(--paper);
  transform: translate(-47%, -50%);
}

.hero__copy {
  --mark-position: 33.5%;
  display: flex;
  min-height: 44.8rem;
  padding: 4.15rem 0 4.15rem 3.45rem;
  flex-direction: column;
  justify-content: center;
}

.hero h1,
.story h2,
.story blockquote,
.host h3,
.signup h2,
.status-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 38rem;
  font-size: clamp(5.2rem, 8vw, 7.75rem);
  line-height: 0.96;
}

.hero h1 span {
  display: block;
}

.hero__copy > p {
  max-width: 35rem;
  margin: 2.45rem 0 0;
  font-size: clamp(1.18rem, 1.65vw, 1.68rem);
  line-height: 1.52;
  letter-spacing: -0.02em;
}

.hero__actions {
  display: flex;
  margin-top: 2.45rem;
  align-items: center;
  gap: clamp(2rem, 3.25vw, 3rem);
}

.button {
  display: inline-flex;
  min-height: 4.5rem;
  padding: 0.9rem 2.45rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 1.17rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button--primary {
  background: var(--cyan);
  color: #fff;
}

.button--primary:hover {
  background: #116c87;
}

.button--primary:active {
  transform: translateY(1px);
}

.text-link {
  color: #056c8d;
  font-size: 1.18rem;
  text-decoration-color: var(--cyan);
}

.hero__artwork {
  width: min(100%, 38.8rem);
  margin: 0 auto;
}

.hero__artwork img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.55rem;
  object-fit: cover;
}

.hero__artwork figcaption {
  display: grid;
  margin-top: 1.35rem;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  white-space: nowrap;
}

.hero__artwork figcaption span {
  height: 1px;
  background: var(--cyan);
}

.story {
  padding: 3.65rem var(--page-gutter) 2.65rem;
}

.story__inner {
  display: grid;
  width: min(100%, var(--content-width));
  min-height: 27.5rem;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
}

.story__copy {
  --mark-position: 1.8rem;
  padding: 0 4rem 2.2rem 4.25rem;
}

.story__copy::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--cyan);
  content: "";
  opacity: 0.72;
}

.story h2 {
  max-width: 37rem;
  font-size: clamp(3.15rem, 4vw, 3.85rem);
  line-height: 1.08;
}

.story__copy > p {
  max-width: 35rem;
  margin: 1.6rem 0 0;
  font-size: 1.19rem;
  line-height: 1.68;
  letter-spacing: -0.018em;
}

.story blockquote {
  max-width: 36rem;
  margin: 2.1rem 0 0;
  padding: 0.75rem 0 0.2rem 1.6rem;
  border-left: 1px solid var(--cyan);
  font-size: clamp(2.3rem, 3.1vw, 2.78rem);
  line-height: 1.18;
}

.story blockquote::before {
  content: "“";
}

.story blockquote::after {
  content: "”";
}

.host {
  display: grid;
  padding: 5.5rem 0 4rem 2.9rem;
  grid-template-columns: minmax(14rem, 19.8rem) minmax(12rem, 1fr);
  gap: 2rem;
  align-items: center;
}

.host__portrait {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 0.55rem;
}

.host__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.host h3 {
  font-size: clamp(2.45rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

.host p {
  max-width: 20rem;
  margin: 1.3rem 0 0;
  font-size: 1.16rem;
  line-height: 1.65;
  letter-spacing: -0.018em;
}

.signup {
  min-height: 16rem;
  padding: 3.2rem var(--page-gutter);
  background: var(--night);
  color: #f6f4ef;
}

.signup__inner {
  display: grid;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3.5rem, 7.2vw, 7.25rem);
  align-items: center;
}

.signup__copy {
  --mark-position: 1.2rem;
  padding: 0.15rem 0.2rem 0.25rem 4.25rem;
}

.signup__copy .registration-rail__mark,
.signup .registration-rail__mark {
  background: var(--night);
}

.signup h2 {
  font-size: clamp(3.15rem, 4.2vw, 3.8rem);
  line-height: 1.05;
}

.signup__copy p {
  max-width: 39rem;
  margin: 1.15rem 0 0;
  color: #f3f1ec;
  font-size: 1.16rem;
  line-height: 1.55;
}

.signup-form {
  display: block;
}

.signup-form > label {
  display: block;
  margin-bottom: 0.62rem;
  font-size: 0.93rem;
}

.signup-form__row {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto;
  gap: 1rem;
}

.signup-form input[type="email"] {
  width: 100%;
  min-height: 4rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid #9d9d99;
  border-radius: 0.2rem;
  background: transparent;
  color: #fff;
  font-size: 1rem;
}

.signup-form input[type="email"]::placeholder {
  color: #a5a6a3;
  opacity: 1;
}

.signup-form .button {
  min-width: 12rem;
  min-height: 4rem;
  padding-inline: 1.65rem;
  font-size: 1rem;
}

.signup-form__privacy {
  margin: 0.85rem 0 0;
  color: var(--night-soft);
  font-size: 0.98rem;
}

.site-footer {
  padding: 3rem var(--page-gutter) 1.8rem;
}

.site-footer__inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__top {
  padding-bottom: 2rem;
  border-bottom: 1px solid #aaa69f;
}

.site-footer .wordmark {
  font-size: 1.5rem;
}

.site-footer nav a {
  font-size: 1rem;
}

.site-footer__bottom {
  padding-top: 1.15rem;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.98rem;
}

.site-footer__bottom > span {
  width: 1px;
  height: 2.5rem;
  background: var(--cyan);
}

.status-page {
  display: grid;
  min-height: calc(100svh - 5.95rem - 10rem);
  padding: 5rem var(--page-gutter);
  place-items: center;
}

.status-page__inner {
  position: relative;
  width: min(100%, 52rem);
  padding: 3rem 1rem 3rem 4rem;
}

.status-page__inner::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--cyan);
  content: "";
}

.status-page__inner::after {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  background: var(--paper);
  content: "";
  transform: translate(-47%, -50%);
}

.status-page h1 {
  font-size: clamp(4.4rem, 9vw, 7.5rem);
  line-height: 0.95;
}

.status-page p {
  max-width: 38rem;
  margin: 2rem 0 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.status-page .text-link {
  display: inline-block;
  margin-top: 2rem;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 560ms ease, transform 560ms ease;
}

html.js [data-reveal][data-reveal-delay="1"] {
  transition-delay: 100ms;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 82rem), (max-height: 52rem) {
  .site-header__inner {
    height: 5.2rem;
  }

  .hero {
    min-height: calc(100svh - 5.2rem);
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .hero__inner {
    gap: 3.4rem;
  }

  .hero__copy {
    min-height: 34rem;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 8vw, 6.5rem);
  }

  .hero__copy > p {
    margin-top: 1.8rem;
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  }

  .hero__actions {
    margin-top: 1.8rem;
  }

  .button {
    min-height: 4.1rem;
  }

  .hero__artwork {
    width: min(100%, 34rem);
  }

  .hero__artwork figcaption {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}

@media (max-height: 52rem) and (min-width: 75rem) {
  .hero {
    min-height: 0;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .hero__copy {
    min-height: 31rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero__copy > p,
  .hero__actions {
    margin-top: 1.35rem;
  }

  .button {
    min-height: 3.9rem;
  }

  .hero__artwork {
    width: min(100%, 31rem);
  }

  .hero__artwork figcaption {
    margin-top: 0.75rem;
  }

  .story {
    padding-top: 1.25rem;
  }
}

@media (max-width: 74rem) {
  .hero {
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(23rem, 1.05fr);
    gap: 3.5rem;
  }

  .hero__copy {
    min-height: 35rem;
    padding-left: 2.75rem;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 8.6vw, 6.2rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.45rem;
  }

  .host {
    padding-left: 2.5rem;
    grid-template-columns: minmax(12.5rem, 15rem) 1fr;
  }

  .story__copy {
    padding-right: 2.5rem;
  }

  .signup__inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
}

@media (max-width: 56rem) {
  .hero__inner,
  .story__inner,
  .signup__inner {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    min-height: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero__actions {
    align-items: center;
    flex-direction: row;
  }

  .hero__artwork {
    width: min(100%, 39rem);
  }

  .story__copy {
    padding-bottom: 4rem;
  }

  .story__copy::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 4.25rem;
    width: auto;
    height: 1px;
  }

  .host {
    padding: 3.5rem 0 1rem 4.25rem;
    grid-template-columns: minmax(14rem, 19rem) 1fr;
  }

  .signup__inner {
    gap: 2.5rem;
  }

  .signup-form {
    padding-left: 4.25rem;
  }
}

@media (max-width: 46rem) {
  :root {
    --page-gutter: 1.25rem;
  }

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

  .site-header__inner {
    height: 4.75rem;
    padding: 0 1.25rem;
  }

  .wordmark {
    font-size: 1.34rem;
  }

  html.js .nav-toggle {
    display: block;
  }

  .site-nav ul {
    gap: 1.5rem;
  }

  .site-nav a {
    font-size: 1rem;
  }

  html.js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 1.35rem 1.25rem 1.6rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.65rem);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  html.js .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  html.js .site-nav ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  html.js .site-nav a {
    display: block;
    width: 100%;
    padding: 0.3rem 0;
    font-size: 1.12rem;
  }

  .hero {
    padding-top: 1.9rem;
    padding-bottom: 2.4rem;
  }

  .hero__inner {
    gap: 2.65rem;
  }

  .hero__copy {
    --mark-position: 27%;
    padding: 1rem 0 1.4rem 1.6rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .hero__copy > p {
    margin-top: 1.65rem;
    font-size: 1.12rem;
    line-height: 1.55;
  }

  .hero__actions {
    margin-top: 1.8rem;
    align-items: stretch;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .button {
    min-height: 3.9rem;
    padding-inline: 1.5rem;
    font-size: 1rem;
  }

  .hero__artwork figcaption {
    margin-top: 1.15rem;
    gap: 1rem;
    font-size: 1.35rem;
  }

  .story {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .story__copy {
    --mark-position: 1.15rem;
    padding: 0 0 3rem 1.6rem;
  }

  .story__copy::after {
    left: 1.6rem;
  }

  .story h2 {
    font-size: clamp(3rem, 14vw, 4.3rem);
    line-height: 1.02;
  }

  .story__copy > p {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .story blockquote {
    margin-top: 1.8rem;
    padding-left: 1.15rem;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .host {
    padding: 2.75rem 0 0;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .host__portrait {
    width: min(100%, 25rem);
  }

  .host h3 {
    font-size: 3rem;
  }

  .host p {
    max-width: 31rem;
    font-size: 1.05rem;
  }

  .signup {
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }

  .signup__copy {
    --mark-position: 0.95rem;
    padding: 0 0 0.25rem 1.6rem;
  }

  .signup h2 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .signup__copy p {
    font-size: 1.05rem;
  }

  .signup-form {
    padding-left: 1.6rem;
  }

  .signup-form__row {
    grid-template-columns: 1fr;
  }

  .signup-form .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 2.5rem;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.8rem;
  }

  .site-footer ul {
    gap: 1.65rem;
  }

  .status-page {
    min-height: calc(100svh - 4.75rem - 10rem);
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .status-page__inner {
    padding-left: 1.6rem;
  }
}

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

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

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
