:root {
  --bg: #f4f6fb;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #d8e1ef;
  --brand-a: #f63c40;
  --brand-b: #4f62d6;
  --link: #3654c8;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-card: 0 16px 36px rgba(15, 23, 42, 0.09);
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.07);

  /* Spacing (8px grid) */
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-50: 50px;
  --space-64: 64px;
  --space-80: 80px; /* ~column-width gap for feature sections */

  /* Typographic spacing (relative to font-size) */
  --space-line-half: 0.75em;
  --space-line-1: 1em;
  --space-line-2: 2em;
  --space-line-4: 6em; /* ~4 lines at 1.5 line-height, for section separation */
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Manrope', 'Segoe UI', 'SF Pro Text', 'Helvetica Neue', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 0%, #fce8e8 0%, var(--bg) 35%),
    radial-gradient(circle at 95% 10%, #e6ebff 0%, var(--bg) 36%);
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;
}

.bg-orb,
.bg-noise {
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.bg-orb {
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.5;
  will-change: transform;
}

.bg-orb-a {
  width: 38vw;
  height: 38vw;
  top: -12vw;
  left: -8vw;
  background: radial-gradient(circle, #f63c4066 0%, transparent 72%);
  animation: floatA 26s ease-in-out infinite alternate;
}

.bg-orb-b {
  width: 36vw;
  height: 36vw;
  bottom: -12vw;
  right: -8vw;
  background: radial-gradient(circle, #4f62d666 0%, transparent 72%);
  animation: floatB 30s ease-in-out infinite alternate;
}

.bg-noise {
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 1px 1px, #c9d6eb 1px, transparent 0);
  background-size: 4px 4px;
}

@keyframes floatA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, 4vw, 0) scale(1.08); }
}

@keyframes floatB {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-4vw, -3vw, 0) scale(1.08); }
}

.mk-wrap {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px 18px 56px;
}

.landing-page .mk-wrap-landing {
  isolation: isolate;
}

.landing-page .mk-wrap-landing > main,
.landing-page .mk-wrap-landing > .mk-footer {
  position: relative;
  z-index: 1;
}

.landing-page .hero-bg-scene {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: -58px;
  width: 100vw;
  height: clamp(860px, 100vh, 1200px);
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 52%,
    rgba(0, 0, 0, 0.74) 78%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 52%,
    rgba(0, 0, 0, 0.74) 78%,
    rgba(0, 0, 0, 0) 100%
  );
}

.landing-page .hero-bg-scene::before,
.landing-page .hero-bg-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.landing-page .hero-bg-scene::before {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 208, 236, 0.62) 0%, rgba(255, 208, 236, 0) 36%),
    radial-gradient(circle at 76% 12%, rgba(210, 188, 255, 0.6) 0%, rgba(210, 188, 255, 0) 42%),
    linear-gradient(180deg, rgba(239, 230, 255, 0.75) 0%, rgba(236, 225, 255, 0.28) 48%, rgba(236, 225, 255, 0) 100%);
}

.landing-page .hero-bg-scene::after {
  background: linear-gradient(
    180deg,
    rgba(244, 246, 251, 0) 54%,
    rgba(244, 246, 251, 0.68) 84%,
    rgba(244, 246, 251, 0.98) 100%
  );
}

.landing-page .hero-bg-aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.64;
  will-change: transform;
}

.landing-page .hero-bg-aurora-a {
  width: 42vw;
  height: 22vw;
  min-width: 460px;
  min-height: 220px;
  top: -6%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 226, 243, 0.86) 0%, rgba(238, 217, 255, 0.18) 58%, rgba(238, 217, 255, 0) 78%);
  animation: landingAuroraA 20s ease-in-out infinite alternate;
}

.landing-page .hero-bg-aurora-b {
  width: 48vw;
  height: 28vw;
  min-width: 520px;
  min-height: 250px;
  top: 3%;
  right: -16%;
  background: radial-gradient(circle, rgba(222, 207, 255, 0.82) 0%, rgba(198, 171, 255, 0.2) 56%, rgba(198, 171, 255, 0) 79%);
  animation: landingAuroraB 22s ease-in-out infinite alternate;
}

.landing-page .hero-bg-wave {
  position: absolute;
  left: -20vw;
  right: -20vw;
  bottom: -8%;
  border-radius: 50%;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
  filter: blur(1.6px);
}

.landing-page .hero-bg-wave-a {
  height: 128%;
  opacity: 0.74;
  background:
    radial-gradient(132% 108% at 125% -50%, rgba(248, 242, 255, 0.46) 0%, rgba(219, 194, 255, 0.28) 30%, rgba(173, 136, 245, 0.1) 52%, rgba(163, 126, 242, 0) 76%),
    repeating-radial-gradient(ellipse at 125% -50%, rgba(221, 194, 255, 0.3) 0 10px, rgba(211, 182, 255, 0.12) 10px 36px, rgba(195, 160, 250, 0.05) 36px 72px, rgba(182, 141, 245, 0) 72px 192px);
  animation: landingWaveA 19s ease-in-out infinite alternate;
}

.landing-page .hero-bg-wave-b {
  left: -24vw;
  right: -24vw;
  bottom: -14%;
  height: 136%;
  opacity: 0.5;
  background:
    radial-gradient(140% 114% at 125% -50%, rgba(241, 228, 255, 0.24) 0%, rgba(204, 171, 255, 0.18) 34%, rgba(176, 130, 245, 0.07) 52%, rgba(176, 130, 245, 0) 80%),
    repeating-radial-gradient(ellipse at 125% -50%, rgba(210, 180, 255, 0.22) 0 10px, rgba(197, 156, 255, 0.08) 10px 44px, rgba(188, 149, 255, 0.03) 44px 84px, rgba(188, 149, 255, 0) 84px 224px);
  animation: landingWaveB 24s ease-in-out infinite alternate;
}

.landing-page .hero-bg-wave-c {
  left: -30vw;
  right: -30vw;
  bottom: -20%;
  height: 148%;
  opacity: 0.38;
  background:
    radial-gradient(154% 122% at 125% -50%, rgba(238, 222, 255, 0.17) 0%, rgba(196, 155, 255, 0.13) 38%, rgba(166, 118, 235, 0.04) 58%, rgba(166, 118, 235, 0) 84%),
    repeating-radial-gradient(ellipse at 125% -50%, rgba(208, 174, 255, 0.16) 0 10px, rgba(190, 149, 255, 0.04) 10px 48px, rgba(190, 149, 255, 0.02) 48px 96px, rgba(190, 149, 255, 0) 96px 240px);
  animation: landingWaveC 28s ease-in-out infinite alternate;
}

.landing-page .hero-bg-mesh {
  position: absolute;
  inset: 10% -8% 26%;
  opacity: 0.38;
  transform: perspective(980px) rotateX(60deg) translateY(4%);
  transform-origin: center bottom;
  background-image:
    linear-gradient(112deg, rgba(239, 224, 255, 0) 15%, rgba(227, 203, 255, 0.46) 50%, rgba(239, 224, 255, 0) 80%),
    repeating-linear-gradient(100deg, rgba(198, 161, 255, 0.24) 0 1px, rgba(198, 161, 255, 0) 1px 16px),
    repeating-linear-gradient(0deg, rgba(250, 241, 255, 0.2) 0 1px, rgba(250, 241, 255, 0) 1px 18px);
  background-size: 240% 180%, 100% 100%, 100% 100%;
  animation: landingMeshShift 28s linear infinite;
}

.landing-page .hero-bg-particles {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
}

.landing-page .hero-bg-particles-a {
  opacity: 0.72;
  background-image:
    radial-gradient(circle at 8% 22%, rgba(255, 246, 255, 0.92) 0 1px, transparent 2px),
    radial-gradient(circle at 14% 66%, rgba(236, 218, 255, 0.82) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 40%, rgba(250, 236, 255, 0.88) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 72%, rgba(232, 208, 255, 0.74) 0 1.1px, transparent 2.1px),
    radial-gradient(circle at 36% 24%, rgba(251, 240, 255, 0.92) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 54%, rgba(230, 206, 255, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 52% 30%, rgba(255, 244, 255, 0.92) 0 1px, transparent 2px),
    radial-gradient(circle at 60% 68%, rgba(230, 204, 255, 0.72) 0 1.1px, transparent 2.1px),
    radial-gradient(circle at 66% 42%, rgba(252, 243, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 58%, rgba(231, 206, 255, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 34%, rgba(252, 242, 255, 0.88) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 70%, rgba(230, 202, 255, 0.68) 0 1.1px, transparent 2.1px);
  animation: landingParticlesA 24s linear infinite;
}

.landing-page .hero-bg-particles-b {
  opacity: 0.5;
  filter: blur(0.6px);
  background-image:
    radial-gradient(circle at 12% 48%, rgba(244, 229, 255, 0.76) 0 2px, transparent 4px),
    radial-gradient(circle at 30% 34%, rgba(241, 222, 255, 0.62) 0 2px, transparent 4px),
    radial-gradient(circle at 46% 64%, rgba(232, 207, 255, 0.54) 0 2px, transparent 4px),
    radial-gradient(circle at 58% 26%, rgba(245, 231, 255, 0.66) 0 2px, transparent 4px),
    radial-gradient(circle at 74% 44%, rgba(236, 214, 255, 0.54) 0 2px, transparent 4px),
    radial-gradient(circle at 86% 56%, rgba(247, 233, 255, 0.62) 0 2px, transparent 4px);
  animation: landingParticlesB 18s ease-in-out infinite alternate;
}

@keyframes landingAuroraA {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(56px, 24px, 0) scale(1.1);
  }
}

@keyframes landingAuroraB {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-62px, 18px, 0) scale(1.12);
  }
}

@keyframes landingWaveA {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -22px, 0) scale(1.08);
  }
}

@keyframes landingWaveB {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -16px, 0) scale(1.06);
  }
}

@keyframes landingWaveC {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -14px, 0) scale(1.05);
  }
}

@keyframes landingMeshShift {
  from {
    background-position: 0% 0%, 0 0, 0 0;
  }
  to {
    background-position: 100% 0%, -48px 0, 0 -28px;
  }
}

@keyframes landingParticlesA {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-18px, 22px, 0);
  }
}

@keyframes landingParticlesB {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(20px, -16px, 0);
  }
}

.mk-header {
  position: sticky;
  top: 10px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  overflow: visible;
}

.mk-header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(120% 120% at 100% 100%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0) 64%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mk-header::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 34%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
}

.mk-header > * {
  position: relative;
  z-index: 1;
}

.mk-brand {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
  white-space: nowrap;
}

.mk-brand-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
}

.mk-brand-service span {
  line-height: 1;
}

.mk-brand-service img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.mk-brand-by {
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.8;
  transform: translateY(-11px);
}

.mk-brand-panteo {
  display: block;
  height: 18px;
  width: auto;
  transform: translateY(-11px);
}

.mk-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.mk-menu {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
}

.mk-menu > summary {
  list-style: none;
}

.mk-menu > summary::-webkit-details-marker {
  display: none;
}

.mk-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.mk-menu-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(130% 130% at 0% 0%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 68%),
    radial-gradient(130% 130% at 100% 100%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mk-menu-toggle::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.mk-menu-toggle span {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #2f3f5f;
  margin: 2px 0;
}

.mk-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: #334155;
  font-weight: 650;
  font-size: 0.91rem;
  text-decoration: none;
}

.mk-nav a:hover {
  background: #eef3ff;
  border-color: #dbe6ff;
  color: #0f172a;
}

.mk-nav a.active {
  color: #fff;
  border-color: rgba(71, 85, 166, 0.34);
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
}

@media (min-width: 981px) {
  .mk-menu {
    margin-left: auto;
  }

  .mk-menu > summary {
    display: none;
  }

  .mk-menu > .mk-nav,
  .mk-menu:not([open]) > .mk-nav {
    display: flex !important;
    position: static;
    min-width: 0;
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
}

main {
  margin-top: var(--space-24);
  display: grid;
  gap: var(--space-line-4);
}

.landing-flow {
  display: grid;
  gap: var(--space-80);
}

.landing-intro {
  display: grid;
  gap: 20px;
  align-items: start;
  padding: 8px 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  overflow: visible;
  margin-bottom: 14px;
}

.landing-intro::before,
.landing-intro::after {
  content: none;
}

.landing-intro-head {
  position: relative;
  z-index: 1;
}

.landing-intro-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  line-height: 1.2;
  color: #0d1b36;
}

.landing-benefits-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-16);
  margin-top: var(--space-line-1);
  margin-bottom: var(--space-line-2);
  position: relative;
  z-index: 1;
}

.landing-benefit-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  min-width: 0;
}

.landing-benefit-icon {
  width: 186px;
  height: 186px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-bottom: 1em;
  align-self: center;
}

.landing-benefit-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  color: #10213f;
}

.landing-benefit-item p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #3a4f72;
}

.landing-benefit-item a {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3654c8;
  text-decoration: none;
}

.landing-benefit-item a:hover {
  text-decoration: underline;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #ccdaef;
  background: linear-gradient(145deg, #ffffff 0%, #eaf1ff 100%);
  color: #3f58bc;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.icon-circle-sm {
  width: 34px;
  height: 34px;
}

.icon-circle-sm .material-symbols-rounded {
  font-size: 20px;
}

.icon-circle-lg {
  width: 62px;
  height: 62px;
}

.icon-circle-lg .material-symbols-rounded {
  font-size: 34px;
}

/* Feature-section heading icon circle */
.feature-heading-row {
  display: flex;
  align-items: center;
  gap: var(--space-24);
  margin-bottom: var(--space-line-1);
}

.feature-heading-row h3,
.landing-feature-copy .feature-heading-row h3 {
  margin: 0;
}

.icon-circle-feature {
  width: clamp(3.45rem, 4.69vw, 4.91rem);
  height: clamp(3.45rem, 4.69vw, 4.91rem);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-b), var(--brand-a));
  border: none;
  box-shadow: 0 4px 14px rgba(79, 98, 214, 0.24);
  color: #fff;
}

.icon-circle-feature .material-symbols-rounded {
  font-size: clamp(1.44rem, 1.96vw, 2.05rem);
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}

.landing-feature:nth-of-type(even) .icon-circle-feature {
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 4px 14px rgba(197, 47, 51, 0.22);
}

.landing-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: var(--space-80);
  align-items: start;
}

.landing-feature.is-reverse {
  grid-template-columns: minmax(320px, 500px) minmax(0, 1fr);
}

.landing-feature.is-reverse .landing-feature-copy {
  order: 2;
}

.landing-feature.is-reverse .landing-feature-media {
  order: 1;
}

.landing-feature-copy {
  min-width: 0;
}

.landing-feature-copy h3 {
  margin: 0 0 var(--space-line-1);
  font-size: clamp(1.25rem, 1.7vw, 1.78rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.landing-feature-copy .md-content {
  font-size: 1.01rem;
}

.landing-feature-copy .md-content p:first-child {
  font-size: 1.08em;
}

.landing-feature-media {
  min-width: 0;
}

.landing-feature-media .md-figure {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.landing-flow .landing-feature {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  animation: landingFeatureReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.landing-flow .landing-feature:nth-of-type(1) {
  animation-delay: 80ms;
}

.landing-flow .landing-feature:nth-of-type(2) {
  animation-delay: 150ms;
}

.landing-flow .landing-feature:nth-of-type(3) {
  animation-delay: 220ms;
}

.landing-flow .landing-feature:nth-of-type(4) {
  animation-delay: 290ms;
}

.landing-flow .landing-feature:nth-of-type(n + 5) {
  animation-delay: 340ms;
}

.landing-feature-media .md-figure.md-figure-zoomable {
  position: relative;
  isolation: isolate;
  cursor: zoom-in;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.landing-feature-media .md-figure.md-figure-zoomable img {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}

.landing-feature-media .md-figure.md-figure-zoomable:not(.is-zoom-disabled):hover,
.landing-feature-media .md-figure.md-figure-zoomable:not(.is-zoom-disabled):has(.feature-zoom-trigger:focus-visible) {
  transform: translateY(-4px) scale(1.008);
  box-shadow: 0 24px 36px rgba(15, 23, 42, 0.2);
  border-color: #aabbe5;
}

.landing-feature-media .md-figure.md-figure-zoomable:not(.is-zoom-disabled):hover img,
.landing-feature-media .md-figure.md-figure-zoomable:not(.is-zoom-disabled):has(.feature-zoom-trigger:focus-visible) img {
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}

.feature-zoom-trigger {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  z-index: 2;
}

.feature-zoom-trigger:disabled {
  cursor: default;
}

.feature-zoom-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 14% 8%, rgba(249, 134, 143, 0.36) 0%, rgba(249, 134, 143, 0) 56%),
    linear-gradient(165deg, rgba(79, 98, 214, 0.18) 0%, rgba(51, 74, 111, 0.7) 100%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.feature-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.17);
  color: #f4f8ff;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -42%) scale(0.86);
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease, background-color 240ms ease;
}

.feature-zoom-icon .material-symbols-rounded {
  font-size: 30px;
}

.md-figure-zoomable:not(.is-zoom-disabled):hover .feature-zoom-overlay,
.md-figure-zoomable:not(.is-zoom-disabled):has(.feature-zoom-trigger:focus-visible) .feature-zoom-overlay {
  opacity: 1;
}

.md-figure-zoomable:not(.is-zoom-disabled):hover .feature-zoom-icon,
.md-figure-zoomable:not(.is-zoom-disabled):has(.feature-zoom-trigger:focus-visible) .feature-zoom-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.feature-zoom-trigger:focus-visible {
  outline: 0;
}

.feature-zoom-trigger:focus-visible .feature-zoom-overlay {
  opacity: 1;
}

.feature-zoom-trigger:focus-visible .feature-zoom-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  background: rgba(255, 255, 255, 0.28);
}

.md-figure-zoomable.is-zoom-disabled,
.md-figure-zoomable.is-zoom-disabled .feature-zoom-trigger {
  cursor: default;
}

.md-figure-zoomable.is-zoom-disabled .feature-zoom-overlay,
.md-figure-zoomable.is-zoom-disabled .feature-zoom-icon {
  opacity: 0 !important;
  transform: translate(-50%, -42%) scale(0.86) !important;
}

.feature-lightbox {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}

.feature-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 320ms ease, visibility 0s linear 0s;
}

.feature-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 90% at 18% 12%, rgba(249, 134, 143, 0.22) 0%, rgba(249, 134, 143, 0) 58%),
    radial-gradient(95% 95% at 86% 14%, rgba(127, 153, 255, 0.24) 0%, rgba(127, 153, 255, 0) 60%),
    linear-gradient(145deg, rgba(43, 58, 114, 0.82) 0%, rgba(27, 42, 88, 0.88) 100%);
  backdrop-filter: blur(6px) saturate(112%);
  -webkit-backdrop-filter: blur(6px) saturate(112%);
}

.feature-lightbox-stage {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  transform: translateY(22px) scale(0.94);
  opacity: 0;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease;
}

.feature-lightbox.is-open .feature-lightbox-stage {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.feature-lightbox-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(205, 218, 239, 0.5);
  background: #d9e5ff;
  box-shadow: 0 34px 54px rgba(0, 0, 0, 0.36);
  max-height: min(84vh, 920px);
}

.feature-lightbox-figure img {
  display: block;
  max-width: min(100vw - 140px, 1060px);
  max-height: min(84vh, 920px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.feature-lightbox-close {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  margin-top: 8px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.feature-lightbox-close:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.68);
}

.feature-lightbox-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.86);
  outline-offset: 2px;
}

body.feature-lightbox-lock {
  overflow: hidden;
}

.landing-feature-media.media-offset-a .md-figure {
  margin-left: 0;
}

.landing-feature-media.media-offset-b .md-figure {
  margin-right: 0;
}

.pricing-showcase {
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pricing-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.pricing-head p {
  margin: 0;
  color: var(--muted);
  max-width: 66ch;
}

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

.pricing-card {
  border: 1px solid #d8e1ef;
  border-radius: 18px;
  padding: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
}

.pricing-card-featured {
  border-color: #4f62d6;
  box-shadow: 0 12px 28px rgba(79, 98, 214, 0.18);
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pricing-item {
  display: grid;
  gap: 3px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #dbe5f3;
}

.pricing-item span {
  color: #64748b;
  font-size: 12px;
}

.pricing-item strong {
  color: #0f172a;
  font-size: 13px;
  line-height: 1.4;
}

.pricing-item-price {
  border-bottom: 0;
  margin-top: 2px;
}

.pricing-item-price strong {
  font-size: 16px;
  color: #3654c8;
}

.pricing-links {
  margin-top: 14px;
}

.title-block,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.register-block {
  display: grid;
  gap: 14px;
}

.register-form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field > span {
  color: #334155;
  font-size: 0.88rem;
  font-weight: 640;
}

.field strong {
  color: #dd2f40;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #d4deef;
  background: #ffffff;
  color: #0f172a;
  padding: 10px 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: #7b92e9;
  box-shadow: 0 0 0 3px rgba(123, 146, 233, 0.18);
}

.field-full {
  grid-column: 1 / -1;
}

.register-contacts {
  border: 1px dashed #d8e2f3;
  border-radius: 14px;
  padding: 10px 12px 12px;
  margin: 0;
}

.register-contacts legend {
  padding: 0 6px;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 620;
}

.register-captcha-row {
  display: grid;
  gap: 8px;
}

.register-captcha {
  min-height: 78px;
}

.register-note {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
}

.register-error,
.register-success {
  margin: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.92rem;
}

.register-error {
  border: 1px solid #f3b5bd;
  background: #fff5f6;
  color: #9b1c28;
}

.register-success {
  border: 1px solid #b8e3c4;
  background: #f4fff7;
  color: #116329;
}

.register-footnote small {
  color: #64748b;
}

.register-login-link {
  margin: 0;
  font-size: 0.93rem;
}

.register-login-link a {
  color: #3654c8;
  font-weight: 640;
}

.hero-card,
.blog-hero,
.article-hero {
  display: grid;
  border: 1px solid #c8d6ef;
  border-radius: var(--radius-lg);
  background: linear-gradient(132deg, #eef4ff 0%, #dde8ff 52%, #efe3ff 100%);
  box-shadow: 0 24px 50px -24px rgba(15, 23, 42, 0.42);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card {
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-48);
  align-items: start;
  padding: var(--space-24) var(--space-24) var(--space-48) var(--space-24);
}

/* Hero section without panel (landing) */
.hero-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-48);
  align-items: start;
  padding: var(--space-24) 0 var(--space-48);
}

.hero-card::before,
.hero-card::after,
.blog-hero::before,
.blog-hero::after,
.article-hero::before,
.article-hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(56px);
  z-index: 0;
}

.hero-card::before,
.blog-hero::before,
.article-hero::before {
  width: 360px;
  height: 360px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, #f9868f87 0%, transparent 72%);
  animation: heroGlowA 16s ease-in-out infinite alternate;
}

.hero-card::after,
.blog-hero::after,
.article-hero::after {
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -230px;
  background: radial-gradient(circle, #7f99ff87 0%, transparent 72%);
  animation: heroGlowB 18s ease-in-out infinite alternate;
}

.hero-card > *,
.blog-hero > *,
.article-hero > * {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  margin: 0;
  color: #4f62d6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 760;
  font-size: 0.76rem;
}

.hero-card .hero-kicker,
.hero-section .hero-kicker,
.blog-hero .hero-kicker,
.article-hero .hero-kicker {
  color: #425cb3;
}

.hero-card h1,
.hero-section h1,
.title-block h1,
.article-hero h1 {
  margin: 10px 0;
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  line-height: 1.1;
}

.hero-card h1,
.hero-section h1,
.blog-hero h1,
.article-hero h1 {
  color: #0f1f3d;
}

.hero-subtitle,
.title-block p,
.article-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-card .hero-subtitle,
.hero-section .hero-subtitle {
  color: #334a6f;
}

.blog-hero-copy > p:not(.hero-kicker),
.article-hero .article-description {
  color: #334a6f;
}

.hero-card .hero-subtitle::before,
.hero-card .hero-subtitle::after,
.hero-section .hero-subtitle::before,
.hero-section .hero-subtitle::after {
  content: '';
  display: block;
  height: 1.6em;
}

.hero-subtitle p {
  margin: 0;
}

.hero-subtitle p + p {
  margin-top: 10px;
}

.hero-subtitle strong {
  color: #1f355f;
  font-weight: 780;
}

.hero-copy {
  display: grid;
  gap: 10px;
}

.hero-bullets {
  margin: 0;
  padding: 0 0 var(--space-48) 0;
  list-style: none;
  display: grid;
  gap: var(--space-line-half);
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1f355f;
  line-height: 1.45;
}

.hero-cta-row {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 740;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 12px 24px rgba(79, 98, 214, 0.28);
}

.hero-card .btn-primary,
.hero-section .btn-primary,
.blog-hero .btn-primary,
.article-hero .btn-primary {
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(79, 98, 214, 0.34);
}

.hero-card .btn-ghost,
.hero-section .btn-ghost,
.blog-hero .btn-ghost,
.article-hero .btn-ghost {
  color: #1f355f;
  border-color: #b9c9e8;
  background: rgba(255, 255, 255, 0.75);
}

.btn-ghost {
  color: #334155;
  background: #f8faff;
  border-color: #dbe6ff;
}

.hero-image-wrap,
.blog-hero-media,
.article-cover {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #f8faff;
  align-self: start;
}

.hero-card .hero-image-wrap,
.hero-section .hero-image-wrap,
.blog-hero-media,
.article-cover {
  border-color: #c7d6ef;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.2);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes heroGlowA {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(36px, 20px, 0) scale(1.12);
  }
}

@keyframes heroGlowB {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-34px, -24px, 0) scale(1.1);
  }
}

@keyframes landingFeatureReveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.title-block,
.article-card {
  padding: 22px;
}

.blog-hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 18px;
  padding: 22px;
}

.blog-hero-copy p {
  max-width: 64ch;
}

.blog-hero-media {
  display: block;
}

.blog-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.blog-card-link {
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover {
  text-decoration: none;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.blog-card-link:hover .blog-card {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
}

.blog-card-image {
  width: 100%;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #f4f7ff;
}

.blog-card-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

.blog-card-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.blog-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.blog-card-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(79, 98, 214, 0.12);
  color: #3347b6;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 9px;
}

.blog-card-body h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.blog-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.blog-card-footer {
  margin-top: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card-link-label {
  color: #3654c8;
  font-weight: 700;
  font-size: 0.92rem;
}

.blog-card-link-hint {
  color: #94a3b8;
  font-size: 0.75rem;
}

.article-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  padding: 22px;
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.article-breadcrumbs a {
  color: inherit;
}

.article-cover {
  margin: 0;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}

.article-sidebar {
  min-width: 0;
}

.article-sidebar-sticky {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 12px;
}

.article-sidebar-sticky h2 {
  margin: 0;
  font-size: 0.98rem;
}

.article-sidebar-list {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 10px;
  display: grid;
  gap: 6px;
}

.article-sidebar-link {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--ink);
}

.article-sidebar-link:hover {
  background: #eef3ff;
  text-decoration: none;
}

.article-sidebar-link-active {
  background: linear-gradient(135deg, #fef1f1, #eff2ff);
  border: 1px solid #dce5ff;
}

.article-sidebar-date {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-sidebar-title {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 650;
}

.article-sidebar-shortcuts {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 12px;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.article-card {
  padding: 24px;
}

.article-top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.md-content {
  line-height: 1.7;
  color: #1f2937;
}

.md-content h2,
.md-content h3 {
  margin: 26px 0 10px;
  line-height: 1.25;
  color: #0f172a;
}

.md-content p {
  margin: 0 0 14px;
}

.md-content ul,
.md-content ol {
  margin: 0 0 14px;
}

.md-content ul {
  list-style: none;
  padding-left: 0;
}

.md-content ul li {
  position: relative;
  padding-left: calc(1em + 10px);
  margin-bottom: 8px;
}

.md-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-a);
}

.md-content ol {
  padding-left: 24px;
}

.md-content li {
  margin-bottom: 8px;
}

.md-content code {
  background: #f3f6ff;
  border: 1px solid #dde6ff;
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 0.9em;
  white-space: pre-wrap;
}

.md-content blockquote {
  margin: 8px 0 14px;
  padding: 12px 14px;
  border-left: 4px solid var(--brand-b);
  background: #f5f7ff;
  border-radius: 10px;
  color: #334155;
}

.md-figure {
  margin: 18px 0;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  background: #f8faff;
}

.md-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 16px 0;
}

.table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.table-wrap th,
.table-wrap td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid #e2e8f5;
}

.table-wrap thead th {
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


.slides-stack {
  display: grid;
  gap: 14px;
}

.slide-preview {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.slide-preview-inner {
  aspect-ratio: 16 / 9;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 22px;
  padding: 28px 30px;
  background-color: #f4f6fb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: stretch;
}

.slide-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 10px;
}

.slide-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  line-height: 1.08;
}

.slide-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.85rem);
  line-height: 1.35;
}

.slide-copy ul {
  margin: 8px 0 0;
  list-style: none;
  padding-left: 0;
  font-size: clamp(1.04rem, 1.42vw, 1.62rem);
  line-height: 1.42;
}

.slide-copy ul li {
  position: relative;
  padding-left: calc(1em + 10px);
  margin-bottom: 10px;
}

.slide-copy ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-a);
}

.slide-meta {
  margin-top: auto;
  color: #6b7ca8;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.slide-image-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #f8faff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  align-self: start;
}

.slide-image-wrap img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  object-position: center;
}

.slide-preview-cover .slide-preview-inner {
  background-color: #0f1738;
}

.slide-cover-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.slide-cover-product {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 760;
  line-height: 1;
  color: #f5f8ff;
}

.slide-cover-product img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
}

.slide-cover-by {
  color: #a7b5dd;
  font-size: clamp(0.98rem, 1.1vw, 1.2rem);
}

.slide-cover-panteo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.slide-copy-cover h2 {
  color: #f5f8ff;
}

.slide-copy-cover p {
  color: #d5defa;
}

.slide-copy-cover ul {
  color: #edf2ff;
}

.slide-preview-cover .slide-image-wrap {
  border-color: #314287;
  background: #0f1d47;
}

.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 24px;
  color: var(--muted);
}

.mk-footer {
  margin-top: 16px;
  padding: 12px 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .hero-bg-scene::before,
  .landing-page .hero-bg-scene::after,
  .landing-page .hero-bg-scene * {
    animation: none !important;
  }

  .landing-flow .landing-feature {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .landing-feature-media .md-figure.md-figure-zoomable,
  .landing-feature-media .md-figure.md-figure-zoomable img,
  .feature-zoom-overlay,
  .feature-zoom-icon,
  .feature-lightbox,
  .feature-lightbox-stage,
  .feature-lightbox-close {
    transition: none !important;
  }
}

@media (max-width: 1280px) {
  .landing-benefits-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .landing-page .hero-bg-scene {
    top: -42px;
    height: clamp(820px, 142vw, 1240px);
  }

  .landing-page .hero-bg-mesh {
    inset: 14% -12% 30%;
    transform: perspective(840px) rotateX(58deg) translateY(6%);
    opacity: 0.32;
  }

  .landing-flow {
    gap: var(--space-32);
  }

  .landing-intro,
  .landing-feature,
  .landing-feature.is-reverse,
  .hero-card,
  .hero-section,
  .blog-hero,
  .article-hero,
  .slide-preview-inner {
    grid-template-columns: 1fr;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar-sticky {
    position: static;
  }

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

  .landing-feature-media.media-offset-a .md-figure,
  .landing-feature-media.media-offset-b .md-figure {
    margin-left: 0;
    margin-right: 0;
  }

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

  .feature-lightbox {
    padding: 16px;
  }

  .feature-lightbox-stage {
    width: 100%;
  }

  .feature-lightbox-figure img {
    max-width: min(100vw - 32px, 100%);
  }

  .table-wrap table {
    min-width: 620px;
  }

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

@media (max-width: 760px) {
  .table-wrap table {
    min-width: 760px;
  }

}

@media (max-width: 720px) {
  .feature-lightbox-stage {
    display: grid;
    gap: 10px;
    justify-items: end;
  }

  .feature-lightbox-close {
    width: 44px;
    height: 44px;
    margin-top: 0;
  }

  .feature-lightbox-figure img {
    max-width: calc(100vw - 32px);
    max-height: 80vh;
  }
}

@media (max-width: 980px) {
  .mk-header {
    position: sticky;
    top: 10px;
    z-index: 120;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mk-header:has(.mk-menu[open]) {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mk-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    max-width: 86vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    overflow: hidden;
    z-index: 240;
  }

  .mk-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background:
      radial-gradient(130% 130% at 0% 0%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 68%),
      radial-gradient(130% 130% at 100% 100%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 70%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .mk-nav::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 55%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }

  .mk-nav > * {
    position: relative;
    z-index: 1;
  }

  .mk-nav a {
    width: 100%;
    font-size: 0.9rem;
    min-height: 36px;
    display: flex;
    justify-content: flex-start;
  }

  .mk-menu {
    position: relative;
    margin-left: auto;
  }

  .mk-menu[open] {
    z-index: 260;
  }

  .mk-menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .mk-menu:not([open]) .mk-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .landing-page .hero-bg-scene {
    top: -28px;
    height: clamp(960px, 195vw, 1360px);
    -webkit-mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.96) 58%,
      rgba(0, 0, 0, 0.66) 84%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.96) 58%,
      rgba(0, 0, 0, 0.66) 84%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .landing-page .hero-bg-wave-a {
    opacity: 0.84;
  }

  .landing-page .hero-bg-wave-b {
    opacity: 0.56;
  }

  .landing-page .hero-bg-wave-c {
    opacity: 0.4;
  }

  .landing-page .hero-bg-mesh {
    inset: 18% -24% 34%;
    transform: perspective(760px) rotateX(55deg) translateY(9%);
    opacity: 0.28;
  }

  .landing-flow {
    gap: var(--space-24);
  }

  .mk-wrap {
    padding: 12px 10px 34px;
  }

  .mk-header {
    border-radius: 14px;
    padding: 10px;
  }

  .mk-brand {
    max-width: calc(100% - 56px);
  }

  .mk-brand-by,
  .mk-brand-panteo {
    display: none;
  }

  .hero-card,
  .hero-section,
  .title-block,
  .blog-hero,
  .article-hero,
  .article-card {
    padding: var(--space-16);
    border-radius: 16px;
  }

  .hero-section {
    border-radius: 0;
  }

  .btn {
    width: 100%;
  }

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

  .slide-preview-inner {
    aspect-ratio: auto;
    padding: 18px 16px;
    gap: 14px;
  }

  .slide-copy h2 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .slide-copy p {
    font-size: 1rem;
  }

  .slide-copy ul {
    font-size: 1rem;
  }

  .slide-image-wrap,
  .hero-image-wrap,
  .article-cover,
  .blog-hero-media {
    min-height: 200px;
  }

  .slide-cover-brand {
    flex-wrap: wrap;
    row-gap: 6px;
  }
}
