:root {
  --color-bg: #111112;
  --color-surface: rgba(30, 30, 37, 0.4);
  --color-purple: #8d51ff;
  --color-purple-2: #a474ff;
  --color-gray: #ededed;
  --color-white: #ffffff;
  --color-muted: #7c7c7c;
  --color-muted-2: #49494d;

  --radius-pill: 46px;
  --radius-sm: 8px;
  --radius-md: 16px;

  --container-desktop: 1200px;
  --container-mobile: 390px;
}

@font-face {
  font-family: "Overused Grotesk";
  src: url("../fonts/OverusedGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("../fonts/OverusedGrotesk-Roman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("../fonts/OverusedGrotesk-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

html {
  background: var(--color-bg);
  color: var(--color-gray);
  font-family: "Overused Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 300;
  scroll-behavior: smooth;
  text-rendering: geometricPrecision;
}

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

body {
  margin: 0;
  background: var(--color-bg);
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      1200px 900px at 50% -120px,
      rgba(141, 81, 255, 0.95) 0%,
      rgba(141, 81, 255, 0.55) 42%,
      rgba(17, 17, 18, 0) 76%
    ),
    linear-gradient(180deg, rgba(17, 17, 18, 0) 0%, rgba(17, 17, 18, 1) 70%);
  pointer-events: none;
  z-index: -1;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(30, 30, 37, 0.9);
  border: 1px solid var(--color-purple);
}

.container {
  width: min(100%, var(--container-desktop));
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}

@media (max-width: 960px) {
  .container {
    width: min(100%, var(--container-mobile));
    padding: 0 20px;
  }
}

.section {
  position: relative;
  scroll-margin-top: 120px;
}

.h1 {
  font-size: 3.5rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0;
}

.h2 {
  font-size: 3rem;
  line-height: 105%;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0;
}

.h4 {
  font-size: 2.25rem;
  line-height: 115%;
  font-weight: 300;
  margin: 0;
}

.h5 {
  font-size: 1.75rem;
  line-height: 115%;
  font-weight: 300;
  margin: 0;
}

.h6 {
  font-size: 1.3125rem;
  line-height: 115%;
  font-weight: 300;
  margin: 0;
}

.p1 {
  font-size: 1rem;
  line-height: 125%;
  letter-spacing: 0.02em;
  font-weight: 300;
  margin: 0;
}

.psmall {
  font-size: 0.75rem;
  line-height: 125%;
  letter-spacing: 0.02em;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 960px) {
  .h1 {
    font-size: 2.5rem;
    line-height: 110%;
  }
  .h2 {
    font-size: 2rem;
    line-height: 110%;
  }
  .h4 {
    font-size: 1.625rem;
    line-height: 115%;
  }
  .h5 {
    font-size: 1.375rem;
    line-height: 125%;
  }
  .h6 {
    font-size: 1.125rem;
    line-height: 130%;
  }
  .psmall {
    font-size: 0.875rem;
    line-height: 140%;
  }

  .p1 {
    line-height: 140%;
  }
}

.section-pill {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  height: 28px;
  border-radius: 16px;
  border: 1px solid var(--color-purple);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  margin: 0 auto 20px;
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--container-desktop));
  padding: 0 60px;
  z-index: 1000;
  pointer-events: none;
}

.nav-pill {
  width: 100%;
  max-width: 1080px;
  height: 66px;
  margin: 0 auto;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 0.25px solid var(--color-purple);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.nav-brand {
  flex: 0 0 auto;
}

.nav-logo {
  width: 170px;
  height: 58px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
}

.nav-link {
  opacity: 0.9;
}

.nav-link:hover {
  opacity: 1;
}

.nav-hamburger {
  display: none;
}

@media (max-width: 960px) {
  .site-header {
    width: min(100%, var(--container-mobile));
    padding: 0 20px;
  }

  .nav-pill {
    width: 350px;
    height: 46px;
    justify-content: space-between;
    gap: 190px;
    padding: 4px 10px;
  }

  .nav-logo {
    width: 112px;
    height: 38px;
  }

  .nav-links {
    display: none;
  }

  .nav-pill .btn-primary--nav {
    display: none;
  }

  .nav-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 18px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-purple);
  border-radius: 16px;
  padding: 4px;
  height: 31px;
  color: #fff;
}

.btn-primary span {
  display: inline-block;
  padding: 0 6px;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.btn-icon {
  width: 23px;
  height: 23px;
}

.btn-primary--nav {
  width: 98px;
}

.btn-primary--menu {
  width: 350px;
  height: 31px;
  border-radius: 16px;
  padding: 4px;
  margin: 0 auto;
}

.btn-primary--submit {
  width: 100%;
  max-width: 1080px;
  height: 31px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(17, 17, 18, 0.96);
  backdrop-filter: blur(6px);
  z-index: 1200;
}

.mobile-menu[data-open="true"] {
  display: grid;
  place-items: start center;
}

.mobile-menu__panel {
  width: min(100%, var(--container-mobile));
  height: 816px;
  padding: 23px 20px 0;
  position: relative;
}

.mobile-menu__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 500px at 50% 0%, rgba(141, 81, 255, 0.45), rgba(17, 17, 18, 0) 55%),
    linear-gradient(180deg, rgba(17, 17, 18, 0) 0%, rgba(17, 17, 18, 0.9) 65%);
  pointer-events: none;
  z-index: -1;
}

.mobile-menu__nav-pill {
  width: 350px;
  height: 46px;
  padding: 4px 10px;
  border-radius: 46px;
  border: 0.25px solid var(--color-purple);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px);
}

.mobile-menu__links {
  margin-top: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  font-size: 26px;
  line-height: 115%;
  color: var(--color-gray);
}

.mobile-menu__link {
  opacity: 0.9;
}

.mobile-menu__link:hover {
  opacity: 1;
}

.btn-primary--menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 110px;
}

/* Hero */
.hero {
  height: 800px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(
      1100px 640px at 50% 0%,
      rgba(141, 81, 255, 0.92) 0%,
      rgba(141, 81, 255, 0.62) 36%,
      rgba(17, 17, 18, 0) 74%
    ),
    url("../assets/figma/bg-purple-lines.png");
  background-size: auto, 1368px 821px;
  background-repeat: no-repeat;
  background-position: center, 50% -21px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 18, 0) 0%, rgba(17, 17, 18, 0.4) 92%);
  pointer-events: none;
}

.container--hero {
  width: min(100%, var(--container-desktop));
  padding: 0 60px;
  z-index: 1;
}

.hero__content {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero__subtitle {
  width: 100%;
  max-width: 539px;
  opacity: 0.95;
}

.hero__cta {
  width: 181px;
}

@media (max-width: 960px) {
  .hero {
    height: 800px;
  }

  .container--hero {
    width: min(100%, var(--container-mobile));
    padding: 0 20px;
  }

  .hero__content {
    width: 350px;
    gap: 40px;
  }

  .hero__subtitle {
    width: 350px;
    opacity: 0.9;
    text-align: center;
  }
}

/* Mission */
.mission {
  padding: 120px 0 170px;
  text-align: center;
}

.mission__title {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.mission__title-strong {
  font-weight: 600;
}

.mission__title-light {
  font-weight: 300;
  margin-left: 10px;
}

.section-subtitle {
  width: 100%;
  max-width: 720px;
  margin: 10px auto 0;
  opacity: 0.85;
}

.mission__list {
  width: 100%;
  max-width: 713px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mission__item {
  height: 70px;
  padding: 12px;
  border: 1px solid var(--color-purple);
  border-radius: var(--radius-sm);
  background: rgba(17, 17, 18, 0.35);
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.mission__icon {
  width: 46px;
  height: 46px;
}

@media (max-width: 960px) {
  .mission {
    padding: 120px 0 140px;
  }

  .mission__title {
    width: 350px;
  }

  .section-subtitle {
    width: 350px;
  }

  .mission__list {
    width: 350px;
  }

  .mission__item {
    height: 58px;
    padding: 10px 12px;
  }

  .mission__icon {
    width: 36px;
    height: 36px;
  }
}

/* Compare */
.compare {
  padding: 120px 0 170px;
  text-align: center;
}

.compare__title {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.compare__frame {
  width: 100%;
  max-width: 1080px;
  min-height: 400px;
  margin: 60px auto 0;
  border: 1px solid var(--color-purple);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.compare__col {
  min-height: 360px;
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
  flex: 1;
}

.compare__col-title {
  text-align: left;
}

.compare__col--muted {
  color: var(--color-muted-2);
  opacity: 0.9;
}

.compare__col--active {
  border: 1px solid var(--color-purple);
  background: rgba(17, 17, 18, 0.35);
}

.compare__brand-strong {
  font-weight: 600;
}

.compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 21px;
  line-height: 115%;
}

.icon {
  width: 16px;
  height: 12px;
  flex: 0 0 auto;
  background-color: currentColor;
}

.icon--check {
  -webkit-mask-image: url("../assets/figma/icon-ui-check.svg");
  mask-image: url("../assets/figma/icon-ui-check.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.icon--x {
  width: 14px;
  height: 13px;
  -webkit-mask-image: url("../assets/figma/icon-ui-close-x.svg");
  mask-image: url("../assets/figma/icon-ui-close-x.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.icon--muted {
  color: var(--color-muted-2);
}

.icon--purple {
  color: var(--color-purple);
}

@media (max-width: 960px) {
  .compare {
    padding: 80px 0 140px;
  }

  .compare__frame {
    width: 350px;
    height: auto;
    padding: 16px;
    flex-direction: column;
    gap: 18px;
  }

  .compare__col {
    width: 100%;
    height: auto;
    padding: 22px 20px;
    gap: 20px;
  }

  .compare__col-title {
    text-align: left;
  }
}

/* Process */
.process {
  padding: 120px 0 150px;
}

.process__title,
.process__subtitle {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.process__subtitle {
  margin-top: 20px;
  opacity: 0.85;
}

.process__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  border: 1px solid var(--color-purple);
  border-radius: var(--radius-md);
  background: rgba(17, 17, 18, 0.35);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/figma/bg-purple-lines.png");
  background-size: 1368px 821px;
  background-repeat: no-repeat;
  background-position: 50% -500px;
  transform: scaleY(-1);
  opacity: 1;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 18, 0) 0%, rgba(17, 17, 18, 0.6) 100%);
  pointer-events: none;
}

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

.card--wide {
  grid-column: 1 / -1;
  height: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 30px;
}

.card__left {
  padding-right: 10px;
}

.card__title {
  margin-bottom: 18px;
}

.card__text {
  color: #c3c3c3;
  max-width: 410px;
}

.card__text--secondary {
  margin-top: 12px;
  color: #999;
}

.card__preview {
  position: absolute;
  top: 50%;
  right: 30px;
  left: 42%;
  transform: translateY(-50%) perspective(900px) rotateY(-14deg) rotateX(3deg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
  pointer-events: none;
}

.card__preview-item {
  width: 100%;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid rgba(141, 81, 255, 0.55);
  background: linear-gradient(135deg, rgba(30, 30, 42, 0.95) 0%, rgba(17, 17, 22, 0.98) 100%);
  backdrop-filter: blur(12px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(141, 81, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 20px;
}

.card__preview-item:first-child {
  border-color: rgba(141, 81, 255, 0.7);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(141, 81, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card__preview-content {
  flex: 1;
  min-width: 0;
}

.card__preview-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 125%;
  color: #fff;
}

.card__preview-sub {
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

/* Preview visuals — round stat icons */
.card__preview-visual {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(14, 14, 20, 0.95);
  border: 1px solid rgba(141, 81, 255, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(141, 81, 255, 0.08);
}

/* Scan icon — 3D cube / crosshair */
.card__preview-visual--scan .scan-icon {
  width: 32px;
  height: 32px;
  position: relative;
}

.scan-icon__corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--color-purple-2);
  border-style: solid;
  border-width: 0;
}

.scan-icon__corner--tl {
  top: 0; left: 0;
  border-top-width: 2.5px;
  border-left-width: 2.5px;
  border-top-left-radius: 3px;
}

.scan-icon__corner--tr {
  top: 0; right: 0;
  border-top-width: 2.5px;
  border-right-width: 2.5px;
  border-top-right-radius: 3px;
}

.scan-icon__corner--bl {
  bottom: 0; left: 0;
  border-bottom-width: 2.5px;
  border-left-width: 2.5px;
  border-bottom-left-radius: 3px;
}

.scan-icon__corner--br {
  bottom: 0; right: 0;
  border-bottom-width: 2.5px;
  border-right-width: 2.5px;
  border-bottom-right-radius: 3px;
}

.scan-icon__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--color-purple-2);
  box-shadow: 0 0 10px rgba(164, 116, 255, 0.6);
}

/* Doc icon — document with lines */
.card__preview-visual--doc .doc-icon {
  width: 26px;
  height: 32px;
  border: 2px solid var(--color-purple-2);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 4px;
}

.doc-icon__line {
  height: 2px;
  border-radius: 1px;
  background: var(--color-purple-2);
  opacity: 0.7;
}

.doc-icon__line--full { width: 100%; }
.doc-icon__line--mid { width: 70%; }
.doc-icon__line--short { width: 50%; }
.doc-icon__line--accent {
  width: 80%;
  background: var(--color-purple-2);
  opacity: 1;
  height: 2.5px;
  box-shadow: 0 0 6px rgba(164, 116, 255, 0.4);
}

.card--half {
  height: 364px;
  padding: 30px;
}

.card__progress {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.card__progress-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card__progress-line {
  stroke: var(--color-purple);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

.card--icons .card__icons {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 75%;
  opacity: 0.95;
  z-index: 0;
}

.container--features {
  padding-top: 120px;
  padding-bottom: 30px;
}

.features__title,
.features__subtitle {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.features__subtitle {
  margin-top: 20px;
  opacity: 0.85;
}

.features__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.feature-card {
  height: 360px;
  border: 1px solid var(--color-purple);
  border-radius: var(--radius-md);
  padding: 30px;
  background: rgba(17, 17, 18, 0.35);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/figma/bg-purple-lines.png");
  background-size: 760px 456px;
  background-repeat: no-repeat;
  background-position: 50% -270px;
  transform: scaleY(-1);
  opacity: 1;
  pointer-events: none;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 18, 0) 0%, rgba(17, 17, 18, 0.6) 100%);
  pointer-events: none;
}

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

.feature-card__title {
  margin-bottom: 18px;
}

.feature-card__text {
  color: #c3c3c3;
}

@media (max-width: 960px) {
  .process {
    padding: 120px 0 110px;
  }

  .process__title,
  .process__subtitle {
    width: 350px;
  }

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

  .card--wide {
    height: auto;
    min-height: 360px;
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }

  .card__preview {
    position: static;
    transform: none;
    margin-top: 24px;
    right: auto;
    top: auto;
    left: auto;
    align-items: stretch;
    gap: 12px;
  }

  .card__preview-item {
    width: 100%;
    padding: 16px 18px;
  }

  .card--half {
    height: 340px;
  }

  .container--features {
    padding-top: 90px;
  }

  .features__title,
  .features__subtitle {
    width: 350px;
  }

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

  .feature-card {
    height: 300px;
  }
}

/* Team */
.team {
  padding: 120px 0 160px;
  text-align: center;
}

.team__title,
.team__subtitle {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.team__subtitle {
  margin-top: 20px;
  opacity: 0.85;
}

.team-carousel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 60px auto 0;
  height: 420px;
  display: grid;
  place-items: center;
}

.team-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.team-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(141, 81, 255, 0.7);
  background: rgba(17, 17, 18, 0.35);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.team-card__img {
  width: 100%;
  height: 100%;
  background-image: url("../assets/figma/placeholder-person.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.team-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(17, 17, 18, 0) 0%, rgba(17, 17, 18, 0.85) 45%);
  text-align: left;
}

.team-card__name {
  font-size: 21px;
  line-height: 115%;
}

.team-card__role {
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-top: 4px;
  color: #c3c3c3;
}

.team-card__desc {
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-top: 6px;
  color: #999999;
}

.team-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 49px;
  height: 49px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0.95;
}

.team-carousel__arrow--left {
  left: 290px;
  transform: translateY(-50%) rotate(180deg);
}

.team-carousel__arrow--right {
  right: 290px;
}

@media (max-width: 960px) {
  .team {
    padding: 120px 0 140px;
  }

  .team__title,
  .team__subtitle {
    width: 350px;
  }

  .team-carousel {
    width: 350px;
    height: 420px;
  }

  .team-carousel__arrow--left {
    left: 16px;
  }

  .team-carousel__arrow--right {
    right: 16px;
  }
}

/* FAQ */
.faq {
  padding: 120px 0 140px;
}

.faq__title,
.faq__subtitle {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq__subtitle {
  margin-top: 20px;
  opacity: 0.85;
}

.faq__list {
  width: 100%;
  max-width: 1080px;
  margin: 60px auto 0;
  border-top: 1px solid rgba(237, 237, 237, 0.08);
}

.faq__item {
  border-bottom: 1px solid rgba(237, 237, 237, 0.08);
  padding: 26px 0;
}

.faq__summary {
  list-style: none;
  display: grid;
  grid-template-columns: 60px 1fr 20px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__nr {
  color: var(--color-purple);
  font-size: 21px;
  line-height: 115%;
}

.faq__q {
  opacity: 0.95;
}

.faq__plus {
  width: 10px;
  height: 10px;
  background-color: var(--color-gray);
  -webkit-mask-image: url("../assets/figma/icon-ui-plus.svg");
  mask-image: url("../assets/figma/icon-ui-plus.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  justify-self: end;
  transition: transform 150ms ease;
}

.faq__item[open] .faq__plus {
  transform: rotate(45deg);
}

.faq__a {
  padding: 18px 0 0 70px;
  color: #c3c3c3;
  max-width: 900px;
}

@media (max-width: 960px) {
  .faq__title,
  .faq__subtitle {
    width: 350px;
    text-align: center;
  }

  .faq__list {
    width: 350px;
  }

  .faq__summary {
    grid-template-columns: 48px 1fr 20px;
  }

  .faq__a {
    padding-left: 58px;
  }
}

/* Contact */
.contact {
  padding: 120px 0 160px;
  text-align: center;
}

.contact__title,
.contact__subtitle {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.contact__subtitle {
  margin-top: 20px;
  opacity: 0.85;
}

.contact__form {
  width: 100%;
  max-width: 1080px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
}

.contact__status {
  min-height: 20px;
  text-align: left;
  color: #c3c3c3;
}

.contact__status[data-state="pending"] {
  color: #c3c3c3;
}

.contact__status[data-state="success"] {
  color: #95e6a5;
}

.contact__status[data-state="error"] {
  color: #ff8f8f;
}

.field__label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  color: #c3c3c3;
}

.field__input {
  width: 100%;
  height: 42px;
  border-radius: 6px;
  border: 1px solid var(--color-purple);
  background: rgba(17, 17, 18, 0.35);
  padding: 10px 12px;
  color: var(--color-gray);
  outline: none;
}

.field__textarea {
  height: 140px;
  resize: none;
  padding-top: 12px;
}

.field__input::placeholder {
  color: rgba(237, 237, 237, 0.24);
}

.field__input:focus {
  border-color: rgba(141, 81, 255, 1);
  box-shadow: 0 0 0 3px rgba(141, 81, 255, 0.12);
}

@media (max-width: 960px) {
  .contact__title,
  .contact__subtitle {
    width: 350px;
  }

  .contact__form {
    width: 350px;
  }
}

/* Footer */
.footer {
  position: relative;
  padding: 100px 0 40px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/figma/bg-purple-lines.png");
  background-size: 1368px 821px;
  background-repeat: no-repeat;
  background-position: 50% calc(100% + 140px);
  transform: scaleY(-1);
  opacity: 0.75;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 18, 0) 0%, rgba(17, 17, 18, 0.6) 100%);
  pointer-events: none;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 343px 1fr 340px;
  gap: 120px;
  align-items: start;
}

.footer__tagline {
  margin-top: 26px;
}

.footer__social-label {
  margin-top: 36px;
  color: #c3c3c3;
}

.footer__social {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(30, 30, 37, 0.6);
  display: grid;
  place-items: center;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 18px;
}

.footer__link {
  font-size: 21px;
  line-height: 115%;
  opacity: 0.95;
}

.footer__company {
  padding-top: 18px;
}

.footer__company-name {
  color: #c3c3c3;
}

.footer__company-meta {
  margin-top: 12px;
  color: #999999;
}

.footer__bottom {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(237, 237, 237, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__legal {
  display: flex;
  gap: 26px;
}

.footer__legal-link {
  color: #c3c3c3;
}

@media (max-width: 960px) {
  .footer {
    padding: 100px 0 60px;
    text-align: left;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__logo {
    width: 260px;
    height: auto;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 14px;
  }

  .footer__legal {
    gap: 18px;
  }
}
