@font-face {
  font-family: "Satoshi";
  src:
    url("Satoshi-Medium.woff2") format("woff2"),
    url("Satoshi-Medium.woff") format("woff"),
    url("Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  --gutter: max(28px, 5vw);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100dvh;
  padding: 0 var(--gutter) var(--gutter);
  background: #fff;
  color: #111;
  font-family: "Satoshi", system-ui, sans-serif;
  font-weight: 500;
  overscroll-behavior: none;
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  min-height: var(--gutter);
  padding: 12px 0;
}

.logo {
  display: block;
  width: min(110px, 36vw);
  height: auto;
}

.stage {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  touch-action: none;
  background: linear-gradient(
    118deg,
    #e9a28c 0%,
    #e8aca1 22%,
    #d07268 42%,
    #a56192 58%,
    #8e63e6 74%,
    #5c33ab 100%
  );
}

.fluid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.stage-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 36px 24px 48px;
  text-align: center;
  pointer-events: none;
}

.stage-content picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.stage-content .cta {
  pointer-events: auto;
}

.hero {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin: 0 auto;
  aspect-ratio: 1344 / 568;
}

h1 {
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 12px 28px;
  border: 2px solid #111;
  background: transparent;
  color: #111;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  transition: background-color 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: rgba(255, 255, 255, 1);
}

.cta:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .logo {
    width: 118px;
  }

  .hero {
    width: min(86%, 680px);
    aspect-ratio: 2205 / 266;
  }

  .stage-content {
    padding: 48px 56px 56px;
  }

  h1 {
    margin-top: 28px;
  }

  .cta {
    margin-top: 44px;
    min-width: 168px;
    padding: 13px 34px;
  }
}

@media (min-width: 1200px) {
  .hero {
    width: min(72%, 720px);
  }
}
