:root {
  --ink: #17132c;
  --ink-soft: #5f5a72;
  --paper: #f7f5ff;
  --white: #ffffff;
  --violet: #5b3df0;
  --violet-dark: #281a73;
  --blue: #495fba;
  --cyan: #4ce6e6;
  --lime: #d9ff4f;
  --yellow: #ffd72e;
  --orange: #ff7a3d;
  --pink: #ff6fcf;
  --line: rgba(23, 19, 44, 0.13);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 44px;
  --shadow: 0 28px 90px rgba(35, 23, 92, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --font: Inter, Manrope, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: var(--lime);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em,
h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 136px);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding-block: 18px;
  color: var(--white);
  transition: padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(25, 17, 62, 0.86);
  box-shadow: 0 10px 45px rgba(21, 14, 60, 0.18);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 13px;
  box-shadow: 0 10px 30px rgba(16, 10, 48, 0.18);
  text-decoration: none;
}

.brand__logo {
  width: 152px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  opacity: 0.82;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 43px;
  padding: 10px 18px;
  border-radius: 13px;
  font-size: 0.84rem;
}

.button--ink {
  color: var(--ink);
  background: var(--white);
}

.button--lime {
  min-width: 224px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 44px rgba(14, 13, 35, 0.24);
}

.button--lime:hover {
  box-shadow: 0 24px 54px rgba(14, 13, 35, 0.32);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 25px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--lime);
}

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  align-items: center;
  color: var(--white);
  background: #5069bd;
  isolation: isolate;
  overflow: hidden;
}

.hero__image,
.hero__veil {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(37, 24, 99, 0.98) 0%, rgba(54, 38, 132, 0.91) 34%, rgba(58, 49, 137, 0.32) 63%, rgba(58, 49, 137, 0.02) 100%),
    linear-gradient(0deg, rgba(35, 25, 89, 0.64) 0%, transparent 38%);
}

.hero__orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.74;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__orb--one {
  top: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 45% 45%, rgba(134, 89, 255, 0.75), transparent 67%);
}

.hero__orb--two {
  bottom: 80px;
  left: 43%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(65, 223, 255, 0.28), transparent 69%);
}

.hero__content {
  padding-block: 130px 125px;
}

.hero__copy {
  width: min(660px, 61vw);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 6.4vw, 6.75rem);
  line-height: 0.9;
}

.hero h1 em {
  color: var(--lime);
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.48;
}

.hero__promise {
  max-width: 585px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.96rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  margin-left: 8px;
  color: var(--lime);
}

.hero__facts {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 54px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.17);
  list-style: none;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.hero__facts li {
  display: grid;
  gap: 3px;
  padding: 16px 17px;
  background: rgba(38, 27, 98, 0.54);
}

.hero__facts strong {
  color: var(--lime);
  font-size: 1.08rem;
}

.hero__facts span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.71rem;
  line-height: 1.3;
}

.hero__language-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 20px;
  color: var(--ink);
  background: var(--lime);
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  font-weight: 850;
  letter-spacing: 0.03em;
}

.hero__language-rail i {
  color: var(--violet);
  font-style: normal;
}

.problem {
  background: var(--white);
}

.problem__heading {
  display: grid;
  grid-template-columns: 1.65fr 0.65fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 64px;
}

.problem h2,
.section-heading h2,
.showcase h2,
.request h2,
.faq h2 {
  font-size: clamp(2.8rem, 5.3vw, 5.4rem);
}

.problem mark {
  padding: 0 0.08em 0.07em;
  color: var(--ink);
  background: linear-gradient(transparent 68%, var(--yellow) 68%);
}

.problem__heading > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

.dialogue__card {
  min-width: 0;
  min-height: 310px;
  padding: clamp(25px, 3.6vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.dialogue__card--before {
  color: #5f5a70;
  background: #f1eff6;
}

.dialogue__card--after {
  border-color: transparent;
  background: var(--lime);
  box-shadow: var(--shadow);
}

.dialogue__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.dialogue__label span {
  font-weight: 850;
}

.dialogue__label small {
  color: inherit;
  opacity: 0.66;
}

.voice-row {
  display: flex;
  align-items: center;
  gap: 17px;
}

.voice-row p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.7vw, 2.25rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.voice-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--violet);
  font-size: 0.74rem;
  font-weight: 900;
}

.wave {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 5px;
  margin: 18px 0 28px 61px;
}

.wave i {
  display: block;
  width: 4px;
  height: 14px;
  border-radius: 99px;
  background: var(--violet);
}

.wave i:nth-child(3n + 1) { height: 28px; }
.wave i:nth-child(4n + 2) { height: 38px; }
.wave i:nth-child(5n) { height: 22px; }
.wave--muted { opacity: 0.38; }

.dialogue__card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 0.84rem;
  list-style: none;
}

.dialogue__card li::before {
  margin-right: 8px;
  content: "—";
}

.dialogue__arrow {
  position: relative;
  z-index: 2;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--violet);
  font-size: 1.8rem;
  transform: translateX(-8px);
}

.scope {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(96, 69, 233, 0.42), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(52, 198, 233, 0.15), transparent 23%),
    #15102b;
  overflow: hidden;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 62px;
}

.section-heading em {
  color: var(--lime);
}

.section-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1rem;
  line-height: 1.65;
}

.section-heading--dark > p {
  color: var(--ink-soft);
}

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

.scope-card {
  position: relative;
  min-height: 290px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.scope-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.scope-card::after {
  position: absolute;
  right: -28px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--card-color);
  content: "";
  filter: blur(35px);
  opacity: 0.36;
}

.scope-card--yellow { --card-color: var(--yellow); }
.scope-card--cyan { --card-color: var(--cyan); }
.scope-card--violet { --card-color: #9f83ff; }
.scope-card--orange { --card-color: var(--orange); }
.scope-card--pink { --card-color: var(--pink); }
.scope-card--lime { --card-color: var(--lime); }

.scope-card__number {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.73rem;
  font-weight: 800;
}

.scope-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 20px 0 31px;
  place-items: center;
  border-radius: 17px;
  color: var(--ink);
  background: var(--card-color);
  font-size: 1.15rem;
  font-weight: 900;
  transform: rotate(-3deg);
}

.scope-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.scope-card p {
  max-width: 290px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.91rem;
}

.scope-note {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 24px;
  margin-top: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(217, 255, 79, 0.29);
  border-radius: var(--radius-sm);
  background: rgba(217, 255, 79, 0.08);
}

.scope-note strong {
  color: var(--lime);
}

.scope-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.showcase {
  background: var(--white);
}

.showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.showcase__media,
.showcase__copy {
  min-width: 0;
}

.showcase__media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  background: #f2f2f2;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1.3deg);
}

.showcase__media img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 28% center;
}

.showcase__media figcaption {
  position: absolute;
  right: 18px;
  bottom: 17px;
  padding: 7px 11px;
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(23, 19, 44, 0.66);
  font-size: 0.65rem;
  backdrop-filter: blur(8px);
}

.showcase h2 em {
  color: var(--violet);
}

.showcase__lead {
  margin: 28px 0 32px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.68;
}

.rewrite-example {
  display: grid;
  gap: 1px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line);
  overflow: hidden;
}

.rewrite-example div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
}

.rewrite-example small {
  color: var(--ink-soft);
  font-weight: 700;
}

.rewrite-example s {
  color: #8b8699;
}

.rewrite-example strong {
  color: var(--violet);
  font-size: 1.07rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 670;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.music {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(76, 230, 230, 0.22), transparent 27%),
    radial-gradient(circle at 91% 84%, rgba(255, 111, 207, 0.24), transparent 30%),
    linear-gradient(145deg, #17102f 0%, #29155c 52%, #481f74 100%);
  overflow: hidden;
}

.music::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.015);
  content: "";
}

.music__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(44px, 7vw, 98px);
  align-items: center;
}

.music__copy,
.music__media {
  min-width: 0;
}

.music h2 {
  max-width: 680px;
}

.music h2 em {
  color: var(--cyan);
}

.music__lead {
  max-width: 650px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.music__features {
  display: grid;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.music__features article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding-block: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.music__features article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.68rem;
  font-weight: 900;
  transform: rotate(-3deg);
}

.music__features h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.music__features p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.88rem;
  line-height: 1.55;
}

.music__commands {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.music__commands span {
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(76, 230, 230, 0.28);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(76, 230, 230, 0.08);
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.music__media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: #2b2450;
  box-shadow: 0 34px 100px rgba(5, 2, 18, 0.42);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.music__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(16, 8, 39, 0.82) 100%);
  content: "";
  pointer-events: none;
}

.music__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.music-player {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(25, 14, 54, 0.78);
  backdrop-filter: blur(16px);
}

.music-player__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.8rem;
}

.music-player small,
.music-player strong {
  display: block;
}

.music-player small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.65rem;
}

.music-player strong {
  font-size: 0.91rem;
  overflow-wrap: anywhere;
}

.music-player__wave {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 30px;
}

.music-player__wave i {
  display: block;
  width: 3px;
  height: 11px;
  border-radius: 99px;
  background: var(--cyan);
}

.music-player__wave i:nth-child(2),
.music-player__wave i:nth-child(4) { height: 23px; }
.music-player__wave i:nth-child(3) { height: 30px; }

.process {
  background:
    linear-gradient(rgba(91, 61, 240, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 61, 240, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.process .section-heading em {
  color: var(--violet);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  position: relative;
  min-width: 0;
  min-height: 310px;
  padding: 31px 25px 26px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  border-left: 1px solid var(--line);
}

.process-list li::before {
  position: absolute;
  top: -6px;
  left: 25px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
}

.process-list__number {
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 850;
}

.process-list div {
  display: grid;
  align-content: end;
  min-height: 230px;
}

.process-list h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.request {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 18%, rgba(82, 227, 230, 0.3), transparent 24%),
    radial-gradient(circle at 85% 90%, rgba(217, 255, 79, 0.25), transparent 22%),
    linear-gradient(145deg, #3c27c6 0%, #6336eb 45%, #8446ea 100%);
  overflow: hidden;
}

.request::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.03), 0 0 0 120px rgba(255, 255, 255, 0.02);
  content: "";
}

.request__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.request__intro {
  position: sticky;
  top: 118px;
}

.request h2 em {
  color: var(--lime);
}

.request__intro > p:not(.eyebrow) {
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.68;
}

.language-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.language-cloud span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.lead-form {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 40px 90px rgba(32, 17, 91, 0.34);
  backdrop-filter: blur(16px);
}

.lead-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.lead-form__head span {
  font-size: 1.2rem;
  font-weight: 900;
}

.lead-form__head small {
  color: var(--ink-soft);
}

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

.form-field {
  display: grid;
  min-width: 0;
  gap: 7px;
  margin-bottom: 18px;
}

.lead-form__grid .form-field {
  margin-bottom: 0;
}

.form-field--wide,
.field-error--grid {
  grid-column: 1 / -1;
}

.form-field label {
  color: #3e3857;
  font-size: 0.76rem;
  font-weight: 800;
}

.form-field label b {
  color: #d73c79;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(23, 19, 44, 0.16);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  height: 52px;
  padding: 0 15px;
}

.form-field select {
  padding-right: 36px;
}

.form-field textarea {
  min-height: 116px;
  padding: 13px 15px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a29daf;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(91, 61, 240, 0.42);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(91, 61, 240, 0.11);
  outline: 0;
}

.form-field [aria-invalid="true"] {
  border-color: #c92f64;
  box-shadow: 0 0 0 3px rgba(201, 47, 100, 0.09);
}

.field-error {
  display: block;
  min-height: 0;
  color: #b21f52;
  font-size: 0.72rem;
  font-weight: 700;
}

.field-error:empty {
  display: none;
}

.field-error--grid {
  margin-top: -12px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--violet);
}

.consent a {
  color: var(--violet);
}

.button--submit {
  width: 100%;
  margin-top: 24px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(23, 19, 44, 0.22);
}

.button--submit:hover {
  background: var(--violet);
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 1.5em;
  margin: 15px 0 0;
  font-size: 0.84rem;
  font-weight: 750;
  text-align: center;
}

.form-status[data-state="pending"] { color: var(--violet); }
.form-status[data-state="success"] { color: #197a50; }
.form-status[data-state="error"] { color: #b21f52; }

.lead-form__fallback {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-align: center;
}

.lead-form__fallback a {
  color: var(--violet);
  font-weight: 750;
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq__heading {
  align-self: start;
}

.faq__heading > p:last-child {
  margin-top: 28px;
  color: var(--ink-soft);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 22px;
  font-size: 1.1rem;
  font-weight: 800;
  list-style: none;
}

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

.faq summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--violet);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.site-footer {
  padding-block: 62px 28px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 0.65fr 1fr 0.65fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 48px;
}

.brand--footer {
  background: var(--white);
}

.site-footer__top > p {
  max-width: 400px;
  margin: 0;
  font-size: 0.92rem;
}

.site-footer__contacts {
  display: grid;
  gap: 5px;
  justify-items: end;
}

.site-footer__contacts a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.35fr;
  gap: 28px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  justify-self: end;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1023px) {
  :root {
    --shell: min(100% - 38px, 900px);
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 800px;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__veil {
    background: linear-gradient(90deg, rgba(37, 24, 99, 0.98) 0%, rgba(45, 31, 111, 0.87) 55%, rgba(55, 45, 132, 0.25) 100%);
  }

  .hero__copy {
    width: min(650px, 76vw);
  }

  .problem__heading,
  .section-heading,
  .showcase__grid,
  .music__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .problem__heading,
  .section-heading {
    gap: 24px;
  }

  .problem__heading > p,
  .section-heading > p {
    max-width: 640px;
  }

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

  .showcase__media img {
    min-height: 440px;
  }

  .music__media {
    aspect-ratio: 16 / 10;
    transform: none;
  }

  .music__media img {
    object-position: 48% 42%;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

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

  .request__intro {
    position: static;
    max-width: 720px;
  }

  .lead-form {
    width: 100%;
  }

  .faq__grid {
    gap: 46px;
  }

  .faq__heading {
    max-width: 620px;
  }
}

@media (max-width: 719px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 30px;
    --radius-md: 23px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    padding-block: 12px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand {
    padding: 6px 9px;
    border-radius: 11px;
  }

  .brand__logo {
    width: 122px;
  }

  .site-header .button {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 0;
    align-items: start;
  }

  .hero__image {
    object-position: 69% center;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(37, 24, 99, 0.94) 0%, rgba(39, 27, 97, 0.88) 50%, rgba(39, 27, 97, 0.97) 100%),
      linear-gradient(90deg, rgba(37, 24, 99, 0.92), rgba(37, 24, 99, 0.2));
  }

  .hero__content {
    padding-block: 115px 100px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero__actions .text-link {
    padding-inline: 4px;
  }

  .button--lime {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hero__facts li {
    grid-template-columns: 84px 1fr;
    align-items: center;
  }

  .hero__language-rail {
    justify-content: flex-start;
    gap: 16px;
    overflow: hidden;
  }

  .problem__heading {
    margin-bottom: 40px;
  }

  .problem h2,
  .section-heading h2,
  .showcase h2,
  .music h2,
  .request h2,
  .faq h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .dialogue {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dialogue__card {
    min-height: 0;
  }

  .dialogue__arrow {
    margin: -9px auto;
    border-width: 6px;
    transform: rotate(90deg);
  }

  .scope-grid,
  .process-list,
  .lead-form__grid {
    grid-template-columns: 1fr;
  }

  .scope-card {
    min-height: 245px;
  }

  .scope-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .showcase__media {
    border-radius: 24px;
    transform: none;
  }

  .showcase__media img {
    min-height: 360px;
    object-position: 31% center;
  }

  .music__media {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .music-player {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 12px;
  }

  .music-player__icon {
    width: 42px;
    height: 42px;
  }

  .music-player__wave {
    display: none;
  }

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

  .music__commands span {
    width: 100%;
    border-radius: 14px;
  }

  .rewrite-example div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .process-list li,
  .process-list li:nth-child(3) {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .process-list div {
    min-height: 150px;
  }

  .request__shell {
    gap: 42px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .lead-form__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .form-field--wide,
  .field-error--grid {
    grid-column: auto;
  }

  .site-footer__top,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__contacts {
    justify-items: start;
  }

  .site-footer__bottom a {
    justify-self: start;
  }
}

@media (max-width: 359px) {
  :root {
    --shell: calc(100% - 22px);
  }

  .site-header .button {
    padding-inline: 10px;
  }

  .hero h1 {
    font-size: 3.08rem;
  }

  .lead-form {
    padding-inline: 15px;
  }

  .voice-row p {
    font-size: 1.26rem;
  }

  .wave {
    margin-left: 0;
  }
}

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

.skill-card {
  --skill-color: var(--yellow);
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 52px rgba(17, 11, 55, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.skill-card::after {
  position: absolute;
  right: -38px;
  bottom: -50px;
  width: 145px;
  height: 145px;
  content: "";
  background: var(--skill-color);
  border-radius: 50%;
  opacity: 0.2;
}

.skill-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(17, 11, 55, 0.2);
}

.skill-card--yellow { --skill-color: var(--yellow); }
.skill-card--cyan { --skill-color: var(--cyan); }
.skill-card--violet { --skill-color: #9f83ff; }
.skill-card--orange { --skill-color: var(--orange); }
.skill-card--pink { --skill-color: var(--pink); }
.skill-card--lime { --skill-color: var(--lime); }

.skill-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.skill-card__number,
.skill-card__category {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.skill-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
  background: var(--skill-color);
  border-radius: 18px;
  font-size: 1.3rem;
  font-weight: 900;
}

.skill-card h3 {
  max-width: 13ch;
  margin: 9px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.04;
}

.skill-card > p:not(.skill-card__category) {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.skill-card > a {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.skill-card > a:hover { text-decoration: underline; }

.catalog-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.solutions {
  background: #eef0ff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.solution-grid article {
  display: flex;
  min-height: 295px;
  padding: 28px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(23, 19, 44, 0.08);
  border-radius: var(--radius-md);
}

.solution-grid article > span {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
}

.solution-grid h3 {
  margin: 40px 0 12px;
  font-size: 1.55rem;
}

.solution-grid p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.solution-grid a {
  margin-top: auto;
  color: var(--violet-dark);
  font-weight: 800;
  text-decoration: none;
}

.catalog-page {
  background: var(--paper);
}

.catalog-page .site-header {
  position: sticky;
  color: var(--ink);
  background: rgba(247, 245, 255, 0.94);
  box-shadow: 0 8px 28px rgba(23, 19, 44, 0.1);
  backdrop-filter: blur(18px);
}

.catalog-hero {
  padding-top: 150px;
  background: linear-gradient(135deg, #eef0ff, #f9f7ff 55%, #e6ffff);
}

.catalog-hero h1,
.skill-detail h1 {
  max-width: 850px;
  margin: 14px 0 20px;
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.catalog-hero h1 em,
.skill-detail h1 em {
  color: var(--violet);
  font-family: Georgia, serif;
  font-weight: 500;
}

.catalog-hero > .shell > p:last-child {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.6;
}

.catalog-list { background: var(--violet-dark); }

.skill-filters {
  display: flex;
  margin-bottom: 34px;
  gap: 10px;
  flex-wrap: wrap;
}

.skill-filters button {
  min-height: 44px;
  padding: 9px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.skill-filters button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.catalog-cta {
  color: var(--white);
  background: var(--violet);
  text-align: center;
}

.catalog-cta .eyebrow { justify-content: center; }
.catalog-cta h2 { margin: 18px auto 34px; font-size: clamp(2.7rem, 6vw, 5.5rem); line-height: 0.98; }
.catalog-cta h2 em { color: var(--lime); font-family: Georgia, serif; font-weight: 500; }

.skill-detail {
  display: grid;
  padding-top: 150px;
  grid-template-columns: 200px 1fr;
  gap: 54px;
  align-items: start;
}

.skill-detail[hidden] { display: none; }

.skill-detail__icon {
  display: grid;
  width: 200px;
  height: 200px;
  place-items: center;
  background: var(--skill-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  font-size: 4rem;
  font-weight: 900;
}

.skill-detail__lead { max-width: 760px; color: var(--ink-soft); font-size: 1.35rem; line-height: 1.55; }
.skill-detail dl { display: grid; max-width: 880px; margin: 40px 0; grid-template-columns: 1fr 1fr; gap: 16px; }
.skill-detail dl div { padding: 24px; background: var(--white); border-radius: var(--radius-sm); }
.skill-detail dt { margin-bottom: 9px; color: var(--violet); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.skill-detail dd { margin: 0; line-height: 1.55; }

@media (max-width: 1023px) {
  .skill-grid,
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 639px) {
  .skill-grid,
  .solution-grid { grid-template-columns: 1fr; }
  .skill-card { min-height: 285px; }
  .skill-detail { grid-template-columns: 1fr; gap: 28px; }
  .skill-detail__icon { width: 110px; height: 110px; border-radius: 30px; font-size: 2.5rem; }
  .skill-detail dl { grid-template-columns: 1fr; }
}

/* Rich product compositions: skills, solutions and onboarding */
.skills-experience {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.skills-visual {
  position: sticky;
  top: 104px;
  min-height: 740px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: #465acc;
  box-shadow: 0 34px 100px rgba(2, 1, 17, 0.46);
  overflow: hidden;
  transform: rotate(-0.8deg);
}

.skills-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 10, 52, 0.02) 40%, rgba(15, 10, 52, 0.88) 100%);
  content: "";
  pointer-events: none;
}

.skills-visual img {
  width: 100%;
  height: 740px;
  object-fit: cover;
  object-position: 63% center;
}

.skills-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.skills-visual figcaption small,
.skills-visual figcaption strong { display: block; }
.skills-visual figcaption small { margin-bottom: 5px; color: var(--cyan); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.skills-visual figcaption strong { max-width: 340px; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.05; }
.skills-visual figcaption b { color: var(--lime); font-size: clamp(3rem, 5vw, 5rem); line-height: 0.8; }

.skills-visual__badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(27, 18, 72, 0.66);
  font-size: 0.72rem;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.skills-visual__badge i,
.process-visual__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 255, 79, 0.15);
}

.skills-catalog .skill-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.skills-catalog { min-width: 0; }

.skills-catalog .skill-card {
  min-height: 270px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 42px rgba(3, 1, 19, 0.2);
}

.skills-catalog .skill-card__top { margin-bottom: 17px; }
.skills-catalog .skill-card__icon { width: 49px; height: 49px; border-radius: 15px; }
.skills-catalog .skill-card h3 { font-size: clamp(1.25rem, 1.6vw, 1.55rem); }
.skills-catalog .skill-card > p:not(.skill-card__category) { font-size: 0.84rem; line-height: 1.5; }

.skills-catalog .catalog-action {
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
}

.skills-catalog .catalog-action p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  line-height: 1.45;
}

.solutions {
  position: relative;
  background:
    radial-gradient(circle at 8% 12%, rgba(76, 230, 230, 0.2), transparent 25%),
    radial-gradient(circle at 91% 89%, rgba(91, 61, 240, 0.19), transparent 28%),
    #eef0ff;
  overflow: hidden;
}

.solution-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(315px, auto));
  gap: 16px;
}

.solution-card {
  position: relative;
  display: block;
  min-height: 315px;
  padding: 0;
  color: var(--white);
  background: var(--violet-dark);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 22px 65px rgba(35, 23, 92, 0.14);
  isolation: isolate;
  overflow: hidden;
}

.solution-card--hero { grid-column: 1 / 7; grid-row: 1 / 3; }
.solution-card--tour { grid-column: 7 / 13; grid-row: 1; }
.solution-card--event { grid-column: 7 / 10; grid-row: 2; }
.solution-card--remote { grid-column: 10 / 13; grid-row: 2; }

.solution-card figure,
.solution-card figure::after {
  position: absolute;
  inset: 0;
  margin: 0;
}

.solution-card figure::after {
  background: linear-gradient(180deg, rgba(15, 9, 43, 0.05) 20%, rgba(17, 10, 48, 0.93) 100%);
  content: "";
}

.solution-card--hero figure::after { background: linear-gradient(180deg, rgba(15, 9, 43, 0.04) 34%, rgba(17, 10, 48, 0.94) 100%); }

.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.solution-card--tour img { object-position: 23% center; }
.solution-card--event img { object-position: 69% center; }
.solution-card--remote img { object-position: 67% center; }
.solution-card:hover img { transform: scale(1.035); }

.solution-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px;
}

.solution-card--hero .solution-card__content { padding: 34px; }

.solution-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.solution-card__meta span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.68rem;
  font-weight: 900;
}

.solution-card__meta small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.solution-card h3 {
  max-width: 12ch;
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  line-height: 0.95;
}

.solution-card--hero h3 { font-size: clamp(2.4rem, 4vw, 4.4rem); }
.solution-card p { max-width: 520px; margin: 0 0 18px; color: rgba(255, 255, 255, 0.74); font-size: 0.87rem; line-height: 1.55; }
.solution-card--event p,
.solution-card--remote p { font-size: 0.78rem; }

.solution-card ul {
  display: flex;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
}

.solution-card li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  backdrop-filter: blur(10px);
}

.solution-card a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
}

.solution-card a span { color: var(--lime); }

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.process-visual {
  position: relative;
  min-height: 650px;
  margin: 0;
  border-radius: var(--radius-lg);
  background: #dfe1ee;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.process-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(19, 13, 52, 0.91) 100%);
  content: "";
}

.process-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 46% center; }

.process-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: var(--white);
}

.process-visual__status {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(22, 14, 61, 0.64);
  font-size: 0.7rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.process-visual figcaption strong {
  display: block;
  max-width: 390px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.process-visual figcaption p { max-width: 430px; margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; line-height: 1.55; }

.process-layout .process-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}

.process-layout .process-list li,
.process-layout .process-list li:first-child,
.process-layout .process-list li:nth-child(3) {
  display: flex;
  min-height: 318px;
  padding: 24px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 45px rgba(35, 23, 92, 0.08);
}

.process-layout .process-list li::before {
  top: 23px;
  right: 22px;
  left: auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(91, 61, 240, 0.16);
  background: radial-gradient(circle, var(--violet) 0 4px, rgba(91, 61, 240, 0.08) 5px 100%);
}

.process-layout .process-list__number { font-size: 0.8rem; }

.process-layout .process-list div {
  min-height: 0;
  margin-top: auto;
}

.process-layout .process-list small {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--violet);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-layout .process-list h3 { margin-bottom: 12px; font-size: clamp(1.45rem, 2.2vw, 2rem); }
.process-layout .process-list p { font-size: 0.84rem; }

@media (max-width: 1023px) {
  .skills-experience,
  .process-layout { grid-template-columns: 1fr; }

  .skills-visual { position: relative; top: auto; min-height: 500px; transform: none; }
  .skills-visual img { height: 500px; object-position: 60% center; }

  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; }
  .solution-card--hero { grid-column: 1 / 3; grid-row: auto; min-height: 560px; }
  .solution-card--tour,
  .solution-card--event,
  .solution-card--remote { grid-column: auto; grid-row: auto; min-height: 380px; }
  .solution-card--remote { grid-column: 1 / 3; }

  .process-visual { min-height: 560px; }
}

@media (max-width: 719px) {
  .skills-experience { gap: 30px; }
  .skills-visual { min-height: 520px; border-radius: 25px; }
  .skills-visual img { height: 520px; object-position: 67% center; }
  .skills-visual figcaption { right: 18px; bottom: 18px; left: 18px; }
  .skills-visual__badge { top: 15px; left: 15px; }

  .skills-catalog .skill-grid,
  .solution-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(272px, 84vw);
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 13px;
    margin-inline: calc((100vw - var(--shell)) / -2);
    padding: 0 calc((100vw - var(--shell)) / 2) 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .skills-catalog .skill-card,
  .solution-card,
  .solution-card--hero,
  .solution-card--tour,
  .solution-card--event,
  .solution-card--remote {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
    scroll-snap-align: center;
  }

  .skills-catalog .skill-card { min-height: 305px; }
  .skills-catalog .catalog-action { align-items: flex-start; flex-direction: column; }
  .solution-card--hero .solution-card__content,
  .solution-card__content { padding: 23px; }
  .solution-card--hero h3 { font-size: 2.7rem; }
  .solution-card p,
  .solution-card--event p,
  .solution-card--remote p { font-size: 0.84rem; }

  .process-visual { min-height: 540px; border-radius: 25px; }
  .process-visual img { object-position: 41% center; }
  .process-visual figcaption { right: 20px; bottom: 20px; left: 20px; }
  .process-layout .process-list { grid-template-columns: 1fr; }
  .process-layout .process-list li,
  .process-layout .process-list li:first-child,
  .process-layout .process-list li:nth-child(3) { min-height: 250px; }
}

/* Expanded catalog, custom pictograms and complete skill pages */
.skills-catalog--full .skill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.skills-catalog--full .skill-card {
  min-height: 320px;
}

.skill-card__icon svg,
.skill-detail__icon svg,
.process-list__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skill-card__icon svg { width: 31px; height: 31px; }
.skill-card:nth-child(3n + 1) .skill-card__icon { border-radius: 50% 50% 36% 50%; transform: rotate(-4deg); }
.skill-card:nth-child(3n + 2) .skill-card__icon { border-radius: 14px 24px 14px 24px; transform: rotate(3deg); }
.skill-card:nth-child(3n) .skill-card__icon { border-radius: 50% 15px 50% 15px; }

.music__media--vr {
  aspect-ratio: 16 / 10;
  transform: none;
}

.music__media--vr img { object-position: center; }
.music__media--vr .music-player { right: 18px; bottom: 18px; left: 18px; }

.solution-card--tour img,
.solution-card--event img,
.solution-card--remote img { object-position: center; }

.process-layout .process-list li::before { display: none; }

.process-list__icon {
  position: absolute;
  top: 21px;
  right: 20px;
  display: grid;
  width: 68px;
  height: 68px;
  padding: 15px;
  place-items: center;
  border-radius: 24px;
  color: var(--violet-dark);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(91, 61, 240, 0.15);
  transform: rotate(3deg);
}

.process-list li:nth-child(2) .process-list__icon { background: var(--cyan); border-radius: 50% 20px 50% 20px; transform: rotate(-3deg); }
.process-list li:nth-child(3) .process-list__icon { color: var(--white); background: #8b73ff; border-radius: 20px 50% 20px 50%; }
.process-list li:nth-child(4) .process-list__icon { background: var(--yellow); border-radius: 50%; transform: rotate(5deg); }

.process-list__icon svg { width: 39px; height: 39px; }

.has-skill-detail .catalog-hero,
.has-skill-detail .catalog-list,
.has-skill-detail .catalog-cta { display: none; }

.has-skill-detail { background: #f7f5ff; }

.skill-detail {
  display: block;
  width: 100%;
  max-width: none;
  padding: 136px 0 0;
}

.skill-detail__hero,
.skill-detail__overview,
.skill-detail__block,
.skill-detail__cta {
  width: var(--shell);
  margin-inline: auto;
}

.skill-detail__hero {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: 620px;
  padding-block: 70px 90px;
}

.skill-detail__icon {
  position: relative;
  display: grid;
  width: 220px;
  height: 220px;
  padding: 48px;
  place-items: center;
  border-radius: 70px 70px 28px 70px;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(35, 23, 92, 0.2);
  transform: rotate(-4deg);
}

.skill-detail__icon::after {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  border: 1px solid rgba(91, 61, 240, 0.22);
  border-radius: inherit;
  content: "";
}

.skill-detail__icon svg { width: 118px; height: 118px; stroke-width: 1.8; }
.skill-detail__intro { min-width: 0; }
.skill-detail__intro h1 { max-width: 940px; margin: 18px 0 26px; }
.skill-detail__lead { max-width: 840px; margin-bottom: 30px; }

.skill-detail__result {
  display: grid;
  max-width: 900px;
  padding: 22px 25px;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(91, 61, 240, 0.14);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(35, 23, 92, 0.08);
}

.skill-detail__result small { color: var(--violet); font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.skill-detail__result strong { font-size: 1.02rem; line-height: 1.5; }

.skill-detail__overview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(35px, 7vw, 100px);
  padding-block: 90px;
  border-top: 1px solid var(--line);
}

.skill-detail__overview article h2,
.skill-detail__block h2,
.skill-detail__cta h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.94;
}

.skill-detail__overview article h2 em { color: var(--violet); }
.skill-detail__overview article > p:last-child { max-width: 760px; margin-top: 30px; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.75; }

.skill-detail__overview dl {
  display: grid;
  margin: 0;
  grid-template-columns: 1fr;
  gap: 10px;
}

.skill-detail__overview dl div { padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.skill-detail__overview dt { margin-bottom: 8px; color: var(--violet); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.skill-detail__overview dd { margin: 0; line-height: 1.55; }

.skill-detail__block {
  padding-block: 92px;
  border-top: 1px solid var(--line);
}

.skill-detail__block--tint {
  width: 100%;
  padding-inline: max(calc((100vw - var(--shell)) / 2), 24px);
  background: #ebeefe;
}

.skill-detail__block-head {
  display: grid;
  margin-bottom: 46px;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
}

.skill-detail__block-head > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--violet);
  font-size: 0.75rem;
  font-weight: 900;
  transform: rotate(-4deg);
}

.skill-detail__feature-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.skill-detail__feature-grid li {
  display: flex;
  min-height: 220px;
  padding: 24px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 45px rgba(35, 23, 92, 0.07);
}

.skill-detail__feature-grid b { color: var(--violet); font-size: 0.72rem; }
.skill-detail__feature-grid span { margin-top: auto; font-size: 1.25rem; font-weight: 780; line-height: 1.2; }

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

.skill-detail__scenario-grid article {
  position: relative;
  min-height: 260px;
  padding: 27px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(145deg, #22165a, #5b3df0);
  overflow: hidden;
}

.skill-detail__scenario-grid article::after {
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  opacity: 0.22;
}

.skill-detail__scenario-grid article > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 14px; color: var(--ink); background: var(--lime); font-weight: 900; }
.skill-detail__scenario-grid h3 { max-width: 13ch; margin: 60px 0 13px; font-size: 1.6rem; }
.skill-detail__scenario-grid p { position: relative; z-index: 1; margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 0.84rem; line-height: 1.55; }

.skill-detail__delivery {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.skill-detail__delivery li {
  display: grid;
  padding: 27px 4px;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.skill-detail__delivery span { color: var(--violet); font-size: 0.72rem; font-weight: 900; }
.skill-detail__delivery strong { font-size: clamp(1.35rem, 2.4vw, 2.2rem); line-height: 1.05; }

.skill-detail__cta {
  display: flex;
  width: 100%;
  max-width: none;
  padding: 90px max(calc((100vw - var(--shell)) / 2), 24px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  background: linear-gradient(135deg, #22165a, #6740f4 60%, #8146dc);
}

.skill-detail__cta h2 { margin-top: 16px; }
.skill-detail__cta h2 em { color: var(--lime); }

@media (max-width: 1023px) {
  .skills-catalog--full .skill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .skill-detail__hero { grid-template-columns: 160px 1fr; min-height: 0; }
  .skill-detail__icon { width: 160px; height: 160px; padding: 35px; border-radius: 52px 52px 23px 52px; }
  .skill-detail__icon svg { width: 90px; height: 90px; }
  .skill-detail__feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 719px) {
  .music__media--vr { aspect-ratio: 4 / 5; }
  .music__media--vr img { object-position: 50% center; }
  .process-list__icon { width: 62px; height: 62px; }

  .skills-catalog--full .skill-grid {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .skills-catalog--full .skill-card { min-height: 280px; }
  .skill-detail { padding-top: 92px; }
  .skill-detail__hero { grid-template-columns: 1fr; gap: 35px; padding-block: 55px 72px; }
  .skill-detail__icon { width: 120px; height: 120px; padding: 25px; border-radius: 38px 38px 18px 38px; }
  .skill-detail__icon svg { width: 70px; height: 70px; }
  .skill-detail__intro h1 { font-size: clamp(3.1rem, 15vw, 5.3rem); }
  .skill-detail__lead { font-size: 1.12rem; }
  .skill-detail__result { grid-template-columns: 1fr; gap: 8px; }
  .skill-detail__overview { grid-template-columns: 1fr; padding-block: 70px; }
  .skill-detail__overview article h2,
  .skill-detail__block h2,
  .skill-detail__cta h2 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .skill-detail__block { padding-block: 70px; }
  .skill-detail__block-head { grid-template-columns: 54px 1fr; gap: 13px; }
  .skill-detail__block-head > span { width: 46px; height: 46px; border-radius: 14px; }
  .skill-detail__feature-grid,
  .skill-detail__scenario-grid { grid-template-columns: 1fr; }
  .skill-detail__feature-grid li { min-height: 170px; }
  .skill-detail__scenario-grid article { min-height: 240px; }
  .skill-detail__delivery li { grid-template-columns: 50px 1fr; }
  .skill-detail__cta { align-items: flex-start; flex-direction: column; }
}

.skill-card__price {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.skill-card__price small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skill-card__price strong {
  color: var(--skill-color);
  font-size: 1.03rem;
}

.skills-catalog .skill-card { min-height: 350px; }

.solution-card__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 4px 0 17px;
}

.solution-card__price small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solution-card__price strong {
  color: var(--lime);
  font-size: 1rem;
  white-space: nowrap;
}

.pricing {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 10%, rgba(89, 64, 232, 0.11), transparent 27%),
    linear-gradient(180deg, #f7f5ff 0%, #ffffff 100%);
}

.pricing .section-heading em { color: var(--violet); }

.pricing-formula {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.pricing-formula article {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(25, 17, 66, 0.07);
}

.pricing-formula article > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--violet);
  font-size: 0.7rem;
  font-weight: 900;
}

.pricing-formula article > small {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-formula h3 {
  margin: 7px 0 18px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.pricing-formula article > strong {
  margin-bottom: 20px;
  color: var(--violet);
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  letter-spacing: -0.05em;
}

.pricing-formula article > p {
  margin: auto 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.pricing-formula__base {
  color: var(--white);
  border-color: transparent !important;
  background: linear-gradient(145deg, #1a1235, #5130d4) !important;
}

.pricing-formula__base > span { color: var(--ink) !important; background: var(--lime) !important; }
.pricing-formula__base > small,
.pricing-formula__base > p { color: rgba(255, 255, 255, 0.68) !important; }
.pricing-formula__base > strong { color: var(--lime) !important; }

.pricing-formula__sign {
  display: grid;
  place-items: center;
  color: var(--violet);
  font-size: 2rem;
  font-weight: 400;
}

.pricing-solutions {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(40px, 7vw, 100px);
  margin-top: 88px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 38px;
  color: var(--white);
  background: #17102f;
}

.pricing-solutions__intro h3 {
  margin: 15px 0 23px;
  font-size: clamp(2.3rem, 4.5vw, 4.7rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.pricing-solutions__intro > p:last-child {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.pricing-solution-list {
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-solution-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-solution-list article div { display: grid; gap: 6px; }
.pricing-solution-list small { font-size: 1rem; font-weight: 780; }
.pricing-solution-list strong { color: var(--lime); font-size: 1.35rem; }
.pricing-solution-list article > span { color: rgba(255, 255, 255, 0.52); font-size: 0.76rem; }

.pricing-note {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 30px;
  border: 1px solid rgba(89, 64, 232, 0.18);
  border-radius: 22px;
  background: rgba(89, 64, 232, 0.07);
}

.pricing-note strong { font-size: 1.08rem; }
.pricing-note p { margin: 0; color: var(--ink-soft); font-size: 0.84rem; line-height: 1.55; }
.pricing-note a { color: var(--violet); font-weight: 850; white-space: nowrap; }

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

.skill-detail__pricing article {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border: 1px solid rgba(89, 64, 232, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.skill-detail__pricing small { color: var(--violet); font-size: 0.67rem; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }
.skill-detail__pricing strong { font-size: 1.35rem; letter-spacing: -0.04em; }
.skill-detail__pricing span { color: var(--ink-soft); font-size: 0.76rem; }
.skill-detail__price-note { margin: 10px 0 0; color: var(--ink-soft); font-size: 0.76rem; }

@media (max-width: 1023px) {
  .pricing-formula { grid-template-columns: 1fr 24px 1fr 24px 1fr; }
  .pricing-formula article { min-height: 340px; padding: 22px; }
  .pricing-solutions { grid-template-columns: 1fr; }
  .pricing-note { grid-template-columns: 1fr auto; }
  .pricing-note p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 719px) {
  .skills-catalog .skill-card { min-height: 345px; }
  .pricing-formula { grid-template-columns: 1fr; }
  .pricing-formula article { min-height: 270px; }
  .pricing-formula__sign { height: 28px; }
  .pricing-solutions { margin-top: 60px; padding: 30px 22px; border-radius: 28px; }
  .pricing-solution-list article { grid-template-columns: 1fr; gap: 8px; }
  .pricing-note { grid-template-columns: 1fr; }
  .pricing-note p { grid-column: auto; grid-row: auto; }
  .skill-detail__pricing { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
