@font-face {
  font-family: "Coiny";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/coiny.ttf") format("truetype");
}

@font-face {
  font-family: "Varela Round";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/varela-round.ttf") format("truetype");
}

:root {
  --page-max: 800px;
  --content-pad: clamp(24px, 4vw, 52px);
  --font-body: "Varela Round", Arial, sans-serif;
  --font-display: "Coiny", "Varela Round", Arial, sans-serif;
  --ink: #050505;
  --muted: #383838;
  --line: rgba(0, 0, 0, 0.08);
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.42;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

button,
input {
  font: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(var(--page-max) + var(--content-pad) * 2);
  margin: 0 auto;
  padding: 34px var(--content-pad) 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
}

.nav-links a {
  text-decoration: none;
}

.flag-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  text-decoration: none;
}

.flag {
  display: block;
  width: 22px;
  height: 16px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  min-height: 480px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)), url("hero.jpg");
  background-position: center 43%;
  background-size: cover;
  color: var(--white);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(var(--page-max) + var(--content-pad) * 2);
  min-height: 480px;
  margin: 0 auto;
  padding: 98px var(--content-pad) 46px;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6.2vw, 68px);
  line-height: 0.99;
  letter-spacing: 0;
}

.hero p {
  max-width: 530px;
  margin: 0;
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 400;
}

.section {
  max-width: calc(var(--page-max) + var(--content-pad) * 2);
  margin: 0 auto;
  padding: 40px var(--content-pad) 34px;
}

.beta {
  padding-top: 42px;
}

.section h2 {
  margin: 0 0 24px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.beta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.18fr);
  gap: clamp(36px, 6vw, 58px);
  align-items: center;
}

.beta-copy p {
  margin: 0 0 20px;
}

.beta-copy ul {
  margin: 0 0 20px 21px;
  padding: 0;
}

.beta-copy li {
  margin: 0 0 14px;
  padding-left: 3px;
}

.beta-copy strong {
  font-weight: 700;
}

.beta-copy em {
  font-style: italic;
}

.media-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #000;
}

.video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button {
  display: inline-flex;
  min-width: 148px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  background: #272727;
}

.faq {
  padding-top: 46px;
  padding-bottom: 78px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 26px 0;
  text-align: left;
  font-size: 22px;
}

.accordion-button::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 27px;
  line-height: 1;
}

.accordion-button[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 160ms ease;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.modal-card {
  position: relative;
  width: min(100%, 440px);
  background: #fff;
  padding: 30px;
}

.modal-card h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.1;
}

.close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 15px;
}

.field input {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 16px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.imprint-page .site-header {
  position: static;
  background: #000;
}

.imprint-page .nav {
  padding-bottom: 28px;
}

.legal {
  max-width: calc(var(--page-max) + var(--content-pad) * 2);
  margin: 0 auto;
  padding: 62px var(--content-pad) 90px;
}

.legal h1,
.legal h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.05;
}

.legal h3 {
  margin: 34px 0 12px;
  font-size: 22px;
}

.legal p {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: 17px;
}

@media (max-width: 760px) {
  body {
    font-size: 18px;
  }

  .nav {
    padding-top: 24px;
  }

  .nav-links {
    gap: 14px;
    font-size: 16px;
  }

  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-content {
    justify-content: flex-end;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero p {
    max-width: 360px;
  }

  .beta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .media-col {
    gap: 28px;
  }

  .accordion-button {
    min-height: 78px;
    font-size: 20px;
  }
}

@media (max-width: 430px) {
  .nav-links {
    gap: 10px;
  }

  .brand {
    font-size: 19px;
  }

  .hero,
  .hero-content {
    min-height: 540px;
  }

  .section {
    padding-top: 34px;
  }

  .button {
    width: 100%;
  }
}
