:root {
  color-scheme: dark;
  --bg: #101215;
  --ink: #f8f4ec;
  --muted: #c9c1b5;
  --soft: rgba(248, 244, 236, 0.72);
  --line: rgba(248, 244, 236, 0.22);
  --accent: #f3b35b;
  --accent-strong: #f08a4b;
  --panel: rgba(16, 18, 21, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
}

.launch-page {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(20px, 4vw, 48px);
  isolation: isolate;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background-image: url("../images/coming-soon-hero.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 18, 21, 0.94) 0%, rgba(16, 18, 21, 0.78) 42%, rgba(16, 18, 21, 0.34) 72%, rgba(16, 18, 21, 0.58) 100%),
    linear-gradient(180deg, rgba(16, 18, 21, 0.7) 0%, rgba(16, 18, 21, 0.1) 42%, rgba(16, 18, 21, 0.82) 100%);
}

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

.site-header {
  align-self: start;
}

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

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(248, 244, 236, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__name,
.social-link,
.site-footer {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--accent);
  color: var(--ink);
}

.hero__content {
  align-self: center;
  width: min(100%, 720px);
  padding: 12vh 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4rem, 14vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.intro {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: #17110b;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-strong);
}

.button--ghost {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(248, 244, 236, 0.48);
}

.site-footer {
  align-self: end;
  color: rgba(248, 244, 236, 0.55);
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 20px;
  }

  .hero__media {
    background-position: 64% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(16, 18, 21, 0.74) 0%, rgba(16, 18, 21, 0.82) 52%, rgba(16, 18, 21, 0.94) 100%),
      linear-gradient(90deg, rgba(16, 18, 21, 0.85) 0%, rgba(16, 18, 21, 0.28) 100%);
  }

  .brand__name {
    display: none;
  }

  .hero__content {
    padding: 8vh 0;
  }

  h1 {
    max-width: 8ch;
  }

  .intro {
    max-width: 30rem;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header,
  .site-footer {
    gap: 12px;
  }

  .social-link,
  .site-footer {
    font-size: 0.72rem;
  }
}
