:root {
  color-scheme: dark;
  --bg: #101310;
  --panel: rgba(17, 22, 19, .88);
  --text: #f4f2ed;
  --muted: #b8beb3;
  --line: rgba(244, 242, 237, .16);
  --green: #758b6d;
  --green-bright: #9caf91;
  --paper: #ebe8df;
  --ink: #111613;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  padding: clamp(16px, 4vw, 36px);
  background:
    linear-gradient(90deg, rgba(16, 19, 16, .10), rgba(16, 19, 16, .88) 28%, rgba(16, 19, 16, .94) 72%, rgba(16, 19, 16, .18)),
    #151815;
  color: var(--text);
  font-family: Inter, Avenir Next, Montserrat, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  top: 0;
  bottom: 0;
  width: min(34vw, 420px);
  background-image: url("img/elbe-8-leaves.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  opacity: .58;
  filter: saturate(.9) contrast(1.05);
}

body::before {
  left: 0;
}

body::after {
  right: 0;
  transform: scaleX(-1);
  opacity: .24;
}

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

.coming-soon,
.sub-header,
.legal,
footer {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.coming-soon {
  min-height: calc(100svh - 116px);
  display: grid;
  place-items: center;
}

.panel,
.legal {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(235, 232, 223, .06), rgba(117, 139, 109, .10)),
    var(--panel);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .44);
  backdrop-filter: blur(18px);
}

.panel {
  width: min(860px, 100%);
  padding: clamp(34px, 7vw, 82px);
  text-align: center;
}

.logo-wrap {
  width: min(100%, 420px);
  margin-inline: auto;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.logo-complete {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-bright);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: .96;
  font-weight: 500;
}

.lead {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 2.3vw, 25px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  letter-spacing: .04em;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.button.primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.button:hover {
  border-color: rgba(244, 242, 237, .36);
  transform: translateY(-1px);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 680px;
  margin: clamp(32px, 5vw, 58px) auto 0;
}

.facts div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

dt {
  margin-bottom: 8px;
  color: var(--green-bright);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--muted);
}

footer,
.sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

footer {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

footer nav,
.sub-header nav {
  display: flex;
  gap: 18px;
}

.sub-header {
  position: sticky;
  top: 16px;
  z-index: 5;
  margin-bottom: 0;
  padding: 16px clamp(18px, 4vw, 46px);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(17, 22, 19, .82);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 116px;
  height: 100%;
  object-fit: contain;
}

.brand span {
  color: var(--green-bright);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal {
  padding: clamp(56px, 9vw, 98px) clamp(22px, 6vw, 76px);
}

.legal h1 {
  font-size: clamp(42px, 7vw, 80px);
}

.legal h2 {
  max-width: 760px;
  margin: 38px 0 12px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.legal p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.legal ul {
  max-width: 760px;
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
}

.legal li {
  margin-bottom: 8px;
}

.legal strong {
  color: var(--text);
}

@media (max-width: 680px) {
  body {
    padding: 0;
  }

  body::before {
    width: 58vw;
    opacity: .34;
  }

  body::after {
    display: none;
  }

  .coming-soon {
    min-height: auto;
  }

  .panel,
  .legal {
    min-height: calc(100svh - 74px);
    border-left: 0;
    border-right: 0;
  }

  .logo-wrap {
    width: min(100%, 300px);
  }

  .actions,
  .facts {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  footer {
    padding: 18px 20px;
  }

  .sub-header {
    top: 0;
    border-left: 0;
    border-right: 0;
  }

  .brand {
    height: 38px;
  }

  .brand img {
    width: 92px;
  }

  .brand span {
    display: none;
  }
}
