:root {
  --bg: #0b1224;
  --panel: rgba(255, 255, 255, 0.04);
  --accent: #ff8a5c;
  --accent-2: #f25f9f;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255, 138, 92, 0.08), transparent 30%),
              radial-gradient(circle at 80% 10%, rgba(242, 95, 159, 0.08), transparent 30%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__graphic {
  position: absolute;
  inset: 0;
  filter: blur(40px);
  opacity: 0.6;
}

.hero__blob {
  position: absolute;
  width: 360px;
  height: 360px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__blob--one {
  top: -80px;
  left: -80px;
}

.hero__blob--two {
  bottom: -120px;
  right: -80px;
  background: var(--accent-2);
}

.hero__content {
  position: relative;
  width: min(960px, 100%);
  padding: 48px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.logo {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  line-height: 1.2;
}

.lede {
  font-size: 1.05rem;
  margin: 0 0 20px;
  color: #f8fafc;
}

.cta-group {
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1224;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(242, 95, 159, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(242, 95, 159, 0.45);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tags span {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}

main {
  padding: 0 24px 48px;
}

.section {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.section__label {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.section p {
  margin: 0;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.footer {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .hero__content {
    padding: 32px;
  }

  .logo {
    width: 96px;
  }

  .tags span {
    width: 100%;
    text-align: center;
  }
}
