@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("/assets/fonts/syne.woff2?v=20260829c") format("woff2");
}

@font-face {
  font-family: "Figtree";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/figtree.woff2?v=20260829c") format("woff2");
}

@font-face {
  font-family: "Figtree";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/figtree-italic.woff2?v=20260829c") format("woff2");
}

:root {
  --bg: #0c0b09;
  --bg-2: #13110e;
  --bg-3: #1b1712;
  --ink: #f3ece0;
  --muted: #a89a86;
  --dim: #6e6558;
  --line: rgba(243, 236, 224, 0.1);
  --amber: #e8a317;
  --amber-2: #f0b429;
  --moss: #6b9e4a;
  --earth: #8b5e34;
  --max: 1120px;
  --header: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Figtree", "Segoe UI", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 40;
  background: linear-gradient(90deg, var(--moss), var(--amber), var(--earth));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.035;
  background-image: url("/assets/grain.png?v=20260829c");
  background-size: 96px 96px;
}

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

a {
  color: var(--amber-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  z-index: 50;
  padding: 0.55rem 0.85rem;
  background: var(--amber);
  color: #1a1204;
  font-weight: 600;
}

.skip:focus {
  top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header);
  padding: 0.65rem 6vw;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 42px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-family: "Syne", "Figtree", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.02rem;
}

.brand-studio {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.35rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem 3rem;
  align-items: center;
  padding: 2.5rem 6vw 4rem;
  max-width: calc(var(--max) + 12vw);
  margin: 0 auto;
  background-image:
    linear-gradient(180deg, transparent 60%, var(--bg)),
    repeating-linear-gradient(
      135deg,
      transparent 0 22px,
      rgba(232, 163, 23, 0.035) 22px 23px
    );
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero h1 {
  margin: 0;
  font-family: "Syne", "Figtree", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-kicker {
  display: block;
  font-size: 0.32em;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.45rem;
}

.lede {
  margin: 1.35rem 0 0.85rem;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ink);
}

.honest {
  margin: 0 0 1.6rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.honest strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.15rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: #1a1204;
}

.btn-primary:hover {
  background: var(--amber-2);
  color: #1a1204;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber-2);
}

.hero-art {
  display: flex;
  justify-content: center;
  animation: float 9s ease-in-out infinite;
}

.hero-art img {
  width: min(100%, 460px);
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45));
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.section {
  padding: 5rem 6vw;
  max-width: calc(var(--max) + 12vw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.section-head h2 {
  margin: 0;
  font-family: "Syne", "Figtree", sans-serif;
  font-weight: 750;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  max-width: 22ch;
}

.section-lead {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--muted);
}

.facts {
  list-style: none;
  margin: 2.6rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.facts li {
  padding: 1.35rem 1.4rem 1.45rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.fact-idx {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--earth);
  margin-bottom: 0.7rem;
}

.facts h3 {
  margin: 0 0 0.45rem;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.facts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.dl-card {
  display: grid;
  justify-items: start;
  gap: 0.25rem;
  width: 100%;
  padding: 1.4rem 1.45rem 1.3rem;
  text-align: left;
  color: var(--ink);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  cursor: not-allowed;
  opacity: 0.72;
}


.dl-card.is-live {
  cursor: pointer;
  opacity: 1;
  text-decoration: none;
}

.dl-card.is-live:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--amber) 45%, var(--line));
}

.dl-os {
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.dl-file {
  color: var(--muted);
  font-size: 0.95rem;
}

.dl-state {
  margin-top: 0.85rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--amber) 45%, transparent);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dl-note {
  margin: 1.15rem 0 0;
  color: var(--dim);
  font-size: 0.92rem;
  max-width: 42rem;
}

.tonight-panel {
  margin-top: 2.2rem;
  padding: 1.6rem 1.7rem;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 8px;
  border-left: 3px solid var(--moss);
}

.tonight-label {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.tonight-panel .btn {
  margin-bottom: 0.95rem;
}

.tonight-meta {
  margin: 0;
  color: var(--muted);
  max-width: 44rem;
}

.engine-copy {
  margin: 1.2rem 0 0;
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.engine-copy strong {
  color: var(--ink);
}

.site-footer {
  padding: 2.4rem 6vw 3rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem 2rem;
  align-items: end;
  max-width: calc(var(--max) + 12vw);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.footer-brand img {
  width: 56px;
  height: 66px;
}

.footer-name {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.footer-domain {
  margin: 0.2rem 0 0;
}

.footer-domain a {
  color: var(--muted);
  text-decoration: none;
}

.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-legal li + li {
  margin-top: 0.25rem;
}

.footer-copy {
  margin: 0;
  color: var(--dim);
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .site-header {
    padding-inline: 1.15rem;
  }

  .nav {
    gap: 0.85rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding: 1.5rem 1.15rem 3rem;
    align-content: center;
  }

  .hero-art img {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .section {
    padding: 3.4rem 1.15rem;
  }

  .facts,
  .dl-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 1.15rem;
  }
}

@media (max-width: 420px) {
  .nav a:last-child {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-art {
    animation: none;
  }
}
