:root {
  --about-gradient: linear-gradient(135deg, rgba(11, 18, 36, 0.92) 0%, rgba(18, 28, 54, 0.88) 50%, rgba(28, 37, 62, 0.82) 100%);
  --about-panel: rgba(13, 24, 36, 0.88);
  --about-accent: #47b8ff;
}

.about-page main {
  padding-bottom: 80px;
}

.history-hero {
  padding: 96px 0 64px;
  background: var(--about-gradient);
  position: relative;
  overflow: hidden;
}

.history-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(71, 184, 255, 0.22), transparent 60%);
  pointer-events: none;
}

.history-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.history-lead {
  max-width: 760px;
  text-align: center;
}

.history-lead .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 18px;
}

.history-lead h1 {
  margin: 0 0 20px;
  font-family: 'Lilita One', system-ui;
  font-size: clamp(42px, 5vw, 56px);
  letter-spacing: 0.04em;
  color: #fff;
}

.history-lead p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(220, 230, 255, 0.82);
}

.history-story {
  padding: 64px 0 80px;
}

.story-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.story-timeline li {
  background: rgba(8, 14, 24, 0.78);
  border: 1px solid rgba(71, 184, 255, 0.18);
  border-left: 4px solid var(--about-accent);
  border-radius: 18px;
  padding: 20px 24px;
  display: grid;
  gap: 8px;
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.45);
}

.story-date {
  font-family: 'Lilita One', system-ui;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--about-accent);
}

.story-timeline p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(228, 236, 255, 0.78);
}

.history-credits {
  padding: 64px 0 96px;
  background: linear-gradient(180deg, rgba(6, 12, 26, 0.8) 0%, rgba(4, 9, 20, 0.92) 100%);
}

.credits-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(8, 16, 28, 0.88);
  border-radius: 22px;
  padding: 36px 32px;
  border: 1px solid rgba(71, 184, 255, 0.2);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.5);
}

.credits-card h2 {
  margin: 0 0 16px;
  font-family: 'Lilita One', system-ui;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: #fff;
}

.credits-card ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 16px;
  color: rgba(225, 235, 255, 0.78);
}

.credits-card li strong {
  color: var(--about-accent);
}

.credits-note {
  margin: 0;
  font-size: 15px;
  color: rgba(225, 235, 255, 0.82);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .history-hero {
    padding: 72px 0 48px;
  }

  .history-lead h1 {
    font-size: clamp(36px, 9vw, 56px);
  }

  .story-timeline li {
    padding: 18px 20px;
  }

  .credits-card {
    padding: 28px 24px;
  }
}
