:root {
  color-scheme: dark;
  --black: #05070a;
  --white: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.64);
  --accent: #f36f32;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Geist, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.site-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: clamp(3rem, 7vh, 4.5rem);
  background: var(--black);
}

.site-shell::before {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(5rem, 11vw, 8.75rem);
  aspect-ratio: 1;
  content: "";
  background: var(--accent);
  z-index: 1;
}

.hero {
  display: grid;
  width: min(88vw, 46rem);
  justify-items: center;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  text-align: center;
}

.logo-mark {
  position: relative;
  width: min(38vw, 24rem);
  aspect-ratio: 191 / 130;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.logo-mark::after {
  position: absolute;
  inset: 14%;
  content: "";
  background: var(--white);
  mask: url("assets/cg3.svg") center / contain no-repeat;
  -webkit-mask: url("assets/cg3.svg") center / contain no-repeat;
}

.logo-mark.is-rendered::after {
  display: none;
}

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

h1 {
  max-width: 100%;
  margin: 0;
  font-family: Geist, Helvetica, Arial, sans-serif;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  font-weight: 700;
  letter-spacing: 0.33px;
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.tagline {
  margin: clamp(0.85rem, 1.8vw, 1.25rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.72rem, 1.25vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-footer {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  right: 1rem;
  bottom: clamp(0.9rem, 2vw, 1.4rem);
  left: 1rem;
  z-index: 3;
  color: rgba(245, 245, 247, 0.48);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.33px;
  line-height: 1.25;
  text-align: left;
}

.site-footer address {
  grid-column: 1;
  justify-self: start;
  font-style: normal;
}

.site-footer span {
  grid-column: 2;
  justify-self: end;
}

@media (max-width: 720px) {
  .site-shell {
    padding-bottom: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 3vw, 1.15rem);
    width: min(100%, 24rem);
  }

  .logo-mark {
    width: min(72vw, 19rem);
    margin-bottom: 0;
  }

  h1 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
    white-space: nowrap;
  }

  .tagline {
    max-width: 20rem;
    margin: 0;
  }
}
