@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --bg: #05070c;
  --panel: #0d1118;
  --panel-soft: #151a24;
  --accent: #ff003c;
  --accent-dark: #e00034;
  --text: #f8fbff;
  --muted: #9da5b5;
  --border: rgba(255, 255, 255, 0.07);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(255, 0, 60, 0.15), transparent 55%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shell {
  width: min(960px, 100%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.7);
}

h1 {
  margin: 0.25rem 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

p.lead {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 0, 60, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.hero-visual::before,
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-visual::after {
  inset: 32px;
  border-style: dashed;
}

.hero-visual span {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
}

.hero-visual .pill {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-size: 0.85rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.cta-primary {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 18px 45px rgba(255, 0, 60, 0.3);
}

.cta-primary:hover {
  background: var(--accent-dark);
}

.cta-secondary {
  border-color: var(--border);
  color: var(--muted);
}

.cta-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem;
  min-height: 160px;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.pricing-card {
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}

.badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.billing {
  color: var(--muted);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.feature-list li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.panel {
  margin-top: 2.5rem;
  padding: 1.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
}

.panel h2 {
  margin: 0 0 0.75rem;
}

.panel ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.status {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

.support-link {
  color: var(--accent);
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  body {
    padding: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
  }
}
