/* About page — trendy tech consulting layout */

.about-page {
  overflow-x: hidden;
}

.about {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) 80px;
}

.about-hero {
  padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 8vw, 96px);
}

.about-hero__lead {
  max-width: 640px;
}

.about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-hero__chips span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 14px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 100px;
  background: rgba(201, 169, 98, 0.08);
}

.about-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-panel {
  position: relative;
  margin-bottom: clamp(48px, 8vw, 96px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.about-panel__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle, rgba(121, 114, 143, 0.35), transparent 65%);
  pointer-events: none;
}

.about-panel__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.about-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-panel p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.about-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-pillars li {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.about-pillars strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--accent);
}

.about-pillars span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.about-stats {
  margin-bottom: clamp(48px, 8vw, 96px);
}

.about-stats__intro {
  max-width: 640px;
  margin-bottom: 36px;
}

.about-stats__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.about-stats__intro p {
  color: var(--muted);
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.2s, box-shadow 0.2s;
}

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

.stat-card:hover {
  border-color: rgba(201, 169, 98, 0.4);
  box-shadow: 0 0 40px rgba(201, 169, 98, 0.08);
}

.stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1.1;
}

.stat-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.stat-card__body {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}

.stat-card__note {
  font-size: 0.72rem;
  color: rgba(155, 150, 173, 0.75);
  line-height: 1.4;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.about-value {
  margin-bottom: clamp(48px, 8vw, 96px);
}

.about-value__card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  border: 1px solid rgba(201, 169, 98, 0.25);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(201, 169, 98, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.03);
}

.about-value__card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.about-value__lead {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.about-steps {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.about-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.about-steps li:last-child {
  border-bottom: none;
}

.about-steps__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  min-width: 2.2rem;
}

.about-steps strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.about-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.btn--ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(218, 216, 225, 0.28);
}

.about-value__cta .btn--primary {
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.about-ai {
  margin-bottom: 48px;
}

.about-ai__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.about-ai h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.about-ai p {
  color: var(--muted);
}

.about-ai__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.about-ai__list li {
  position: relative;
  padding: 14px 16px 14px 40px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
}

.about-ai__list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.6);
}

.about-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 4vw, 48px) 40px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.about-footer a {
  color: var(--accent);
  text-decoration: none;
}

.about-footer a:hover {
  color: var(--gold);
}

@media (max-width: 800px) {
  .about-panel__grid,
  .about-ai__inner,
  .stat-cards {
    grid-template-columns: 1fr;
  }
}
