:root {
  --bg: #000000;
  --accent: #50207a;
  --accent-2: #d6b9fc;
  --accent-3: #838ce5;
  --muted: rgba(247, 245, 250, 0.14);
  --text: #f7f5fa;
}

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

html {
  overflow: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Space Grotesk", "DM Sans", sans-serif;
  letter-spacing: 0.08em;
  display: block;
  overflow-x: hidden;
  overflow-y: hidden;
  opacity: 1;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(4rem, 10vh, 8rem) clamp(2rem, 6vw, 4rem) clamp(6rem, 14vh, 10rem);
  text-align: center;
  isolation: isolate;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.65rem 2.8rem;
  display: flex;
  justify-content: center;
  z-index: 30;
  backdrop-filter: blur(0px);
  transform: translateY(-80%);
  opacity: 0;
  pointer-events: none;
  transition: padding 0.3s ease, backdrop-filter 0.3s ease, background-color 0.3s ease;
}

.site-header.header--scrolled {
  padding: 1.2rem 2.8rem;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.header__inner {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.header__brand {
  justify-self: start;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
}

.header__nav {
  display: inline-flex;
  justify-content: center;
  gap: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 1.08rem;
}

.header__link {
  position: relative;
  text-decoration: none;
  color: rgba(247, 245, 250, 0.82);
  padding: 0.25rem 0;
  transition: color 0.2s ease, transform 0.25s ease;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.header__link:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.header__link:hover::after {
  transform: scaleX(1);
}

.header__login {
  justify-self: end;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 1.08rem;
  color: rgba(214, 185, 252, 0.9);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s ease;
}

.header__login:hover {
  color: var(--text);
  background: rgba(80, 32, 122, 0.2);
  transform: translateY(-2px);
}

.page-ready .site-header {
  animation: headerReveal 0.8s ease-out forwards;
  pointer-events: auto;
}

.header__burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(214, 185, 252, 0.3);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  justify-self: end;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header__burger:hover {
  transform: translateY(-1px);
  border-color: rgba(131, 140, 229, 0.6);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.site-header.header--menu-open .header__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.page-ready .header__link:nth-child(1) {
  animation: navRise 0.5s ease-out 0.1s both;
}

.page-ready .header__link:nth-child(2) {
  animation: navRise 0.5s ease-out 0.18s both;
}

.page-ready .header__link:nth-child(3) {
  animation: navRise 0.5s ease-out 0.26s both;
}

.page-ready .header__login {
  animation: navRise 0.5s ease-out 0.34s both;
}

@keyframes navRise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header.header--menu-open .header__burger span:nth-child(2) {
  opacity: 0;
}

.site-header.header--menu-open .header__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
  }

  .header__nav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -12px);
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(214, 185, 252, 0.2);
    border-radius: 12px;
    display: grid;
    grid-auto-rows: auto;
    gap: 0.7rem;
    width: min(280px, 90vw);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.header--menu-open .header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 12px);
  }

  .header__nav .header__link {
    text-align: center;
    font-size: 1.02rem;
  }

  .header__link::after {
    display: none;
  }

  .header__login {
    display: none;
  }

  .header__burger {
    display: inline-flex;
  }
}

@keyframes headerReveal {
  0% {
    transform: translateY(-80%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  display: grid;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
}

.hero__headline {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__support {
  margin: 0;
  color: rgba(247, 245, 250, 0.86);
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.6;
}

.hero__cta {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.9rem;
  border: 2px solid var(--accent-2);
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, rgba(131, 140, 229, 0.12), transparent 45%),
    rgba(0, 0, 0, 0.7);
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 12px 0 rgba(80, 32, 122, 0.5), 0 18px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  border-color: var(--accent-3);
  background: radial-gradient(circle at 80% 30%, rgba(214, 185, 252, 0.16), transparent 50%),
    rgba(0, 0, 0, 0.82);
  box-shadow: 0 14px 0 rgba(80, 32, 122, 0.55), 0 22px 32px rgba(0, 0, 0, 0.5);
}

.hero__cta:active {
  transform: translateY(2px);
  box-shadow: 0 8px 0 rgba(80, 32, 122, 0.55), 0 14px 24px rgba(0, 0, 0, 0.55);
}

.section2 {
  width: 100%;
  min-height: 80vh;
  padding: clamp(2.8rem, 7vh, 4.9rem) clamp(1.4rem, 4.2vw, 2.8rem);
  background: var(--bg);
  display: grid;
}

.section2__intro {
  width: min(1200px, 100%);
  margin: 0 auto clamp(2.5rem, 7vh, 4.5rem);
  display: grid;
  gap: 1.2rem;
  text-align: center;
}

.section2__eyebrow {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 185, 252, 0.7);
  font-weight: 700;
}

.section2__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
}

.section2__copy {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.7;
  color: rgba(247, 245, 250, 0.82);
}

.section2__rows {
  display: grid;
  gap: clamp(2.5rem, 5vh, 3.5rem);
}

.section2__row {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.75rem, 3.2vw, 2.75rem);
  align-items: center;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.section2__row--reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.section2__row--reverse .section2__image {
  order: 1;
}

.section2__row--reverse .section2__text {
  order: 2;
}

.section2__text {
  display: grid;
  gap: 1rem;
}

.section2__label {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 185, 252, 0.7);
  font-weight: 700;
}

.section2__subtitle {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.01em;
}

.section2__body {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(247, 245, 250, 0.82);
  margin-top: 0.85rem;
}

.section2__image {
  min-height: 60vh;
  border-radius: 18px;
  display: block;
  overflow: hidden;
  box-shadow: none;
}

.section2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.4);
  transform-origin: center;
}

@media (max-width: 900px) {
  .section2__row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .section2__image {
    min-height: 50vh;
  }

  .section2__row--reverse > .section2__image {
    order: unset;
  }

  .section2__row--reverse .section2__text {
    order: unset;
  }
}

.section3 {
  width: 100%;
  padding: clamp(3.2rem, 7.5vh, 5rem) clamp(1.6rem, 4.6vw, 3.1rem);
  background: var(--bg);
  display: grid;
  gap: clamp(3rem, 5.5vh, 4rem);
}

.section3__intro {
  display: grid;
  gap: 0.5rem;
  text-align: center;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.section3__eyebrow {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  letter-spacing: 0.08em;
}

.section3__subline {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(247, 245, 250, 0.75);
}

.section3__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.75rem, 3.5vw, 2.4rem);
  width: min(1200px, 100%);
  margin: 0 auto;
}

.section3__card {
  padding: clamp(1.5rem, 3.2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 1rem;
  align-content: start;
  text-align: center;
}

.section3__card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: rgba(214, 185, 252, 0.85);
  margin: 0 auto 0.35rem;
}

.section3__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.section3__card-title {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.section3__card-body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(247, 245, 250, 0.78);
  letter-spacing: 0.01em;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section3__closing {
  margin: 0;
  text-align: center;
  color: rgba(247, 245, 250, 0.7);
  font-size: 1rem;
}

.section4 {
  position: relative;
  width: 100%;
  min-height: 90vh;
  padding: clamp(3.6rem, 9vh, 5.8rem) clamp(1.8rem, 5.2vw, 3.2rem);
  background: var(--bg);
  overflow: hidden;
}

.section4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../media/background.png") center 25% no-repeat;
  background-size: cover;
  opacity: 0.35;
  pointer-events: none;
}

.section4__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
  text-align: center;
}

.section4__title {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.01em;
}

.section4__copy {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(247, 245, 250, 0.84);
}

.section4__button {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
  padding: 0.95rem 1.9rem;
  border: 2px solid var(--accent-2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.section4__button:hover {
  transform: translateY(-2px);
  border-color: var(--accent-3);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4);
}

.section4__button:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.contact {
  width: 100%;
  padding: clamp(3.6rem, 9vh, 5.8rem) clamp(1.8rem, 5.2vw, 3.2rem);
  background: var(--bg);
}

.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.8rem, 4vh, 2.4rem);
}

.contact__intro {
  display: grid;
  gap: 0.6rem;
}

.contact__eyebrow {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 185, 252, 0.7);
  font-weight: 700;
  font-size: 0.95rem;
}

.contact__title {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  letter-spacing: -0.01em;
}

.contact__copy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(247, 245, 250, 0.78);
}

.contact__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2.8vw, 1.5rem);
}

.contact__field {
  display: grid;
  gap: 0.45rem;
}

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

.contact__field span {
  font-size: 0.95rem;
  color: rgba(247, 245, 250, 0.75);
}

.contact__field input,
.contact__field textarea,
.contact__field select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(214, 185, 252, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
  outline: none;
  border-color: rgba(131, 140, 229, 0.7);
  box-shadow: 0 0 0 3px rgba(131, 140, 229, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.contact__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__field select {
  appearance: none;
  background-image: linear-gradient(135deg, rgba(214, 185, 252, 0.25), rgba(214, 185, 252, 0));
  background-origin: border-box;
  cursor: pointer;
}

.contact__submit {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 0.95rem 1.9rem;
  border: 2px solid var(--accent-2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.contact__submit:hover {
  transform: translateY(-2px);
  border-color: var(--accent-3);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4);
}

.contact__submit:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.contact-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: clamp(3rem, 8vh, 5rem) clamp(1.5rem, 5vw, 3rem) clamp(2.5rem, 7vh, 4rem);
}

.contact-page__main {
  flex: 1;
  display: grid;
  place-items: center;
  padding-top: 5rem;
}

.contact-page__card {
  width: min(900px, 100%);
  padding: clamp(2rem, 4vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: clamp(1.4rem, 3vh, 1.8rem);
}

.contact-page__intro {
  display: grid;
  gap: 0.6rem;
  text-align: center;
}

.contact-page__title {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  letter-spacing: -0.02em;
}

.contact-page__copy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247, 245, 250, 0.8);
}

.contact-page__back {
  justify-self: center;
  color: rgba(214, 185, 252, 0.85);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(214, 185, 252, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-page__back:hover {
  color: var(--text);
  border-color: var(--accent-3);
}

.section5 {
  width: 100%;
  padding: clamp(3.2rem, 7.5vh, 5rem) clamp(1.6rem, 4.6vw, 3.1rem);
  background: var(--bg);
}

.section5__inner {
  max-width: 55ch;
  margin: 0 auto;
  display: grid;
  gap: 1.05rem;
  text-align: center;
}

.section5__title {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  letter-spacing: -0.02em;
}

.section5__copy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247, 245, 250, 0.82);
}

.section5__link {
  margin-top: 0.5rem;
  justify-self: center;
  color: rgba(214, 185, 252, 0.85);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(214, 185, 252, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.section5__link:hover {
  color: var(--text);
  border-color: var(--accent-3);
}

.footer {
  width: 100%;
  background: #050505;
  padding: clamp(2.8rem, 6vh, 4rem) clamp(1.6rem, 4.6vw, 3.2rem);
  color: rgba(247, 245, 250, 0.8);
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.2rem);
  align-items: start;
}

.footer__heading {
  margin: 0 0 0.6rem 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(214, 185, 252, 0.9);
}

.footer__text {
  margin: 0 0 0.4rem 0;
  color: rgba(247, 245, 250, 0.82);
  line-height: 1.6;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__logo {
  width: 32px;
  height: 32px;
  display: block;
}

.footer__text--muted {
  color: rgba(247, 245, 250, 0.65);
  font-size: 0.95rem;
}

.footer__nav {
  display: grid;
  gap: 0.35rem;
}

.footer__link {
  color: rgba(247, 245, 250, 0.82);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--text);
}

.footer__bottom {
  margin-top: clamp(1.8rem, 3vh, 2.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: grid;
  gap: 0.2rem;
}

.footer__bottom-text {
  margin: 0;
  color: rgba(247, 245, 250, 0.68);
  font-size: 0.95rem;
}

.footer__bottom-text--muted {
  color: rgba(247, 245, 250, 0.55);
}
/* Preloader only view */
.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
  transition: opacity 1.2s cubic-bezier(0.32, 0.08, 0.24, 1), transform 1.2s cubic-bezier(0.32, 0.08, 0.24, 1),
    filter 1.2s cubic-bezier(0.32, 0.08, 0.24, 1);
}

.preloader__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(214, 185, 252, 0.18), transparent 38%);
  filter: blur(24px);
  opacity: 0.55;
}

.preloader__center {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.preloader__text {
  opacity: 0;
  display: inline-block;
}

.preloader__text.fade {
  animation: fadeWord 1.33s ease forwards;
}

.preloader__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--muted);
  overflow: hidden;
}

.preloader__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-3) 40%, var(--accent-2) 100%);
  animation: fill 5s linear forwards;
}

.preloader--done {
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  filter: blur(8px);
  pointer-events: none;
}

.hero {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  filter: blur(8px);
  transition: opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1), transform 1.1s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.page-ready .hero {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.35s;
}

@keyframes fadeWord {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    filter: blur(10px);
  }
  20% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    filter: blur(6px);
  }
}

@keyframes fill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.workflow {
  width: 100%;
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 6vw, 4rem);
  display: grid;
  gap: clamp(4rem, 8vh, 6rem);
}

.workflow__row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.workflow__row--reverse {
  grid-template-columns: 1fr 1fr;
}

.workflow__text {
  display: grid;
  gap: 1.1rem;
}

.workflow__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}

.workflow__description {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(247, 245, 250, 0.82);
}

.workflow__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 185, 252, 0.18), transparent 45%),
    linear-gradient(135deg, rgba(80, 32, 122, 0.45), rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(214, 185, 252, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 900px) {
  .workflow__row,
  .workflow__row--reverse {
    grid-template-columns: 1fr;
  }
}
.page-fade {
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.page-ready .page-fade {
  opacity: 1;
}

[data-fade] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--fade-delay, 0s);
  will-change: opacity, transform;
}

body.page-ready [data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-fade] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
