/*
  STRUGGLE FONT
  -------------
  Struggle is self-hosted from the site's assets folder.
  The page will automatically use it for display headings.
*/
@font-face {
  font-family: "Struggle";
  src: url("/assets/struggle-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --charcoal: #2F2F33;
  --off-white: #F5F6F7;
  --yellow: #F4C430;
  --muted: #CFCFD3;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--charcoal);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--charcoal);
  color: var(--off-white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--off-white);
  text-decoration: none;
  font-family: "Atkinson Hyperlegible Next", Arial, sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.hero {
  max-width: 1180px;
  min-height: calc(100vh - 190px);
  margin: 0 auto;
  padding: 64px 28px 72px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-family: "Atkinson Hyperlegible Next", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-family: "Struggle", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.3rem, 8.5vw, 8.2rem);
  line-height: 0.8;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 720px;
  margin: 34px 0 0;
  font-family: "Atkinson Hyperlegible Next", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.35;
  font-weight: 600;
}

.description {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
}

.download-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.store-button {
  min-width: 184px;
  padding: 12px 20px 13px;
  border: 2px solid var(--off-white);
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  line-height: 1.05;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  background: var(--off-white);
  color: var(--charcoal);
}

.store-small {
  margin-bottom: 3px;
  font-size: 0.68rem;
}

.store-button strong {
  font-size: 1.15rem;
}

.coming-soon {
  margin: 12px 0 0;
  color: #A9A9AE;
  font-size: 0.82rem;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art img {
  width: min(100%, 480px);
  height: auto;
  display: block;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px 32px;
  border-top: 1px solid rgba(245, 246, 247, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #A9A9AE;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 9px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--off-white);
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 22px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 48px;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    width: min(72vw, 360px);
  }

  h1 {
    font-size: clamp(4rem, 17vw, 6.5rem);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 54px;
  }

  .lead {
    margin-top: 28px;
  }

  .download-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
  }
}
