:root {
  --bg: #0a0c10;
  --panel: #13161d;
  --panel-hover: #1b1f29;
  --border: #272c38;
  --text: #e8eaf0;
  --muted: #8b91a3;
  --accent: #c2402f;
  --accent-hover: #d94f3c;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% -10%, rgba(194,64,47,0.18), transparent 55%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.25rem 3rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: 720px; }

header { text-align: center; margin-bottom: 0.5rem; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

h1 {
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.rule {
  width: 64px;
  height: 3px;
  background: var(--accent);
  margin: 1.4rem auto 1.6rem;
}

.logline {
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.files { display: flex; flex-direction: column; gap: 0.75rem; }

.file {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.05rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.file:hover {
  background: var(--panel-hover);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.file .icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(194,64,47,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.file .meta { flex: 1 1 auto; min-width: 0; }
.file .name { font-weight: 600; font-size: 1rem; }
.file .desc { color: var(--muted); font-size: 0.83rem; margin-top: 0.15rem; }

.file .dl {
  flex: 0 0 auto;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.file:hover .dl {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.primary .icon { background: var(--accent); color: #fff; }

.legal-label { margin-top: 2.5rem; }

footer {
  margin-top: 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 520px) {
  .file .dl { display: none; }
}
