:root {
  --bg: #f5f7fb;
  --glass: rgba(255, 255, 255, 0.72);
  --stroke: rgba(255, 255, 255, 0.5);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
  --text: #0b172a;
  --muted: #4a5568;
  --accent: #3ba7ff;
  --accent-2: #9c7bff;
  --gradient: linear-gradient(135deg, rgba(59, 167, 255, 0.25), rgba(156, 123, 255, 0.25));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', 'SF Pro Display', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.shell {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  z-index: 1;
}

.bg-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.6;
  pointer-events: none;
}

.bg-glow-1 {
  top: -120px;
  left: -140px;
  background: #9c7bff;
}

.bg-glow-2 {
  bottom: -120px;
  right: -140px;
  background: #3ba7ff;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"%3E%3Cfilter id="n" x="0" y="0" width="100%25" height="100%25"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="2" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)" opacity="0.08"/%3E%3C/svg%3E');
  mix-blend-mode: soft-light;
  opacity: 0.3;
  z-index: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  height: 44px;
  width: 44px;
}

.brand__name {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  backdrop-filter: blur(10px);
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(59, 167, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.chip--ghost {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 32px;
  padding: 32px;
  border-radius: 28px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero__text h1 {
  margin: 8px 0 12px;
  font-size: clamp(38px, 5vw, 54px);
  letter-spacing: -0.02em;
}

.hero__text .lede {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 16px;
  background: linear-gradient(120deg, #3ba7ff, #9c7bff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 35px rgba(59, 167, 255, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(59, 167, 255, 0.45);
}

.hint {
  color: var(--muted);
  font-weight: 500;
}

.hero__card {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 14px;
}

.card__label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #3ba7ff);
  box-shadow: 0 0 0 0 rgba(59, 167, 255, 0.6);
  animation: pulse 2.4s infinite;
}

.card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
}

.dot-sep {
  font-size: 20px;
}

.glass {
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.45;
  filter: blur(20px);
  z-index: 0;
}

.glass > * {
  position: relative;
  z-index: 1;
}

.footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 167, 255, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(59, 167, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 167, 255, 0); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__card {
    order: -1;
  }
}

@media (max-width: 640px) {
  .shell {
    padding: 32px 16px 48px;
  }

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

  .actions {
    align-items: flex-start;
  }
}
