.landing-page {
  --landing-canvas-text: var(--incrivel-bgColor);
  --landing-canvas-text-muted: rgba(255, 255, 255, 0.72);
  --landing-surface: #fff;
  --landing-surface-text: #171717;
  --landing-surface-text-muted: #5a5a5a;
  --landing-surface-border: rgba(0, 0, 0, 0.08);
  --landing-surface-link: #15803d;
  --landing-surface-link-hover: #166534;
  --landing-accent: #22c55e;
  padding: 1rem 0 2rem;
}

.landing-hero {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  min-height: 380px;
  display: flex;
  align-items: end;
  background: #121212;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.landing-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.86) 100%);
}

.landing-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 1.5rem;
}

.landing-badge {
  display: inline-block;
  background: var(--landing-accent);
  color: #fff;
  font-size: .75rem;
  border-radius: 999px;
  padding: .3rem .7rem;
  margin-bottom: .6rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.landing-hero-title {
  font-size: 1.45rem;
  margin-bottom: .4rem;
  line-height: 1.2;
}

.landing-hero-subtitle {
  opacity: .9;
  margin-bottom: .8rem;
  max-width: 34ch;
}

.landing-price {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .8rem;
}

.landing-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.landing-actions .btn {
  min-height: 2.6rem;
}

.landing-actions .btn-secondary-ghost {
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.landing-actions .btn-secondary-ghost:hover,
.landing-actions .btn-secondary-ghost:focus {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.landing-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  color: var(--landing-canvas-text);
}

.landing-prize-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-card {
  background: var(--landing-surface);
  color: var(--landing-surface-text);
  border-radius: .85rem;
  border: 1px solid var(--landing-surface-border);
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.landing-card a {
  color: var(--landing-surface-link);
  transition: color 150ms ease;
}

.landing-card a:hover,
.landing-card a:focus {
  color: var(--landing-surface-link-hover);
}

.landing-muted {
  color: var(--landing-surface-text-muted);
}

.landing-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.landing-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--landing-accent);
  line-height: 1.1;
}

.landing-portal-grid {
  display: grid;
  gap: 1rem;
}

.landing-portal-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, #1a1a1a 0%, #323232 100%);
  border-radius: .85rem;
  padding: 1rem;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.landing-portal-card:hover,
.landing-portal-card:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.landing-portal-card.secondary {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
}

.landing-steps {
  padding-left: 1.25rem;
  margin-bottom: 0;
  border-left: 3px solid rgba(34, 197, 94, 0.3);
}

.landing-steps li {
  margin-bottom: .5rem;
}

.landing-prize-grid .landing-card strong {
  color: var(--landing-accent);
}

@media (min-width: 768px) {
  .landing-hero-title {
    font-size: 1.6rem;
  }

  .landing-prize-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
