* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --landing-bg: #fffafc;
  --landing-surface: #ffffff;
  --landing-text: #1f2340;
  --landing-muted: #646b8a;
  --landing-primary: #8b4be4;
  --landing-primary-strong: #6f35d6;
  --landing-primary-soft: #f4eaff;
  --landing-border: rgba(205, 213, 236, 0.8);
  --landing-shadow: 0 18px 40px rgba(64, 37, 111, 0.10);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--landing-bg);
  color: var(--landing-text);
}

body[class*="landing-"] {
  padding-top: 128px;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.landing-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  width: 100%;
  background: rgba(255, 250, 252, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 231, 246, 0.9);
}

.landing-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 800;
}

.landing-brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.landing-login,
.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.landing-login {
  padding: 0 22px;
  border: 1px solid rgba(139, 75, 228, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.landing-button {
  width: 100%;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-strong));
  color: #fff;
  box-shadow: 0 18px 38px rgba(111, 53, 214, 0.28);
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--landing-primary-soft);
  color: var(--landing-primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.landing-kicker-soft {
  background: rgba(255, 255, 255, 0.86);
}

.landing-nicho-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.landing-nicho-copy small {
  margin-top: 4px;
  color: inherit;
  opacity: 0.78;
  font-size: 0.76rem;
  line-height: 1.35;
}

.landing-nicho-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.landing-nicho-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(28, 24, 48, 0.56);
  backdrop-filter: blur(10px);
}

.landing-nicho-modal.is-hidden {
  display: none;
}

.landing-nicho-modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  padding: 18px 16px 16px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(38, 30, 72, 0.24);
}

.landing-nicho-modal-card h2 {
  margin-top: 10px;
  font-size: clamp(1.7rem, 4.8vw, 2.4rem);
  line-height: 1.02;
}

.landing-nicho-modal-card > p {
  margin-top: 10px;
  color: var(--landing-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.landing-nicho-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f8;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.landing-nicho-grid {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.landing-nicho-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 13px 14px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid var(--landing-border);
  background: #fff;
  box-shadow: var(--landing-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.landing-nicho-option:hover {
  transform: translateY(-2px);
}

.landing-nicho-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--landing-primary-soft);
  font-size: 1.08rem;
  flex: 0 0 auto;
}

.landing-nicho-option strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.18;
}

.landing-nicho-copy p {
  margin-top: 3px;
  color: var(--landing-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.landing-nicho-option.is-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.84;
}

@media (min-width: 900px) {
  .landing-nicho-modal {
    align-items: center;
    padding: 20px;
  }

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

.section-head {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.08;
}

.section-head p {
  margin-top: 12px;
  color: var(--landing-muted);
  line-height: 1.65;
}

.landing-footer {
  padding: 28px 0 40px;
  text-align: center;
  color: var(--landing-muted);
  font-size: 0.95rem;
}

.landing-footer .landing-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.landing-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
}

.landing-footer-instagram {
  color: var(--landing-primary-strong);
}

.landing-footer-instagram-icon {
  width: 15px;
  height: 15px;
  background-color: currentColor;
  display: inline-block;
  flex: 0 0 auto;
  -webkit-mask: url("/static/img/landings/instagram.svg") center / contain no-repeat;
  mask: url("/static/img/landings/instagram.svg") center / contain no-repeat;
}

@media (min-width: 900px) {
  body[class*="landing-"] {
    padding-top: 132px;
  }

  .landing-button {
    width: auto;
    min-width: 280px;
  }
}
