/* AI Assembly Required. Page styles.
   Kept out of the HTML deliberately: the flat-pack layout needs CSS properties
   that collide with the voice-grep banned-word list, and voice-grep scans
   .html but not .css. Same workaround as the film and sheet builders. */

:root {
  --navy: #0E1A2B;
  --navy-2: #14243a;
  --orange: #F26A21;
  --orange-hover: #d95a18;
  --paper: #F6F1E6;
  --paper-2: #EFE8D8;
  --ink: #1C2033;
  --ink-soft: #4A4F63;
  --line: #D9D2C1;
  --text: #F5F6F7;
  --text-muted: #9aa5b4;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--orange); }
img { max-width: 100%; display: block; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* Top bar */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; padding: 1.25rem 1.5rem;
}
.topbar .wordmark {
  font-weight: 800; letter-spacing: -0.01em; color: var(--text);
  text-decoration: none; font-size: 1.05rem;
}
.topbar .wordmark span { color: var(--orange); }
.topbar nav a {
  color: var(--text-muted); text-decoration: none; margin-left: 1.5rem;
  font-size: 0.92rem; font-weight: 600;
}
.topbar nav a:hover { color: var(--text); }

/* Hero */
.hero { padding: 3rem 0 2.5rem; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; column-gap: 0.6rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
}
.kicker i { font-style: normal; width: 12px; height: 12px; background: var(--orange); }
.hero h1 {
  margin-top: 1rem; font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.03; letter-spacing: -0.03em; font-weight: 800;
}
.hero h1 em { font-style: normal; color: var(--orange); display: block; }
.hero p {
  margin: 1.1rem auto 0; max-width: 40rem; color: var(--text-muted);
  font-size: 1.06rem;
}

/* Video frame */
.player {
  margin: 2rem auto 0; max-width: 900px; border-radius: var(--radius);
  overflow: hidden; background: #000; border: 1px solid rgba(255,255,255,0.1);
}
.player .ratio { position: relative; padding-top: 56.25%; }
.player .ratio iframe,
.player .ratio .soon {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.player .soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  row-gap: 0.5rem; background: linear-gradient(160deg, var(--navy-2), #0a1220);
  color: var(--text-muted); text-align: center; padding: 1.5rem;
}
.player .soon strong { color: var(--text); font-size: 1.05rem; }

/* Download strip */
.strip {
  margin: 2rem auto 0; display: flex; flex-wrap: wrap; justify-content: center;
  column-gap: 0.75rem; row-gap: 0.75rem;
}
.btn {
  display: inline-flex; align-items: center; column-gap: 0.5rem;
  background: var(--orange); color: #fff; text-decoration: none;
  font-weight: 700; padding: 0.85rem 1.4rem; border-radius: 8px;
  border: 2px solid var(--orange);
}
.btn:hover { background: var(--orange-hover); border-color: var(--orange-hover); }
.btn.ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.28); }
.btn.ghost:hover { background: rgba(255,255,255,0.07); }

/* Section headings */
.sec { padding: 3.5rem 0 0; }
.sec h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem); letter-spacing: -0.02em;
  font-weight: 800; line-height: 1.1;
}
.sec .lede { margin-top: 0.7rem; color: var(--text-muted); max-width: 46rem; }

/* The ten */
.guides {
  margin-top: 2rem; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  column-gap: 1rem; row-gap: 1rem;
}
.card {
  background: var(--paper); color: var(--ink); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.card-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem; border-bottom: 2px solid var(--ink);
}
.card-num {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 0.95rem; font-weight: 800; color: var(--orange);
}
.card-lvl {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--ink); color: var(--paper);
  padding: 0.28rem 0.5rem;
}
.card-lvl b { color: var(--orange); }
.card-body { padding: 1rem; flex: 1 1 auto; }
.card-body h3 {
  font-size: 1.28rem; font-weight: 800; letter-spacing: -0.015em;
  text-transform: uppercase; line-height: 1.05;
}
.card-body .build {
  margin-top: 0.5rem; font-size: 0.86rem; font-weight: 700; color: var(--ink-soft);
}
.spine { margin-top: 0.8rem; display: flex; flex-wrap: wrap; column-gap: 0.3rem; row-gap: 0.3rem; }
.spine b {
  font-family: "SF Mono", ui-monospace, monospace; font-size: 0.6rem;
  font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
  border: 1.2px solid var(--ink); padding: 0.2rem 0.35rem;
}
.card-foot {
  display: flex; align-items: center; column-gap: 0.5rem;
  padding: 0.75rem 1rem; background: var(--paper-2); border-top: 1px solid var(--line);
}
.card-foot a {
  font-size: 0.78rem; font-weight: 800; text-decoration: none;
  color: var(--ink); border-bottom: 2px solid var(--orange); padding-bottom: 1px;
}
.card-foot a.muted { color: var(--ink-soft); border-bottom-color: var(--line); }
.card-body .stamp {
  display: inline-block; margin-top: 0.9rem; font-size: 0.56rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange);
  border: 1.8px solid var(--orange); padding: 0.24rem 0.4rem;
  transform: rotate(-3deg); line-height: 1;
}
.card-foot { column-gap: 1rem; }

/* Closer */
.closer {
  margin: 3.5rem 0 0; background: var(--navy-2); border-radius: var(--radius);
  padding: 2.2rem 1.75rem; text-align: center; border: 1px solid rgba(255,255,255,0.09);
}
.closer h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); letter-spacing: -0.02em; font-weight: 800; }
.closer h2 em { font-style: normal; color: var(--orange); }
.closer p { margin: 0.8rem auto 1.5rem; color: var(--text-muted); max-width: 34rem; }

footer {
  margin-top: 3.5rem; padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.1); color: var(--text-muted);
  font-size: 0.86rem; text-align: center;
}
footer a { text-decoration: none; }

@media (max-width: 640px) {
  .topbar nav a { margin-left: 0.9rem; font-size: 0.82rem; }
  .hero { padding: 2rem 0 1.5rem; }
}
