:root {
  --help-ink: #0f172a;
  --help-muted: #64748b;
  --help-surface: #ffffff;
  --help-surface-2: #f8fafc;
  --help-border: rgba(15, 23, 42, 0.12);
  --help-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --help-accent: #14b8a6;
  --help-accent-strong: #667eea;
}

body.landing {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--help-ink);
}

.help-hero {
  background:
    radial-gradient(900px circle at 12% 15%, rgba(20, 184, 166, 0.16) 0%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(800px circle at 88% 20%, rgba(102, 126, 234, 0.18) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(135deg, #f8fafc 0%, #eef2ff 45%, #ecfeff 100%);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.help-hero::after {
  content: "";
  position: absolute;
  bottom: -28%;
  right: -12%;
  width: 45%;
  height: 55%;
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.14) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(34px);
  pointer-events: none;
}

.help-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.7);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.help-title {
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  font-weight: 900;
  margin: 1rem 0 0.65rem;
  letter-spacing: -0.02em;
}

.help-subtitle {
  font-size: 1.1rem;
  color: var(--help-muted);
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.help-btn-primary {
  background: linear-gradient(135deg, var(--help-accent) 0%, var(--help-accent-strong) 100%);
  color: #fff;
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 35px rgba(20, 184, 166, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.help-btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.3);
}

.help-btn-secondary {
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: var(--help-ink);
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.help-btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.25);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.help-note {
  font-size: 0.95rem;
  color: var(--help-muted);
}

.help-inline-link {
  color: var(--help-ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
}

.help-inline-link:hover {
  border-bottom-color: rgba(15, 23, 42, 0.45);
}

.help-card {
  background: var(--help-surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--help-border);
  box-shadow: var(--help-shadow);
}

.help-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #14b8a6 0%, #7c3aed 100%);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.help-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.help-card-text {
  color: var(--help-muted);
  margin-bottom: 1rem;
}

.help-card-link {
  display: inline-flex;
  font-weight: 800;
  color: var(--help-ink);
  text-decoration: none;
  border-bottom: 2px solid rgba(20, 184, 166, 0.5);
  margin-bottom: 0.65rem;
}

.help-card-link:hover {
  border-bottom-color: rgba(20, 184, 166, 0.85);
}

.help-card-meta {
  color: var(--help-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.help-section {
  padding: 3.5rem 0;
}

.help-section--alt {
  background: var(--help-surface-2);
}

.help-section-head {
  margin-bottom: 2rem;
}

.help-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.help-section-subtitle {
  color: var(--help-muted);
  margin-bottom: 0;
}

.help-topic-card {
  height: 100%;
  background: var(--help-surface);
  border-radius: 18px;
  border: 1px solid var(--help-border);
  padding: 1.6rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.help-topic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.help-topic-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(20, 184, 166, 0.12);
  color: var(--help-accent-strong);
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.help-topic-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.help-topic-text {
  color: var(--help-muted);
  margin-bottom: 0.85rem;
}

.help-topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--help-muted);
  font-weight: 600;
}

.help-topic-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.help-topic-list li::before {
  content: "-";
  color: var(--help-accent);
  font-weight: 700;
}

.help-callout {
  background: var(--help-surface);
  border-radius: 18px;
  border: 1px solid var(--help-border);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.1);
}

.help-callout-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.help-callout-text {
  margin: 0;
  color: var(--help-muted);
}

@media (max-width: 991px) {
  .help-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .help-actions {
    width: 100%;
  }

  .help-btn-primary,
  .help-btn-secondary {
    width: 100%;
    text-align: center;
  }
}
