/* ===========================================================
   ABOUT PAGE
   =========================================================== */

/* --- Hero (full-bleed background photo, same treatment as Home) --- */
.about-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.about-hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  pointer-events: none;
}

.about-hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg,
    var(--bg) 0%,
    rgba(0, 26, 29, 0.92) 35%,
    rgba(0, 26, 29, 0.55) 60%,
    rgba(0, 26, 29, 0.15) 85%,
    transparent 100%);
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  max-width: 520px;
  margin-bottom: 18px;
}

.about-hero-copy {
  font-size: 14.5px;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 26px;
}

.about-quote-box {
  position: absolute;
  z-index: 1;
  right: 6%;
  bottom: 56px;
  max-width: 300px;
  background: rgba(8, 54, 59, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}
.about-checklist svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .about-quote-box {
    position: static;
    max-width: 100%;
    margin-top: 28px;
  }
  .about-hero-bg-overlay {
    background: linear-gradient(180deg,
      var(--bg) 0%,
      rgba(0, 26, 29, 0.85) 55%,
      rgba(0, 26, 29, 0.5) 100%);
  }
}

/* --- Stats bar section spacing --- */
.about-stats-wrap { margin-top: 164px; }

/* --- Values grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   ABOUT PAGE
   =========================================================== */

/* --- Hero (full-bleed background photo, same treatment as Home) --- */
.about-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  min-height: 620px;
}

.about-hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  pointer-events: none;
}

.about-hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg,
    var(--bg) 0%,
    rgba(0, 26, 29, 0.92) 35%,
    rgba(0, 26, 29, 0.55) 60%,
    rgba(0, 26, 29, 0.15) 85%,
    transparent 100%);
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  max-width: 520px;
  margin-bottom: 18px;
}

.about-hero-copy {
  font-size: 14.5px;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 26px;
}

.about-quote-box {
  position: absolute;
  z-index: 1;
  right: 6%;
  top: calc(var(--header-h) + 100px);
  max-width: 300px;
  background: rgba(8, 54, 59, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}
.about-checklist svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .about-quote-box {
    position: static;
    max-width: 100%;
    margin-top: 28px;
  }
  .about-hero-bg-overlay {
    background: linear-gradient(180deg,
      var(--bg) 0%,
      rgba(0, 26, 29, 0.85) 55%,
      rgba(0, 26, 29, 0.5) 100%);
  }
}

/* --- Stats bar section spacing --- */
.about-stats-wrap { margin-top: 64px; }

/* --- Values grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   ABOUT AUREMIX — narrative section
   =========================================================== */
.narrative-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.narrative-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 30px;
}
.narrative-card .num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.narrative-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.narrative-card p {
  font-size: 14px;
  color: var(--text-dim);
}
@media (max-width: 700px) {
  .narrative-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Founder quote
   =========================================================== */
.founder-quote {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.founder-quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}
.founder-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 18px;
}
.founder-quote .founder-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.founder-quote .founder-title {
  font-size: 13px;
  color: var(--text-dim);
}
@media (max-width: 700px) {
  .founder-quote { flex-direction: column; align-items: flex-start; padding: 32px; gap: 16px; }
  .founder-quote-mark { font-size: 48px; }
}

/* ===========================================================
   Technologies
   =========================================================== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.tech-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.tech-card:hover { border-color: rgba(87, 229, 211, 0.35); transform: translateY(-3px); }
.tech-card svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  margin: 0 auto 10px;
}
.tech-card span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
}
@media (max-width: 700px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}