:root {
  --ground: #070706;
  --paper: #f5ecdd;
  --paper-soft: #d9cdbd;
  --lime: #b8ef10;
  --line: rgba(245, 236, 221, 0.14);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--ground);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(173, 56, 45, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(184, 239, 16, 0.13), transparent 24rem),
    linear-gradient(180deg, #070706 0%, #11100d 100%);
  color: var(--paper);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 236, 221, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 236, 221, 0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, black 0%, transparent 82%);
}

body::after {
  position: fixed;
  right: -4vw;
  bottom: 0;
  left: -4vw;
  height: 116px;
  content: "";
  pointer-events: none;
  background-image: url("brand/soil-ridge.svg");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 76px;
  opacity: 0.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(28px, 5vw, 72px);
}

.brand-link {
  width: 178px;
  flex: 0 0 auto;
}

.brand-link img {
  width: 100%;
  object-fit: contain;
}

.icon-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-links a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 236, 221, 0.06);
  box-shadow: inset 0 1px 0 rgba(245, 236, 221, 0.06);
}

.icon-links a:hover {
  border-color: rgba(184, 239, 16, 0.58);
  background: rgba(245, 236, 221, 0.11);
}

.icon-links img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(93%) sepia(11%) saturate(434%)
    hue-rotate(342deg) brightness(104%) contrast(92%);
}

.launch-page {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 118px clamp(28px, 9vw, 148px) 98px;
}

.hero {
  width: min(100%, 1320px);
}

.hero-copy {
  max-width: 1120px;
}

h1,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 1100px;
  margin-bottom: 28px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 0.84;
}

.tagline {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 2.35rem;
  font-weight: 950;
  line-height: 1.08;
}

.summary {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--paper-soft);
  font-size: 1.22rem;
  font-weight: 720;
  line-height: 1.48;
}

@media (max-width: 960px) {
  .brand-link {
    width: 240px;
  }

  .icon-links a {
    width: 50px;
    height: 50px;
  }

  .icon-links img {
    width: 23px;
    height: 23px;
  }

  h1 {
    font-size: 6.2rem;
  }

  .tagline {
    font-size: 1.9rem;
  }
}

@media (max-width: 620px) {
  body {
    overflow-y: auto;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .brand-link {
    width: min(310px, calc(100vw - 40px));
  }

  .icon-links {
    gap: 10px;
  }

  .icon-links a {
    width: 50px;
    height: 50px;
  }

  .icon-links img {
    width: 23px;
    height: 23px;
  }

  .launch-page {
    min-height: 100vh;
    padding: 188px 20px 96px;
  }

  h1 {
    font-size: 4.18rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .summary {
    font-size: 1.02rem;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-link {
    width: min(270px, calc(100vw - 32px));
  }

  .icon-links {
    gap: 8px;
  }

  .icon-links a {
    width: 42px;
    height: 42px;
  }

  .icon-links img {
    width: 20px;
    height: 20px;
  }
}
