:root {
  --ink: #0a0d10;
  --coal: #0f1316;
  --stone: #f4f1ea;
  --paper: #fff8ee;
  --accent: #111318;
  --accent-2: #4b5cff;
  --accent-3: #111318;
  --line: rgba(15, 20, 26, 0.12);
  --shadow: 0 24px 80px rgba(9, 12, 16, 0.18);
  --hard-shadow: 0 12px 40px rgba(9, 12, 16, 0.12);
  --mx: 50%;
  --my: 25%;
  --bx: 90%;
  --by: -10%;
  --bx2: -10%;
  --by2: 10%;
}

@property --mx {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 50%;
}

@property --my {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 25%;
}

@property --bx {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 90%;
}

@property --by {
  syntax: "<percentage>";
  inherits: true;
  initial-value: -10%;
}

@property --bx2 {
  syntax: "<percentage>";
  inherits: true;
  initial-value: -10%;
}

@property --by2 {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 10%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px circle at var(--bx) var(--by), rgba(75, 92, 255, 0.18), transparent 55%),
    radial-gradient(1000px circle at var(--bx2) var(--by2), rgba(17, 19, 24, 0.08), transparent 50%),
    linear-gradient(180deg, #fbf9f4 0%, #f2eee7 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  animation: ambient-drift 32s ease-in-out infinite;
}

body.cookie-open main {
  padding-bottom: 140px;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 45%),
    linear-gradient(transparent 88%, rgba(0, 0, 0, 0.03) 89%),
    linear-gradient(90deg, transparent 88%, rgba(0, 0, 0, 0.03) 89%);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  animation: noise-pulse 10s ease-in-out infinite;
}

.bg-orbit {
  position: fixed;
  inset: -25vh -30vw auto auto;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(75, 92, 255, 0.18) 0%, rgba(75, 92, 255, 0) 60%);
  pointer-events: none;
  z-index: 0;
  animation: orbit-drift 24s ease-in-out infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(249, 244, 234, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-left: 8px;
  color: rgba(11, 13, 15, 0.6);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nav .cta-link {
  border: 1px solid var(--ink);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 13, 15, 0.18);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  background: rgba(17, 19, 24, 0.08);
}

.lang-icon {
  width: 16px;
  height: 16px;
  fill: rgba(11, 13, 15, 0.75);
}

.lang-code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(11, 13, 15, 0.7);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(11, 13, 15, 0.18);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(11, 13, 15, 0.85);
  border-radius: 2px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 16, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9;
}

.mobile-drawer {
  position: fixed;
  top: 64px;
  right: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(11, 13, 15, 0.12);
  box-shadow: var(--hard-shadow);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 10;
}

.mobile-drawer-inner {
  padding: 14px;
}

.mobile-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-nav .cta-link {
  border: 1px solid rgba(11, 13, 15, 0.2);
}

.menu-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .mobile-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}


.hero-glow {
  position: absolute;
  inset: -20% -10% 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(520px circle at var(--mx) var(--my), rgba(75, 92, 255, 0.28), transparent 62%),
    radial-gradient(620px circle at calc(var(--mx) + 10%) calc(var(--my) + 8%), rgba(11, 13, 18, 0.08), transparent 60%);
  animation: glow-drift 26s ease-in-out infinite, glow-breathe 12s ease-in-out infinite;
  transition: opacity 0.4s ease;
  transform-origin: center;
}


.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 840px;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 84px;
  height: 84px;
  max-width: 84px;
  max-height: 84px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: drop-shadow(0 18px 30px rgba(17, 19, 24, 0.2));
  animation: logo-pulse 6.5s ease-in-out infinite;
}
.hero img:not(.hero-logo),
.hero .hero-sticker,
.hero .hero-illustration,
.hero .hero-ghost,
.hero canvas {
  display: none !important;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 20% -10% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  border: 2px solid rgba(11, 13, 15, 0.12);
  transform: rotate(15deg);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 0 auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 92, 255, 0.18), transparent 65%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  padding: 6px 12px;
  border: 1px solid rgba(11, 13, 15, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.75);
}

.mark {
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 13, 15, 0.18);
  background: rgba(255, 255, 255, 0.85);
}

h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.05;
  margin: 18px 0;
  font-weight: 800;
  text-transform: none;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.4;
  color: rgba(11, 13, 15, 0.55);
  margin: 0;
  text-transform: none;
  letter-spacing: 0.02em;
}

.product-rotate {
  display: inline-block;
  vertical-align: baseline;
  padding: 4px 12px 6px;
  border-radius: 12px;
  background: rgba(17, 19, 24, 0.08);
  box-shadow: inset 0 0 0 1px rgba(11, 13, 15, 0.15);
  text-transform: none;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}


.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.hero-bullets li {
  padding-left: 18px;
  position: relative;
}

.hero-bullets li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-3);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.btn.primary {
  background: #111318;
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: rgba(11, 13, 15, 0.25);
  background: rgba(255, 255, 255, 0.8);
}

.hero-proof {
  font-size: 12px;
  color: rgba(11, 13, 15, 0.6);
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 13, 15, 0.14);
  background: rgba(255, 255, 255, 0.85);
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(11, 13, 15, 0.55);
  text-align: center;
  margin: 0 0 6px;
}

.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--hard-shadow);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -10px 20px auto auto;
  width: 40px;
  height: 6px;
  background: #111318;
  border-radius: 999px;
}

.card-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: rgba(11, 13, 15, 0.6);
}

.card-body {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.6;
}

.card-foot {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(11, 13, 15, 0.6);
}

.ticker {
  background: transparent;
  color: #111318;
  border-top: none;
  border-bottom: none;
  overflow: hidden;
  padding: 8px 0 4px;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  animation: ticker 22s linear infinite;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 10px 18px;
  box-shadow: 0 10px 24px rgba(12, 14, 18, 0.08);
}

.ticker span {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker-icons {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  margin-right: 0;
  padding-right: 36px;
  flex: 0 0 auto;
}

.ticker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ticker-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 19, 24, 0.18);
}

.ticker-icons img {
  height: 28px;
  width: 28px;
  opacity: 0.95;
  display: block;
  filter: none;
  vertical-align: middle;
  object-fit: contain;
}

.price-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card.is-selected {
  outline: 2px solid rgba(75, 92, 255, 0.5);
}

.price-card:focus-visible {
  outline: 2px solid rgba(17, 19, 24, 0.85);
  outline-offset: 2px;
}

.ticker .dot {
  display: inline-block;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  margin: 0 10px;
  opacity: 0.9;
  transform: translateY(-1px);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes glow-drift {
  0% {
    --mx: 46%;
    --my: 24%;
  }
  33% {
    --mx: 62%;
    --my: 28%;
  }
  66% {
    --mx: 40%;
    --my: 18%;
  }
  100% {
    --mx: 54%;
    --my: 26%;
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}


@keyframes ambient-drift {
  0% {
    --bx: 90%;
    --by: -10%;
    --bx2: -10%;
    --by2: 10%;
  }
  50% {
    --bx: 78%;
    --by: 8%;
    --bx2: 2%;
    --by2: 20%;
  }
  100% {
    --bx: 90%;
    --by: -10%;
    --bx2: -10%;
    --by2: 10%;
  }
}

@keyframes orbit-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-6%, 4%) scale(1.05);
  }
}

@keyframes noise-pulse {
  0%,
  100% {
    opacity: 0.18;
  }
  50% {
    opacity: 0.28;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow {
    opacity: 0.2;
    animation: none;
  }
  .hero-logo {
    animation: none;
  }
  body {
    animation: none;
  }
  .bg-orbit,
  body::after {
    animation: none;
  }
}

.section {
  padding: 80px 0;
}

.section.alt {
  background:
    radial-gradient(600px circle at 10% 20%, rgba(75, 92, 255, 0.12), transparent 60%),
    #f4f1ea;
  color: #0a0d10;
}

.section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4.6vw, 46px);
  margin-bottom: 32px;
  font-weight: 800;
}

.section-lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(11, 13, 15, 0.78);
  margin-bottom: 18px;
}

.section-subtitle {
  margin: 28px 0 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 13, 15, 0.6);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-left .section-lead {
  max-width: 560px;
}

.value-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.value-block {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.value-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: rgba(11, 13, 15, 0.7);
  border: 1px solid rgba(11, 13, 15, 0.18);
  background: rgba(255, 255, 255, 0.75);
}

.value-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11, 13, 15, 0.6);
  margin-bottom: 6px;
}

.value-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(11, 13, 15, 0.78);
}

.mindmap-wrap {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
}

.mindmap-graphic {
  width: 100%;
  height: 100%;
}

.mindmap-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.mindmap-line {
  fill: none;
  stroke: rgba(11, 13, 15, 0.16);
  stroke-width: 0.8;
  stroke-linecap: round;
}

.mindmap-line.spine {
  stroke: rgba(11, 13, 15, 0.22);
  stroke-width: 1.05;
}

.mindmap-center {
  font-size: 18px;
  font-weight: 700;
  fill: rgba(11, 13, 15, 0.92);
}

.mindmap-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: rgba(11, 13, 15, 0.55);
}

.mindmap-label {
  font-size: 12px;
  font-weight: 600;
  fill: rgba(11, 13, 15, 0.7);
}

.mindmap-item {
  font-size: 10px;
  fill: rgba(11, 13, 15, 0.5);
}

@media (max-width: 900px) {
  .mindmap-item {
    font-size: 9px;
    opacity: 0.7;
  }
}
@media (max-width: 980px) {
  .about-split {
    grid-template-columns: 1fr;
  }
}

.how-grid .panel {
  padding: 20px;
}

.how-grid h4 {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 13, 15, 0.55);
}

.mini-diagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11, 13, 15, 0.12);
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11, 13, 15, 0.65);
}

.mini-diagram .arrow {
  font-weight: 800;
}

.capability-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.capability-tile {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 19, 24, 0.08);
  font-size: 15px;
  line-height: 1.45;
}

.cap-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 1px;
}

@media (max-width: 720px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .mini-diagram {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

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

.panel {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--hard-shadow);
}

.card-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 12px;
  color: #4b5cff;
}

.section.alt .panel {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  color: #0a0d10;
  box-shadow: var(--hard-shadow);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.checklist {
  display: grid;
  gap: 14px;
}

.check {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.05);
  font-weight: 600;
}

.section.alt .check {
  background: rgba(255, 255, 255, 0.1);
}

.example {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--hard-shadow);
  font-size: 18px;
  line-height: 1.6;
}

.example-result {
  margin-top: 18px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--hard-shadow);
  font-size: 14px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
}

.pricing-table th {
  background: rgba(0, 0, 0, 0.04);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.pricing-table th:nth-child(n+2) {
  text-align: center;
}

.pricing-table td:nth-child(n+2) {
  text-align: center;
  font-weight: 700;
}

.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--hard-shadow);
  position: relative;
}

.price-card.highlight {
  border: 2px solid var(--accent);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.price-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #111318;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.price-name {
  font-weight: 700;
  font-size: 18px;
}

.price-value {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin: 12px 0;
}

.price-desc {
  font-size: 14px;
  color: rgba(11, 13, 15, 0.6);
  margin-bottom: 16px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.price-card li::before {
  content: "• ";
}

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

.chips span {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.section.alt .chips span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.section.alt .faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.cta {
  background: linear-gradient(120deg, rgba(25, 240, 165, 0.18), rgba(255, 255, 255, 0.5));
}

.lead-form {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--hard-shadow);
}

.lead-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-loader {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(11, 13, 15, 0.6);
}

.form-loader img {
  width: 18px;
  height: 18px;
}

.form-loader.is-visible {
  display: inline-flex;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.lead-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.lead-form legend {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}

.lead-form .radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.lead-form .radio-option input {
  accent-color: #111318;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: #111318;
  box-shadow: 0 0 0 2px rgba(17, 19, 24, 0.12);
}

.lead-form textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 12px;
  color: rgba(11, 13, 15, 0.6);
}

.form-hint {
  font-size: 12px;
  color: rgba(11, 13, 15, 0.6);
  text-transform: none;
  letter-spacing: 0;
}

.note {
  font-size: 13px;
  color: rgba(11, 13, 15, 0.6);
  margin-top: 16px;
}

.deliverables {
  text-align: center;
}

.section-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-steps .step {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(11, 13, 15, 0.6);
  margin-bottom: 8px;
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.small {
  font-size: 12px;
  color: rgba(245, 247, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 13, 15, 0.12);
  box-shadow: var(--hard-shadow);
  z-index: 50;
  max-width: min(860px, calc(100% - 32px));
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(11, 13, 15, 0.7);
}

.cookie-text strong {
  font-weight: 700;
  color: rgba(11, 13, 15, 0.9);
}

.cookie-banner .btn {
  padding: 10px 18px;
  font-size: 11px;
}

.cookie-text [data-lang] {
  display: none;
}

.cookie-banner button[data-lang] {
  display: none;
}

html[data-active-lang="en"] .cookie-text [data-lang="en"],
html[data-active-lang="ru"] .cookie-text [data-lang="ru"] {
  display: inline;
}

html[data-active-lang="en"] .cookie-banner button[data-lang="en"],
html[data-active-lang="ru"] .cookie-banner button[data-lang="ru"] {
  display: inline-flex;
}

[data-lang] {
  display: none;
}

html[data-active-lang="en"] [data-lang="en"],
html[data-active-lang="ru"] [data-lang="ru"] {
  display: block;
}

html[data-active-lang="en"] .nav [data-lang="en"],
html[data-active-lang="ru"] .nav [data-lang="ru"],
html[data-active-lang="en"] .hero-actions [data-lang="en"],
html[data-active-lang="ru"] .hero-actions [data-lang="ru"] {
  display: inline-flex;
}

html[data-active-lang="en"] .hero-proof [data-lang="en"],
html[data-active-lang="ru"] .hero-proof [data-lang="ru"] {
  display: inline;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .grid-3,
  .grid-4,
  .grid-2,
  .pricing-grid,
  .faq-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .site-header .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 90px;
  }

  .hero::before {
    display: none;
  }

  .header-inner {
    padding: 12px 0;
    gap: 10px;
  }

  .brand {
    font-size: 17px;
  }

  .brand span {
    display: none;
  }

  .lang-toggle {
    padding: 4px 8px;
  }

  .menu-toggle {
    padding: 6px 8px;
  }

  .hero-logo {
    width: 64px;
    height: 64px;
  }

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

  .price-card.highlight {
    transform: none;
  }

  .ticker-track {
    animation-duration: 28s;
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .brand {
    order: 1;
    font-size: 18px;
  }

  .brand span {
    display: block;
    margin: 4px 0 0;
    letter-spacing: 0.14em;
  }

  .lang-toggle {
    order: 2;
    margin-left: auto;
  }

  .header-inner > .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .mobile-drawer .nav {
    display: flex;
    order: 3;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .mobile-drawer .nav a {
    white-space: nowrap;
    padding: 6px 9px;
  }

  .mobile-drawer .nav .cta-link {
    display: none;
  }

  .mobile-drawer .nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 96px 0 64px;
  }

  .hero-center::before {
    content: "";
    position: absolute;
    inset: -18px -12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(11, 13, 15, 0.08);
    border-radius: 24px;
    z-index: -1;
  }

  h1 {
    font-size: clamp(30px, 7vw, 44px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .ticker-track {
    padding: 8px 14px;
  }

  .ticker-icons {
    gap: 20px;
    padding-right: 20px;
  }

  .ticker-icon {
    width: 30px;
    height: 30px;
  }

  .ticker-icons img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }

  body.cookie-open main {
    padding-bottom: 180px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    transform: none;
    bottom: max(12px, env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-banner .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 22px;
  }

  .section-lead {
    font-size: 16px;
  }

  .about-left .section-lead {
    max-width: 100%;
  }

  .mindmap-wrap {
    min-height: 520px;
  }

  .mindmap-center {
    font-size: 20px;
  }

  .mindmap-sub {
    font-size: 10px;
  }

  .mindmap-label {
    font-size: 12px;
  }

  .mindmap-item {
    font-size: 10px;
  }

  .price-value {
    font-size: 32px;
  }

  .price-card {
    padding: 22px;
  }

  .lead-form {
    padding: 22px;
  }

  .lead-form label {
    letter-spacing: 0.12em;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    font-size: 13px;
  }
}

@media (min-width: 900px) {
  body.cookie-open main {
    padding-bottom: 0;
  }

  .cookie-banner {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1100px, 90vw);
  }

  .hero-logo {
    width: 56px;
    height: 56px;
  }

  .mark {
    font-size: 10px;
    letter-spacing: 0.3em;
  }

  .hero-proof {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 6px 10px;
  }

  .ticker-track {
    padding: 6px 12px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding: 12px 0;
    gap: 10px;
  }

  .brand {
    font-size: 17px;
  }

  .brand span {
    display: none;
  }

  .lang-toggle {
    padding: 4px 8px;
  }

  .menu-toggle {
    padding: 6px 8px;
  }

  .hero::before {
    display: none;
  }

  .pricing-table-wrap {
    overflow-x: visible;
  }

  .pricing-table {
    table-layout: fixed;
    font-size: 11px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 8px 6px;
  }

  .pricing-table th {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .pricing-table th:first-child,
  .pricing-table td:first-child {
    width: 46%;
  }

  .pricing-table th:nth-child(n+2),
  .pricing-table td:nth-child(n+2) {
    width: 18%;
  }

  .pricing-table td {
    word-break: break-word;
    hyphens: auto;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .header-inner > .nav {
    display: none;
  }

  .lang-toggle {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .mindmap-wrap {
    min-height: 520px;
  }

  .mindmap-svg {
    transform: scale(0.92);
    transform-origin: center top;
  }

  .mindmap-center {
    font-size: 20px;
  }

  .mindmap-sub {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .mindmap-label {
    font-size: 11px;
  }

  .mindmap-item {
    font-size: 9px;
  }
}
