* { box-sizing: border-box; }
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #F40A2F;
  box-shadow: 0 0 16px rgba(244,10,47,0.6);
}
.brand span {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
h2 {
  font-size: 18px;
  font-weight: 800;
  color: #F40A2F;
  margin-top: 32px;
  margin-bottom: 10px;
}
p { color: #A0A0A0; margin: 0 0 12px; }
.subtitle { color: #A0A0A0; margin-bottom: 32px; }
a { color: #F40A2F; text-decoration: none; }
a:hover { text-decoration: underline; }
.card {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 16px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}
.card p { margin: 0; font-size: 14px; }
.links { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid #2A2A2A;
  color: #555;
  font-size: 12px;
}
.back { display: inline-block; margin-bottom: 24px; font-size: 14px; }
