:root {
  --ink: #f3f7f4;
  --muted: #b3beb8;
  --paper: #05080a;
  --teal: #8fd7cf;
  --hq: #c9a876;
  --product: #ffb86b;
  --amber: #ffb86b;
  --line: rgba(243, 247, 244, 0.14);
  --bevel: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.32);
  --bevel-soft: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Suisse Intl", "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.hero-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  filter: saturate(0.88) brightness(0.78);
}

.hero-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 10, 0.98), rgba(5, 8, 10, 0.72) 54%, rgba(5, 8, 10, 0.4)),
    linear-gradient(0deg, rgba(5, 8, 10, 0.96), rgba(5, 8, 10, 0.2) 55%, rgba(5, 8, 10, 0.68));
}

.content-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 32px;
}

.site-header {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 820;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 184, 107, 0.14));
  color: var(--product);
  box-shadow: var(--bevel);
}

.hero-copy {
  display: grid;
  gap: 16px;
  padding: clamp(48px, 12vh, 120px) 0;
}

.eyebrow {
  margin: 0;
  color: rgba(243, 247, 244, 0.58);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
p {
  margin: 0;
}

h1 {
  color: #fff;
  font-family: "Suisse Works", "Canela", "Optima", "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 620;
  line-height: 1.05;
  text-wrap: balance;
}

.hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
}

.soon-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 184, 107, 0.22));
  padding: 5px 13px;
  color: var(--product);
  box-shadow: var(--bevel-soft), 0 10px 28px rgba(255, 184, 107, 0.14);
  font-family: "Suisse Intl", "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-text {
  max-width: 520px;
  color: rgba(243, 247, 244, 0.78);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.62;
}

.hero-aside {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-aside a {
  color: var(--hq);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--product);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 620px) {
  .content-shell {
    width: min(100% - 28px, 720px);
  }

  .hero-image {
    object-position: 64% center;
    opacity: 0.42;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
  }
}
