:root {
  --color-background: #070b09;
  --color-white: #ffffff;
  --color-green: #34d399;
  --color-green-light: #d1fae5;
  --color-lime: #bef264;

  --container-width: 1120px;
  --radius-xl: 24px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--color-white);
  background: var(--color-background);
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Background */

.background-glow,
.background-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background-glow {
  z-index: 0;
}

.background-glow::before,
.background-glow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
}

.background-glow::before {
  top: -15%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  background: rgb(16 185 129 / 20%);
}

.background-glow::after {
  right: -10%;
  bottom: -20%;
  width: 460px;
  height: 460px;
  background: rgb(163 230 53 / 10%);
}

.background-vignette {
  z-index: 1;
  background:
    radial-gradient(
      circle at center,
      transparent 0,
      rgb(0 0 0 / 45%) 62%,
      rgb(0 0 0 / 90%) 100%
    );
}

/* Header */

.header {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 28px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 14px;
  background: var(--color-green);
  color: #000000;

  font-size: 18px;
  font-weight: 900;

  box-shadow: 0 20px 60px rgb(16 185 129 / 25%);
}

.brand__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.anchorSpacer{
  height:100px;
  width: 100vw;
}

.header__badge {
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 999px;
  padding: 8px 16px;

  background: rgb(255 255 255 / 4%);
  color: rgb(255 255 255 / 70%);

  font-size: 14px;
}
/* Hero */

.languageSelection {
  position: fixed;
  z-index: 20;

  width: 100vw;
  min-height: 96px;
  margin: 0 auto;
  padding: 0;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  text-align: center;
}
/* TOS-Container */

.tos-container {
  position: relative;
  z-index: 2;

  width: 100vw;
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 0 24px 64px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* Hero */

.hero {
  position: relative;
  z-index: 2;

  max-width: var(--container-width);
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 0 24px 64px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 28px;
  border: 1px solid rgb(110 231 183 / 20%);
  border-radius: 999px;
  padding: 9px 16px;

  background: rgb(110 231 183 / 10%);
  color: var(--color-green-light);

  font-size: 14px;
  font-weight: 600;

  animation: fade-up 700ms ease both;
}

.hero__title {
  max-width: 900px;

  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.95;
  font-weight: 750;
  letter-spacing: -0.065em;

  animation: fade-up 700ms ease 80ms both;
}
.hero__title__smaller {
  max-width: 900px;
  margin-top:20px;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 0.95;
  font-weight: 750;
  letter-spacing: -0.065em;

  animation: fade-up 700ms ease 80ms both;
}

.hero__title span {
  background: linear-gradient(
    90deg,
    var(--color-green-light),
    var(--color-green),
    var(--color-lime)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  max-width: 720px;
  margin-top: 28px;

  color: rgb(255 255 255 / 65%);

  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;

  animation: fade-up 700ms ease 160ms both;
}

/* Countdown */

.countdown {
  width: 100%;
  max-width: 900px;
  margin-top: 48px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.countdown__item {
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-xl);
  padding: 24px 16px;

  background: rgb(255 255 255 / 4.5%);
  box-shadow: 0 30px 90px rgb(0 0 0 / 30%);
  backdrop-filter: blur(16px);

  animation: fade-up 700ms ease 220ms both;
}

.countdown__item strong {
  display: block;

  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.countdown__item span {
  display: block;
  margin-top: 12px;

  color: rgb(110 231 183 / 85%);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Actions */

.hero__actions {
  margin-top: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;

  animation: fade-up 700ms ease 300ms both;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 999px;
  padding: 16px 28px;

  background: var(--color-white);
  color: #000000;
  box-shadow: 0 24px 70px rgb(16 185 129 / 20%);

  font-size: 16px;
  font-weight: 750;
  cursor: default;
  opacity: 1;
}

.hero__hint {
  color: rgb(255 255 255 / 45%);
  font-size: 14px;
}

/* Animations */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 760px) {
  .header {
    padding-top: 22px;
  }

  .header__badge {
    display: none;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .countdown__item {
    padding: 22px 10px;
  }
}

@media (max-width: 420px) {
  .hero__title {
    font-size: 48px;
  }

  .app-store-button {
    width: 100%;
  }
}
