.page-about {
  --about-title-size: clamp(2.4rem, 6vw, 5rem);
  --about-year-size: clamp(5rem, 14vw, 11rem);
  --about-purple: #1f0a2e;
  --about-purple-deep: #2d0d3a;
  --about-wine: #3a1a1a;
  background: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

.page-about img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-about h1,
.page-about h2,
.page-about h3 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  color: var(--text-white);
  line-height: 1.12;
  margin: 0;
}

.page-about .section-kicker {
  color: var(--accent-gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin: 0 0 8px;
}

.page-about .section-title {
  color: var(--text-white);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  margin: 8px 0 24px;
}

.page-about .about-hero {
  position: relative;
  padding: 28px 0 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(155, 77, 255, 0.2), transparent 40%),
    radial-gradient(circle at 86% 6%, rgba(255, 42, 77, 0.12), transparent 32%),
    var(--bg-dark);
}

.page-about .about-hero__inner {
  position: relative;
}

.page-about .about-hero__layout {
  display: grid;
  gap: 40px;
  margin-top: 28px;
}

.page-about .about-hero__copy {
  position: relative;
  z-index: 1;
}

.page-about .about-hero__kicker {
  color: var(--accent-gold);
}

.page-about .about-hero__title {
  font-size: var(--about-title-size);
  max-width: 720px;
  margin: 10px 0 20px;
}

.page-about .about-hero__lead {
  max-width: 660px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(224, 224, 224, 0.82);
}

.page-about .about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-about .about-hero__meta .badge {
  border: 1px solid var(--line-gold);
  background: rgba(255, 215, 0, 0.08);
  color: var(--accent-gold);
  padding: 6px 14px;
  font-weight: 700;
}

.page-about .about-hero__visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  transform: rotate(1.6deg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.page-about .about-hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-about .about-hero__visual figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 15, 0.62);
  color: var(--text-white);
  font-size: 0.85rem;
}

.page-about .about-hero__year {
  position: absolute;
  right: -4vw;
  top: 12%;
  font-family: var(--font-display);
  font-size: var(--about-year-size);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.page-about .about-origin {
  position: relative;
}

.page-about .about-origin__inner {
  display: grid;
  gap: 20px;
  align-items: start;
}

.page-about .about-origin__text {
  max-width: 800px;
}

.page-about .about-origin__text p {
  margin: 14px 0;
  line-height: 1.8;
  color: var(--text-body);
  font-size: 0.98rem;
}

.page-about .about-origin__aside {
  display: flex;
  justify-content: flex-start;
  padding: 8px 0 0;
}

.page-about .about-origin__aside .vertical-label {
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.page-about .about-milestones {
  position: relative;
  padding-top: 64px;
  padding-bottom: 48px;
  background:
    radial-gradient(circle at 30% 0%, rgba(155, 77, 255, 0.2), transparent 45%),
    radial-gradient(circle at 70% 100%, rgba(255, 42, 77, 0.1), transparent 40%),
    var(--about-purple);
}

.page-about .about-milestones__head {
  margin-bottom: 40px;
}

.page-about .about-milestones__timeline {
  position: relative;
  padding: 8px 0 0;
}

.page-about .about-tl-item {
  position: relative;
  padding: 0 0 32px 48px;
}

.page-about .about-tl-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-gold), var(--accent-purple), rgba(255, 255, 255, 0.08));
}

.page-about .about-tl-item:last-child::before {
  height: 24px;
  bottom: auto;
}

.page-about .about-tl-item__dot {
  position: absolute;
  left: 1px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-gold), #d19b00);
  border: 2px solid var(--accent-red);
  box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.07), 0 0 24px rgba(255, 215, 0, 0.35);
  z-index: 1;
}

.page-about .about-tl-item__year {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
}

.page-about .about-tl-item__content {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.page-about .about-tl-item__content h3 {
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.page-about .about-tl-item__content p {
  margin: 0;
  line-height: 1.65;
  color: rgba(224, 224, 224, 0.78);
  font-size: 0.95rem;
}

.page-about .about-tech {
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--bg-dark);
}

.page-about .about-tech__head {
  margin-bottom: 36px;
}

.page-about .about-tech__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-about .about-tech__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotate(-1.2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.page-about .about-tech__img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.page-about .about-tech__list {
  display: grid;
  gap: 16px;
}

.page-about .about-tech__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(31, 10, 46, 0.8), rgba(10, 10, 15, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.page-about .about-tech__item .badge {
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-size: 1rem;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 999px;
  padding: 4px 12px;
}

.page-about .about-tech__item h3 {
  font-size: 1.1rem;
}

.page-about .about-tech__item p {
  width: 100%;
  margin: 2px 0 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.page-about .about-growth {
  padding-top: 72px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 80% 10%, rgba(58, 26, 26, 0.8), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(155, 77, 255, 0.14), transparent 42%),
    var(--about-wine);
}

.page-about .about-growth__head {
  margin-bottom: 36px;
}

.page-about .about-growth__stats {
  display: grid;
  gap: 16px;
}

.page-about .about-growth__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  text-align: center;
}

.page-about .about-growth__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--text-white);
  text-shadow: 0 0 24px rgba(255, 215, 0, 0.12);
}

.page-about .about-growth__stat > span:last-child {
  color: var(--text-dim);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.page-about .about-growth__row {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  align-items: center;
}

.page-about .about-growth__note {
  margin: 0;
  line-height: 1.8;
  color: rgba(224, 224, 224, 0.78);
  border-left: 2px solid var(--accent-gold);
  padding-left: 16px;
}

.page-about .about-growth__chart {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.page-about .about-growth__chart img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.page-about .about-growth__chart figcaption {
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.25);
}

.page-about .about-vision {
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 70% 20%, rgba(155, 77, 255, 0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(255, 42, 77, 0.1), transparent 35%),
    var(--bg-dark);
}

.page-about .about-vision__inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-about .about-vision__block {
  max-width: 820px;
}

.page-about .about-vision__block p {
  line-height: 1.75;
  color: rgba(224, 224, 224, 0.82);
  max-width: 640px;
  margin: 12px 0;
}

.page-about .about-vision__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-about .about-vision__ticker {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px 20px;
  border-top: 1px solid var(--line-divider);
  padding-top: 22px;
}

.page-about .about-vision__ticker span {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

@media (min-width: 760px) {
  .page-about .about-hero__layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 56px;
  }

  .page-about .about-origin__inner {
    grid-template-columns: 1fr 140px;
  }

  .page-about .about-origin__aside {
    justify-content: flex-end;
    padding-top: 12px;
  }

  .page-about .about-origin__aside .vertical-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-left: 1px solid var(--line-gold);
    padding-left: 10px;
  }

  .page-about .about-tech__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
  }

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

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

  .page-about .about-vision__inner {
    grid-template-columns: 1fr 0.32fr;
  }

  .page-about .about-vision__ticker {
    flex-direction: column;
    align-items: flex-end;
    border-top: 0;
    border-right: 1px solid var(--line-gold);
    padding-top: 0;
    padding-right: 18px;
  }

  .page-about .about-vision__ticker span {
    font-size: 2rem;
  }
}

@media (min-width: 900px) {
  .page-about .about-milestones__timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-1px);
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-purple), rgba(255, 255, 255, 0.06));
  }

  .page-about .about-tl-item {
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    column-gap: 28px;
    align-items: start;
    padding: 0 0 48px;
  }

  .page-about .about-tl-item::before {
    display: none;
  }

  .page-about .about-tl-item__dot {
    position: relative;
    left: auto;
    top: auto;
    place-self: start center;
  }

  .page-about .about-tl-item__year {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    text-align: right;
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 0.9;
  }

  .page-about .about-tl-item__content {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    max-width: 480px;
  }

  .page-about .about-tl-item:nth-child(even) .about-tl-item__year {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    text-align: left;
  }

  .page-about .about-tl-item:nth-child(even) .about-tl-item__content {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
  }
}
