/*--------------------------------------------------------------
# About Us v2 - 2025 Modern Aesthetics
# Authoritative Narrative & Growth Systems
--------------------------------------------------------------*/

/* --- Hero Section v2 --- */
.v2-about-hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at 50% -20%, rgba(10, 106, 110, 0.15), transparent 70%);
}

.v2-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(10, 106, 110, 0.1);
  border: 1px solid rgba(10, 106, 110, 0.2);
  border-radius: 100px;
  color: #0A6A6E;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.v2-metallic-text {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 0%, #a6ccd0 50%, #66a5ad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.v2-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Narrative & Photo System --- */
.v2-about-narrative {
  padding: 80px 0;
}

.v2-authoritative-lead {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 25px;
  border-left: 3px solid #0A6A6E;
  padding-left: 20px;
}

.v2-narrative-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.v2-contextual-metrics {
  margin-top: 40px;
}

.v2-mini-metric {
  display: flex;
  flex-direction: column;
}

.v2-mini-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0A6A6E;
  line-height: 1;
}

.v2-mini-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.v2-photo-frame {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(10, 106, 110, 0.3);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.v2-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v2-photo-frame:hover img {
  transform: scale(1.08);
}

.v2-photo-frame::before {
  content: attr(data-label);
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
  pointer-events: none;
}

.v2-frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(4, 32, 44, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  z-index: 5;
  transition: all 0.4s ease;
}

.v2-frame-overlay i {
  font-size: 3rem;
  color: #0A6A6E;
  display: block;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.v2-frame-overlay span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.1s;
}

.v2-photo-frame:hover .v2-frame-overlay {
  opacity: 1;
}

.v2-photo-frame:hover .v2-frame-overlay i,
.v2-photo-frame:hover .v2-frame-overlay span {
  transform: translateY(0);
}

/* --- Strategic Horizons (Roadmap) --- */
.v2-about-horizons {
  padding: 100px 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 106, 110, 0.05) 20%, rgba(4, 32, 44, 0.4) 100%);
  position: relative;
}

.v2-roadmap {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  position: relative;
  padding: 20px 0;
}

.v2-roadmap-item {
  flex: 1;
  position: relative;
}

.v2-roadmap-indicator {
  width: 40px;
  height: 40px;
  background: #0A6A6E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: -20px;
  margin-left: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(10, 106, 110, 0.6);
}

.v2-roadmap-card {
  padding: 30px 25px 30px !important;
}

.v2-photo-placeholder-mini {
  width: 100%;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(10, 106, 110, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.v2-photo-placeholder-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.v2-photo-placeholder-mini:hover img {
  transform: scale(1.1);
}

.v2-photo-placeholder-mini::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  z-index: 1;
}

.v2-photo-placeholder-mini img+ ::after,
.v2-photo-placeholder-mini:has(img) ::after {
  display: none;
}

/* If there is an image, hide the text from ::after */
.v2-photo-placeholder-mini:has(img)::after {
  opacity: 0;
}

/* --- Innovation Ecosystem (Animations) --- */
.v2-about-ecosystem {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(to bottom, rgba(10, 106, 110, 0.08), rgba(4, 32, 44, 0.2) 50%, rgba(10, 106, 110, 0.08) 100%);
}

.v2-ecosystem-wrapper {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-hub-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10, 106, 110, 0.2) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  animation: hubPulse 4s infinite ease-in-out;
}

@keyframes hubPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
}

.v2-ecosystem-hub {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  z-index: 2;
}

.v2-hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 106, 110, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.v2-hub-logo {
  max-width: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.v2-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #0A6A6E;
  border-radius: 50%;
  animation: pulseRotate 3s infinite linear;
}

@keyframes pulseRotate {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Ecosystem Nodes */
.v2-eco-node {
  position: absolute;
  width: 130px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  cursor: default;
}

/* --- DNA Section v2 (Authoritative) --- */
.v2-about-dna {
  padding: 100px 0 140px;
  background: linear-gradient(to bottom, rgba(10, 106, 110, 0.05), transparent 60%);
  position: relative;
}

.v2-node-icon {
  width: 60px;
  height: 60px;
  background: rgba(4, 32, 44, 0.8);
  border: 1px solid rgba(10, 106, 110, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A6A6E;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.v2-eco-node span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v2-eco-node:hover .v2-node-icon {
  background: #0A6A6E;
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(10, 106, 110, 0.4);
}

/* Node Positioning & Animation */
.v2-eco-node.n1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: floatY 5s infinite ease-in-out;
}

.v2-eco-node.n2 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: floatY 5s infinite ease-in-out reverse;
}

.v2-eco-node.n3 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: floatX 6s infinite ease-in-out;
}

.v2-eco-node.n4 {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: floatX 6s infinite ease-in-out reverse;
}

@keyframes floatY {

  0%,
  100% {
    transform: translate(-50%, -10px);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

@keyframes floatX {

  0%,
  100% {
    transform: translate(-10px, -50%);
  }

  50% {
    transform: translate(10px, -50%);
  }
}

.v2-photo-frame-mini {
  width: 100%;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(10, 106, 110, 0.2);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.v2-photo-frame-mini i {
  font-size: 2.5rem;
  color: #0A6A6E;
  opacity: 0.8;
}

.v2-photo-frame-mini::after {
  content: attr(data-label);
  font-size: 10px;
  color: #fff;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v2-photo-frame-mini:hover {
  border-color: rgba(10, 106, 110, 0.6);
  background: rgba(10, 106, 110, 0.05);
}

/* --- Common UI Components --- */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.v2-dna-card:hover,
.v2-roadmap-card:hover {
  transform: translateY(-10px);
  border-color: rgba(10, 106, 110, 0.4);
}

.v2-dna-icon {
  width: 60px;
  height: 60px;
  background: rgba(10, 106, 110, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A6A6E;
  font-size: 1.8rem;
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.v2-dna-card:hover .v2-dna-icon {
  background: #0A6A6E;
  color: #fff;
  transform: scale(1.1);
}

.v2-section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.v2-section-title p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* Responsiveness */
@media (max-width: 991px) {
  .v2-roadmap {
    flex-direction: column;
  }

  .v2-authoritative-lead {
    font-size: 1.2rem;
  }

  .v2-ecosystem-hub {
    width: 300px;
    height: 300px;
  }

  .v2-eco-node {
    width: 100px;
  }

  .v2-eco-node span {
    font-size: 0.7rem;
  }
}

@media (max-width: 767px) {
  .v2-metallic-text {
    font-size: 2rem;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }

  .v2-about-ecosystem {
    padding: 60px 0;
  }

  .v2-section-title h2 {
    font-size: 1.8rem;
    overflow-wrap: break-word;
  }
}

@media (max-width: 420px) {
  .v2-metallic-text {
    font-size: 1.8rem;
  }
}