:root {
  --bg: #09090c;
  --bg-soft: #111118;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft-muted: rgba(255, 255, 255, 0.55);
  --magenta: #e20074;
  --magenta-2: #ff4fa7;
  --shadow: 0 20px 80px rgba(226, 0, 116, 0.18);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(226, 0, 116, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 79, 167, 0.14), transparent 24%),
    linear-gradient(180deg, #09090c 0%, #0d0d12 45%, #08080a 100%);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4px;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: repeat(4, 10px);
  gap: 8px;
}

.brand-mark span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(226, 0, 116, 0.45);
}

.topbar-text {
  color: var(--soft-muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  position: relative;
  padding: 42px 0;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.75;
  pointer-events: none;
}

.glow-1 {
  width: 240px;
  height: 240px;
  background: rgba(226, 0, 116, 0.18);
  top: 12%;
  left: 8%;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 79, 167, 0.12);
  bottom: 8%;
  right: 8%;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(100%, 1020px);
  padding: 56px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(226, 0, 116, 0.12), rgba(255, 255, 255, 0.01) 36%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--magenta-2);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.lead {
  margin: 24px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-2) 100%);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 32px rgba(226, 0, 116, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(226, 0, 116, 0.38);
  filter: brightness(1.05);
}

.secondary-note {
  color: var(--soft-muted);
  font-size: 0.98rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.info-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: var(--panel);
}

.info-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-text {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.97rem;
}

.footer {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 6px 4px 0;
  color: var(--soft-muted);
  font-size: 0.95rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer a:hover {
  color: var(--magenta-2);
}

.footer-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 860px) {
  .hero-card {
    padding: 34px 24px;
    border-radius: 24px;
  }

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

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

  .footer {
    padding-top: 10px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 18px;
  }

  .lead {
    line-height: 1.65;
  }

  .primary-btn {
    width: 100%;
    text-align: center;
  }

  .footer-divider {
    display: none;
  }
}
