/* Emotional marketing landing — визуально как Figma Make (Tailwind ref.) */

html,
body.landingPage {
  overflow-x: clip;
}

body.landingPage {
  color-scheme: light;
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  background: #f3f4f6;
  color: #111827;
}

body.landingPage .mkt {
  overflow: visible;
}

/* Make shared form controls look right on light landing pages */
body.landingPage .input,
body.landingPage input.input,
body.landingPage select.input,
body.landingPage textarea.input {
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  border-color: rgba(17, 24, 39, 0.12);
}

body.landingPage .input:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

/* Scroll reveal (как в макете): активируется JS-ом через .has-reveal */
:root.has-reveal [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 520ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

:root.has-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  :root.has-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mktStage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 92vh;
  min-height: 92dvh;
  overflow: hidden;
  background: #111827;
}

/* Demo page layout (reuse landing styles) */
.mktDemo {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  padding: 4.5rem 1.5rem 5rem;
}

.mktDemoCard {
  width: min(860px, 100%);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.mktDemoCard__inner {
  padding: 2rem;
}

.mktDemoTitle {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.mktDemoLead {
  margin: 0.5rem 0 0;
  color: rgba(17, 24, 39, 0.65);
  font-size: 1.05rem;
  line-height: 1.55;
}

.mktDemoHr {
  margin: 1.25rem 0 1.25rem;
  height: 1px;
  border: 0;
  background: rgba(17, 24, 39, 0.08);
}

.mktDemoH2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.mktDemoList {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: rgba(17, 24, 39, 0.7);
  line-height: 1.65;
}

.mktDemoBtns {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.mktDemoBtns .mktBtn {
  width: 100%;
}

.mktDemoFooter {
  margin-top: 1.25rem;
  display: flex;
  gap: 10px 16px;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(17, 24, 39, 0.55);
  font-size: 0.95rem;
}

@media (max-width: 560px) {
  .mktDemoCard__inner {
    padding: 1.5rem;
  }
}

.mktGradText {
  background: linear-gradient(90deg, #f97316, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted {
  color: rgba(17, 24, 39, 0.55);
}

/* Top bar */
.mktTop {
  position: relative;
  z-index: 20;
  flex-shrink: 0;
  background: #f3f4f6;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.mktTop__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.mktBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0;
}

.mktBrand__logo {
  display: block;
}

.mktBrand__wordmark {
  display: block;
  width: min(238px, 46vw);
  height: auto;
}

.mktNav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}

.mktNav__a {
  text-decoration: none;
  color: rgba(17, 24, 39, 0.72);
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.mktNav__a:hover {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.2);
  color: #c2410c;
}

.mktNav__a--on {
  background: rgba(17, 24, 39, 0.06);
  border-color: rgba(17, 24, 39, 0.1);
  font-weight: 600;
}

.mktNav__sep {
  opacity: 0.45;
  padding: 0 4px;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .mktTop {
    background: #f3f4f6;
  }

  .mktTop__inner {
    padding: 10px 14px 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mktBrand {
    justify-self: center;
    gap: 8px;
    font-size: 1.05rem;
  }

  .mktBrand__logo {
    width: 32px;
    height: 32px;
  }

  .mktBrand__wordmark {
    width: min(226px, 74vw);
  }

  .mktNav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr repeat(3, auto);
    gap: 6px;
    align-items: center;
  }

  .mktNav__a {
    min-height: 36px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    line-height: 1;
    white-space: nowrap;
    background: rgba(17, 24, 39, 0.045);
  }

  .mktNav__a--secondary,
  .mktNav__sep {
    display: none;
  }

  .mktNav__a--lang {
    width: 34px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Hero — section relative min-h-screen … py-20 px-6 */
.mktHero {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4.5rem;
  overflow: hidden;
  min-height: 0;
}

@media (min-width: 768px) {
  .mktHero {
    padding: 5.5rem 1.5rem 5rem;
  }
}

@media (max-width: 640px) {
  .mktStage {
    min-height: 100svh;
  }

  .mktHero {
    min-height: calc(100svh - 98px);
    align-items: flex-start;
    padding: 2.5rem 18px 3rem;
  }
}

.mktHero__img,
.mktHero__veil {
  position: absolute;
  inset: 0;
}

.mktHero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mktHero__veil {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.52), rgba(17, 24, 39, 0.42) 48%, rgba(249, 250, 251, 0.96) 100%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.12));
  pointer-events: none;
}

.mktHero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.mktPill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.mktPill__stars {
  color: #facc15;
  font-size: 1rem;
  letter-spacing: 0;
}

/* text-6xl md:text-8xl font-bold (~3.75rem → 6rem) */
.mktH1 {
  margin: 0 0 2rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  color: #fff;
}

/* text-2xl md:text-3xl text-gray-700 max-w-4xl */
.mktLead {
  margin: 0 auto;
  max-width: 56rem;
  font-size: 1.375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .mktH1 {
    font-size: 4.75rem;
  }

  .mktLead {
    font-size: 1.75rem;
  }
}

@media (min-width: 1180px) {
  .mktH1 {
    font-size: 5.75rem;
  }
}

@media (max-width: 640px) {
  .mktPill {
    gap: 0.4rem;
    max-width: 100%;
    margin-bottom: 1.35rem;
    padding: 0.68rem 1rem;
    font-size: 0.83rem;
  }

  .mktPill__stars {
    font-size: 0.9rem;
  }

  .mktH1 {
    margin-bottom: 1.25rem;
    max-width: 100%;
    font-size: clamp(2rem, 9.6vw, 2.35rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .mktLead {
    max-width: 20rem;
    font-size: clamp(1.12rem, 5vw, 1.35rem);
    line-height: 1.28;
  }
}

.mktCtaRow {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.mktCtaRow--center {
  justify-content: center;
}

.mktTelegramHint {
  margin: 12px auto 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}

.mktTelegramHint--cta {
  margin-top: 16px;
}

/* rounded-full text-xl px-12 py-6 */
.mktBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  padding: 1.5rem 3rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

@media (max-width: 480px) {
  .mktBtn {
    font-size: 1.05rem;
    padding: 1.1rem 1.75rem;
    width: 100%;
    max-width: 22rem;
  }
}

.mktBtn:hover {
  transform: scale(1.03);
}

.mktBtn--pri {
  background: linear-gradient(90deg, #f97316, #db2777);
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.45);
}

.mktBtn--pri:hover {
  box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.55);
}

.mktBtn--sec {
  background: #fff;
  color: #1f2937;
  border-color: rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
}

.mktBtn--light {
  background: #fff;
  color: #ea580c;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.mktBtn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.mktBtn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ownerLoginAuth {
  display: grid;
  gap: 10px;
}

.ownerLoginAuth__btn {
  font-size: 1rem;
  min-height: 54px;
  padding: 0 1.25rem;
  width: 100%;
}

.ownerAuthStatusInline {
  background: #fff7ed;
  border-radius: 14px;
  color: #c2410c;
  font-weight: 800;
  padding: 12px 14px;
}

.ownerAuthStatusInline.ownerAuthError {
  background: #fef2f2;
  color: #b42318;
}

.mktBullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
}

.mktBullets__i {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mktDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* Stats band */
.mktBand {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 40px 22px;
}

.mktBand__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mktStatGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .mktStatGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.mktStat__v {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .mktStat__v {
    font-size: 2.75rem;
  }
}

.mktStat__k {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Growth section */
.mktSection {
  padding: 72px 22px;
}

.mktSection__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mktSecHead {
  text-align: center;
  margin-bottom: 48px;
}

/* text-5xl md:text-6xl */
.mktH2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .mktH2 {
    font-size: 3.5rem;
  }
}

.mktH2--center {
  text-align: center;
}

.mktH2--light {
  color: #fff;
}

.mktSub {
  margin: 1rem 0 0;
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.55;
  max-width: 48rem;
}

.mktSub--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mktCardGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 1024px) {
  .mktCardGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mktFeat {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mktFeat:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
}

.mktFeat__top {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.mktFeat__ico {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.mktFeat--yellow .mktFeat__ico {
  background: linear-gradient(to bottom right, #facc15, #f97316);
}
.mktFeat--green .mktFeat__ico {
  background: linear-gradient(to bottom right, #4ade80, #059669);
}
.mktFeat--blue .mktFeat__ico {
  background: linear-gradient(to bottom right, #60a5fa, #4f46e5);
}
.mktFeat--purple .mktFeat__ico {
  background: linear-gradient(to bottom right, #c084fc, #db2777);
}
.mktFeat--red .mktFeat__ico {
  background: linear-gradient(to bottom right, #fb7185, #ea580c);
}

.mktFeat__stat {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .mktFeat__stat {
    font-size: 2.25rem;
  }
}

.mktFeat__stat--yellow {
  background: linear-gradient(90deg, #facc15, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mktFeat__stat--green {
  background: linear-gradient(90deg, #4ade80, #059669);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mktFeat__stat--blue {
  background: linear-gradient(90deg, #60a5fa, #4f46e5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mktFeat__stat--purple {
  background: linear-gradient(90deg, #c084fc, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mktFeat__stat--red {
  background: linear-gradient(90deg, #fb7185, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mktFeat__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.mktFeat__body {
  position: relative;
  margin: 0;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.625;
}

/* Warm reviews */
.mktWarm {
  padding: 72px 22px;
  background: linear-gradient(to bottom right, #fffbeb, #ffedd5);
}

.mktWarm__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mktWarm__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .mktWarm__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.mktWarm__stars {
  font-size: 1.75rem;
  letter-spacing: 0;
  color: #facc15;
  margin-bottom: 16px;
}

.mktWarm__lead {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.625;
  margin: 1rem 0 1.5rem;
}

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

.mktChecks__i {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.mktCheck {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.mktRatingCard {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.mktRatingCard__big {
  text-align: center;
  font-size: 4rem;
  font-weight: 800;
  color: #111827;
}

.mktRatingCard__stars {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: #facc15;
  margin: 6px 0 10px;
}

.mktRatingCard__dim {
  color: #d1d5db;
}

.mktRatingCard__note {
  text-align: center;
  color: #6b7280;
  margin: 0 0 20px;
}

.mktBars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mktBarRow {
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.mktBarRow__l,
.mktBarRow__r {
  font-size: 0.85rem;
  color: #4b5563;
}

.mktBarRow__r {
  text-align: right;
}

.mktBarRow__t {
  height: 10px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.mktBarRow__f {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #facc15, #f97316);
}

/* Dark CTA — py-32 */
.mktCta {
  position: relative;
  padding: 8rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 640px) {
  .mktCta {
    padding: 5rem 1.25rem;
  }
}

.mktCta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #111827, #7c2d12, #111827);
  z-index: 0;
}

.mktCta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 1;
}

.mktCta__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(17, 24, 39, 0.55), rgba(17, 24, 39, 0.75));
}

.mktCta__inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
}

.mktCta__sub {
  margin: 18px 0 0;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.mktCta__foot {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* Footer */
.mktFoot {
  background: #111827;
  color: #fff;
  padding: 56px 22px 32px;
}

.mktFoot__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mktFoot__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .mktFoot__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.mktFoot__name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.mktFoot__tag {
  color: #9ca3af;
  line-height: 1.55;
  margin: 0 0 16px;
  max-width: 28rem;
}

.mktFoot__rate {
  font-size: 0.95rem;
  color: #facc15;
  letter-spacing: 0;
}

.mktFoot__h {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
}

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

.mktFoot__ul li {
  margin-bottom: 8px;
}

.mktFoot__a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.mktFoot__a:hover {
  color: #fff;
}

.mktFoot__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.mktFoot__copy {
  margin: 0;
  color: #9ca3af;
  font-size: 0.88rem;
}

.mktFoot__legal {
  display: flex;
  gap: 20px;
}

.mktFoot__host {
  margin: 18px 0 0;
  font-size: 0.82rem;
  text-align: center;
}

.mktMuted {
  color: #9ca3af;
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  .mktBtn:hover,
  .mktFeat:hover {
    transform: none;
  }
}
