:root {
  --bg: #131313;
  --surface: #1c1c1c;
  --red: #e11d2a;
  --red-dim: #b01018;
  --text: #ededed;
  --muted: #888888;
  --line: rgba(255,255,255,0.07);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero {
  width: 100%;
  max-width: 760px;
  padding: 64px 24px 40px;
  text-align: center;
  background: radial-gradient(120% 80% at 50% 0%, rgba(225,29,42,0.14), transparent 60%);
}
.hero img.logo { width: 96px; height: auto; margin-bottom: 18px; }
.brand { font-size: 34px; font-weight: 700; letter-spacing: 0.3px; }
.brand .red { color: var(--red); }
.slogan { color: var(--muted); margin-top: 10px; font-size: 17px; }
.actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 14px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform .1s ease, filter .15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--red), var(--red-dim));
  box-shadow: 0 6px 22px rgba(225,29,42,0.30);
}
.btn-primary:hover { filter: brightness(1.07); }
.section { width: 100%; max-width: 760px; padding: 26px 24px; border-top: 1px solid var(--line); }
.section h2 { font-size: 13px; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; }
.section p, .section li { color: var(--muted); margin-top: 10px; font-size: 15px; }
.section ul { margin-top: 6px; padding-left: 18px; }
.plans { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
.plan {
  flex: 1; min-width: 180px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 16px; padding: 18px;
}
.plan .name { font-size: 15px; font-weight: 600; color: var(--text); }
.plan .price { font-size: 24px; font-weight: 700; margin-top: 6px; }
.plan .price span { font-size: 13px; color: var(--muted); font-weight: 400; }
.plan .feat { color: var(--muted); font-size: 13px; margin-top: 8px; }
.soon {
  margin-top: 16px; padding: 18px; text-align: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; color: var(--text); font-size: 16px; font-weight: 600;
}
.footer { margin-top: auto; padding: 30px 24px; color: var(--muted); font-size: 13px; text-align: center; }
.footer a { color: var(--red); text-decoration: none; }
