.landing-page {
  background:
    radial-gradient(circle at 15% -15%, rgba(79, 125, 243, 0.35), transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(34, 197, 94, 0.2), transparent 36%),
    var(--bg);
}

.landing-shell {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

.landing-hero {
  padding: 64px 0 56px;
}

.landing-hero .landing-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.landing-hero-copy,
.landing-hero-panel {
  background: rgba(26, 29, 39, 0.78);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.landing-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fb8ff;
  margin-bottom: 10px;
}

.landing-hero-copy h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.landing-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 64ch;
}

.landing-support-email {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.landing-support-email a {
  color: #93c5fd;
  text-decoration: none;
}

.landing-support-email a:hover {
  text-decoration: underline;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.landing-btn-primary {
  background: var(--accent);
  color: #fff;
}

.landing-btn-primary:hover {
  background: var(--accent-hover);
}

.landing-btn-ghost {
  border-color: var(--border-light);
  color: var(--text);
  background: transparent;
}

.landing-btn-ghost:hover {
  border-color: var(--accent);
  color: #fff;
}

.landing-hero-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.landing-hero-panel ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.landing-hero-panel li {
  background: rgba(79, 125, 243, 0.12);
  border: 1px solid rgba(79, 125, 243, 0.35);
  color: #cdd9ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
}

.landing-hero-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 12px;
}

.landing-section {
  padding: 36px 0;
}

.landing-heading {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  margin-bottom: 18px;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.landing-card {
  background: rgba(26, 29, 39, 0.86);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
}

.landing-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.landing-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.landing-section-accent {
  padding-bottom: 60px;
}

.landing-steps {
  margin-left: 20px;
  display: grid;
  gap: 9px;
  color: var(--text);
}

.landing-steps li {
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .landing-hero {
    padding-top: 28px;
  }

  .landing-hero .landing-shell {
    grid-template-columns: 1fr;
  }

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