/* ── ABOUT PAGE ── */
.page-hero {
  padding: 160px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; width: 800px; height: 800px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(14,165,233,.09) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .hero-inner { max-width: 760px; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -.4px;
  animation: fade-in .7s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--azure); }
.page-hero p {
  margin-top: 1.4rem; font-size: 1.05rem;
  color: var(--off); line-height: 1.85; max-width: 620px;
  animation: fade-in .7s .1s ease both;
}
@keyframes fade-in { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }

/* ── CONTENT BLOCKS ── */
.about-body { background: var(--ink2); }
.ab-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: start;
}
@media (max-width: 800px) { .ab-grid { grid-template-columns: 1fr; gap: 3rem; } }

.ab-prose h2 {
  font-family: var(--ff-head); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
}
.ab-prose h2 em { font-style: italic; color: var(--azure); }
.ab-prose p {
  color: var(--off); font-size: .97rem;
  line-height: 1.85; margin-bottom: 1rem;
}

.differentiators { background: var(--ink3); }
.diff-list {
  display: flex; flex-direction: column;
  gap: 1rem; margin-top: 2.5rem;
}
.diff-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.3rem; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r);
  transition: border-color .2s;
}
.diff-item:hover { border-color: rgba(14,165,233,.28); }
.di-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(14,165,233,.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.di-text h4 { font-weight: 700; font-size: .95rem; margin-bottom: .25rem; }
.di-text p  { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* QUICK FACTS */
.quick-facts { background: var(--ink2); }
.qf-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-top: 2rem;
}
@media (max-width: 900px) { .qf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .qf-grid { grid-template-columns: 1fr; } }
.qf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2); padding: 1.8rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.qf-card:hover { border-color: rgba(14,165,233,.28); transform: translateY(-3px); }
.qf-val {
  font-family: var(--ff-head); font-size: 2.8rem;
  font-weight: 700; color: var(--azure); line-height: 1;
}
.qf-label { font-size: .83rem; color: var(--off); margin-top: .4rem; font-weight: 600; }
.qf-sub   { font-size: .74rem; color: var(--muted); margin-top: .2rem; }

/* CLOUD LOGOS */
.cloud-strip { background: var(--ink3); }
.cloud-chips {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 2rem; justify-content: flex-start;
}
.cloud-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: .7rem;
  transition: border-color .2s;
  font-size: .88rem; font-weight: 600; color: var(--off);
}
.cloud-chip:hover { border-color: rgba(14,165,233,.28); }
.cloud-chip .cc-icon { font-size: 1.4rem; }
