:root {
  --accent-1: #DF2A35;
  --accent-2: #FDCA41;
  --dark: #080708;
  --light: #E7E8E6;
  --additional: #3772FF;
  --white: #FFFFFF;
  --text-secondary: rgba(8, 7, 8, 0.7);
  --border: rgba(8, 7, 8, 0.12);
  --font-heading: "Arial Black", "Helvetica Neue", sans-serif;
  --font-body: "IBM Plex Mono", "Courier New", monospace;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: var(--additional); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px) clamp(16px, 3vw, 32px);
}

.banner {
  background: var(--dark);
  color: var(--light);
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 32px;
  font-size: 14px;
  text-align: center;
}

.banner strong { color: var(--accent-2); }

.hero { margin-bottom: 40px; }

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.hero .lead {
  color: var(--text-secondary);
  max-width: 640px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  border-color: var(--accent-1);
  box-shadow: 0 4px 16px rgba(8, 7, 8, 0.08);
}

.card--primary { border-top: 4px solid var(--accent-1); }
.card--secondary { border-top: 4px solid var(--additional); }

.card h2 { font-size: 1.25rem; }

.card p { font-size: 14px; color: var(--text-secondary); flex: 1; }

.card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
}

.btn--primary {
  background: var(--accent-1);
  color: var(--white) !important;
}

.btn--primary:hover { background: #C4242E; text-decoration: none; }

.btn--outline {
  background: transparent;
  color: var(--dark) !important;
  border: 2px solid var(--dark);
}

.btn--outline:hover { background: var(--dark); color: var(--white) !important; text-decoration: none; }

.section-title {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.quick-links a {
  display: inline-block;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark);
}

.quick-links a:hover {
  border-color: var(--additional);
  text-decoration: none;
}

.notes {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.notes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notes li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-1);
}

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--accent-2);
  color: var(--dark);
  font-weight: 600;
  margin-right: 6px;
}

.footer-note {
  font-size: 13px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
