:root {
  color-scheme: light;
  --ink: #13211c;
  --muted: #536057;
  --page: #f4f6ef;
  --paper: #fffdf4;
  --surface: #e8efe4;
  --forest: #214b3d;
  --leaf: #5d7f45;
  --gold: #e0a740;
  --clay: #c76b4d;
  --sky: #97c6d7;
  --night: #101816;
  --line: rgba(19, 33, 28, 0.16);
  --shadow: 0 18px 48px rgba(14, 28, 22, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.24em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem max(1.2rem, calc((100vw - 1180px) / 2));
  background: rgba(244, 246, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border: 0.28rem solid var(--forest);
  border-right-color: var(--gold);
  border-bottom-color: var(--clay);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest);
}

.hero {
  display: grid;
  align-items: center;
  min-height: clamp(480px, calc(100svh - 150px), 740px);
  padding: 4rem max(1.2rem, calc((100vw - 1180px) / 2));
  color: #fffdf4;
  background:
    linear-gradient(90deg, rgba(12, 20, 17, 0.86), rgba(12, 20, 17, 0.42) 54%, rgba(12, 20, 17, 0.2)),
    url("assets/screenshots/screenshot-01.png") center / cover no-repeat;
}

.hero-inner {
  width: min(640px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.press-hero h1 {
  margin: 0;
  font-size: 5rem;
  line-height: 0.98;
}

.hero-copy {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 253, 244, 0.88);
  font-size: 1.18rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #21160a;
}

.button.secondary {
  background: rgba(255, 253, 244, 0.12);
  border-color: rgba(255, 253, 244, 0.42);
  color: #fffdf4;
}

.button.quiet {
  background: transparent;
  color: #fffdf4;
  text-decoration: underline;
}

.press-band .button.secondary {
  border-color: var(--forest);
  color: var(--forest);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.section-inner {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.intro-band,
.press-band,
.contact-band {
  padding: 5rem 0;
  background: var(--page);
}

.two-column,
.press-layout,
.community-layout,
.contact-layout,
.kit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

.intro-copy {
  color: #32433b;
  font-size: 1.1rem;
}

.feature-band {
  padding: 4rem 0;
  background: var(--forest);
  color: #fffdf4;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 253, 244, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.06);
}

.feature-number {
  display: block;
  margin-bottom: 3.2rem;
  color: var(--sky);
  font-weight: 900;
}

.feature-card p {
  margin-top: 0.8rem;
  color: rgba(255, 253, 244, 0.78);
}

.screenshots-band {
  padding: 5rem 0;
  background: #fdfcf6;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.screenshot-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--forest);
}

.screenshot-card figcaption {
  min-height: 4.5rem;
  padding: 1rem;
  color: #344139;
  font-weight: 700;
}

.press-band {
  background: var(--surface);
}

.press-band p {
  max-width: 38rem;
  margin-top: 1.1rem;
  color: #33423a;
}

.facts-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.facts-list div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding: 1rem;
  border-top: 1px solid rgba(19, 33, 28, 0.18);
}

.facts-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-list dd {
  margin: 0;
  font-weight: 800;
}

.community-band {
  padding: 5rem 0;
  background: var(--night);
  color: #fffdf4;
}

.community-links {
  display: grid;
  gap: 0.9rem;
}

.community-link {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 253, 244, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.06);
  text-decoration: none;
}

.community-link span {
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.community-link strong {
  font-size: 1.1rem;
}

.contact-band {
  background: #f7f1e7;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  font-style: normal;
  font-size: 1.2rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  padding: 1rem max(1.2rem, calc((100vw - 1180px) / 2));
  background: #0b1210;
  color: rgba(255, 253, 244, 0.72);
}

.press-hero {
  padding: 5rem 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 22, 0.92), rgba(16, 24, 22, 0.48)),
    url("assets/screenshots/screenshot-02.png") center / cover no-repeat;
  color: #fffdf4;
}

.press-hero .section-inner {
  max-width: 900px;
  margin-left: max(1.2rem, calc((100vw - 1180px) / 2));
}

.press-hero h1 {
  max-width: 760px;
  font-size: 4.2rem;
}

.press-hero p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1.2rem;
  color: rgba(255, 253, 244, 0.84);
  font-size: 1.15rem;
}

.kit-band {
  padding: 4.5rem 0;
  background: var(--page);
}

.kit-band.alt {
  background: #fdfcf6;
}

.kit-band.media {
  background: var(--surface);
}

.kit-band.requirements {
  background: var(--surface);
}

.kit-band.contact {
  background: #f7f1e7;
}

.copy-blocks {
  display: grid;
  gap: 1rem;
}

.copy-blocks article {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.copy-blocks p {
  margin-top: 0.7rem;
  color: #33423a;
}

.asset-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.asset-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--forest);
  border-radius: 6px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.requirements-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.48);
}

.requirements-card h3 {
  margin-bottom: 0.75rem;
}

.facts-list.compact {
  gap: 0;
}

.facts-list.compact div {
  grid-template-columns: minmax(6rem, 0.4fr) minmax(0, 1fr);
  padding: 0.75rem 0;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .press-hero h1 {
    font-size: 3rem;
  }

  .two-column,
  .press-layout,
  .community-layout,
  .contact-layout,
  .kit-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-grid,
  .screenshot-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-nav {
    gap: 0.3rem 0.65rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 500px;
    padding-block: 3rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .facts-list div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

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