: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;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 11px;
  transform: rotate(8deg);
}

.brand__mark span {
  position: absolute;
  width: 14px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.brand__mark span:first-child {
  transform: translateY(-6px) rotate(-8deg);
}

.brand__mark span:nth-child(2) {
  transform: rotate(-8deg);
}

.brand__mark span:last-child {
  transform: translateY(6px) rotate(-8deg);
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.brand__text small {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  opacity: 0.72;
}

.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 {
  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;
}

.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 {
  color: 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,
  .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;
  }

  .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__mark {
    width: 31px;
    height: 31px;
  }

  .brand__text strong {
    font-size: 0.91rem;
  }

  .brand__text small {
    font-size: 0.5rem;
  }

  .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,
  .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;
  }

  .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 .brand__text small {
    display: none;
  }

  .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;
  }
}

@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;
  }
}

