:root {
  --bg: #050505;
  --surface: #0a0a0a;
  --border: #161616;
  --text: #ffffff;
  --text-muted: #9a9a9a;
  --text-dim: #6a6a6a;
  --red: #e10600;
  --red-deep: #a80000;
  --red-bright: #ff2316;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ─── Header ───────────────────────────────────────────────────────────── */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

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

.brand span {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  font-family: 'Black Ops One', system-ui, sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.brand-fire {
  color: #fff;
}

.brand-ops {
  color: var(--red);
  font-style: italic;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
}

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

@media (max-width: 760px) {
  .site-nav a:not(.cta) {
    display: none;
  }
}

/* ─── Buttons ─────────────────────────────────────────────────────────── */

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 22px rgba(225, 6, 0, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.cta-small {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 10px;
}

.cta-outline {
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--text);
  box-shadow: none;
}

.cta-outline:hover {
  background: rgba(225, 6, 0, 0.08);
}

/* ─── Hero ────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 96px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: -10%;
  bottom: 0;
  width: 80%;
  max-width: 720px;
  object-fit: cover;
  object-position: top;
  opacity: 0.55;
  mask-image: linear-gradient(to right, transparent 0%, #000 35%, #000 100%),
    linear-gradient(to bottom, #000 50%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 35%, #000 100%),
    linear-gradient(to bottom, #000 50%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.hero-logo {
  width: clamp(220px, 30vw, 320px);
  margin: 0 auto 28px;
}

.hero-tagline {
  margin: 0 0 24px;
  font-weight: 800;
  letter-spacing: 2.6px;
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
}

.hero-tagline strong {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-weight: 800;
}

.hero h1 {
  font-family: 'Black Ops One', system-ui, sans-serif;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.55;
  color: #d0d0d0;
  margin: 0 auto 32px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Sections ────────────────────────────────────────────────────────── */

main section:not(.hero) {
  padding: 80px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 24px;
  text-align: center;
}

.section-lede {
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
  color: #d0d0d0;
  max-width: 680px;
  margin: 0 auto;
}

/* ─── Features ────────────────────────────────────────────────────────── */

.features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 32px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid rgba(225, 6, 0, 0.5);
  background: rgba(225, 6, 0, 0.08);
  color: var(--red);
  font-size: 20px;
  margin-bottom: 18px;
}

.feature h3 {
  font-family: 'Black Ops One', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}

.feature p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Screenshots ─────────────────────────────────────────────────────── */

.screenshots-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 32px;
}

.screenshots-grid figure {
  margin: 0;
  text-align: center;
}

.screenshots-grid img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
}

.screenshots-grid figcaption {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ─── Install ─────────────────────────────────────────────────────────── */

.install-steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 32px;
}

.install-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.install-card h3 {
  font-family: 'Black Ops One', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
}

.install-card ol {
  padding-left: 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #d0d0d0;
}

.install-card li + li {
  margin-top: 10px;
}

.install-card a {
  color: var(--red);
  font-weight: 700;
}

.install-card em {
  font-style: normal;
  font-weight: 700;
  color: #fff;
  background: rgba(225, 6, 0, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
}

.install-cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── Footer ──────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 32px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand img {
  height: 28px;
  width: auto;
}

.footer-brand span {
  font-family: 'Black Ops One', system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.footer-line {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
}
