:root {
  --background: #0f0f0f;
  --foreground: #fff;
  --padding-y: 6.25rem;
  --padding-x: 4rem;
  --text-muted-foreground: #737373;
  --rounded-full: 9999px;
  --brand: #fff;
  --brand-foreground: #0f0f0f;
  --border: #262626;
  --muted: #171717;
  --black: #0a0a0a;
  --background-secondary: #111;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 150%;
}

.global-css {
  display: none;
}

.wip-section {
  min-height: 100vh;
  padding: var(--padding-y) var(--padding-x);
}

.container {
  width: 100%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.header-wrapper {
  flex-flow: column;
  display: flex;
}

.header-wrapper.centered {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.h1 {
  letter-spacing: -.04em;
  max-width: 17ch;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 110%;
}

.p {
  color: var(--text-muted-foreground);
  margin-bottom: 0;
}

.header-actions-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.button-primary {
  border-radius: var(--rounded-full);
  background-color: var(--brand);
  height: 2.6875rem;
  color: var(--brand-foreground);
  justify-content: center;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-weight: 500;
  line-height: 120%;
  transition: all .2s;
  display: flex;
}

.button-primary:hover {
  transform: translate(0, -.125rem);
}

.button-outline {
  border: 1px solid var(--border);
  border-radius: var(--rounded-full);
  background-color: var(--muted);
  height: 2.6875rem;
  color: var(--foreground);
  justify-content: center;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-weight: 500;
  line-height: 120%;
  transition: all .2s;
  display: flex;
}

.button-outline:hover {
  transform: translate(0, -.125rem);
}

.temp-icon {
  width: 6.2rem;
  height: 4.2rem;
}

@media screen and (max-width: 767px) {
  body {
    --background: #0f0f0f;
    --foreground: #fff;
    --padding-y: 6.25rem;
    --padding-x: 1rem;
    --text-muted-foreground: #737373;
    --rounded-full: 9999px;
    --brand: #fff;
    --brand-foreground: #0f0f0f;
    --border: #262626;
    --muted: #171717;
    --black: #0a0a0a;
    --background-secondary: #111;
  }

  .h1 {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 479px) {
  .h1 {
    font-size: 2.75rem;
  }

  .header-actions-wrapper {
    flex-flow: column;
  }
}


