.about-page {
  --bg: #05070b;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.78);
  --muted: rgba(255, 255, 255, 0.54);
  --white: #ffffff;
  --lime: #d9ff00;

  overflow: hidden;
  background: var(--bg);
  color: var(--white);
}

.about-page * {
  box-sizing: border-box;
}

.about-page .container {
  width: min(1640px, 100% - 64px);
  margin: 0 auto;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-label span {
  min-width: 34px;
  height: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(217, 255, 0, 0.34);
  border-radius: 999px;

  color: var(--lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.about-title,
.about-hero h1,
.about-final h2 {
  margin: 0;

  color: var(--white);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.about-title {
  max-width: 780px;

  font-size: clamp(38px, 4.1vw, 72px);
  line-height: 0.98;
}

.about-text {
  display: grid;
  gap: 18px;
}

.about-text p {
  margin: 0;

  color: var(--text);

  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.5;
  font-weight: 500;
}

.about-btn {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  padding: 0 26px;

  border-radius: 12px;

  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;

  transition: 0.2s ease;
}

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

.about-btn--primary {
  border: 1px solid var(--lime);

  background: var(--lime);
  color: var(--bg);

  box-shadow: 0 18px 54px rgba(217, 255, 0, 0.14);
}

.about-btn--ghost {
  border: 1px solid rgba(217, 255, 0, 0.28);

  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
}

/* HERO */

.about-hero {
  position: relative;
  overflow: hidden;

  padding: 150px 0 86px;

  background:
    radial-gradient(circle at 22% 42%, rgba(217, 255, 0, 0.085), transparent 28%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(135deg, #05070b 0%, #070a0f 48%, #05070b 100%);
}

.about-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);

  background-size: 72px 72px;

  opacity: 0.24;

  pointer-events: none;
}

.about-hero__container {
  position: relative;
  z-index: 1;

  min-height: calc(100svh - 236px);

  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(430px, 0.72fr);
  align-items: center;
  gap: 86px;
}

.about-hero h1 {
  max-width: 760px;

  font-size: clamp(46px, 5vw, 86px);
  line-height: 0.96;
}

.about-hero__content > p {
  max-width: 720px;

  margin: 28px 0 0;

  color: var(--text);

  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.44;
  font-weight: 500;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}

.about-hero__side {
  display: grid;
  gap: 14px;
}

.about-card,
.about-stat,
.about-item,
.about-small,
.about-process__item {
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(18px);
}

.about-card {
  padding: 34px;
  border-radius: 24px;
}

.about-card__label {
  margin-bottom: 18px;

  color: var(--lime);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-card h2 {
  margin: 0;

  color: var(--white);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 2.1vw, 40px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.about-card p {
  margin: 20px 0 0;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-stat {
  min-height: 116px;

  padding: 20px;

  border-radius: 18px;
}

.about-stat strong {
  display: block;

  color: var(--lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 32px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.about-stat span {
  display: block;

  margin-top: 12px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

/* BLOCKS */

.about-block {
  position: relative;

  padding: 84px 0;

  background: var(--bg);
}

.about-block::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: min(1640px, 100% - 64px);
  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);

  transform: translateX(-50%);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(420px, 0.75fr) minmax(560px, 1fr);
  gap: 72px;
  align-items: start;
}

.about-head {
  max-width: 900px;

  margin-bottom: 34px;
}

.about-grid {
  display: grid;
  gap: 14px;
}

.about-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.about-grid--six {
  grid-template-columns: repeat(3, 1fr);
}

.about-item,
.about-small {
  border-radius: 20px;
}

.about-item {
  min-height: 270px;

  padding: 28px;
}

.about-small {
  min-height: 190px;

  padding: 24px;
}

.about-item > span,
.about-small > span {
  display: inline-flex;

  margin-bottom: 42px;

  color: var(--lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.about-small > span {
  margin-bottom: 30px;
  font-size: 18px;
}

.about-item h3,
.about-small h3 {
  margin: 0;

  color: var(--white);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.about-small h3 {
  font-size: 22px;
}

.about-item p,
.about-small p {
  margin: 16px 0 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}

/* CMS */

.about-cms {
  background:
    radial-gradient(circle at 75% 46%, rgba(217, 255, 0, 0.08), transparent 26%),
    #05070b;
}

.about-cms__box {
  display: grid;
  grid-template-columns: minmax(440px, 0.78fr) minmax(580px, 1fr);
  gap: 72px;

  padding: 42px;

  border: 1px solid rgba(217, 255, 0, 0.22);
  border-radius: 26px;

  background:
    linear-gradient(135deg, rgba(217, 255, 0, 0.06), rgba(255, 255, 255, 0.03));
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 8px;
}

.about-tags span {
  min-height: 40px;

  display: inline-flex;
  align-items: center;

  padding: 0 16px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;

  background: rgba(5, 7, 11, 0.28);
  color: rgba(255, 255, 255, 0.74);

  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

/* PROCESS */

.about-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-process__item {
  min-height: 245px;

  padding: 26px;

  border-radius: 20px;
}

.about-process__item span {
  display: block;

  margin-bottom: 52px;

  color: var(--lime);

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.about-process__item strong {
  display: block;

  color: var(--white);

  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
}

.about-process__item p {
  margin: 14px 0 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
}

/* TRUST */

.about-trust {
  background:
    radial-gradient(circle at 20% 50%, rgba(217, 255, 0, 0.055), transparent 25%),
    #05070b;
}

/* FINAL */

.about-final {
  padding: 92px 0 104px;

  background:
    radial-gradient(circle at 20% 50%, rgba(217, 255, 0, 0.12), transparent 30%),
    linear-gradient(135deg, #070a0f, #05070b);
}

.about-final__container {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(300px, 0.35fr);
  gap: 64px;
  align-items: end;
}

.about-final h2 {
  max-width: 820px;

  font-size: clamp(42px, 4.8vw, 82px);
  line-height: 0.96;
}

.about-final p {
  max-width: 760px;

  margin: 26px 0 0;

  color: var(--text);

  font-size: 19px;
  line-height: 1.45;
  font-weight: 500;
}

.about-final__actions {
  display: grid;
  gap: 12px;
}

/* RESPONSIVE */

@media (max-width: 1300px) {
  .about-hero__container,
  .about-split,
  .about-cms__box,
  .about-final__container {
    grid-template-columns: 1fr;
  }

  .about-hero__container {
    min-height: auto;
  }

  .about-hero__side {
    max-width: 760px;
  }

  .about-grid--three,
  .about-grid--six,
  .about-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-final__actions {
    width: min(100%, 520px);
  }
}

@media (max-width: 768px) {
  .about-page .container {
    width: calc(100% - 24px);
  }

  .about-hero {
    padding: 124px 0 62px;
  }

  .about-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 0.98;
  }

  .about-hero__content > p {
    margin-top: 22px;

    font-size: 16px;
    line-height: 1.45;
  }

  .about-hero__actions {
    display: grid;
  }

  .about-btn {
    width: 100%;
    min-height: 54px;

    font-size: 14px;
  }

  .about-card {
    padding: 22px;
    border-radius: 18px;
  }

  .about-card h2 {
    font-size: 25px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    min-height: auto;
  }

  .about-block {
    padding: 62px 0;
  }

  .about-block::before {
    width: calc(100% - 24px);
  }

  .about-title {
    font-size: clamp(31px, 9vw, 44px);
    line-height: 1;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.47;
  }

  .about-grid--three,
  .about-grid--six,
  .about-process {
    grid-template-columns: 1fr;
  }

  .about-item,
  .about-small,
  .about-process__item {
    min-height: auto;
    padding: 22px;
  }

  .about-item > span {
    margin-bottom: 36px;
  }

  .about-small > span,
  .about-process__item span {
    margin-bottom: 26px;
  }

  .about-item h3 {
    font-size: 25px;
  }

  .about-cms__box {
    padding: 24px;
    border-radius: 20px;
  }

  .about-tags span {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .about-final {
    padding: 72px 0 78px;
  }

  .about-final h2 {
    font-size: clamp(34px, 10.5vw, 50px);
    line-height: 1;
  }

  .about-final p {
    font-size: 15px;
    line-height: 1.45;
  }
}
