/* ============================================================
   C4 SOLUTIONS — ABOUT PAGE CSS
   File: about-page.css
   Loads on: /about/ only
   ============================================================ */

/* ABOUT HERO — split with photo right + name label */
.about-hero {
  background: var(--c4-bg-dark);
  display: flex;
  align-items: stretch;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.about-hero .c4-hero-bg-mark {
  position: absolute;
  left: 40px;
  bottom: -60px;
  font-family: var(--font-display);
  font-size: 320px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.about-hero .c4-hero-content {
  flex: 1;
  padding: 64px 48px 56px 52px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--c4-white);
  line-height: 1.0;
  margin-bottom: 16px;
}

.about-hero h1 em {
  color: var(--c4-red);
  font-style: normal;
}

.about-hero .c4-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 500px;
}

/* Photo column */
.about-hero-img {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-hero-img::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--c4-bg-dark), transparent);
  z-index: 2;
}

.about-hero-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--c4-red);
  z-index: 3;
}

/* Name label overlay on photo */
.about-hero-img-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  white-space: nowrap;
}

.about-hero-img-label .name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--c4-white);
  letter-spacing: 0.04em;
  display: block;
}

.about-hero-img-label .title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .about-hero { flex-direction: column; }
  .about-hero-img { width: 100%; height: 260px; }
  .about-hero .c4-hero-content { padding: 48px 24px 40px; }
}

/* PULL QUOTE */
.c4-pull-quote {
  border-left: 4px solid var(--c4-red);
  padding: 20px 24px;
  background: #fafafa;
  margin: 24px 0;
}

.c4-pull-quote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--c4-black);
  line-height: 1.3;
  font-style: italic;
  margin: 0;
}

/* TRUTH LIST */
.c4-truth-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c4-truth-list li {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--c4-gray-dark);
  line-height: 1.6;
  align-items: flex-start;
}

.c4-truth-list li::before {
  content: '«';
  color: var(--c4-red);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.3;
}

/* ICP MINI CARDS */
.c4-icp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.c4-icp-card {
  background: var(--c4-white);
  border: 1px solid #e8e8e8;
  border-left: 4px solid var(--c4-red);
  padding: 16px 14px;
}

.c4-icp-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--c4-black);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.c4-icp-body {
  font-size: 12px;
  color: var(--c4-gray-dark);
  line-height: 1.55;
}

.c4-icp-nofit {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--c4-bg-light);
  border: 1px solid #e8e8e8;
  border-left: 3px solid var(--c4-silver);
}

.c4-icp-nofit-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--c4-gray-mid);
  margin-bottom: 4px;
}

.c4-icp-nofit-body {
  font-size: 12px;
  color: var(--c4-gray-mid);
  line-height: 1.6;
}

/* FOUNDATION PILLARS — dark 3-col */
.c4-foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.c4-foundation-card {
  background: rgba(255,255,255,0.05);
  border-top: 3px solid var(--c4-red);
  padding: 26px 20px;
}

.c4-foundation-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--c4-white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.c4-foundation-body {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .c4-foundation-grid { grid-template-columns: 1fr; }
}

/* OPERATOR STACK */
.c4-stack-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.c4-stack-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--c4-white);
  border: 1px solid #e8e8e8;
}

.c4-stack-icon {
  width: 40px;
  height: 40px;
  background: var(--c4-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c4-white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.c4-stack-role {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c4-black);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.c4-stack-desc {
  font-size: 12px;
  color: var(--c4-gray-mid);
  line-height: 1.55;
}

/* VALUES LIST */
.c4-values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.c4-value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--c4-white);
  border: 1px solid #e8e8e8;
  border-left: 4px solid var(--c4-red);
}

.c4-value-mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--c4-red);
  line-height: 1;
  flex-shrink: 0;
}

.c4-value-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c4-black);
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.c4-value-body {
  font-size: 12px;
  color: var(--c4-gray-mid);
  line-height: 1.5;
}
