.about-hero {
  background: linear-gradient(180deg, #f4f6f9 0%, #eef2f7 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  min-height: 460px;
  background: linear-gradient(135deg, #141d2a 0%, #1b2634 50%, #131b27 100%);
  color: #edf2f7;
  border: 1px solid rgba(113, 125, 144, 0.25);
  border-radius: 18px;
  overflow: hidden;
}

.about-hero-grid > div:first-child {
  padding: clamp(1.6rem, 3vw, 3rem);
}

.about-section-title {
  margin-bottom: 1rem;
}

.about-kicker {
  margin: 0;
  color: #b6c0cf;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 800;
}

.about-hero h1 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 0.98;
  max-width: 15ch;
}

.about-intro {
  margin: 0;
  max-width: 58ch;
  color: rgba(232, 238, 246, 0.86);
}

.about-tags {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about-tags span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(180, 191, 207, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: #d4dce8;
  border-radius: 999px;
}

.about-hero-media {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(113, 125, 144, 0.25);

}

.about-logo-ring {
  width: clamp(180px, 26vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: clamp(14px, 2vw, 22px);
  background:
    linear-gradient(160deg, rgba(249, 251, 254, 0.95), rgba(199, 209, 222, 0.92));
  border: 1px solid rgba(158, 170, 186, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -10px 18px rgba(76, 91, 112, 0.25),
    0 22px 46px rgba(7, 12, 20, 0.36);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(154, 166, 183, 0.8);
  box-shadow: 0 10px 24px rgba(12, 20, 32, 0.22);
}

.about-metrics {
  padding: 1.8rem 0 0.6rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.metric-card {
  background: linear-gradient(135deg, #f6f8fb 0%, #e8edf4 100%);
  border: 1px solid #d6dee9;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.metric-card h3 {
  margin: 0;
  font-size: 1.8rem;
  color: #1f2c41;
}

.metric-card p {
  margin: 0.35rem 0 0;
  color: #4d5a70;
  font-size: 0.92rem;
}

.about-story {
  padding: 1rem 0 1.2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
}

.story-panel {
  background: #ffffff;
  border: 1px solid #d7dee9;
  padding: 1.2rem;
  border-radius: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.story-panel h2 {
  margin: 0 0 0.75rem;
  color: #25344c;
}

.story-panel p {
  margin: 0 0 0.75rem;
  color: #4f5f78;
}

.story-panel ul {
  margin: 0;
  padding-left: 1.05rem;
  color: #42536b;
  display: grid;
  gap: 0.48rem;
}

.about-process {
  padding: 1rem 0 2.6rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-grid article {
  background: linear-gradient(180deg, #1c2736 0%, #151f2b 100%);
  border: 1px solid rgba(113, 126, 146, 0.35);
  padding: 1.1rem;
  border-radius: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.process-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0f1b2b;
  background: linear-gradient(180deg, #cfd7e2, #a5b2c5);
}

.process-grid h3 {
  margin: 0.85rem 0 0.45rem;
  color: #ebf1f8;
  font-size: 1.03rem;
}

.process-grid p {
  margin: 0;
  color: rgba(218, 227, 238, 0.84);
  font-size: 0.92rem;
}

.about-interactive {
  transform-style: preserve-3d;
  will-change: transform;
}

.about-inview {
  animation: aboutFadeUp 0.6s ease forwards;
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .about-hero-grid,
  .story-grid,
  .metric-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-media {
    min-height: 280px;
    border-left: 0;
    border-top: 1px solid rgba(113, 125, 144, 0.25);
  }

  .about-logo-ring {
    width: clamp(150px, 48vw, 220px);
  }
}

@media (max-width: 640px) {
  .about-hero-grid {
    border-radius: 12px;
    min-height: 680px;
  }

  .about-section-title {
    margin-bottom: 0.8rem;
  }

  .about-hero-grid > div:first-child {
    padding: 1.2rem 1rem;
  }

  .about-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .about-hero h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
    line-height: 1.04;
    margin: 0.65rem 0 0.85rem;
    max-width: 13ch;
  }

  .about-intro {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: none;
  }

  .about-tags {
    margin-top: 1rem;
    gap: 0.45rem;
  }

  .about-tags span {
    font-size: 0.72rem;
    padding: 0.32rem 0.58rem;
  }

  .about-hero-media {
    min-height: 290px;
  }

  .about-logo-ring {
    width: clamp(132px, 46vw, 190px);
    padding: 12px;
  }
}
