* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #07090d;
  color: #f5f3ee;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 28px clamp(30px, 4vw, 72px) 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  background:
    radial-gradient(circle at 70% 30%, rgba(212,175,55,.045), transparent 34%),
    radial-gradient(circle at 45% 55%, rgba(255,255,255,.018), transparent 32%),
    linear-gradient(115deg, #05070a 0%, #090c12 52%, #080b10 100%);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 80px 80px;
}

.topbar,
.hero,
.modules,
.coming,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand strong {
  font-size: 13px;
  letter-spacing: .2em;
}

.brand > span {
  width: 1px;
  height: 24px;
  background: #d4af37;
}

.brand small,
.status {
  color: rgba(255,255,255,.43);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .28em;
}

.status {
  display: flex;
  align-items: center;
  gap: 18px;
}

.status i {
  display: block;
  width: 42px;
  height: 1px;
  background: #d4af37;
}

.hero {
  flex: 1 1 auto;
  width: min(850px, 78vw);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(28px, 4vh, 55px) 0 clamp(22px, 3vh, 40px);

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

  text-align: center;
}

.cos-logo {
  display: block;
  width: clamp(230px, 24vw, 390px);
  max-height: 245px;
  object-fit: contain;
}

.gold-line {
  width: 35px;
  height: 1px;
  margin: clamp(18px, 2.5vh, 30px) auto clamp(18px, 2.5vh, 28px);
  background: #d4af37;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 4vw, 66px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.045em;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  margin-top: 9px;
  color: #d9ae32;
  font-weight: 800;
}

.intro {
  margin: clamp(18px, 2.4vh, 27px) 0 0;
  font-size: 13px;
  font-weight: 600;
}

.description {
  max-width: 680px;
  margin: 9px auto 0;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  line-height: 1.6;
}

.modules {
  flex: 0 0 auto;
  width: min(1180px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);

  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.module {
  min-height: 90px;
  padding: 13px 8px;

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

  text-align: center;
  border-right: 1px solid rgba(255,255,255,.055);
}

.module:last-child {
  border-right: 0;
}

.icon {
  margin-bottom: 9px;
  color: rgba(212,175,55,.55);
  font-size: 22px;
  line-height: 1;
}

.module span {
  color: rgba(255,255,255,.36);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .14em;
}

.coming {
  flex: 0 0 auto;
  padding: 17px 0 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming > span {
  color: rgba(255,255,255,.43);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .35em;
}

.mini-line {
  width: 34px;
  height: 1px;
  margin: 11px 0 13px;
  background: rgba(212,175,55,.7);
}

.notify {
  width: 205px;
  height: 36px;

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

  color: rgba(255,255,255,.68);
  text-decoration: none;

  border: 1px solid rgba(212,175,55,.55);

  font-size: 7px;
  font-weight: 700;
  letter-spacing: .25em;

  transition: .2s ease;
}

.notify b {
  color: #d4af37;
  font-size: 13px;
}

.notify:hover {
  color: #fff;
  border-color: #d4af37;
  background: rgba(212,175,55,.06);
}

.footer {
  flex: 0 0 auto;
  min-height: 58px;
  padding-top: 14px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;

  border-top: 1px solid rgba(255,255,255,.065);

  color: rgba(255,255,255,.27);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .17em;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-left i {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(212,175,55,.55);
}

.made-by {
  min-width: 150px;
  text-align: center;
}

.made-by span {
  display: block;
  margin-bottom: 5px;
  font-size: 5px;
  letter-spacing: .28em;
}

.made-by img {
  display: block;
  width: 120px;
  max-height: 31px;
  margin: 0 auto;
  object-fit: contain;
}

.footer-right {
  text-align: right;
}


/* Lagere desktop/laptops */
@media (min-width: 801px) and (max-height: 850px) {
  .page {
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .hero {
    padding: 18px 0 22px;
  }

  .cos-logo {
    width: clamp(200px, 20vw, 300px);
    max-height: 175px;
  }

  .gold-line {
    margin: 14px auto 15px;
  }

  h1 {
    font-size: clamp(34px, 3.5vw, 52px);
  }

  .intro {
    margin-top: 15px;
    font-size: 12px;
  }

  .description {
    margin-top: 6px;
    font-size: 10px;
  }

  .module {
    min-height: 75px;
    padding: 9px 6px;
  }

  .icon {
    margin-bottom: 6px;
    font-size: 19px;
  }

  .coming {
    padding: 12px 0 14px;
  }

  .footer {
    min-height: 48px;
    padding-top: 10px;
  }
}


/* Mobiel */
@media (max-width: 800px) {
  .page {
    min-height: 100dvh;
    padding: 22px 20px 18px;
    overflow-y: auto;
  }

  .brand small {
    display: none;
  }

  .status {
    font-size: 6px;
  }

  .status i {
    width: 25px;
  }

  .hero {
    flex: 0 0 auto;
    width: 100%;
    padding: 52px 0 36px;
  }

  .cos-logo {
    width: min(285px, 78vw);
    max-height: none;
  }

  .gold-line {
    margin: 25px auto 23px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 53px);
    line-height: 1;
  }

  .intro {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.5;
  }

  .description {
    max-width: 390px;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.65;
  }

  .modules {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .module {
    min-height: 95px;
    border-bottom: 1px solid rgba(255,255,255,.055);
  }

  .module:nth-child(even) {
    border-right: 0;
  }

  .module:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .coming {
    padding: 28px 0 31px;
  }

  .notify {
    width: min(260px, 82vw);
    height: 44px;
  }

  .footer {
    min-height: 0;
    padding-top: 24px;

    grid-template-columns: 1fr;
    gap: 22px;

    text-align: center;
  }

  .footer-left {
    justify-content: center;
    order: 2;
    flex-wrap: wrap;
  }

  .made-by {
    order: 1;
  }

  .made-by img {
    width: 125px;
  }

  .footer-right {
    order: 3;
    text-align: center;
  }
}
