:root {
  --color-navy: #18324a;
  --color-blue: #a7c7df;
  --color-amber: #d89b2b;
  --color-white: #ffffff;
  --color-muted: #5f7181;

  --font-family: "Nunito", "Avenir Next", Avenir, system-ui, sans-serif;
  --page-width: 80rem;
  --page-gutter: 2rem;
  --header-height: 4rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-family);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background: var(--color-white);
}

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

p,
h1,
figure {
  margin: 0;
}

.page-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, var(--page-width));
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding: 2rem var(--page-gutter) 1.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--header-height);
}

.brand {
  display: block;
  width: 12.75rem;
}

.brand img {
  width: 100%;
  height: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
  align-items: center;
  gap: var(--space-md);
  padding-block: 2.5rem 2rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-left: 2.25rem;
}

.hero-copy h1 {
  color: var(--color-navy);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-description {
  max-width: 36rem;
  margin-top: 1.625rem;
  color: #61758a;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

.more-soon {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  color: var(--color-navy);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.more-soon::before {
  width: 1.75rem;
  height: 0.15rem;
  border-radius: 999px;
  background: var(--color-amber);
  content: "";
}

.hero-product {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-product img {
  width: min(100%, 37rem);
  height: auto;
  object-fit: contain;
}

.site-footer {
  display: flex;
  align-items: end;
  min-height: 2.5rem;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

@media (max-width: 74.999rem) {
  :root {
    --page-gutter: 2.5rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
    gap: var(--space-sm);
  }

  .hero-copy {
    padding-left: 0.5rem;
  }

  .hero-copy h1 {
    font-size: 3.25rem;
  }

  .hero-product img {
    width: min(100%, 32rem);
  }
}

@media (max-width: 52.499rem) {
  :root {
    --page-gutter: 2rem;
  }

  .page-shell {
    padding-top: 1.5rem;
  }

  .brand {
    width: 11rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding-block: 3.5rem 2rem;
  }

  .hero-copy {
    padding-left: 0;
  }

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

  .hero-description {
    max-width: 31rem;
    margin-top: 1.25rem;
    font-size: 1.2rem;
  }

  .more-soon {
    margin-top: 1.5rem;
  }

  .hero-product {
    justify-content: flex-end;
  }

  .hero-product img {
    width: min(86vw, 29rem);
  }
}

@media (max-width: 34.999rem) {
  :root {
    --page-gutter: 1.25rem;
  }

  .page-shell {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .site-header {
    min-height: 3rem;
  }

  .brand {
    width: 9.25rem;
  }

  .hero {
    gap: 1rem;
    padding-block: 3rem 1.75rem;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
    line-height: 1.06;
  }

  .hero-description {
    max-width: 22rem;
    margin-top: 1.1rem;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .more-soon {
    margin-top: 1.35rem;
    font-size: 1rem;
  }

  .hero-product img {
    width: min(92vw, 22rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
