:root {
  --bg: #0b1021;
  --panel: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #14b8a6;
  --accent-2: #f59e0b;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  font-family: "Sora", "Space Grotesk", "DM Sans", "Work Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.16), transparent 35%),
              radial-gradient(circle at 80% 0%, rgba(245, 158, 11, 0.2), transparent 32%),
              #090d1a;
  color: var(--text);
  min-height: 100vh;
  padding: 32px;
  position: relative;
  overflow-x: hidden;
}

.glow {
  position: absolute;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
  animation: float 16s ease-in-out infinite;
}

.glow-one {
  width: 320px;
  height: 320px;
  top: 10%;
  left: -8%;
  background: #14b8a6;
}

.glow-two {
  width: 360px;
  height: 360px;
  bottom: 0;
  right: -10%;
  background: #f59e0b;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 12px;
  z-index: 2;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.brand span {
  color: var(--accent-2);
}

.top-actions {
  display: flex;
  gap: 10px;
}

main {
  position: relative;
  z-index: 1;
}

.section {
  margin: 72px auto;
  max-width: 1100px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.05;
  margin: 12px 0 12px;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
}

.lede {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 20px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.primary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
}

.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #081019;
  box-shadow: 0 12px 40px rgba(20, 184, 166, 0.25);
}

.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 50px rgba(20, 184, 166, 0.3);
}

.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.signal-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 16px;
  max-width: 440px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.signal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.signal-row:last-of-type {
  border-bottom: none;
}

.label {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.value {
  font-weight: 600;
}

.card-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: 28px;
}

.section-head p {
  color: var(--muted);
  max-width: 520px;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 160px;
}

.card h3 {
  margin-bottom: 10px;
}

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

.steps .step-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.step-list li {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.35), rgba(245, 158, 11, 0.35));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-list h4 {
  margin-bottom: 6px;
}

.step-list p {
  color: var(--muted);
  line-height: 1.5;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(20, 184, 166, 0.08), rgba(245, 158, 11, 0.08));
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.cta-card .lede {
  margin: 6px 0 0;
}

.cta-actions {
  display: flex;
  gap: 10px;
}

.footer {
  max-width: 1100px;
  margin: 52px auto 12px;
  padding: 16px 0;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  color: rgba(255, 255, 255, 0.25);
}

@keyframes float {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .actions,
  .top-actions,
  .cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .primary,
  .ghost {
    width: 100%;
  }
}
