/* SaM oTPravil — Выведем транзакции из спама */

.land {
  --primary: #7c44f5;
  --primary-hover: #c55de0;
  --primary-light: #e175ff;
  --surface: #f9f8fb;
  --text: #22223b;
  --text-muted: #777777;
  --white: #ffffff;
  --border: #bdc3c7;

  color: var(--text);
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.land__container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

.land__container_narrow {
  width: min(800px, 100% - 40px);
}

.land__section {
  padding: 48px 0 64px;
  background: var(--white);
}

.land__section_surface {
  background: var(--surface);
}

.land__section_faq {
  padding-top: 32px;
}

/* Hero */

.land__hero {
  padding: 48px 0 56px;
}

.land__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  gap: 24px 40px;
  align-items: center;
}

.land__kicker {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.land__hero-title {
  margin: 0 0 20px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.land__hero-lead {
  margin: 0 0 28px;
  max-width: 40ch;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1.25;
}

.land__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.land__hero-art {
  width: 100%;
  max-width: 480px;
  height: auto;
  justify-self: end;
}

/* Section titles */

.land__section-title {
  margin: 0 0 40px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: var(--text);
}

.land__section-title_left {
  text-align: left;
}

.land__section-lead {
  margin: -24px auto 36px;
  max-width: 48ch;
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-muted);
}

/* Perks */

.land__perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}

.land__perk-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.land__perk-title {
  margin: 0 0 10px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.15;
}

.land__perk-text {
  margin: 0;
  max-width: 38ch;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Products / triggers */

.land__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.land__product {
  display: flex;
  flex-direction: column;
  padding: 32px 24px 28px;
  background: var(--white);
  border: 1px solid var(--primary-light);
  border-radius: 20px;
  min-height: 100%;
}

.land__product_accent {
  border-width: 2px;
  border-color: var(--primary);
}

.land__product-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.land__product-title {
  margin: 0 0 12px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.land__product-text {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.35;
  color: var(--text-muted);
}

/* Stripes */

.land__stripes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.land__stripe {
  padding: 32px 40px;
  border: 2px solid var(--primary-light);
  border-radius: 30px;
  background: var(--white);
}

.land__stripe-title {
  margin: 0 0 10px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.land__stripe-text {
  margin: 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.35;
  color: #000;
}

.land__note {
  margin: 36px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 62ch;
}

/* Shared */

.land__btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--primary);
  border-radius: 66px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.land__btn_primary {
  color: var(--white);
  background: linear-gradient(90deg, #c55de0 0%, #7f56f6 100%);
  border-color: transparent;
}

.land__btn_primary:hover {
  background: linear-gradient(90deg, #d06eeb 0%, #8f66ff 100%);
}

.land__btn_outline {
  color: var(--primary);
  background: var(--white);
}

.land__btn_outline:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.land__btn_submit {
  margin-top: 12px;
  width: min(100%, 360px);
  padding: 16px 28px;
  font-size: 16px;
  border: none;
}

.land__btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.land__link {
  color: var(--primary);
  font-weight: 500;
}

.land__link:hover {
  color: var(--primary-hover);
}

.land__link_arrow::after {
  content: '\00a0›';
}

.land__link_text {
  font-weight: 500;
}

.land__materials {
  list-style: none;
  margin: 0;
  padding: 0;
}

.land__material {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.land__material:last-child {
  border-bottom: 1px solid var(--border);
}

.land__material-title {
  margin: 0 0 8px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.land__material-text {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 56ch;
}

.land__faq-item {
  border-top: 1px solid var(--border);
}

.land__faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.land__faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 36px 16px 0;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.land__faq-q::-webkit-details-marker {
  display: none;
}

.land__faq-q::after {
  content: '+';
  color: var(--primary);
  font-size: 24px;
}

.land__faq-item[open] .land__faq-q::after {
  content: '−';
}

.land__faq-a {
  margin: 0;
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--text-muted);
}

/* Form */

.land__form-section {
  padding-bottom: 80px;
}

.land__form-heading {
  margin: 0 0 40px;
  font-family: 'Unbounded', system-ui, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.land__form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 38%);
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--surface);
  border-radius: 24px;
}

.land__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}

.land__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.land__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.land__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
}

.land__input:focus {
  outline: 2px solid var(--primary);
  outline-offset: 0;
  border-color: var(--primary);
}

.land__textarea {
  min-height: 88px;
  resize: vertical;
}

.land__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  cursor: pointer;
}

.land__checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.land__checkbox-text {
  font-size: 14px;
  line-height: 1.35;
  color: var(--text-muted);
}

.land__form-msg {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 500;
}

.land__form-msg_success {
  color: var(--primary);
}

.land__form-msg_error {
  color: #d44f4f;
}

.land__form-illustration {
  width: 100%;
  max-width: 360px;
  height: auto;
  justify-self: end;
}

@media (max-width: 959px) {
  .land__hero-grid,
  .land__form-wrap {
    grid-template-columns: 1fr;
  }

  .land__hero-art,
  .land__form-illustration {
    justify-self: center;
    max-width: 320px;
  }

  .land__form-illustration {
    order: -1;
  }

  .land__perks {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 639px) {
  .land__container,
  .land__container_narrow {
    width: calc(100% - 20px);
  }

  .land__hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .land__btn {
    text-align: center;
  }

  .land__section-title {
    text-align: left;
  }

  .land__section-lead {
    text-align: left;
    margin-left: 0;
  }

  .land__stripe {
    padding: 24px 20px;
  }

  .land__form-wrap {
    padding: 24px 16px;
  }

  .land__btn_submit {
    width: 100%;
  }
}
