/* Trendy Teddy landing, iteration 2. Kept separate from authenticated shells. */
.landing-document {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "TT Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/site-static/landing-manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0400-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "TT Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/site-static/landing-manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

.landing-page-v2 {
  --landing-bg: #0b0907;
  --landing-surface: #17120d;
  --landing-surface-strong: #21170e;
  --landing-text: #fffaf2;
  --landing-muted: #bcb5aa;
  --landing-line: rgba(255, 255, 255, 0.14);
  --landing-accent: #ea9216;
  --landing-accent-soft: #f3b85e;
  --landing-light: #eeeeee;
  --landing-paper: #ffffff;
  --landing-ink: #313841;
  --landing-ink-soft: #5f6872;
  --landing-light-line: #d7dadd;
  overflow-x: hidden;
  background: var(--landing-light);
  color: var(--landing-text);
  font-family: "TT Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

.landing-page-v2 :where(a, button, input, summary) {
  font: inherit;
}

.landing-page-v2 :where(a, button, summary) {
  -webkit-tap-highlight-color: transparent;
}

.landing-page-v2 :where(a, button, input, summary):focus-visible {
  outline: 3px solid #f3b85e;
  outline-offset: 3px;
}

.landing-page-v2 img {
  display: block;
  max-width: 100%;
  height: auto;
}

.landing-skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  color: #090a0b;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.landing-skip-link:focus {
  transform: none;
}

.landing-page-v2 .landing-header {
  position: absolute;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 40px), 1240px);
  padding: 8px 12px 8px 16px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  transform: translateX(-50%);
}

.landing-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  color: var(--landing-text);
  text-decoration: none;
  white-space: nowrap;
}

.landing-brand img {
  width: 42px;
  height: 42px;
}

.landing-brand b {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.landing-desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.landing-desktop-nav a,
.landing-login-link {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--landing-muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.landing-desktop-nav a:hover,
.landing-login-link:hover {
  color: var(--landing-text);
}

.landing-header-actions,
.landing-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--landing-accent);
  border-radius: 14px;
  background: var(--landing-accent);
  color: #15110b;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.landing-button:hover {
  border-color: var(--landing-accent-soft);
  background: var(--landing-accent-soft);
}

.landing-button-small {
  min-height: 44px;
  padding: 0 18px;
}

.landing-button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.035);
  color: var(--landing-text);
}

.landing-button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.landing-mobile-menu {
  display: none;
}

.landing-page-v2 .landing-hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.landing-page-v2 .landing-hero::before,
.landing-page-v2 .landing-hero::after {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
}

.landing-page-v2 .landing-hero::after {
  z-index: -2;
}

.landing-hero-backdrop {
  position: absolute;
  z-index: -1;
  left: 50%;
  width: min(82vw, 1120px);
  border-radius: 50%;
  transform: translateX(-50%);
}

.landing-hero-copy {
  position: relative;
  z-index: 4;
  margin: 0 auto;
  text-align: center;
}

.landing-page-v2 .landing-hero h1 {
  margin-right: auto;
  margin-left: auto;
  color: var(--landing-text);
  letter-spacing: -0.06em;
}

.landing-page-v2 .landing-hero-subtitle {
  margin-right: auto;
  margin-left: auto;
  color: #ddd6cb;
}

.landing-page-v2 .landing-hero-support {
  margin-right: auto;
  margin-left: auto;
  color: var(--landing-accent);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.landing-page-v2 .landing-hero-actions {
  justify-content: center;
}

.landing-proof-row {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #c9c3b9;
  font-size: 11px;
  list-style: none;
}

.landing-proof-row li::before {
  margin-right: 8px;
  color: var(--landing-accent);
  content: "✓";
  font-weight: 900;
}

.landing-hero-orbit {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.landing-float-card,
.landing-growth-icon,
.landing-ozon-icon {
  position: absolute;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.3));
}

.landing-card-ad {
  transform: rotate(-5deg);
}

.landing-card-inventory {
  transform: rotate(4deg);
}

.landing-card-orders {
  transform: rotate(5deg);
}

.landing-card-profit {
  transform: rotate(-4deg);
}

.landing-demo-pill {
  display: inline-flex;
  min-height: 32px;
  padding: 0 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #111315;
  color: #d9d9d7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page-v2 .landing-section {
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid var(--landing-light-line);
}

.landing-section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.landing-kicker {
  margin: 0 0 18px;
  color: #a95100;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.landing-page-v2 .landing-section h2 {
  margin: 0;
  font-size: clamp(42px, 4.1vw, 56px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.landing-section-heading > p:last-child {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.55;
}

.landing-section-heading-centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.landing-page-v2 .landing-how ol {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.landing-page-v2 .landing-how li {
  min-height: 210px;
  padding: 26px;
  border-top: 1px solid var(--landing-light-line);
  border-right: 1px solid var(--landing-light-line);
}

.landing-page-v2 .landing-how li:first-child {
  border-left: 1px solid var(--landing-light-line);
}

.landing-page-v2 .landing-how li > span {
  color: #a95100;
  font-size: 10px;
  font-weight: 850;
}

.landing-page-v2 .landing-how h3 {
  margin: 44px 0 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.landing-page-v2 .landing-how li p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.landing-page-v2 .landing-security {
  display: grid;
  align-items: center;
  gap: 74px;
}

.landing-security-mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--landing-light-line);
  border-radius: 30px;
}

.landing-page-v2 .landing-security ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.landing-page-v2 .landing-security li {
  padding: 16px 0 16px 30px;
  font-size: 14px;
  line-height: 1.6;
}

.landing-page-v2 .landing-security li::before {
  float: left;
  margin-left: -30px;
  color: #a95100;
  content: "✓";
  font-weight: 900;
}

.landing-page-v2 .landing-faq {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 64px;
}

.landing-faq-list details {
  border-top: 1px solid var(--landing-light-line);
}

.landing-faq-list details:last-child {
  border-bottom: 1px solid var(--landing-light-line);
}

.landing-faq-list summary {
  position: relative;
  min-height: 62px;
  padding: 19px 46px 16px 0;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.landing-faq-list summary::-webkit-details-marker {
  display: none;
}

.landing-faq-list summary::after {
  position: absolute;
  top: 16px;
  right: 4px;
  color: #a95100;
  content: "＋";
  font-size: 23px;
  font-weight: 300;
}

.landing-faq-list details[open] summary::after {
  content: "−";
}

.landing-faq-list details p {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.7;
}

.landing-page-v2 .landing-access {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  border: 1px solid rgba(234, 146, 22, 0.36);
  border-radius: 30px;
}

.landing-page-v2 .landing-access form {
  display: grid;
  gap: 13px;
}

.landing-page-v2 .landing-access label {
  display: grid;
  gap: 7px;
  color: #d2d2cf;
  font-size: 10px;
  font-weight: 750;
}

.landing-page-v2 .landing-access input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: #201d19;
  color: var(--landing-text);
  font-size: 16px;
  outline: 0;
}

.landing-page-v2 .landing-access input:focus {
  border-color: var(--landing-accent);
  box-shadow: 0 0 0 3px rgba(234, 146, 22, 0.18);
}

.landing-page-v2 .landing-access input::placeholder {
  color: #8f8a83;
}

.landing-page-v2 .landing-access .landing-consent {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.landing-page-v2 .landing-access .landing-consent input {
  width: 22px;
  min-height: 22px;
  margin: 1px 0 0;
  flex: 0 0 22px;
}

.landing-page-v2 .landing-consent a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--landing-accent-soft);
}

.landing-page-v2 .landing-access .landing-button {
  width: 100%;
  border: 0;
}

.landing-page-v2 .landing-access #form-status {
  min-height: 20px;
  margin: 0;
  color: var(--landing-accent-soft);
  font-size: 12px;
}

.landing-page-v2 .landing-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  color: var(--landing-muted);
}

.landing-page-v2 .landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.landing-page-v2 .landing-footer nav a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--landing-muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.landing-page-v2 .landing-footer p,
.landing-page-v2 .landing-footer small {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.landing-page-v2 .landing-main {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.landing-dark-intro {
  position: relative;
  display: grid;
  min-height: 100svh;
  min-height: 100dvh;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  isolation: isolate;
  background-color: #090705;
  background-image: url("/site-static/landing-amber-background.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 150px rgba(0, 0, 0, 0.38),
    inset 0 -120px 120px rgba(0, 0, 0, 0.2);
}

.landing-dark-intro::before,
.landing-dark-intro::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.landing-dark-intro::before {
  top: 15%;
  left: 50%;
  width: min(72vw, 980px);
  height: 43%;
  border-radius: 50%;
  background: rgba(193, 91, 8, 0.16);
  box-shadow: 0 54vh 125px rgba(170, 75, 6, 0.16);
  filter: blur(105px);
  transform: translateX(-50%);
}

.landing-dark-intro::after {
  inset: 0;
  background: rgba(6, 5, 4, 0.08);
}

.landing-page-v2 .landing-header {
  position: relative;
  z-index: 8;
  top: auto;
  left: auto;
  width: min(calc(100% - 40px), 1240px);
  min-height: 64px;
  margin: 18px auto 0;
  transform: none;
  background: rgba(10, 8, 6, 0.88);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.landing-page-v2 .landing-button {
  min-height: 52px;
  border-radius: 12px;
  box-shadow: 0 13px 30px rgba(234, 146, 22, 0.18);
}

.landing-page-v2 .landing-button-ghost {
  box-shadow: none;
}

.landing-page-v2 .landing-hero {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 28px 30px 48px;
  align-items: center;
  justify-content: center;
}

.landing-page-v2 .landing-hero::before {
  display: none;
}

.landing-page-v2 .landing-hero::after {
  display: none;
}

.landing-page-v2 .landing-hero-backdrop {
  top: 16%;
  height: 430px;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(40px);
}

.landing-page-v2 .landing-hero-copy {
  width: min(100%, 920px);
  padding-top: 0;
  transform: translateY(-6px);
}

.landing-page-v2 .landing-hero h1 {
  max-width: 920px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(52px, 4.15vw, 60px);
  font-weight: 650;
  line-height: 1.03;
}

.landing-page-v2 .landing-hero-support {
  max-width: 860px;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: clamp(38px, 3.05vw, 44px);
  line-height: 1.05;
}

.landing-page-v2 .landing-hero-subtitle {
  max-width: 690px;
  margin-top: 25px;
  margin-bottom: 0;
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.5;
}

.landing-page-v2 .landing-hero-actions {
  margin-top: 27px;
}

.landing-page-v2 .landing-proof-row {
  margin-top: 23px;
}

.landing-page-v2 .landing-hero-orbit {
  top: 82px;
  width: 220px;
  height: 560px;
}

.landing-page-v2 .landing-hero-orbit-left {
  left: max(78px, calc(50% - 642px));
}

.landing-page-v2 .landing-hero-orbit-right {
  right: max(78px, calc(50% - 642px));
}

.landing-page-v2 .landing-float-card {
  width: 200px;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.34));
}

.landing-page-v2 .landing-growth-icon {
  top: 50px;
  left: 48px;
  width: 94px;
}

.landing-page-v2 .landing-ozon-icon {
  right: 52px;
  bottom: 190px;
  width: 74px;
  padding: 7px;
  border: 1px solid rgba(234, 146, 22, 0.38);
  border-radius: 50%;
  background: rgba(20, 13, 8, 0.9);
  box-shadow:
    inset 0 0 14px rgba(234, 146, 22, 0.12),
    0 14px 28px rgba(234, 146, 22, 0.2);
  filter: saturate(0.72) brightness(0.92);
}

.landing-page-v2 .landing-card-ad {
  top: 188px;
  left: 0;
}

.landing-page-v2 .landing-card-inventory {
  bottom: 40px;
  left: 10px;
}

.landing-page-v2 .landing-card-orders {
  top: 126px;
  right: 0;
}

.landing-page-v2 .landing-card-profit {
  right: 10px;
  bottom: 30px;
}

.landing-intro-footer {
  position: relative;
  z-index: 7;
  display: grid;
  padding: 0 20px max(100px, env(safe-area-inset-bottom));
  justify-items: center;
  color: #c9c3b9;
  text-align: center;
}

.landing-intro-glass {
  display: grid;
  width: min(calc(100% - 40px), 660px);
  min-height: 64px;
  padding: 10px 28px;
  align-content: center;
  justify-items: center;
  gap: 2px;
  border: 1px solid rgba(234, 146, 22, 0.18);
  border-radius: 20px;
  background: rgba(15, 9, 5, 0.42);
  box-shadow: 0 14px 34px rgba(106, 48, 4, 0.14);
  backdrop-filter: blur(12px);
}

.landing-intro-glass p {
  margin: 0;
  color: #d3c5b1;
  font-size: 13px;
  line-height: 1.5;
}

.landing-intro-glass a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #d99a42;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.landing-intro-glass a:hover {
  color: #f3b85e;
}

.landing-light-flow {
  position: relative;
  background: var(--landing-light);
  color: var(--landing-ink);
}

.landing-dashboard-stage {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
  padding-bottom: 24px;
}

.landing-dashboard-frame {
  position: relative;
  height: 520px;
  padding: 34px 34px 0;
  overflow: hidden;
  border: 1px solid rgba(49, 56, 65, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(49, 56, 65, 0.22);
}

.landing-dashboard-frame > .landing-demo-pill,
.landing-limited-visual > .landing-demo-pill,
.landing-system-visual > .landing-demo-pill {
  position: absolute;
  z-index: 6;
  top: 18px;
  right: 18px;
  min-height: 30px;
  border-color: rgba(49, 56, 65, 0.18);
  background: #313841;
  color: #fff;
}

.landing-dashboard-board {
  display: grid;
  height: 520px;
  grid-template-columns: 0.82fr 1.28fr 0.82fr;
  align-items: start;
  gap: 18px;
}

.landing-dashboard-board > * {
  display: block;
  height: 548px;
  overflow: hidden;
  border: 1px solid var(--landing-light-line);
  border-radius: 18px 18px 0 0;
  background: #f6f3ed;
  box-shadow: 0 14px 35px rgba(49, 56, 65, 0.1);
}

.landing-dashboard-board img {
  width: 100%;
  max-width: none;
  transform: translateY(-72px);
}

.landing-dashboard-side {
  margin-top: 82px;
  opacity: 0.72;
}

.landing-dashboard-main {
  position: relative;
  z-index: 2;
}

.landing-outcomes {
  padding: 56px 0 50px;
}

.landing-page-v2 .landing-section-heading {
  max-width: 840px;
}

.landing-page-v2 .landing-light-flow .landing-section h2,
.landing-page-v2 .landing-dashboard-stage h2 {
  color: var(--landing-ink);
}

.landing-page-v2 .landing-light-flow .landing-section-heading > p:last-of-type,
.landing-page-v2 .landing-outcomes .landing-section-heading > p:last-of-type {
  color: var(--landing-ink-soft);
}

.landing-outcome-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.landing-outcome-grid article {
  min-height: 180px;
  padding: 21px;
  border: 1px solid var(--landing-light-line);
  border-radius: 20px;
  background: #fff;
}

.landing-outcome-grid span,
.landing-product-card span {
  color: #a95100;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.landing-outcome-grid h3 {
  margin: 32px 0 9px;
  font-size: 19px;
  line-height: 1.2;
}

.landing-outcome-grid p {
  margin: 0;
  color: var(--landing-ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.landing-page-v2 .landing-section {
  width: min(calc(100% - 48px), 1240px);
  padding: 64px 0;
  border-top-color: var(--landing-light-line);
}

.landing-inline-demo {
  display: inline-flex;
  min-height: 30px;
  margin-top: 18px;
  padding: 0 11px;
  align-items: center;
  border: 1px solid var(--landing-light-line);
  border-radius: 999px;
  color: var(--landing-ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.landing-product-bento {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 390px;
  gap: 16px;
}

.landing-product-card {
  position: relative;
  grid-column: span 5;
  min-height: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--landing-light-line);
  border-radius: 24px;
  background: var(--landing-paper);
}

.landing-product-card-wide,
.landing-product-card-metric,
.landing-product-card-sale {
  grid-column: span 7;
}

.landing-product-card > div {
  position: relative;
  z-index: 3;
  max-width: 490px;
}

.landing-product-card h3 {
  margin: 12px 0 8px;
  color: var(--landing-ink);
  font-size: clamp(27px, 2.45vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.landing-product-card p {
  margin: 0;
  color: var(--landing-ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.landing-screen-crop {
  position: absolute;
  right: 26px;
  bottom: -128px;
  left: 26px;
  height: 350px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--landing-light-line);
  border-radius: 17px 17px 0 0;
  background: #f4f0e9;
  box-shadow: 0 18px 42px rgba(49, 56, 65, 0.12);
}

.landing-screen-crop img {
  width: 100%;
  transform: translateY(-70px);
}

.landing-product-card-wide .landing-screen-crop {
  right: 30px;
  bottom: -136px;
  left: 40%;
  height: 376px;
}

.landing-product-card-metric {
  padding-right: 47%;
  background: #313841;
}

.landing-product-card-metric h3,
.landing-product-card-metric p {
  color: #fff;
}

.landing-product-card-metric p {
  color: #d7dadd;
}

.landing-product-card-metric > img {
  position: absolute;
  right: -24px;
  bottom: 24px;
  width: 52%;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.18));
}

.landing-product-object {
  position: absolute;
  z-index: 2;
  top: -30px;
  right: -24px;
  width: 116px;
  pointer-events: none;
}

.landing-autopilot-small {
  top: -20px;
  width: 108px;
}

.landing-dashboard-object {
  top: -22px;
  right: -10px;
  width: 104px;
}

.landing-product-card-sale {
  background: #fff5e5;
}

.landing-sale-badge {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  width: calc(100% - 56px);
  border: 1px solid var(--landing-light-line);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(49, 56, 65, 0.1);
}

.landing-limited-stock {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 54px;
}

.landing-limited-copy > p:not(.landing-kicker) {
  margin: 20px 0 0;
  color: var(--landing-ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.landing-limited-copy h2 {
  font-size: clamp(42px, 3.9vw, 54px);
}

.landing-limited-copy ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.landing-limited-copy li {
  padding: 11px 0 11px 28px;
  border-top: 1px solid var(--landing-light-line);
  color: var(--landing-ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.landing-limited-copy li::before {
  float: left;
  margin-left: -28px;
  color: #a95100;
  content: "✓";
  font-weight: 900;
}

.landing-limited-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--landing-light-line);
  border-radius: 26px;
  background: #17120d;
  box-shadow: 0 30px 70px rgba(49, 56, 65, 0.18);
}

.landing-limited-tool-screen {
  position: absolute;
  top: 74px;
  left: 34px;
  width: 78%;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.landing-limited-badge {
  position: absolute;
  right: 38px;
  bottom: 42px;
  width: 68%;
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.landing-limited-autopilot {
  position: absolute;
  z-index: 4;
  top: 86px;
  right: -18px;
  width: 146px;
}

.landing-compare {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 56px;
}

.landing-compare-table {
  border-top: 1px solid var(--landing-light-line);
}

.landing-compare-table > div {
  display: grid;
  min-height: 62px;
  padding: 13px 0;
  grid-template-columns: minmax(150px, 0.72fr) 1.28fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--landing-light-line);
}

.landing-compare-table span {
  color: var(--landing-ink-soft);
  font-size: 12px;
}

.landing-compare-table b {
  color: var(--landing-ink);
  font-size: 14px;
  line-height: 1.45;
}

.landing-compare-table > .landing-compare-header {
  min-height: 48px;
  padding-top: 0;
}

.landing-compare-header b {
  color: #a95100;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-system-band {
  display: grid;
  width: min(calc(100% - 48px), 1320px);
  margin: 0 auto;
  padding: 56px 64px;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  border: 1px solid rgba(234, 146, 22, 0.26);
  border-radius: 30px;
  background: #17120d;
  color: #fffaf2;
  box-shadow: 0 32px 78px rgba(35, 25, 15, 0.2);
}

.landing-system-band h2 {
  margin: 0;
  color: #fffaf2;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.landing-system-copy > p:last-child {
  margin: 20px 0 0;
  color: #bcb5aa;
  font-size: 15px;
  line-height: 1.7;
}

.landing-system-visual {
  position: relative;
  min-height: 360px;
}

.landing-system-visual > img:first-of-type {
  position: absolute;
  top: 34px;
  left: -5%;
  width: 110%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
}

.landing-system-object {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: -8px;
  width: 88px;
}

.landing-light-flow-after-band {
  margin-top: 64px;
}

.landing-page-v2 .landing-security {
  grid-template-columns: 0.86fr 1.14fr;
}

.landing-page-v2 .landing-security-mark {
  min-height: 400px;
  border-color: var(--landing-light-line);
  background: #21170e;
  box-shadow: 0 26px 70px rgba(49, 56, 65, 0.14);
}

.landing-page-v2 .landing-security-mark img {
  width: min(76%, 350px);
}

.landing-security-lead {
  margin: 24px 0 0;
  color: var(--landing-ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.landing-page-v2 .landing-security li {
  border-top-color: var(--landing-light-line);
  color: var(--landing-ink-soft);
}

.landing-page-v2 .landing-security li b {
  color: var(--landing-ink);
}

.landing-page-v2 .landing-how ol {
  margin-top: 36px;
}

.landing-page-v2 .landing-how li {
  border-color: var(--landing-light-line);
  color: var(--landing-ink);
}

.landing-page-v2 .landing-how li p {
  color: var(--landing-ink-soft);
}

.landing-page-v2 .landing-faq {
  border-top-color: var(--landing-light-line);
}

.landing-page-v2 .landing-faq-list details,
.landing-page-v2 .landing-faq-list details:last-child {
  border-color: var(--landing-light-line);
}

.landing-page-v2 .landing-faq-list summary {
  color: var(--landing-ink);
}

.landing-page-v2 .landing-faq-list details p {
  color: var(--landing-ink-soft);
}

.landing-page-v2 .landing-final-cta {
  position: relative;
  display: grid;
  min-height: 600px;
  margin-bottom: 64px;
  padding: 202px 80px 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(234, 146, 22, 0.36);
  border-radius: 30px;
  background: #120c08 url("/site-static/landing-footer-cta-magnifier-amber.webp") center / cover no-repeat;
  box-shadow: 0 30px 80px rgba(49, 56, 65, 0.22);
  color: #fffaf2;
  text-align: center;
}

.landing-page-v2 .landing-final-cta::before {
  position: absolute;
  inset: 0;
  background: rgba(7, 5, 3, 0.42);
  content: "";
}

.landing-final-copy {
  position: relative;
  z-index: 3;
  max-width: 790px;
}

.landing-page-v2 .landing-light-flow .landing-final-cta h2 {
  color: #fffaf2;
  font-size: clamp(48px, 4vw, 58px);
  line-height: 1.04;
}

.landing-final-copy > p {
  max-width: 650px;
  margin: 22px auto 0;
  color: #ddd6cb;
  font-size: 19px;
  line-height: 1.5;
}

.landing-final-copy .landing-button {
  min-width: 230px;
  margin-top: 28px;
}

.landing-final-copy small {
  display: block;
  margin-top: 17px;
  color: #f3b85e;
  font-size: 12px;
  font-weight: 750;
}

.landing-final-ornaments {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.landing-final-ornaments img {
  position: absolute;
  bottom: 64px;
  width: 178px;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.34));
}

.landing-final-ornaments img:first-child {
  left: 28px;
  transform: rotate(-5deg);
}

.landing-final-ornaments img:last-child {
  right: 28px;
  transform: rotate(5deg);
}

.landing-page-v2 .landing-access {
  position: relative;
  margin-bottom: 28px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--landing-light-line);
  border-radius: 26px;
  background: #313841;
  box-shadow: 0 24px 60px rgba(49, 56, 65, 0.16);
  color: #fffaf2;
}

.landing-page-v2 .landing-access-copy,
.landing-page-v2 .landing-access form {
  position: relative;
  z-index: 3;
}

.landing-page-v2 .landing-light-flow .landing-access h2 {
  color: #fffaf2;
}

.landing-page-v2 .landing-access-copy > p:last-of-type {
  max-width: 620px;
  margin-top: 18px;
  color: #ddd6cb;
  font-size: 16px;
  line-height: 1.55;
}

.landing-page-v2 .landing-access form {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: #232a31;
}

.landing-page-v2 .landing-footer {
  width: 100%;
  min-height: 240px;
  margin: 0;
  padding: 48px max(24px, calc((100vw - 1240px) / 2));
  border-top: 0;
  background: #0b0907;
}

@media (max-width: 1200px) {
  .landing-intro-glass {
    width: min(calc(100% - 360px), 560px);
  }

  .landing-page-v2 .landing-hero-orbit {
    width: 176px;
    opacity: 0.82;
  }

  .landing-page-v2 .landing-hero-orbit-left {
    left: 34px;
  }

  .landing-page-v2 .landing-hero-orbit-right {
    right: 34px;
  }

  .landing-page-v2 .landing-hero-copy {
    width: min(calc(100% - 340px), 820px);
  }

  .landing-page-v2 .landing-float-card {
    width: 164px;
  }

  .landing-page-v2 .landing-card-inventory,
  .landing-page-v2 .landing-card-profit {
    display: none;
  }

  .landing-page-v2 .landing-growth-icon {
    top: 110px;
    left: 42px;
    width: 72px;
  }

  .landing-page-v2 .landing-ozon-icon {
    right: 44px;
    bottom: 170px;
    width: 66px;
  }

  .landing-page-v2 .landing-card-ad,
  .landing-page-v2 .landing-card-orders {
    top: 234px;
  }

  .landing-product-card-wide,
  .landing-product-card-metric,
  .landing-product-card-sale,
  .landing-product-card {
    grid-column: span 6;
  }

  .landing-product-card-wide .landing-screen-crop {
    left: 26px;
  }

  .landing-product-card-metric {
    padding-right: 28px;
  }

  .landing-product-card-metric > img {
    right: 24px;
    bottom: 36px;
    width: 64%;
  }

  .landing-system-band {
    padding: 68px 54px;
  }
}

@media (max-width: 1020px) {
  .landing-dashboard-frame {
    height: 520px;
  }

  .landing-dashboard-board {
    height: 530px;
    grid-template-columns: 0.7fr 1.4fr 0.7fr;
  }

  .landing-outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-limited-stock,
  .landing-compare,
  .landing-system-band {
    grid-template-columns: 1fr;
  }

  .landing-limited-stock,
  .landing-compare {
    gap: 42px;
  }

  .landing-system-band {
    gap: 34px;
  }

  .landing-system-visual {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .landing-page-v2 .landing-header {
    width: calc(100% - 28px);
    grid-template-columns: auto 1fr auto;
  }

  .landing-page-v2 .landing-desktop-nav,
  .landing-page-v2 .landing-header-actions {
    display: none;
  }

  .landing-page-v2 .landing-hero-orbit {
    display: none;
  }

  .landing-page-v2 .landing-hero-copy {
    width: min(100%, 760px);
  }

  .landing-page-v2 .landing-mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .landing-page-v2 .landing-mobile-menu summary {
    display: inline-flex;
    min-width: 68px;
    min-height: 44px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: var(--landing-text);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
  }

  .landing-page-v2 .landing-mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .landing-page-v2 .landing-mobile-menu nav {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: 230px;
    padding: 10px;
    border: 1px solid var(--landing-line);
    border-radius: 16px;
    background: #111315;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
  }

  .landing-page-v2 .landing-mobile-menu nav a {
    display: flex;
    min-height: 46px;
    padding: 0 12px;
    align-items: center;
    border-radius: 9px;
    color: var(--landing-text);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
  }

  .landing-page-v2 .landing-hero {
    min-height: 0;
    padding: 20px 28px 24px;
  }

  .landing-page-v2 .landing-hero-copy {
    transform: translateY(2px);
  }

  .landing-intro-footer {
    padding-bottom: max(80px, env(safe-area-inset-bottom));
  }

  .landing-intro-glass {
    width: min(calc(100% - 28px), 560px);
    min-height: 60px;
    padding: 8px 20px;
  }

  .landing-dashboard-stage {
    margin-top: 0;
  }

  .landing-dashboard-frame {
    height: 520px;
    padding: 28px 28px 0;
  }

  .landing-dashboard-side {
    display: none;
  }

  .landing-dashboard-board {
    display: block;
  }

  .landing-dashboard-main {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .landing-product-card,
  .landing-product-card-wide,
  .landing-product-card-metric,
  .landing-product-card-sale {
    grid-column: 1 / -1;
  }

  .landing-page-v2 .landing-security {
    grid-template-columns: 1fr;
  }

  .landing-page-v2 .landing-security-mark {
    min-height: 360px;
  }

  .landing-page-v2 .landing-access {
    padding: 48px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-page-v2 .landing-final-cta {
    min-height: 640px;
    padding: 218px 48px 54px;
  }

  .landing-final-ornaments img {
    width: 150px;
  }

  .landing-page-v2 .landing-faq {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .landing-page-v2 .landing-header {
    top: auto;
    min-height: 60px;
    margin-top: 8px;
    padding: 7px 8px 7px 10px;
    border-radius: 16px;
  }

  .landing-page-v2 .landing-brand {
    gap: 8px;
  }

  .landing-page-v2 .landing-brand img {
    width: 38px;
    height: 38px;
  }

  .landing-page-v2 .landing-brand b {
    font-size: 13px;
  }

  .landing-page-v2 .landing-hero {
    min-height: 0;
    padding: 12px 16px 18px;
  }

  .landing-page-v2 .landing-hero-copy {
    padding-top: 0;
    transform: translateY(23px);
  }

  .landing-page-v2 .landing-hero h1 {
    font-size: clamp(36px, 9.8vw, 38px);
    line-height: 1.02;
  }

  .landing-page-v2 .landing-hero-support {
    margin-top: 11px;
    font-size: clamp(28px, 7.7vw, 30px);
    line-height: 1.06;
  }

  .landing-page-v2 .landing-hero-subtitle {
    margin-top: 19px;
    font-size: 16px;
    line-height: 1.52;
  }

  .landing-page-v2 .landing-hero-actions {
    margin-top: 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .landing-page-v2 .landing-button {
    width: 100%;
    min-height: 54px;
  }

  .landing-page-v2 .landing-proof-row {
    margin-top: 16px;
  }

  .landing-intro-footer {
    padding-right: 14px;
    padding-bottom: max(80px, env(safe-area-inset-bottom));
    padding-left: 14px;
    gap: 2px;
  }

  .landing-intro-glass {
    width: min(calc(100% - 8px), 360px);
    min-height: 60px;
    padding: 8px 14px;
    border-radius: 18px;
  }

  .landing-intro-glass p {
    max-width: 340px;
    font-size: 12px;
  }

  .landing-intro-glass a {
    min-height: 44px;
    font-size: 10px;
  }

  .landing-dashboard-stage {
    width: calc(100% - 24px);
    margin-top: 0;
  }

  .landing-dashboard-frame {
    height: 490px;
    padding: 22px 12px 0;
    border-radius: 22px;
  }

  .landing-dashboard-frame > .landing-demo-pill {
    top: 12px;
    right: 12px;
  }

  .landing-dashboard-main {
    width: min(100%, 350px);
    height: 560px !important;
  }

  .landing-dashboard-board img {
    transform: translateY(-62px);
  }

  .landing-outcomes {
    padding: 90px 2px 80px;
  }

  .landing-outcome-grid {
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .landing-outcome-grid article {
    min-height: 172px;
  }

  .landing-outcome-grid h3 {
    margin-top: 28px;
  }

  .landing-page-v2 .landing-section {
    width: calc(100% - 28px);
    padding: 82px 0;
  }

  .landing-page-v2 .landing-section h2,
  .landing-system-band h2 {
    font-size: clamp(34px, 9.8vw, 44px);
  }

  .landing-product-bento {
    margin-top: 34px;
  }

  .landing-product-card,
  .landing-product-card-metric {
    min-height: 490px;
    padding: 22px;
    border-radius: 20px;
  }

  .landing-product-card h3 {
    font-size: 27px;
  }

  .landing-screen-crop,
  .landing-product-card-wide .landing-screen-crop {
    right: 20px;
    bottom: -150px;
    left: 20px;
    height: 450px;
  }

  .landing-product-card-metric > img {
    right: 18px;
    bottom: 42px;
    width: 78%;
  }

  .landing-product-object {
    top: -24px;
    right: -28px;
    width: 116px;
  }

  .landing-sale-badge {
    right: 20px;
    bottom: 34px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .landing-limited-visual {
    min-height: 450px;
  }

  .landing-limited-tool-screen {
    top: 72px;
    left: 18px;
    width: 88%;
  }

  .landing-limited-badge {
    right: 18px;
    bottom: 34px;
    width: 78%;
  }

  .landing-limited-autopilot {
    top: 74px;
    right: -20px;
    width: 126px;
  }

  .landing-compare-table > div {
    min-height: 90px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .landing-system-band {
    width: calc(100% - 20px);
    padding: 54px 20px;
    border-radius: 24px;
  }

  .landing-system-visual {
    min-height: 330px;
  }

  .landing-system-object {
    right: -18px;
    bottom: 0;
    width: 80px;
  }

  .landing-light-flow-after-band {
    margin-top: 80px;
  }

  .landing-page-v2 .landing-security-mark {
    min-height: 300px;
  }

  .landing-page-v2 .landing-how ol {
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .landing-page-v2 .landing-how li,
  .landing-page-v2 .landing-how li:first-child {
    min-height: 205px;
  }

  .landing-page-v2 .landing-how h3 {
    margin-top: 36px;
  }

  .landing-page-v2 .landing-access {
    width: calc(100% - 20px);
    padding: 42px 20px 22px;
  }

  .landing-final-ornaments {
    display: none;
  }

  .landing-page-v2 .landing-final-cta {
    width: calc(100% - 20px);
    min-height: 570px;
    padding: 198px 20px 42px;
  }

  .landing-page-v2 .landing-light-flow .landing-final-cta h2 {
    font-size: clamp(36px, 10.2vw, 44px);
  }

  .landing-final-copy > p {
    font-size: 16px;
  }

  .landing-final-copy .landing-button {
    width: 100%;
  }

  .landing-final-copy small {
    line-height: 1.5;
  }

  .landing-page-v2 .landing-access form {
    padding: 18px;
  }

  .landing-page-v2 .landing-footer {
    grid-template-columns: 1fr;
  }

  .landing-page-v2 .landing-footer p,
  .landing-page-v2 .landing-footer small {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .landing-page-v2 .landing-header {
    width: calc(100% - 16px);
  }

  .landing-page-v2 .landing-hero {
    min-height: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  .landing-page-v2 .landing-hero h1 {
    font-size: 38px;
  }

  .landing-page-v2 .landing-hero-support {
    font-size: 30px;
  }

  .landing-page-v2 .landing-hero-subtitle {
    font-size: 16px;
  }

  .landing-page-v2 .landing-proof-row {
    font-size: 10px;
  }

  .landing-dashboard-stage {
    margin-top: 0;
  }

  .landing-dashboard-frame {
    height: 455px;
  }

  .landing-product-card,
  .landing-product-card-metric {
    min-height: 510px;
  }

  .landing-product-card h3 {
    font-size: 25px;
  }

  .landing-limited-visual {
    min-height: 410px;
  }

  .landing-system-visual {
    min-height: 295px;
  }
}

/* Readability and product hierarchy for the light landing content. */
.landing-page-v2 .landing-light-flow {
  color: #2d333b;
}

.landing-page-v2 .landing-section {
  padding: 58px 0;
}

.landing-page-v2 .landing-light-flow .landing-section-heading,
.landing-page-v2 .landing-outcomes .landing-section-heading {
  max-width: 960px;
}

.landing-page-v2 .landing-light-flow .landing-section h2,
.landing-page-v2 .landing-dashboard-stage h2 {
  max-width: 960px;
  font-size: clamp(50px, 4.1vw, 58px);
  line-height: 1.06;
}

.landing-page-v2 .landing-light-flow .landing-section-heading > p:last-child,
.landing-page-v2 .landing-outcomes .landing-section-heading > p:last-child {
  color: #626b76;
  font-size: 20px;
  line-height: 1.55;
}

.landing-page-v2 .landing-light-flow .landing-kicker,
.landing-page-v2 .landing-outcomes .landing-kicker,
.landing-system-band .landing-kicker {
  margin-bottom: 16px;
  font-size: 13px;
}

.landing-outcomes {
  padding: 56px 0 44px;
}

.landing-outcome-grid {
  margin-top: 32px;
  gap: 16px;
}

.landing-outcome-grid article {
  min-height: 204px;
  padding: 30px 30px 28px;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(49, 56, 65, 0.06);
}

.landing-outcome-grid span,
.landing-product-card > .landing-product-card-copy > span {
  color: #a95100;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.landing-outcome-grid h3 {
  margin: 16px 0 10px;
  color: #2d333b;
  font-size: 27px;
  line-height: 1.16;
}

.landing-outcome-grid p {
  color: #626b76;
  font-size: 17px;
  line-height: 1.5;
}

.landing-page-v2 .landing-toolkit {
  width: min(calc(100% - 48px), 1320px);
}

.landing-inline-demo {
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
}

.landing-product-bento {
  margin-top: 40px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 30px;
}

.landing-product-card,
.landing-product-card-wide,
.landing-product-card-half,
.landing-product-card-metric,
.landing-product-card-sale {
  grid-column: span 6;
  min-height: 480px;
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(49, 56, 65, 0.08);
}

.landing-product-card-wide {
  display: grid;
  min-height: 460px;
  padding: 40px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 38px;
}

.landing-product-card > .landing-product-card-copy {
  position: relative;
  z-index: 4;
  max-width: none;
}

.landing-product-card h3 {
  max-width: 560px;
  margin: 12px 0 16px;
  color: #2d333b;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.landing-product-card-wide h3 {
  font-size: clamp(34px, 3vw, 40px);
}

.landing-product-card p {
  max-width: 540px;
  margin: 14px 0 0;
  color: #626b76;
  font-size: 17px;
  line-height: 1.5;
}

.landing-product-metric {
  display: grid;
  margin-top: 18px;
  justify-items: start;
  gap: 2px;
}

.landing-product-metric strong {
  color: #2d333b;
  font-size: clamp(36px, 3.1vw, 44px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.landing-product-metric small {
  color: #626b76;
  font-size: 15px;
  line-height: 1.45;
}

.landing-product-metric em {
  display: inline-flex;
  min-height: 28px;
  margin-top: 7px;
  padding: 0 10px;
  align-items: center;
  border: 1px solid #eed2aa;
  border-radius: 999px;
  background: #fff7eb;
  color: #8b4a09;
  font-size: 14px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.2;
  white-space: nowrap;
}

.landing-screen-crop,
.landing-product-card-wide .landing-screen-crop {
  position: absolute;
  right: 34px;
  bottom: 0;
  left: 34px;
  height: 205px;
  border-radius: 19px 19px 0 0;
  background: #f4f0e9;
}

.landing-screen-crop img {
  width: 100%;
  max-width: none;
}

.landing-product-card-wide .landing-screen-crop {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: 378px;
  border-radius: 22px;
}

.landing-screen-dashboard img {
  transform: translateY(-86px) scale(1.04);
  transform-origin: top center;
}

.landing-screen-profit img {
  transform: translateY(-610px) scale(1.04);
  transform-origin: top center;
}

.landing-screen-fbs img,
.landing-screen-inventory img {
  transform: translateY(-204px) scale(1.04);
  transform-origin: top center;
}

.landing-product-object {
  top: 22px;
  right: 22px;
  width: 76px;
}

.landing-product-card-fbs .landing-product-card-copy {
  max-width: calc(100% - 72px);
}

.landing-product-card-metric {
  padding-right: 34px;
  background: #313841;
}

.landing-product-card-metric .landing-product-card-copy {
  max-width: 52%;
}

.landing-product-card-metric h3,
.landing-product-card-metric .landing-product-metric strong,
.landing-product-card-metric p {
  color: #fff;
}

.landing-product-card-metric .landing-product-metric small,
.landing-product-card-metric p {
  color: #d7dadd;
}

.landing-product-card-metric .landing-product-metric em {
  border-color: rgba(234, 146, 22, 0.4);
  background: rgba(234, 146, 22, 0.12);
  color: #f3b85e;
}

.landing-product-card-metric > img {
  right: 26px;
  bottom: 32px;
  width: 46%;
  max-width: 340px;
}

.landing-product-card-teaser {
  display: grid;
  min-height: 220px;
  padding: 34px 40px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 42px;
  background: #fff5e5;
}

.landing-product-card-teaser .landing-product-card-copy {
  max-width: 720px;
}

.landing-product-card-teaser h3 {
  margin-bottom: 10px;
}

.landing-product-metric-inline {
  display: flex;
  margin-top: 14px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-product-metric-inline strong {
  font-size: 34px;
}

.landing-product-card-teaser .landing-sale-badge {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  border-radius: 18px;
}

.landing-autopilot-small {
  top: 20px;
  right: 22px;
  width: 72px;
}

.landing-product-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 12px;
  align-items: center;
  color: #8b4a09;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.landing-limited-stock {
  gap: 48px;
}

.landing-limited-copy > p:not(.landing-kicker) {
  color: #626b76;
  font-size: 19px;
  line-height: 1.58;
}

.landing-limited-copy li {
  padding-top: 13px;
  padding-bottom: 13px;
  color: #626b76;
  font-size: 17px;
  line-height: 1.5;
}

.landing-limited-autopilot {
  top: 24px;
  right: 24px;
  width: 76px;
}

.landing-compare {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 50px;
}

.landing-compare-table {
  overflow: hidden;
  border: 1px solid #d7dadd;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(49, 56, 65, 0.07);
}

.landing-compare-table > div {
  min-height: 78px;
  padding: 0;
  grid-template-columns: minmax(180px, 0.72fr) 1.28fr;
  gap: 0;
  border-bottom: 1px solid #c8cdd2;
}

.landing-compare-table > div:last-child {
  border-bottom: 0;
}

.landing-compare-table span,
.landing-compare-table b {
  display: flex;
  height: 100%;
  padding: 18px 28px;
  align-items: center;
  font-size: 18px;
  line-height: 1.4;
}

.landing-compare-table span {
  color: #626b76;
}

.landing-compare-table b {
  background: #fff8ed;
  color: #2d333b;
  font-weight: 750;
}

.landing-compare-table b::before {
  margin-right: 10px;
  color: #a95100;
  content: "✓";
}

.landing-compare-table > .landing-compare-header {
  min-height: 62px;
}

.landing-compare-header b,
.landing-compare-header b:first-child {
  color: #8b4a09;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.landing-compare-header b:first-child {
  background: #fff;
}

.landing-compare-header b::before {
  content: none;
}

.landing-system-copy > p:last-child {
  color: #d0c8bd;
  font-size: 18px;
  line-height: 1.58;
}

.landing-page-v2 .landing-security li,
.landing-security-lead {
  color: #626b76;
  font-size: 17px;
  line-height: 1.55;
}

.landing-page-v2 .landing-how .landing-section-heading {
  max-width: 900px;
}

.landing-page-v2 .landing-how .landing-section-heading h2 {
  font-size: clamp(52px, 4vw, 58px);
}

.landing-page-v2 .landing-how ol {
  margin-top: 30px;
  gap: 22px;
}

.landing-page-v2 .landing-how li,
.landing-page-v2 .landing-how li:first-child {
  min-height: 220px;
  padding: 30px;
  border: 1px solid #d7dadd;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(49, 56, 65, 0.05);
}

.landing-page-v2 .landing-how li > span {
  font-size: 17px;
}

.landing-page-v2 .landing-how h3 {
  margin: 32px 0 10px;
  font-size: 29px;
  line-height: 1.15;
}

.landing-page-v2 .landing-how li p {
  color: #626b76;
  font-size: 17px;
  line-height: 1.5;
}

.landing-page-v2 .landing-faq {
  gap: 48px;
}

.landing-page-v2 .landing-faq .landing-section-heading h2 {
  font-size: clamp(44px, 3.6vw, 52px);
}

.landing-page-v2 .landing-faq-list details,
.landing-page-v2 .landing-faq-list details:last-child {
  border-color: #c8cdd2;
}

.landing-page-v2 .landing-faq-list summary {
  min-height: 76px;
  padding: 0 56px 0 24px;
  color: #2d333b;
  font-size: 20px;
  line-height: 1.35;
  transition: background-color 160ms ease;
}

.landing-page-v2 .landing-faq-list summary:hover {
  background: #fff8ed;
}

.landing-page-v2 .landing-faq-list summary::after {
  right: 24px;
  top: 50%;
  font-size: 24px;
  transform: translateY(-50%);
}

.landing-page-v2 .landing-faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.landing-page-v2 .landing-faq-list details p {
  padding: 0 24px 24px;
  color: #626b76;
  font-size: 17px;
  line-height: 1.55;
}

@media (max-width: 1200px) {
  .landing-product-card,
  .landing-product-card-wide,
  .landing-product-card-half,
  .landing-product-card-metric,
  .landing-product-card-sale {
    grid-column: span 6;
  }

  .landing-product-card-wide,
  .landing-product-card-teaser {
    grid-column: 1 / -1;
  }

  .landing-product-card h3 {
    font-size: 29px;
  }

  .landing-product-card-wide h3 {
    font-size: 36px;
  }
}

@media (max-width: 1020px) {
  .landing-product-bento {
    gap: 24px;
  }

  .landing-product-card-wide {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
  }

  .landing-product-card {
    padding: 30px;
  }

  .landing-product-card-metric .landing-product-card-copy {
    max-width: 56%;
  }

  .landing-compare {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .landing-product-card,
  .landing-product-card-wide,
  .landing-product-card-half,
  .landing-product-card-metric,
  .landing-product-card-sale {
    grid-column: 1 / -1;
  }

  .landing-product-card-wide {
    min-height: 740px;
    grid-template-columns: 1fr;
    align-content: start;
  }

  .landing-product-card-wide .landing-screen-crop {
    height: 390px;
  }

  .landing-product-card-teaser {
    grid-template-columns: 1fr;
  }

  .landing-product-card-teaser .landing-sale-badge {
    width: min(100%, 620px);
  }
}

@media (max-width: 700px) {
  .landing-page-v2 .landing-section {
    padding: 62px 0;
  }

  .landing-page-v2 .landing-light-flow .landing-section h2,
  .landing-page-v2 .landing-dashboard-stage h2 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .landing-page-v2 .landing-light-flow .landing-section-heading > p:last-of-type,
  .landing-page-v2 .landing-outcomes .landing-section-heading > p:last-of-type {
    font-size: 17px;
  }

  .landing-outcomes {
    padding: 70px 2px 58px;
  }

  .landing-outcome-grid article {
    min-height: 190px;
    padding: 28px;
  }

  .landing-outcome-grid h3 {
    font-size: 27px;
  }

  .landing-page-v2 .landing-toolkit {
    width: calc(100% - 24px);
  }

  .landing-product-bento {
    gap: 22px;
  }

  .landing-product-card,
  .landing-product-card-wide,
  .landing-product-card-half,
  .landing-product-card-metric,
  .landing-product-card-sale {
    min-height: 520px;
    padding: 26px;
    border-radius: 24px;
  }

  .landing-product-card-wide {
    min-height: 700px;
    padding: 28px;
  }

  .landing-product-card h3,
  .landing-product-card-wide h3 {
    font-size: 30px;
  }

  .landing-product-card p {
    font-size: 17px;
  }

  .landing-product-metric strong {
    font-size: 36px;
  }

  .landing-screen-crop,
  .landing-product-card-wide .landing-screen-crop {
    right: 22px;
    left: 22px;
    height: 230px;
  }

  .landing-product-card-wide .landing-screen-crop {
    position: absolute;
    right: 28px;
    bottom: 0;
    left: 28px;
    width: auto;
    height: 330px;
  }

  .landing-screen-profit img {
    transform: translateY(-570px) scale(1.04);
  }

  .landing-product-card-metric .landing-product-card-copy {
    max-width: 100%;
  }

  .landing-product-card-metric > img {
    right: 22px;
    bottom: 30px;
    width: 70%;
  }

  .landing-product-card-teaser {
    min-height: 520px;
    padding: 28px;
  }

  .landing-product-card-teaser .landing-sale-badge {
    align-self: end;
  }

  .landing-product-metric-inline strong {
    font-size: 32px;
  }

  .landing-limited-copy > p:not(.landing-kicker) {
    font-size: 18px;
  }

  .landing-limited-copy li {
    font-size: 16px;
  }

  .landing-limited-autopilot {
    top: 20px;
    right: 20px;
    width: 68px;
  }

  .landing-compare-table > .landing-compare-header {
    display: none;
  }

  .landing-compare-table > div {
    display: block;
    min-height: 0;
  }

  .landing-compare-table span,
  .landing-compare-table b {
    display: grid;
    min-height: 72px;
    height: auto;
    padding: 16px 20px;
    align-content: center;
    gap: 4px;
    font-size: 17px;
  }

  .landing-compare-table span::before,
  .landing-compare-table b::before {
    margin: 0;
    color: #8b4a09;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .landing-compare-table span::before {
    content: "Данные Ozon";
  }

  .landing-compare-table b::before {
    content: "Trendy Teddy";
  }

  .landing-page-v2 .landing-how .landing-section-heading h2 {
    font-size: 42px;
  }

  .landing-page-v2 .landing-how ol {
    gap: 20px;
  }

  .landing-page-v2 .landing-how li,
  .landing-page-v2 .landing-how li:first-child {
    min-height: 210px;
    padding: 28px;
  }

  .landing-page-v2 .landing-how h3 {
    margin-top: 28px;
    font-size: 28px;
  }

  .landing-page-v2 .landing-faq {
    gap: 34px;
  }

  .landing-page-v2 .landing-faq .landing-section-heading h2 {
    font-size: 40px;
  }

  .landing-page-v2 .landing-faq-list summary {
    min-height: 76px;
    padding-left: 18px;
    font-size: 19px;
  }

  .landing-page-v2 .landing-faq-list details p {
    padding-right: 18px;
    padding-left: 18px;
    font-size: 17px;
  }
}

.landing-page-v2 .landing-light-flow .landing-section-heading > p:last-of-type,
.landing-page-v2 .landing-outcomes .landing-section-heading > p:last-of-type {
  color: #626b76;
  font-size: 20px;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .landing-page-v2 .landing-light-flow .landing-section-heading > p:last-of-type,
  .landing-page-v2 .landing-outcomes .landing-section-heading > p:last-of-type {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page-v2 *,
  .landing-page-v2 *::before,
  .landing-page-v2 *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Pricing is part of the published V2 language, not the legacy site theme. */
.landing-page-v2 .landing-pricing {
  display: block;
  padding-top: 86px;
}

.landing-pricing-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-plan-card {
  display: flex;
  min-width: 0;
  min-height: 570px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--landing-light-line);
  border-radius: 24px;
  background: var(--landing-paper);
  color: var(--landing-ink);
}

.landing-plan-card-featured {
  border-color: #313841;
  background: #313841;
  color: #fffaf2;
}

.landing-plan-card header > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  align-self: flex-start;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff3e0;
  color: #a95100;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.landing-plan-card-featured header > span {
  background: var(--landing-accent);
  color: #313841;
}

.landing-plan-card h2,
.landing-plan-card h3 {
  margin: 24px 0 8px;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.plans-intro {
  min-height: 500px;
}

.plans-hero {
  width: min(calc(100% - 40px), 1040px);
  margin: 0 auto;
  padding: 178px 0 100px;
  text-align: center;
}

.plans-hero h1 {
  max-width: 940px;
  margin: 16px auto 24px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.plans-hero > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--landing-muted);
  font-size: 17px;
  line-height: 1.65;
}

.plans-light-flow {
  padding-top: 1px;
}

.plans-page .landing-pricing {
  padding-top: 72px;
}

.plans-consents {
  display: grid;
  margin: 28px 0 0;
  padding: 20px;
  gap: 8px;
  border: 1px solid var(--landing-light-line);
  border-radius: 18px;
}

.plans-consents legend {
  padding: 0 8px;
  color: var(--landing-ink);
  font-weight: 850;
}

.plans-consents label {
  display: grid;
  min-height: 44px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--landing-ink-soft);
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
}

.plans-consents input {
  width: 22px;
  height: 22px;
  margin: 0;
}

.plans-consents a {
  color: inherit;
  text-decoration: underline;
}

.plans-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--landing-ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.landing-plan-card button.landing-button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.landing-plan-card header p {
  min-height: 46px;
  margin: 0;
  color: var(--landing-ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.landing-plan-card-featured header p,
.landing-plan-card-featured .landing-plan-price span,
.landing-plan-card-featured li {
  color: #d8d4ce;
}

.landing-plan-price {
  display: grid;
  margin: 30px 0 24px;
  gap: 7px;
  font-variant-numeric: tabular-nums;
}

.landing-plan-price strong {
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.landing-plan-price span {
  color: var(--landing-ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.landing-plan-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.landing-plan-card li {
  min-height: 48px;
  padding: 14px 0 12px 26px;
  border-top: 1px solid var(--landing-light-line);
  color: var(--landing-ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.landing-plan-card-featured li {
  border-color: rgba(255, 255, 255, 0.16);
}

.landing-plan-card li::before {
  float: left;
  margin-left: -26px;
  color: #a95100;
  content: "✓";
  font-weight: 900;
}

.landing-plan-card-featured li::before {
  color: #f3b85e;
}

.landing-plan-card .landing-button {
  width: 100%;
  margin-top: auto;
}

.landing-button-dark,
.landing-button-outline-dark {
  border: 1px solid #313841;
  background: #313841;
  color: #fffaf2;
}

.landing-button-outline-dark {
  background: #fff;
  color: #313841;
}

.landing-pricing-footnote {
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--landing-ink-soft);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1020px) {
  .landing-pricing-grid {
    grid-template-columns: 1fr;
  }

  .landing-plan-card {
    min-height: 0;
  }

  .landing-plan-card .landing-button {
    margin-top: 16px;
  }
}

@media (max-width: 700px) {
  .landing-page-v2 .landing-pricing {
    padding-top: 64px;
  }

  .landing-pricing-grid {
    margin-top: 28px;
  }

  .landing-plan-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .landing-plan-card h2,
  .landing-plan-card h3 {
    font-size: 30px;
  }

  .landing-plan-price strong {
    font-size: 42px;
  }

  .plans-intro {
    min-height: 430px;
  }

  .plans-hero {
    width: min(calc(100% - 28px), 1040px);
    padding: 138px 0 72px;
  }

  .plans-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .plans-hero > p:last-child {
    font-size: 15px;
  }
}
