:root {
  --bg: #08080b;
  --bg-soft: #0d0d12;
  --panel: #101016;
  --panel-light: #16161e;
  --text: #f7f5fb;
  --muted: #a8a4b0;
  --muted-2: #76727f;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --purple: #9a3cff;
  --purple-light: #b86cff;
  --purple-dark: #5c16b7;
  --purple-rgb: 154, 60, 255;
  --green: #6ee7b7;
  --container: 1180px;
  --radius: 24px;
  --header-height: 82px;
  --font-display: "Manrope", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--purple) var(--bg);
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 80% -10%, rgba(var(--purple-rgb), 0.13), transparent 33%),
    var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: -22vh -18vw;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 26%, rgba(var(--purple-rgb), 0.13), transparent 20%),
    radial-gradient(circle at 88% 72%, rgba(184, 108, 255, 0.1), transparent 22%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.22;
  transform: translate3d(0, 0, 0);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

::selection {
  color: white;
  background: var(--purple);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 132px;
}

.metrics,
.problem,
.method,
.results,
.services,
.testimonials,
.diagnostic,
.faq {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 2px;
}

.scroll-progress span {
  display: block;
  width: var(--scroll, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--purple-dark), var(--purple-light));
  box-shadow: 0 0 14px rgba(var(--purple-rgb), 0.7);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), 1240px);
  height: var(--header-height);
  padding-inline: 22px;
  border: 1px solid transparent;
  transform: translateX(-50%);
  transition:
    top 0.3s ease,
    height 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    border-radius 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  top: 12px;
  height: 66px;
  border-color: var(--line);
  border-radius: 18px;
  background: rgba(8, 8, 11, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.brand {
  justify-self: start;
  width: 124px;
  height: 42px;
  overflow: hidden;
}

.brand img {
  width: 140px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  color: #c4c0ca;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--purple-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: white;
}

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

.header-cta {
  justify-self: end;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 11px;
  font-size: 13px;
}

.button--primary {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(120deg, #7924d8, var(--purple), #b85aff);
  background-size: 180% 100%;
  box-shadow:
    0 16px 44px rgba(var(--purple-rgb), 0.22),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

.button--primary::before {
  position: absolute;
  top: -100%;
  left: -30%;
  width: 24%;
  height: 300%;
  content: "";
  background: rgba(255, 255, 255, 0.28);
  filter: blur(12px);
  transform: rotate(24deg);
  transition: left 0.7s ease;
}

.button--primary:hover {
  background-position: 100% 0;
  box-shadow:
    0 20px 54px rgba(var(--purple-rgb), 0.34),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

.button--primary:hover::before {
  left: 120%;
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.button--ghost:hover {
  border-color: rgba(var(--purple-rgb), 0.6);
  background: rgba(var(--purple-rgb), 0.08);
}

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

.button__icon {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease;
}

.button:hover .button__icon {
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: #c5c1cc;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover {
  color: white;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 150px 0 86px;
  background:
    linear-gradient(180deg, rgba(8, 8, 11, 0.2), var(--bg) 96%),
    radial-gradient(circle at 72% 34%, rgba(var(--purple-rgb), 0.1), transparent 28%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 80%);
}

.hero-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 44%, transparent 10%, var(--bg) 78%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-orb--one {
  top: 160px;
  right: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(var(--purple-rgb), 0.12);
  box-shadow:
    inset 0 0 90px rgba(var(--purple-rgb), 0.04),
    0 0 120px rgba(var(--purple-rgb), 0.03);
}

.hero-orb--two {
  bottom: 90px;
  left: -230px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
  gap: 45px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.03;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #a75aff 45%, #7d31dd 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #b7b3bd;
  font-size: 16.5px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero__trust p {
  max-width: 330px;
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}

.hero__trust strong {
  color: #c9c5ce;
  font-weight: 500;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #d9d3df;
  background: linear-gradient(135deg, #2a2231, #17131b);
  font-size: 10px;
  font-weight: 700;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:last-child {
  color: white;
  background: var(--purple-dark);
}

.hero__visual {
  position: relative;
  min-height: 570px;
  perspective: 1000px;
}

.system-card {
  position: absolute;
  top: 18px;
  right: 0;
  width: min(100%, 455px);
  min-height: 510px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 45%),
    rgba(15, 15, 21, 0.86);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px rgba(255, 255, 255, 0.08);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.3s ease;
}

.system-card::before {
  position: absolute;
  inset: -40%;
  pointer-events: none;
  content: "";
  background: conic-gradient(
    from 180deg,
    transparent 0 28%,
    rgba(var(--purple-rgb), 0.16) 36%,
    transparent 48% 100%
  );
  opacity: 0.55;
  animation: slowSpin 16s linear infinite;
}

.system-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.025) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(255, 255, 255, 0.025) 50%, transparent 50.2%);
  background-size: 60px 60px;
  mask-image: linear-gradient(black, transparent 85%);
}

.system-card > * {
  position: relative;
  z-index: 1;
}

.system-card__top,
.system-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.system-card__top > span:first-child {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.live-pill {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(110, 231, 183, 0.15);
  border-radius: 999px;
  color: #a8dfc9;
  background: rgba(110, 231, 183, 0.06);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.system-orbit {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 360px;
  margin: 22px auto 10px;
}

.orbit-ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--purple-light);
  box-shadow: 0 0 12px var(--purple);
}

.orbit-ring--outer {
  width: 290px;
  height: 290px;
  border-style: dashed;
  animation: rotate 48s linear infinite;
}

.orbit-ring--outer::before {
  top: 18px;
  left: 60px;
}

.orbit-ring--outer::after {
  right: 28px;
  bottom: 42px;
}

.orbit-ring--inner {
  width: 178px;
  height: 178px;
  border-color: rgba(var(--purple-rgb), 0.18);
  box-shadow:
    0 0 50px rgba(var(--purple-rgb), 0.05),
    inset 0 0 40px rgba(var(--purple-rgb), 0.04);
  animation: rotateReverse 38s linear infinite;
}

.orbit-ring--inner::before {
  top: 22px;
  right: 18px;
}

.orbit-ring--inner::after {
  bottom: 10px;
  left: 58px;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px solid rgba(var(--purple-rgb), 0.35);
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(145deg, rgba(var(--purple-rgb), 0.2), rgba(12, 12, 17, 0.96));
  box-shadow:
    0 0 60px rgba(var(--purple-rgb), 0.17),
    inset 0 1px rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.orbit-center img {
  display: block;
  width: 76px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(var(--purple-rgb), 0.22));
}

.orbit-node {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #bcb7c4;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.orbit-node b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: white;
  background: #14141b;
  font-family: var(--font-display);
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.orbit-node--e {
  top: 20px;
  left: 22px;
}

.orbit-node--n {
  top: 64px;
  right: -6px;
}

.orbit-node--v {
  right: 12px;
  bottom: 60px;
}

.orbit-node--i {
  bottom: 43px;
  left: -2px;
}

.orbit-node--l {
  right: 48px;
  bottom: 14px;
}

.system-card__footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.system-card__footer > div:first-child {
  display: grid;
  gap: 3px;
}

.system-card__footer span {
  color: var(--muted-2);
  font-size: 9px;
  text-transform: uppercase;
}

.system-card__footer strong {
  font-size: 13px;
}

.mini-chart {
  display: flex;
  gap: 5px;
  align-items: end;
  width: 84px;
  height: 34px;
}

.mini-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(to top, var(--purple-dark), var(--purple-light));
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 195px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(17, 17, 24, 0.92);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.floating-chip--one {
  right: -32px;
  bottom: 64px;
}

.floating-chip--two {
  top: 112px;
  left: -42px;
}

.floating-chip small,
.floating-chip strong {
  display: block;
}

.floating-chip small {
  margin-bottom: 1px;
  color: var(--muted-2);
  font-size: 9px;
}

.floating-chip strong {
  font-size: 12px;
}

.chip-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
  font-size: 16px;
}

.chip-icon--soft {
  color: var(--purple-light);
  background: rgba(var(--purple-rgb), 0.1);
}

.metrics {
  padding-top: 100px;
  border-bottom: 1px solid var(--line);
  background: #0a0a0e;
}

.metrics__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 55px;
}

.metrics__intro h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(32px, 3.6vw, 46px);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric-card {
  position: relative;
  min-height: 245px;
  padding: 30px 26px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.metric-card > * {
  position: relative;
  z-index: 1;
}

.metric-card::before {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: rgba(var(--purple-rgb), 0.08);
  filter: blur(35px);
  transition: transform 0.4s ease;
}

.metric-card::after {
  position: absolute;
  top: -45%;
  left: -80%;
  z-index: 0;
  width: 48%;
  height: 190%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  filter: blur(10px);
  opacity: 0;
  transform: rotate(18deg);
  transition:
    left 0.85s ease,
    opacity 0.35s ease;
}

.metric-card:hover {
  z-index: 2;
  background: rgba(var(--purple-rgb), 0.05);
  transform: translateY(-6px);
}

.metric-card:hover::after {
  left: 125%;
  opacity: 0.75;
}

.metric-card:hover::before {
  transform: scale(1.8);
}

.metric-card--accent {
  background:
    linear-gradient(145deg, rgba(var(--purple-rgb), 0.2), transparent 65%),
    #121017;
}

.metric-card__index {
  display: block;
  margin-bottom: 55px;
  color: #66616e;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.metric-card p {
  max-width: 190px;
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.problem {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 50%, rgba(var(--purple-rgb), 0.08), transparent 32%),
    var(--bg);
}

.problem.section {
  padding-block: 108px;
}

.problem::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, var(--line), transparent);
}

.problem__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 82px;
  align-items: start;
}

.problem__heading {
  position: sticky;
  top: 130px;
}

.problem__heading h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4vw, 50px);
}

.problem__heading > p:last-child {
  max-width: 500px;
  color: var(--muted);
  font-size: 16px;
}

.problem__cta {
  margin-top: 30px;
}

.problem__cards {
  display: grid;
  gap: 12px;
}

.pain-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  min-height: 132px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 50%),
    #0d0d12;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.pain-card:hover {
  border-color: rgba(var(--purple-rgb), 0.35);
  transform: translateX(-8px);
}

.pain-card > span {
  color: var(--purple-light);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.pain-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.pain-card p {
  max-width: 440px;
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 65px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4.4vw, 54px);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.method {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 20%, rgba(var(--purple-rgb), 0.09), transparent 27%),
    #09090d;
}

.method.section {
  padding-block: 96px;
}

.method .section-heading {
  margin-bottom: 44px;
}

.method__rail {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 1120px;
  margin-inline: auto;
}

.method__progress {
  display: none;
}

.method__progress span {
  display: none;
}

.method-step {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(var(--purple-rgb), 0.11), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 54%),
    #0d0d12;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
}

.method-step::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--purple), var(--purple-light));
  opacity: 0;
  content: "";
  transition: opacity 0.25s ease;
}

.method-step:hover,
.method-step[open] {
  border-color: rgba(var(--purple-rgb), 0.42);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    0 0 45px rgba(var(--purple-rgb), 0.08),
    inset 0 1px rgba(255, 255, 255, 0.065);
}

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

.method-step[open]::before {
  opacity: 1;
}

.method-step__summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  padding: 21px 24px;
  cursor: pointer;
  list-style: none;
}

.method-step__summary::-webkit-details-marker {
  display: none;
}

.method-step__index {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: var(--purple-light);
  background:
    linear-gradient(145deg, rgba(var(--purple-rgb), 0.18), transparent),
    #101016;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.method-step__content > span {
  display: block;
  margin-bottom: 6px;
  color: var(--purple-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-step__content h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.05;
}

.method-step__toggle {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.25s ease;
}

.method-step__toggle::before,
.method-step__toggle::after {
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: var(--purple-light);
  content: "";
}

.method-step__toggle::after {
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}

.method-step[open] .method-step__toggle {
  border-color: rgba(var(--purple-rgb), 0.44);
  background: rgba(var(--purple-rgb), 0.1);
}

.method-step[open] .method-step__toggle::after {
  transform: rotate(0deg);
}

.method-step__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: center;
  padding: 0 24px 24px 100px;
}

.method-step__body p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.method-step__visual {
  position: relative;
  height: 150px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
    #0d0d12;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.visual-diagnosis {
  display: grid;
  place-items: center;
}

.visual-diagnosis span {
  position: absolute;
  width: 62%;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(var(--purple-rgb), 0.28), transparent 42%),
    rgba(255, 255, 255, 0.03);
}

.visual-diagnosis span:nth-child(1) {
  top: 28px;
  left: 28px;
}

.visual-diagnosis span:nth-child(2) {
  top: 58px;
  right: 25px;
  opacity: 0.72;
}

.visual-diagnosis span:nth-child(3) {
  bottom: 28px;
  left: 44px;
  width: 48%;
  opacity: 0.55;
}

.visual-diagnosis i {
  position: absolute;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(var(--purple-rgb), 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.23), transparent 58%);
  box-shadow: 0 0 34px rgba(var(--purple-rgb), 0.16);
}

.visual-attraction .radar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(var(--purple-rgb), 0.38);
  border-radius: 50%;
  background:
    conic-gradient(from 40deg, rgba(var(--purple-rgb), 0.3), transparent 28%),
    repeating-radial-gradient(circle, transparent 0 24px, rgba(255, 255, 255, 0.06) 25px 26px);
  transform: translate(-50%, -50%);
}

.visual-attraction i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 15px var(--purple);
}

.visual-attraction i:nth-child(2) { top: 28%; left: 28%; }
.visual-attraction i:nth-child(3) { top: 22%; right: 22%; }
.visual-attraction i:nth-child(4) { right: 30%; bottom: 23%; }
.visual-attraction i:nth-child(5) { bottom: 32%; left: 21%; }
.visual-attraction i:nth-child(6) { top: 50%; left: 50%; }

.visual-nurture {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 22px;
}

.message {
  width: 78%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #15151c;
}

.message--two {
  align-self: end;
  border-color: rgba(var(--purple-rgb), 0.2);
  background: rgba(var(--purple-rgb), 0.11);
}

.message--three {
  width: 58%;
}

.message span,
.message i {
  display: block;
  height: 5px;
  margin-bottom: 6px;
  border-radius: 4px;
  background: #514d58;
}

.message span { width: 24%; background: var(--purple); }
.message i:nth-child(2) { width: 90%; }
.message i:nth-child(3) { width: 62%; margin: 0; }

.visual-sales {
  display: grid;
  place-items: center;
}

.funnel-layer {
  position: absolute;
  top: 34px;
  width: 218px;
  height: 32px;
  border: 1px solid rgba(var(--purple-rgb), 0.35);
  background: rgba(var(--purple-rgb), 0.09);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.funnel-layer:nth-child(2) {
  top: 70px;
  width: 176px;
  opacity: 0.76;
}

.funnel-layer:nth-child(3) {
  top: 106px;
  width: 136px;
  opacity: 0.5;
}

.visual-sales span {
  position: absolute;
  bottom: 22px;
  padding: 7px 13px;
  border-radius: 8px;
  color: white;
  background: var(--purple);
  box-shadow: 0 0 25px rgba(var(--purple-rgb), 0.32);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.visual-intelligence {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 35px 35px;
}

.visual-intelligence .data-line {
  position: absolute;
  inset: 18px;
  background: linear-gradient(155deg, transparent 0 42%, rgba(var(--purple-rgb), 0.8) 42.5% 43%, transparent 43.5% 50%, rgba(var(--purple-rgb), 0.8) 50.5% 51%, transparent 51.5% 61%, rgba(var(--purple-rgb), 0.8) 61.5% 62%, transparent 62.5%);
  filter: drop-shadow(0 0 7px rgba(var(--purple-rgb), 0.45));
}

.visual-intelligence > span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 8px;
  height: 8px;
  border: 2px solid var(--purple-light);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 12px var(--purple);
}

.results {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #0b0b0f;
}

.carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--muted-2);
  font-size: 10px;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #c8c3cd;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.carousel-controls button:hover {
  border-color: rgba(var(--purple-rgb), 0.4);
  color: white;
  background: rgba(var(--purple-rgb), 0.07);
}

.carousel-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.case-track {
  display: grid;
  grid-auto-columns: minmax(280px, 31%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 16px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.case-track::-webkit-scrollbar {
  display: none;
}

.case-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.case-track:focus-visible {
  outline: 1px solid rgba(var(--purple-rgb), 0.6);
  outline-offset: 6px;
  border-radius: 14px;
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 50%),
    #101015;
  scroll-snap-align: start;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.case-card > * {
  position: relative;
  z-index: 1;
}

.case-card::before {
  position: absolute;
  top: -45%;
  left: -80%;
  z-index: 0;
  width: 48%;
  height: 190%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  filter: blur(10px);
  opacity: 0;
  transform: rotate(18deg);
  transition:
    left 0.85s ease,
    opacity 0.35s ease;
}

.case-card:hover {
  border-color: rgba(var(--purple-rgb), 0.38);
  transform: translateY(-4px);
}

.case-card:hover::before {
  left: 125%;
  opacity: 0.75;
}

.case-card::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  background: rgba(var(--purple-rgb), 0.07);
  filter: blur(35px);
  z-index: 0;
}

.case-card--featured {
  background:
    linear-gradient(145deg, rgba(var(--purple-rgb), 0.14), transparent 62%),
    #101015;
}

.case-card--purple {
  background:
    linear-gradient(150deg, rgba(var(--purple-rgb), 0.22), transparent 65%),
    #111017;
}

.case-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 8px;
}

.case-tag {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
}

.case-card__result {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 36px;
}

.case-card__result > span {
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: 8px;
  text-transform: uppercase;
}

.case-card__result > strong {
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.case-card__result em {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 7px;
  color: #d9c1ef;
  background: rgba(var(--purple-rgb), 0.14);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.case-card__comparison {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: end;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.case-card__comparison > div {
  display: grid;
  min-width: 0;
}

.case-card__comparison > div:last-child {
  text-align: right;
}

.case-card__comparison small {
  margin-bottom: 3px;
  color: var(--muted-2);
  font-size: 7px;
  text-transform: uppercase;
}

.case-card__comparison strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-arrow {
  color: var(--purple-light);
  font-size: 15px;
}

.carousel-hint {
  display: none;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 9px;
}

.results__note {
  max-width: 700px;
  margin: 28px 0 0;
  color: #5f5b66;
  font-size: 10px;
}

.services {
  padding-block: 96px;
  background:
    radial-gradient(circle at 15% 30%, rgba(var(--purple-rgb), 0.08), transparent 26%),
    var(--bg);
}

.services__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.services__heading {
  position: sticky;
  top: 130px;
}

.services__heading h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.5vw, 46px);
}

.services__heading > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.service-row {
  border-bottom: 1px solid var(--line);
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.service-row:hover,
.service-row.is-open {
  border-color: rgba(var(--purple-rgb), 0.25);
  background: linear-gradient(90deg, rgba(var(--purple-rgb), 0.07), transparent);
  box-shadow: inset 3px 0 rgba(var(--purple-rgb), 0.5);
}

.service-row__button {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 18px;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 0 18px 0 0;
  border: 0;
  text-align: left;
  background: none;
  cursor: pointer;
}

.service-row__button:focus-visible {
  outline: 1px solid rgba(var(--purple-rgb), 0.65);
  outline-offset: 5px;
  border-radius: 10px;
}

.service-row__button > span {
  color: var(--purple-light);
  font-size: 9px;
  font-weight: 700;
}

.service-row__button h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.service-row__button i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple-light);
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.service-row.is-open .service-row__button i {
  border-color: rgba(var(--purple-rgb), 0.45);
  color: white;
  transform: rotate(45deg);
}

.service-row__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.service-row__panel p {
  max-width: 560px;
  margin: 0;
  overflow: hidden;
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.6;
}

.service-row.is-open .service-row__panel {
  grid-template-rows: 1fr;
}

.service-row.is-open .service-row__panel p {
  padding: 0 70px 20px 60px;
}

.testimonials {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #0a0a0e;
}

.proof-label {
  margin: -5px 0 16px;
}

.proof-label strong {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-label strong {
  color: #e8d8f7;
  background: rgba(var(--purple-rgb), 0.16);
}

.proof-author {
  display: flex;
  gap: 11px;
  align-items: center;
}

.proof-author > span {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  place-items: center;
  border: 1px solid rgba(var(--purple-rgb), 0.25);
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, rgba(var(--purple-rgb), 0.25), #17131c);
  font-size: 11px;
  font-weight: 700;
}

.proof-author > div {
  display: grid;
  line-height: 1.3;
}

.proof-author strong {
  font-size: 11px;
}

.proof-author small {
  color: var(--muted-2);
  font-size: 9px;
}

.testimonial-carousel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--muted-2);
  font-size: 10px;
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-carousel__controls {
  display: flex;
  gap: 8px;
}

.testimonial-carousel__controls button {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #c8c3cd;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.testimonial-carousel__controls button:hover {
  border-color: rgba(var(--purple-rgb), 0.4);
  color: white;
  background: rgba(var(--purple-rgb), 0.07);
}

.testimonial-carousel__controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.testimonial-track {
  display: grid;
  grid-auto-columns: calc((100% - 42px) / 4);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 16px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.testimonial-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.testimonial-track:focus-visible {
  outline: 1px solid rgba(var(--purple-rgb), 0.6);
  outline-offset: 6px;
  border-radius: 14px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent 45%),
    #101015;
  scroll-snap-align: start;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-card::before {
  position: absolute;
  top: -45%;
  left: -80%;
  z-index: 0;
  width: 48%;
  height: 190%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  filter: blur(10px);
  opacity: 0;
  transform: rotate(18deg);
  transition:
    left 0.85s ease,
    opacity 0.35s ease;
}

.testimonial-card:hover {
  border-color: rgba(var(--purple-rgb), 0.3);
  transform: translateY(-4px);
}

.testimonial-card:hover::before {
  left: 125%;
  opacity: 0.75;
}

.testimonial-card--result {
  background:
    linear-gradient(135deg, rgba(var(--purple-rgb), 0.12), transparent 65%),
    #101015;
}

.testimonial-card__top {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 19px;
}

.testimonial-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(var(--purple-rgb), 0.25);
  border-radius: 7px;
  color: var(--purple-light);
  background: rgba(var(--purple-rgb), 0.07);
  font-size: 9px;
}

.testimonial-type {
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.proof-link {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #bdb8c3;
  background: transparent;
  font-size: 8px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.proof-link:hover {
  border-color: rgba(var(--purple-rgb), 0.4);
  color: white;
  background: rgba(var(--purple-rgb), 0.07);
}

.testimonial-card .proof-author > span {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  font-size: 9px;
}

.testimonial-card .proof-author strong {
  font-size: 10px;
}

.testimonial-card .proof-author small {
  font-size: 8px;
}

.testimonial-carousel__hint {
  display: none;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 9px;
}

.proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition:
    visibility 0.25s,
    opacity 0.25s ease;
}

.proof-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.proof-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 3, 5, 0.88);
  cursor: pointer;
}

.proof-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(92vw, 760px);
  max-height: 88vh;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #111117;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.proof-lightbox.is-open .proof-lightbox__panel {
  transform: translateY(0) scale(1);
}

.proof-lightbox__panel img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(88vh - 24px);
  border-radius: 11px;
}

.proof-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  background: rgba(8, 8, 11, 0.8);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

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

.faq.section {
  padding-block: 72px;
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 58px;
}

.faq__heading {
  position: static;
  align-self: start;
}

.faq__heading h2 {
  max-width: 390px;
  font-size: clamp(28px, 3vw, 36px);
}

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

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

.faq-item button {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 70px;
  padding: 0;
  border: 0;
  text-align: left;
  background: none;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  content: "";
  background: #aaa5b0;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] span {
  border-color: rgba(var(--purple-rgb), 0.5);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
  max-width: 660px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 20px;
}

.diagnostic {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(var(--purple-rgb), 0.025), transparent),
    #09090d;
}

.diagnostic__glow {
  position: absolute;
  right: -240px;
  bottom: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(var(--purple-rgb), 0.1);
  opacity: 0.45;
}

.diagnostic__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.diagnostic__copy h2 {
  max-width: 550px;
  margin-bottom: 26px;
  font-size: clamp(36px, 4.5vw, 56px);
}

.diagnostic__copy > p {
  max-width: 520px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 16px;
}

.form-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 45%),
    rgba(16, 16, 22, 0.92);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.35),
    inset 0 1px rgba(255, 255, 255, 0.06);
}

.form-card > * {
  position: relative;
  z-index: 1;
}

.form-card::before {
  position: absolute;
  top: -45%;
  left: -80%;
  z-index: 0;
  width: 42%;
  height: 190%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  filter: blur(10px);
  opacity: 0;
  transform: rotate(18deg);
  transition:
    left 0.85s ease,
    opacity 0.35s ease;
}

.form-card:hover::before,
.form-card:focus-within::before {
  left: 125%;
  opacity: 0.7;
}

.form-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-card__header span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.form-card__header small {
  color: var(--muted-2);
  font-size: 9px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-bottom: 21px;
}

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid label > span {
  color: #bbb6c1;
  font-size: 10px;
  font-weight: 600;
}

.form-grid input,
.form-grid select {
  width: 100%;
  height: 51px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: white;
  background: rgba(255, 255, 255, 0.026);
  font-size: 12px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.form-grid select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7c7783 50%),
    linear-gradient(135deg, #7c7783 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-grid input::placeholder,
.form-grid select:invalid {
  color: #625e68;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: rgba(var(--purple-rgb), 0.7);
  background-color: rgba(var(--purple-rgb), 0.045);
  box-shadow: 0 0 0 3px rgba(var(--purple-rgb), 0.09);
}

.form-grid label.has-error input,
.form-grid label.has-error select {
  border-color: #d35a7d;
}

.field-error {
  display: none;
  color: #e685a0;
  font-size: 9px;
}

.has-error .field-error {
  display: block;
}

.form-privacy {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin: 14px 0 0;
  color: #68646f;
  font-size: 9px;
}

.form-success {
  display: none;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(110, 231, 183, 0.18);
  border-radius: 12px;
  color: #b8e8d4;
  background: rgba(110, 231, 183, 0.055);
}

.form-success.is-visible {
  display: flex;
}

.form-success > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: #07130e;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.form-success strong {
  display: block;
  font-size: 11px;
}

.form-success p {
  margin: 1px 0 0;
  color: #82aa99;
  font-size: 9px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07070a;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 190px;
}

.site-footer__top > div:first-child img {
  width: 120px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.site-footer__top p {
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 11px;
}

.site-footer__right {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.site-footer__links {
  display: flex;
  gap: 28px;
  color: #99949f;
  font-size: 11px;
}

.site-footer__links a:hover {
  color: white;
}

.site-footer__social {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(var(--purple-rgb), 0.28);
  border-radius: 999px;
  color: #e8e1f2;
  background: rgba(var(--purple-rgb), 0.07);
  font-size: 11px;
  font-weight: 700;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.site-footer__social svg {
  width: 17px;
  height: 17px;
}

.site-footer__social:hover {
  border-color: rgba(var(--purple-rgb), 0.55);
  color: white;
  background: rgba(var(--purple-rgb), 0.13);
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  border-top: 1px solid var(--line);
  color: #514d57;
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

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

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(1.5%, -1.2%, 0) scale(1.04);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .hero__layout {
    grid-template-columns: 1fr 430px;
    gap: 35px;
  }

  .floating-chip--one {
    right: -5px;
  }

  .floating-chip--two {
    left: -16px;
  }

  .method-step__body {
    grid-template-columns: minmax(0, 1fr) 270px;
    padding-left: 94px;
  }

  .services__layout,
  .faq__layout {
    gap: 44px;
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 28px) / 3);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding-block: 98px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    padding-inline: 16px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 100%;
    height: 1px;
    background: white;
    transition: transform 0.3s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 100px 24px 40px;
    visibility: hidden;
    opacity: 0;
    background: rgba(8, 8, 11, 0.98);
    transform: translateY(-20px);
    transition:
      visibility 0.3s,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu > a:not(.button) {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
  }

  .mobile-menu .button {
    margin-top: 20px;
  }

  .hero {
    min-height: auto;
    padding: 145px 0 115px;
  }

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

  .hero__content {
    text-align: center;
  }

  .hero h1,
  .hero__lead {
    margin-inline: auto;
  }

  .hero__actions,
  .hero__trust {
    justify-content: center;
  }

  .hero__trust {
    text-align: left;
  }

  .hero__visual {
    width: min(100%, 540px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: auto;
    margin: 20px auto 0;
    perspective: none;
  }

  .system-card {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 455px;
    min-height: auto;
    margin: 0 auto;
    transform: none !important;
  }

  .system-card::before,
  .orbit-ring--outer,
  .orbit-ring--inner {
    animation: none;
  }

  .floating-chip {
    position: relative;
    inset: auto;
    min-width: 0;
    width: 100%;
  }

  .floating-chip--one {
    right: auto;
  }

  .floating-chip--two {
    left: auto;
  }

  .metrics__intro {
    display: block;
  }

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

  .problem__layout,
  .services__layout,
  .faq__layout,
  .diagnostic__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services.section {
    padding-block: 74px;
  }

  .faq.section {
    padding-block: 62px;
  }

  .faq__layout {
    gap: 26px;
  }

  .faq__heading h2 {
    max-width: 520px;
    font-size: clamp(26px, 5.4vw, 34px);
  }

  .problem::before {
    display: none;
  }

  .problem__heading,
  .services__heading,
  .faq__heading {
    position: static;
  }

  .method-step__body {
    grid-template-columns: 1fr;
  }

  .method-step__visual {
    width: 100%;
  }

  .case-track {
    grid-auto-columns: minmax(270px, 62%);
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 14px) / 2);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 78px;
  }

  .faq.section {
    padding-block: 52px;
  }

  .faq__layout {
    gap: 22px;
  }

  .faq-item button {
    min-height: 62px;
    gap: 16px;
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 12.5px;
  }

  .site-header {
    width: calc(100% - 16px);
  }

  .site-header.is-scrolled {
    top: 8px;
  }

  .brand {
    width: 104px;
  }

  .brand img {
    width: 112px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    width: min(100%, 370px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .system-card {
    min-height: auto;
    padding: 16px;
    border-radius: 24px;
  }

  .system-orbit {
    width: min(100%, 280px);
    height: 280px;
    margin: 16px auto 8px;
    transform: none;
  }

  .system-card__footer {
    margin-top: 0;
    padding-top: 14px;
  }

  .floating-chip {
    min-width: 0;
    padding: 10px;
    gap: 8px;
  }

  .chip-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
  }

  .floating-chip--one {
    right: auto;
    bottom: auto;
  }

  .floating-chip--two {
    top: auto;
    left: auto;
  }

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

  .metric-card {
    min-height: 210px;
  }

  .problem__layout {
    gap: 38px;
  }

  .problem.section {
    padding-block: 82px;
  }

  .problem__cta {
    width: 100%;
  }

  .pain-card {
    grid-template-columns: 34px 1fr;
    min-height: auto;
    padding: 20px 18px;
  }

  .pain-card h3 {
    font-size: 19px;
  }

  .pain-card p {
    font-size: 12.5px;
  }

  .method .section-heading {
    margin-bottom: 34px;
  }

  .method.section {
    padding-block: 72px;
  }

  .method-step__content h3 {
    font-size: 21px;
  }

  .method-step__summary {
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 18px;
  }

  .method-step__index {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 12px;
  }

  .method-step__toggle {
    width: 30px;
    height: 30px;
  }

  .method-step__body {
    padding: 0 18px 18px;
  }

  .method-step__body p {
    font-size: 13px;
  }

  .method-step__visual {
    height: 165px;
  }

  .carousel-toolbar > span {
    display: none;
  }

  .carousel-controls {
    margin-left: auto;
  }

  .case-track {
    grid-auto-columns: min(82vw, 292px);
    gap: 12px;
    margin-right: calc((100vw - 100%) / -2);
    padding-right: 16px;
  }

  .case-card {
    min-height: 280px;
    padding: 19px 17px;
  }

  .carousel-hint {
    display: flex;
  }

  .services.section {
    padding-block: 58px;
  }

  .service-row__button {
    grid-template-columns: 30px 1fr 24px;
    gap: 12px;
    min-height: 58px;
    padding-right: 0;
  }

  .service-row__button h3 {
    font-size: 15px;
  }

  .service-row.is-open .service-row__panel p {
    padding: 0 8px 16px 42px;
  }

  .testimonial-carousel__top > span {
    display: none;
  }

  .testimonial-carousel__controls {
    margin-left: auto;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
    gap: 12px;
    margin-right: 0;
    padding-inline: 0;
  }

  .testimonial-card {
    min-height: 225px;
    padding: 19px 17px;
  }

  .testimonial-card__footer {
    gap: 14px;
  }

  .testimonial-carousel__hint {
    display: flex;
  }

  .proof-lightbox {
    padding: 12px;
  }

  .proof-lightbox__panel {
    max-width: 100%;
    padding: 8px;
    border-radius: 14px;
  }

  .proof-lightbox__close {
    top: 13px;
    right: 13px;
  }

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

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

  .site-footer__top {
    display: grid;
    gap: 30px;
    padding-block: 45px;
  }

  .site-footer__right {
    display: grid;
    gap: 22px;
    justify-content: start;
  }

  .site-footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom {
    display: grid;
    gap: 5px;
    padding-block: 22px;
  }
}

@media (max-width: 390px) {
  .hero__visual {
    width: min(100%, 330px);
    grid-template-columns: 1fr;
  }

  .system-card {
    grid-column: auto;
  }

  .system-orbit {
    width: min(100%, 250px);
    height: 250px;
  }

  .orbit-ring--outer {
    width: 230px;
    height: 230px;
  }

  .orbit-ring--inner {
    width: 150px;
    height: 150px;
  }

  .orbit-center {
    width: 82px;
    height: 82px;
    border-radius: 23px;
  }

  .orbit-center img {
    width: 64px;
  }

  .orbit-node {
    gap: 5px;
    font-size: 8px;
  }

  .orbit-node b {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 10px;
  }

  .orbit-node--e {
    top: 20px;
    left: 2px;
  }

  .orbit-node--n {
    top: 58px;
    right: -6px;
  }

  .orbit-node--v {
    right: 8px;
    bottom: 50px;
  }

  .orbit-node--i {
    bottom: 36px;
    left: 0;
  }

  .orbit-node--l {
    right: 34px;
    bottom: 12px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
