/* On Tape << Rewind — game landing page */

:root {
  --bg: #07090a;
  --bg-raised: #10130f;
  --bg-raised-2: #161a14;
  --line: rgba(238,240,230,0.10);
  --fg: #eef0e6;
  --fg-dim: #a7ab9d;
  --fg-dimmer: #686d60;
  --green: #8fe36a;
  --green-ink: #07090a;
  --amber: #e8a33d;
  --tape-red: #c23b2e;
  --font-d: 'Space Grotesk', system-ui, sans-serif;
  --font-b: 'IBM Plex Sans', system-ui, sans-serif;
  --font-m: 'IBM Plex Mono', ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-d); margin: 0; text-wrap: pretty; }
p { margin: 0; }
img { max-width: 100%; }
a { color: var(--green); text-decoration: none; }
a:hover { color: #b6f39c; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.tape-tag {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-m); font-size: 12.5px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
}
.tape-tag::before { content: "●"; color: var(--tape-red); font-size: 10px; }
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-b); font-weight: 600; font-size: 15px; padding: 13px 26px; border-radius: 3px; cursor: pointer; border: 1px solid transparent; min-height: 44px; }
.btn-primary { background: var(--green); color: var(--green-ink); }
.btn-secondary { background: rgba(238,240,230,0.06); color: var(--fg); border-color: rgba(238,240,230,0.25); }

/* Top bar */
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 20px 32px; border-bottom: 1px solid var(--line); }
.topbar-back { display: flex; align-items: center; gap: 10px; }
.topbar-back img { height: 22px; width: auto; opacity: 0.9; }
.topbar-back span { font-size: 13px; color: var(--fg-dimmer); font-family: var(--font-m); }
.topbar .btn { padding: 9px 18px; font-size: 13.5px; min-height: 36px; }
@media (max-width: 560px) { .topbar-back span { display: none; } }

/* Hero */
.hero {
  position: relative; padding: 120px 32px 90px; text-align: center;
  background: linear-gradient(180deg, rgba(7,9,10,0.55) 0%, rgba(7,9,10,0.72) 55%, var(--bg) 100%), url('../images/OTR_promo_header_home.jpg');
  background-size: cover; background-position: center 30%;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero .tape-tag { justify-content: center; width: 100%; }
.hero-pitch { margin-top: 24px; font-size: 18px; color: var(--fg-dim); line-height: 1.7; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* Sections */
.sec { padding: 88px 32px; }
.sec-alt { background: var(--bg-raised); }
.sec-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.sec-head h2 { font-size: clamp(26px, 3.2vw, 34px); font-weight: 700; margin-top: 14px; }
.sec-head p { color: var(--fg-dim); font-size: 16px; margin-top: 12px; line-height: 1.65; }

/* News strip */
.news-strip { display: flex; gap: 18px; align-items: flex-start; background: var(--bg-raised-2); border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: 6px; padding: 24px 26px; max-width: 720px; margin: 0 auto; }
.news-body .date { font-family: var(--font-m); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber); }
.news-body p { margin-top: 8px; font-size: 14.5px; color: var(--fg-dim); line-height: 1.6; }
.news-body b { color: var(--fg); }

/* Premise */
.premise { display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: 64px; align-items: center; }
.premise-art { display: flex; justify-content: center; }
.premise-art-frame { width: 78%; border-radius: 6px; overflow: hidden; transform: rotate(-3deg); box-shadow: 0 40px 80px -20px rgba(0,0,0,0.75), 0 0 0 1px rgba(238,240,230,0.08); }
.premise-art-frame img { display: block; width: 100%; }
.premise-text .tape-tag { margin-bottom: 6px; }
.premise-text h2 { font-size: clamp(26px, 3.4vw, 36px); margin-top: 12px; }
.premise-text p { margin-top: 18px; color: var(--fg-dim); font-size: 16px; line-height: 1.75; }
.rec-meta { margin-top: 24px; font-family: var(--font-m); font-size: 12.5px; color: var(--fg-dimmer); letter-spacing: 0.06em; }
.rec-meta b { color: var(--tape-red); }
@media (max-width: 860px) { .premise { grid-template-columns: 1fr; } .premise-art { order: -1; } .premise-art-frame { width: 56%; } }

/* Gameplay grid */
.gameplay-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.gp-card { background: var(--bg-raised-2); border: 1px solid var(--line); border-radius: 8px; padding: 26px 22px; }
.gp-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(143,227,106,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.gp-card p { font-size: 14.5px; color: var(--fg-dim); line-height: 1.55; }
.gp-card .step { font-family: var(--font-m); font-size: 11px; color: var(--fg-dimmer); letter-spacing: 0.08em; margin-bottom: 8px; display: block; }
@media (max-width: 900px) { .gameplay-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 540px) { .gameplay-grid { grid-template-columns: 1fr; } }

/* Tape index */
.tape-index { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; }
.tape-row { display: flex; align-items: center; gap: 18px; padding: 16px 4px; border-top: 1px solid var(--line); }
.tape-index .tape-row:first-child { border-top: none; }
.tape-row .tn { font-family: var(--font-m); font-size: 13px; color: var(--tape-red); width: 34px; flex: none; }
.tape-row .tt { font-size: 15.5px; color: var(--fg); }
.tape-index-outro { max-width: 680px; margin: 26px auto 0; font-size: 14.5px; color: var(--fg-dimmer); font-style: italic; text-align: center; }

/* Specs */
.specs-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 900px; margin: 0 auto; }
.spec-pill { display: flex; align-items: center; gap: 9px; background: var(--bg-raised-2); border: 1px solid var(--line); border-radius: 100px; padding: 10px 18px; font-size: 13.5px; color: var(--fg-dim); }
.spec-pill svg { flex: none; }

/* CTA band */
.cta-band { text-align: center; background: linear-gradient(160deg, #10130f 0%, #07090a 70%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 100px 32px; }
.cta-band h2 { font-size: clamp(28px, 3.6vw, 40px); }
.cta-band p { margin-top: 16px; color: var(--fg-dim); font-size: 16.5px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { margin-top: 30px; }

/* Footer */
.footer { padding: 64px 32px 36px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 20px; }
.footer-brand span { font-family: var(--font-m); font-size: 12.5px; color: var(--fg-dimmer); }
.footer-social { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-social a { font-size: 13.5px; color: var(--fg-dim); }
.footer-social a:hover { color: var(--fg); }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--fg-dimmer); font-size: 12.5px; }
.footer-disclosure { margin-top: 18px; font-size: 12px; color: var(--fg-dimmer); font-style: italic; max-width: 640px; line-height: 1.6; }
