/* ==========================================================================
   ABOUT US MOCKUP STYLES
   ========================================================================== */

/* Typography & Colors Specific to Mockup */
:root {
  --mockup-blue: #007bff; /* Bright blue from the mockup */
  --mockup-dark-panel: #0a0e17; /* Dark slightly blue-tinted panels */
  --mockup-bg: #03050a;
}

body.about-page {
  background-color: var(--mockup-bg);
}

.blue-text { color: var(--mockup-blue); }
.blue-label { color: var(--mockup-blue); font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }
.uppercase { text-transform: uppercase; }

.button.blue-button {
  background-color: var(--mockup-blue);
  border-color: var(--mockup-blue);
  color: #fff;
  border-radius: 4px; /* Slightly sharper edges per mockup */
  padding: 12px 24px;
}
.button.blue-button:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}
.button.button-outline {
  border-radius: 4px;
}

/* 1️⃣ Hero Split Section */
.about-hero-split {
  display: flex;
  min-height: 80vh;
  padding-top: 80px; /* Account for header */
  position: relative;
  overflow: hidden;
}

.hero-split-left {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 60px 40px 100px 8%; /* Extra bottom padding for overlap */
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin: 16px 0 24px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1px;
}

.hero-description {
  color: #a0aec0;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-footer-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--mockup-blue);
}

.hero-split-right {
  width: 50%;
  position: relative;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--mockup-bg) 0%, transparent 40%, transparent 80%, var(--mockup-bg) 100%),
              linear-gradient(to top, var(--mockup-bg) 0%, transparent 30%);
}

/* 2️⃣ Stats Grid (Overlapping) */
.stats-overlap-section {
  position: relative;
  z-index: 10;
  margin-top: -80px; /* Pull up to overlap hero */
  padding: 0 20px;
}

.stats-overlap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  color: #fff;
}

.stat-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: var(--mockup-blue);
  margin: 0 0 8px;
  line-height: 1;
}
.stat-content h3.text-large { font-size: 2rem; } /* Adjust for text instead of number */

.stat-content strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.stat-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* 3️⃣ Founder Story Split Section */
.founder-split-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--mockup-bg) 0%, #050810 100%);
}

.founder-split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--mockup-dark-panel);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.founder-content {
  width: 50%;
  padding: 60px;
}

.founder-content h2 {
  font-size: 2.5rem;
  margin: 16px 0 24px;
  line-height: 1.2;
}

.founder-content p {
  color: #a0aec0;
  line-height: 1.7;
  margin-bottom: 32px;
}

.founder-image-wrapper {
  width: 50%;
  position: relative;
  min-height: 500px;
}

.founder-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--mockup-dark-panel) 0%, transparent 30%),
              linear-gradient(to top, rgba(10, 14, 23, 0.9) 0%, transparent 40%);
}

.founder-signature {
  position: absolute;
  bottom: 40px;
  right: 40px;
  text-align: right;
  z-index: 2;
}

.signature-text {
  font-family: 'Brush Script MT', cursive, sans-serif; /* Fallback cursive */
  font-size: 3.5rem;
  color: var(--mockup-blue);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  transform: rotate(-5deg);
  opacity: 0.9;
}

.founder-signature p {
  margin: 0;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* 4️⃣ Values Grid Section */
.values-section {
  padding: 80px 0 120px;
  background: #050810;
}

.values-section .section-heading h2 {
  font-size: 2.5rem;
  margin-top: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 123, 255, 0.3);
}

.value-icon-wrapper {
  width: 56px;
  height: 56px;
  color: var(--mockup-blue);
  margin-bottom: 24px;
}

.value-card h3 {
  font-size: 1.25rem;
  margin: 0 0 16px;
}

.value-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
  .hero-content h1 { font-size: 2.8rem; }
  .stats-overlap-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }
  .founder-split-layout {
    flex-direction: column;
  }
  .founder-content, .founder-image-wrapper {
    width: 100%;
  }
  .founder-image-wrapper {
    min-height: 400px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-split {
    flex-direction: column;
    padding-top: 100px;
  }
  .hero-split-left, .hero-split-right {
    width: 100%;
  }
  .hero-split-left {
    padding: 20px 20px 60px;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-footer-text {
    justify-content: center;
  }
  .hero-split-right {
    min-height: 400px;
    order: -1; /* Put image above text on mobile */
  }
  .stats-overlap-section {
    margin-top: 0;
    padding: 20px;
  }
  .stats-overlap-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}
