:root {
  --bg: #0d0d16;
  --card: rgba(16, 16, 27, 0.7);
  --border: rgba(255, 255, 255, 0.06);
  --text: #e8e8f0;
  --muted: #c4c6d4;
  --accent-start: #f05a28;
  --accent-mid: #ed3b6f;
  --accent-end: #8a1cff;
  --gray: #7a7b87;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(240, 90, 40, 0.18), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(138, 28, 255, 0.15), transparent 30%),
    linear-gradient(135deg, #0a0a12, #0f0f1d 45%, #0a0a12);
  padding: 32px 24px 48px;
  position: relative;
  overflow: hidden;
}

.background-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(240, 90, 40, 0.18), transparent 32%),
    radial-gradient(circle at 70% 30%, rgba(237, 59, 111, 0.12), transparent 38%),
    radial-gradient(circle at 50% 80%, rgba(138, 28, 255, 0.2), transparent 34%);
  filter: blur(40px);
  z-index: 0;
}

.top {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark img {
  width: 140px;
  height: auto;
}

.tag {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.status {
  font-weight: 600;
  color: var(--accent-end);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.card {
  width: min(1100px, 100%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent-mid);
  margin: 0 0 8px;
  padding: 6px 10px;
  border: 1px solid rgba(237, 59, 111, 0.28);
  border-radius: 12px;
  background: rgba(237, 59, 111, 0.08);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.2;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 780px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.feature {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(240, 90, 40, 0.18), rgba(138, 28, 255, 0.18));
  font-size: 1.1rem;
}

.feature h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.05rem;
}

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

.contact {
  margin-top: 10px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(240, 90, 40, 0.08), rgba(138, 28, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.contact h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.contact p {
  margin: 0;
  color: var(--muted);
}

.button {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  color: #0c0c16;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-mid), var(--accent-end));
  box-shadow: 0 12px 30px rgba(138, 28, 255, 0.35);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(138, 28, 255, 0.45);
}

@media (max-width: 720px) {
  body {
    padding: 24px 18px 38px;
  }

  .top {
    flex-direction: column;
    align-items: flex-start;
  }

  .card {
    padding: 28px 24px;
  }

  .logo-mark img {
    width: 120px;
  }
}
