/* --- Base reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

*,
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted",
    "Segoe UI", "Liberation Sans", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Inter Medium", -apple-system, BlinkMacSystemFont,
    "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
}

.nav-wrapper {
  width: 100%;
  border-bottom: 0px solid #c9c9c9;
}

nav {
  display: flex;
  max-width: 1000px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 1rem;
  height: 3em;
  font-size: 120%;
}

nav a {
  color: black;
  text-decoration: none;
}

nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* space between icon and text */
}

nav .navbar-brand::before {
  content: "";
  display: inline-block;
  width: 32px; /* or 32px to match your favicon */
  height: 32px;
  background-image: url("/assets/favicon-32.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  display: flex;
  justify-content: center;
  margin-top: 3em;
  margin-bottom: 1em;
}

.logo img {
  transform: scale(0.7);
}

h1 {
  color: #222;
  text-align: center;
  font-size: 38px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 60px;
    margin-bottom: 3rem;
  }
}

h2 {
  text-align: center;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  padding: 0 1rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin: auto;
  margin-bottom: 5em;
}

h3 {
  display: none;
  color: #777;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}

.cta {
  display: flex;
  justify-content: center;
}

/*
.cta svg {
  transform: scale(1.3);
  transform-origin: center center;
}
*/

.coming-soon {
  text-align: center;
  margin-bottom: 10em;
}

.coming-soon span {
  font-style: italic;
  font-size: 140%;
  color: #444;
  border: 0px solid #999;
  padding: 1em 2em;
  border-radius: 10px;
}

.legal {
  display: flex;
  justify-content: center;
  gap: 2em;
}
.legal a {
  font-size: small;
  color: #999;
  text-decoration: none;
}
