:root {
  --landing-bg: #050505;
  --panel-border: rgba(255, 255, 255, 0.08);
  --panel-hover: rgba(255, 255, 255, 0.12);
  --blue: #3f8cff;
  --red: #ff5c8d;
}

* {
  box-sizing: border-box;
}

body.landing-body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, rgba(63, 140, 255, 0.3), transparent 55%),
              radial-gradient(circle at bottom, rgba(255, 92, 141, 0.25), transparent 45%),
              var(--landing-bg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.landing-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: min(1200px, 100%);
}

.landing-panel {
  position: relative;
  display: block;
  padding: 48px 40px;
  border-radius: 32px;
  border: 1px solid var(--panel-border);
  background: rgba(7, 7, 7, 0.85);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.landing-panel:hover,
.landing-panel:focus-visible {
  transform: translateY(-6px);
  border-color: var(--panel-hover);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.landing-panel__content {
  position: relative;
  z-index: 2;
}

.landing-panel__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  opacity: 0.7;
  margin: 0 0 12px;
}

.landing-panel__title {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
  line-height: 1.2;
}

.landing-panel__copy {
  font-size: 16px;
  margin: 0 0 24px;
  opacity: 0.85;
}

.landing-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.landing-panel__cta--blue {
  color: var(--blue);
}

.landing-panel__cta--red {
  color: var(--red);
}

.landing-panel__glow {
  position: absolute;
  inset: -25% auto auto -25%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 1;
}

.landing-panel__glow--blue {
  background: var(--blue);
}

.landing-panel__glow--red {
  background: var(--red);
  inset: auto -25% -25% auto;
}

@media (max-width: 680px) {
  .landing-panel {
    padding: 32px 28px;
  }

  .landing-panel__title {
    font-size: 26px;
  }
}
