/* Course CRM landing — light white / purple, alternating section bands */

:root {
  --violet-950: #1e1033;
  --violet-900: #2d1b4e;
  --violet-700: #5b21b6;
  --violet-600: #6d28d9;
  --violet-500: #7c3aed;
  --violet-400: #8b5cf6;
  --violet-200: #ddd6fe;
  --violet-100: #ede9fe;
  --violet-50: #f5f3ff;

  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-150: #ececef;
  --gray-200: #e4e4e7;
  --gray-500: #71717a;
  --gray-700: #3f3f46;
  --gray-900: #18181b;

  --surface-white: #ffffff;
  --surface-gray: #f3f2f7;
  --surface-lavender: #f7f5fc;
  --surface-cta: linear-gradient(165deg, #f5f3ff 0%, #ede9fe 45%, #ddd6fe 100%);

  --text: var(--gray-900);
  --text-soft: var(--gray-500);
  --accent: var(--violet-600);
  --accent-hover: var(--violet-700);
  --accent-soft: rgba(109, 40, 217, 0.08);
  --accent-border: rgba(109, 40, 217, 0.22);
  --stroke: var(--gray-200);
  --stroke-violet: rgba(124, 58, 237, 0.12);

  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 20px rgba(24, 24, 27, 0.06);
  --shadow-md: 0 12px 40px rgba(24, 24, 27, 0.08);
  --shadow-violet: 0 16px 48px rgba(109, 40, 217, 0.12);

  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Sans", var(--font);
  --shell: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--surface-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* Zoomable images */
.zoomable-wrapper {
  position: relative;
  display: block;
  border-radius: inherit;
  overflow: hidden;
}

.zoomable-wrapper img {
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.zoomable-wrapper:hover img,
.zoomable-wrapper:focus-within img {
  opacity: 0.85;
}

.zoomable-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  margin: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.35), transparent 65%);
  color: #fff;
  cursor: zoom-in;
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.zoomable-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.zoomable-wrapper:hover .zoomable-trigger,
.zoomable-wrapper:focus-within .zoomable-trigger {
  opacity: 1;
  transform: scale(1);
}

.zoomable-trigger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(24, 24, 27, 0.82);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.zoomable-trigger__icon svg {
  display: block;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(10px);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-violet);
  background: #0b0b12;
}

.image-lightbox__inner img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
}

.image-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.image-lightbox__close:hover {
  background: rgba(15, 23, 42, 1);
}

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

/* Very subtle fixed decoration (light purple) */
.bg-deco {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 100% -10%, rgba(124, 58, 237, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(139, 92, 246, 0.06), transparent 45%);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Alternating full-width section backgrounds */
.band {
  position: relative;
  z-index: 1;
}

.band--white {
  background: var(--surface-white);
}

.band--gray {
  background: var(--surface-gray);
}

.band--lavender {
  background: var(--surface-lavender);
}

.band--purple {
  background: var(--surface-cta);
}

.band--white + .band--white,
.band--gray + .band--gray {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand--footer .brand__text {
  display: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  box-shadow: 0 6px 24px rgba(109, 40, 217, 0.28);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.brand__tag {
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}

.nav {
  display: none;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  margin: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger:focus-visible {
  color: var(--accent);
  background: var(--accent-soft);
  outline: none;
}

.nav-dropdown__chev {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentcolor;
  opacity: 0.75;
  transition: transform 0.2s var(--ease);
}

.nav-dropdown:hover .nav-dropdown__chev,
.nav-dropdown:focus-within .nav-dropdown__chev {
  transform: rotate(180deg);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--surface-white);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.2s var(--ease),
    visibility 0.2s,
    transform 0.2s var(--ease);
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--gray-700);
  transition:
    color 0.15s,
    background 0.15s;
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a:focus-visible {
  color: var(--accent);
  background: var(--accent-soft);
  outline: none;
}

.nav-dropdown:nth-last-child(2) .nav-dropdown__panel {
  left: auto;
  right: 0;
}

.nav-static {
  list-style: none;
}

.nav-static__link {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--gray-700);
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.nav-static__link:hover,
.nav-static__link:focus-visible {
  color: var(--accent);
  background: var(--accent-soft);
  outline: none;
}

.header__actions {
  display: none;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--surface-white);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--gray-900);
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 24px 20px;
  gap: 4px;
  border-bottom: 1px solid var(--stroke);
  background: var(--surface-white);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__group {
  padding: 8px 0 4px;
  border-bottom: 1px solid var(--gray-150);
}

.mobile-nav__group:last-of-type {
  border-bottom: none;
}

.mobile-nav__label {
  display: block;
  padding: 6px 0 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.mobile-nav a {
  display: block;
  padding: 10px 0 10px 8px;
  font-weight: 500;
  color: var(--gray-700);
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav > a:not(.btn) {
  padding-top: 14px;
  font-weight: 600;
  color: var(--violet-600);
}

@media (min-width: 880px) {
  .nav,
  .header__actions {
    display: flex;
  }

  .burger {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s var(--ease),
    box-shadow 0.2s,
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--violet-600), var(--violet-500));
  color: #fff;
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.32);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--violet-700), var(--violet-600));
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(109, 40, 217, 0.38);
}

.btn--ghost {
  border-color: var(--stroke);
  color: var(--gray-900);
  background: var(--surface-white);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn--block {
  width: 100%;
  margin-top: 8px;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 10vw, 120px) 0 clamp(64px, 12vw, 120px);
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
}

.hero.band--white {
  background: linear-gradient(180deg, #ffffff 0%, #faf9ff 55%, #ffffff 100%);
}

.hero__grid {
  display: grid;
  gap: clamp(32px, 6vw, 56px);
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1.05fr;
  }
}

.kicker {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-600);
}

.hero__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--gray-900);
}

.hero__line {
  display: block;
}

.hero__line--accent {
  background: linear-gradient(120deg, var(--violet-700), var(--violet-500), var(--violet-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__line--sub {
  margin-top: 0.12em;
  font-size: 0.58em;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gray-700);
  line-height: 1.25;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0 !important;
  color: var(--violet-700);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  text-transform: none !important;
}

.hero__lead {
  margin: 0 0 32px;
  max-width: 440px;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-soft);
}

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

.hero__visual {
  justify-self: center;
  width: 100%;
  max-width: 520px;
}

.hero-slider .scenario-slide {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-slider .hero-slide img {
  width: 100%;
  height: min(500px, 72vh);
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: var(--radius-lg);
}

.hero-slider .scenario-slider__controls {
  margin-top: 14px;
}

.hero-slider .scenario-slider__nav,
.hero-slider .scenario-slider__dot {
  border: 0;
}

/* Frames */
.frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--surface-white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.band--gray .frame,
.band--lavender .frame {
  background: #fff;
  border-color: var(--gray-200);
}

.frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.2),
    transparent 42%,
    rgba(167, 139, 250, 0.12)
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(12px, 3vw, 28px);
}

.frame--lg {
  min-height: 260px;
}

.frame--md {
  min-height: 200px;
}

.frame--sm {
  min-height: 110px;
  border-radius: var(--radius);
}

/* Изображение уже внутри белой карточки / белой полосы — убираем вторую белую рамку */
.bento__item .frame,
.band--white .split__visual .frame,
.hero.band--white .frame {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.bento__item .frame::before,
.band--white .split__visual .frame::before,
.hero.band--white .frame::before {
  display: none;
}

.bento__item .frame img,
.band--white .split__visual .frame img,
.hero.band--white .frame img {
  padding: 0;
  border-radius: inherit;
}

/* Strip */
.strip {
  position: relative;
  z-index: 1;
  padding: 28px 0 40px;
  border-block: 1px solid var(--stroke-violet);
}

.strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-700);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.band--gray .pill {
  background: var(--surface-white);
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 11vw, 128px) 0;
}

.section--tight {
  padding-top: clamp(44px, 7vw, 80px);
}

.section__head {
  margin-bottom: clamp(28px, 4vw, 44px);
  text-align: center;
}

.section__title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 720px;
  margin-inline: auto;
  color: var(--gray-900);
}

.section__sub {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.section__sub--left {
  margin-left: 0;
  margin-right: 0;
  max-width: 520px;
}

.section--compact {
  padding-top: clamp(48px, 8vw, 88px);
  padding-bottom: clamp(48px, 8vw, 88px);
}

/* Outcomes (uteach-style scenarios) */
.outcomes {
  display: grid;
  gap: 18px;
}

@media (min-width: 800px) {
  .outcomes {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.outcome {
  padding: 22px 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--surface-white);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.outcome:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-violet);
}

.outcome__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.outcome__why {
  margin: 0 0 8px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--gray-700);
}

.outcome__why strong {
  color: var(--violet-700);
  font-weight: 700;
}

.outcome__txt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-soft);
}

/* Bento */
.bento {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento__item--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(130px, 180px) 1fr;
    gap: 22px;
    align-items: center;
  }
}

.bento__item {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--surface-white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}

.bento__item:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-violet);
  transform: translateY(-3px);
}

.bento__item--accent {
  border-color: var(--accent-border);
  background: linear-gradient(145deg, #ffffff, var(--violet-50));
}

.bento__body h3,
.bento__item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.bento__body p,
.bento__item p,
.bento__why {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--gray-700);
}

.bento__why strong {
  color: var(--violet-700);
  font-weight: 700;
}

.bento__visual {
  margin-bottom: 14px;
}

@media (min-width: 720px) {
  .bento__item--wide .bento__visual {
    margin-bottom: 0;
  }
}

.band--gray .bento__item,
.band--lavender .bento__item {
  background: #fff;
}

/* Customization slider */
.customization-slider {
  margin-top: 16px;
}

.customization-slide {
  max-width: 100%;
}

.customization-slide img {
  display: block;
  width: 100%;
  height: clamp(250px, 38vw, 520px);
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-lg) - 4px);
  margin-bottom: 14px;
}

/* Split */
.split {
  display: grid;
  gap: clamp(28px, 5vw, 44px);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split--reverse .split__visual {
    order: 2;
  }

  .split--reverse .split__copy {
    order: 1;
  }
}

.split__copy .section__title {
  margin-inline: 0;
  text-align: left;
}

.ticks {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ticks li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.ticks li strong {
  color: var(--gray-900);
  font-weight: 600;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--violet-600), var(--violet-400));
  box-shadow: 0 2px 10px rgba(109, 40, 217, 0.35);
}

/* CTA section on purple band */
.section--cta {
  padding-bottom: clamp(80px, 12vw, 140px);
}

.band--purple.section--cta {
  border-top: 1px solid var(--stroke-violet);
}

.cta__inner {
  text-align: center;
  padding: clamp(36px, 7vw, 64px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-violet);
  backdrop-filter: blur(8px);
}

.cta__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 620px;
  margin-inline: auto;
  color: var(--violet-950);
}

.cta__lead {
  margin: 0 0 22px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--violet-900);
  opacity: 0.82;
  max-width: 480px;
  margin-inline: auto;
}

.cta__hint {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--violet-900);
  opacity: 0.75;
}

/* How it works — numbered steps */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  max-width: 880px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.step {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--surface-white);
  box-shadow: var(--shadow-sm);
}

.step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-600), var(--violet-500));
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.25);
}

.step__title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.step__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-soft);
}

/* Launch */
.launch {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .launch {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    align-items: start;
  }

  .launch__card {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .launch__visual {
    grid-column: 2;
    grid-row: 1;
  }

  .launch__visual img {
    padding: 0;
  }

  .launch__support {
    grid-column: 2;
    grid-row: 2;
  }
}

.launch__card,
.launch__support {
  padding: clamp(22px, 3.5vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--surface-white);
  box-shadow: var(--shadow-sm);
}

.band--gray .launch__card,
.band--gray .launch__support {
  border-color: var(--gray-200);
}

.launch__text {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.97rem;
}

.launch__support-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gray-900);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 36px 0 44px;
  border-top: 1px solid var(--stroke);
  background: var(--surface-white);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 720px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer__legal {
  margin: 10px 0 0;
  max-width: 520px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-soft);
}

.footer__copy {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer__site {
  margin: 6px 0 0;
  font-size: 0.9rem;
}

.footer__site a {
  font-weight: 600;
  color: var(--violet-600);
}

.footer__site a:hover {
  color: var(--violet-700);
}

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

.link-muted {
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color 0.2s;
}

.link-muted:hover {
  color: var(--accent);
}

/* Scroll reveal */
.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scenario slider */
.scenario-slider {
  margin-top: 20px;
}

.scenario-slider__viewport {
  overflow: hidden;
}

.scenario-slider__track {
  display: flex;
  will-change: transform;
  transition: transform 0.6s var(--ease);
}

.scenario-slide {
  flex: 0 0 100%;
}

.scenario-slide__visual {
  margin-bottom: 14px;
  border-radius: calc(var(--radius-lg) - 4px);
  background: #fff;
  overflow: hidden;
}

.scenario-slide__visual img {
  width: 100%;
  height: clamp(240px, 34vw, 420px);
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.scenario-slide__meta {
  padding: 0 22px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.scenario-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--violet-700);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 720px) {
  .scenario-slide__visual img {
    height: 600px;
  }
}

.scenario-slider__controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.scenario-slider__nav {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--surface-white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  color: var(--gray-900);
  transition:
    transform 0.15s var(--ease),
    box-shadow 0.2s,
    border-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scenario-slider__nav:hover,
.scenario-slider__nav:focus-visible {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-violet);
  outline: none;
  transform: translateY(-1px);
}

.scenario-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--accent-border);
  background: #fff;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.scenario-slider__dot.is-active {
  background: linear-gradient(135deg, var(--violet-600), var(--violet-500));
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
}

.scenario-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .scenario-slider__track {
    transition: none;
  }
}

/* Languages */
.lang-grid {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

@media (min-width: 900px) {
  .lang-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch; /* Make both cards equal height */
  }
}

.lang-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: var(--surface-white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.lang-card--emphasis {
  border-color: var(--accent-border);
  background: linear-gradient(145deg, #ffffff, var(--violet-50));
}

.lang-card__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.lang-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.lang-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.lang-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  background: rgba(255, 255, 255, 0.92);
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    border-color 0.18s var(--ease);
}

.lang-item:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.14);
}

.lang-item__flag {
  width: 42px;
  height: 28px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: #fff;
}

.lang-item__name {
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--gray-900);
  line-height: 1.2;
  display: inline-block;
  white-space: nowrap;
}

.lang-item__native {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.2;
  display: inline-block;
  white-space: nowrap;
  margin-left: 6px;
}

.ticks--lang {
  margin-top: 18px;
}
