/* Brand Styled About Page (Light Background & No Movements) */

body:has(.sui-about-page) #root {
  background: #ffffff !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Reveal Animations managed by GSAP */
.sui-grid-two.reveal-on-scroll .sui-card,
.sui-grid-three.reveal-on-scroll .sui-standard-item,
.sui-values__grid.reveal-on-scroll .sui-value-card,
.sui-timeline__interactive.reveal-on-scroll .sui-timeline__track-wrapper,
.sui-timeline__interactive.reveal-on-scroll #milestoneCard {
  opacity: 0;
}

.sui-about-page {
  background-color: #ffffff; /* Clean light background */
  color: #475569; /* slate-600 body text */
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  width: 100%;
}

/* 1. Sui-style Hero */
.sui-hero {
  position: relative;
  padding: 140px 0 90px;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(140, 111, 56, 0.05), transparent 50%),
              radial-gradient(circle at bottom left, rgba(38, 57, 44, 0.04), transparent 60%),
              #ffffff;
  overflow: hidden;
}

.sui-hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(140, 111, 56, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140, 111, 56, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle, black 40%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

.sui-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.sui-hero__badge-container {
  margin-bottom: 24px;
  opacity: 0;
}

.sui-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  letter-spacing: 0.08em;
  background-color: rgba(140, 111, 56, 0.08);
  color: #8c6f38; /* gold text */
  border: 1px solid rgba(140, 111, 56, 0.15);
}

.sui-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #26392c; /* Brand dark green */
  margin-bottom: 24px;
  opacity: 0;
}

.sui-hero__title span.sui-hero__gradient-text {
  color: #8c6f38; /* Brand gold */
  display: inline-block;
}

.sui-hero__text {
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.7;
  color: #475569;
  max-width: 760px;
  margin-bottom: 40px;
  opacity: 0;
}

.sui-hero__action-wrapper {
  display: flex;
  justify-content: center;
  opacity: 0;
}

.sui-hero__scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(38, 57, 44, 0.1);
  background-color: #ffffff;
  color: #26392c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  animation: scrollBounce 2s ease-in-out infinite;
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}

.sui-hero__scroll-btn:hover {
  border-color: #8c6f38;
  color: #ffffff;
  background-color: #8c6f38;
  box-shadow: 0 8px 20px rgba(140, 111, 56, 0.25);
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* 2. Cards and layouts */
.sui-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 80px 24px;
}

.sui-card {
  background-color: #ffffff;
  border: 1px solid rgba(38, 57, 44, 0.08);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}

.sui-card:hover {
  transform: translateY(-8px);
  border-color: #8c6f38;
  box-shadow: 0 16px 36px rgba(140, 111, 56, 0.08);
}

.sui-vision-mission .sui-card:first-child {
  border-left: 4px solid #8c6f38 !important; /* Brand Gold Left Accent */
}

.sui-vision-mission .sui-card:last-child {
  border-left: 4px solid #26392c !important; /* Brand Green Left Accent */
}

.sui-card__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sui-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f8faf9;
  border: 1px solid rgba(38, 57, 44, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background-color 0.3s;
}

.sui-card:hover .sui-icon-circle {
  animation: floatIcon 2.4s ease-in-out infinite;
  border-color: #8c6f38;
  background-color: rgba(140, 111, 56, 0.05);
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.sui-icon-gold {
  color: #8c6f38;
}

.sui-icon-green {
  color: #26392c;
}

.sui-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.sui-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #26392c;
  margin-bottom: 16px;
}

.sui-card__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* 3. Ecosystem */
.sui-ecosystem {
  padding: 80px 24px;
  background-color: #f8faf9; /* alternating section bg */
}

.sui-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.sui-section-header .sui-badge {
  margin-bottom: 16px;
}

.sui-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #26392c;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.sui-section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.sui-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sui-card.hover-action {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.sui-card__image-container {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background-color: #f1f4f2;
  border-bottom: 1px solid rgba(38, 57, 44, 0.06);
}

.sui-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sui-card__footer {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-grow: 1;
  background-color: #ffffff;
}

.sui-card__footer-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #26392c;
  margin-bottom: 8px;
}

.sui-card__footer-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #64748b;
}

.sui-card__action-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f8faf9;
  border: 1px solid rgba(38, 57, 44, 0.08);
  color: #26392c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
}

.sui-card.hover-action:hover .sui-card__action-icon {
  background-color: #8c6f38;
  color: #ffffff;
  border-color: #8c6f38;
}

/* 4. Standards Section */
.sui-standards {
  padding: 80px 24px;
}

.sui-standards__panel {
  background: linear-gradient(to right bottom, #ffffff, #fcfefc);
  border: 1px solid rgba(140, 111, 56, 0.15);
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(140, 111, 56, 0.03);
}

.sui-standard-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 15px 20px;
  border-radius: 8px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.sui-standard-item:hover {
  transform: translateY(-5px);
  background-color: rgba(140, 111, 56, 0.02);
}

.sui-standard-item:not(:last-child) {
  border-right: 1px solid rgba(38, 57, 44, 0.08);
}

.sui-standard-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sui-standard-item__stat {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #26392c;
  transition: color 0.3s, text-shadow 0.3s;
}

.sui-standard-item:hover .sui-standard-item__stat {
  color: #8c6f38;
  text-shadow: 0 0 12px rgba(140, 111, 56, 0.2);
}

.sui-standard-item svg,
.sui-standard-item i {
  transition: transform 0.3s ease;
}

.sui-standard-item:hover svg,
.sui-standard-item:hover i {
  transform: scale(1.15) rotate(8deg);
}

.sui-standard-item__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #26392c;
  margin-bottom: 12px;
}

.sui-standard-item__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #64748b;
}

/* 5. Interactive Timeline */
.sui-timeline {
  padding: 80px 24px;
  background: radial-gradient(circle at center, rgba(140, 111, 56, 0.02), transparent 70%), #ffffff;
}

.sui-timeline__interactive {
  max-width: 800px;
  margin: 50px auto 0;
}

.sui-timeline__track-wrapper {
  position: relative;
  padding: 20px 0 40px;
}

.sui-timeline__track {
  position: absolute;
  left: 0;
  right: 0;
  top: 32px;
  height: 2px;
  background-color: rgba(38, 57, 44, 0.1);
  z-index: 1;
}

.sui-timeline__years {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.sui-timeline__btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
}

.sui-timeline__btn-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid rgba(140, 111, 56, 0.25);
  margin-bottom: 12px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.sui-timeline__btn-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8c6f38;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sui-timeline__btn-year {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  transition: color 0.3s, transform 0.3s;
}

.sui-timeline__btn:hover .sui-timeline__btn-dot {
  transform: scale(1.15);
  border-color: #8c6f38;
  box-shadow: 0 0 10px rgba(140, 111, 56, 0.2);
}

.sui-timeline__btn:hover .sui-timeline__btn-year {
  color: #26392c;
  transform: translateY(-2px);
}

.sui-timeline__btn.active .sui-timeline__btn-dot {
  transform: scale(1.25);
  border-color: #8c6f38;
  background-color: #26392c; /* Brand Green Core */
  box-shadow: 0 0 12px rgba(140, 111, 56, 0.35);
}

.sui-timeline__btn.active .sui-timeline__btn-dot::after {
  transform: translate(-50%, -50%) scale(1);
  background-color: #ffffff; /* Contrast white inner dot */
}

.sui-timeline__btn.active .sui-timeline__btn-year {
  color: #8c6f38;
  transform: translateY(-2px) scale(1.1);
}

.sui-timeline__card {
  text-align: left;
  background-color: #ffffff;
  border: 1px solid rgba(38, 57, 44, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sui-timeline__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #8c6f38;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sui-timeline__card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #26392c;
  margin-bottom: 12px;
}

.sui-timeline__card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
}

/* 6. Values Grid */
.sui-values {
  padding: 80px 24px;
}

.sui-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sui-value-card {
  background-color: #ffffff;
  border: 1px solid rgba(38, 57, 44, 0.08);
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}

.sui-value-card:hover {
  transform: translateY(-6px);
  border-color: #8c6f38;
  box-shadow: 0 12px 28px rgba(140, 111, 56, 0.05);
}

.sui-value-card__num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #8c6f38;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(140, 111, 56, 0.08);
  border: 1px solid rgba(140, 111, 56, 0.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s, background-color 0.3s;
}

.sui-value-card:hover .sui-value-card__num {
  transform: scale(1.15) rotate(360deg);
  color: #ffffff;
  background-color: #8c6f38;
}

.sui-value-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #26392c;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sui-value-card__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #64748b;
}

/* 7. Sui Concentric Ellipses Bridge */
.sui-bridge {
  position: relative;
  padding: 130px 24px;
  background-color: #26392c; /* Rich Brand Dark Green Background */
  border-top: 1px solid rgba(140, 111, 56, 0.15);
  overflow: hidden;
}

.sui-bridge__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sui-bridge__ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: none;
  stroke: rgba(140, 111, 56, 0.15); /* Glowing Gold Rings */
  stroke-width: 1.5px;
}

.sui-bridge__ellipse--outer {
  width: 120vw;
  height: 120vw;
  max-width: 1400px;
  max-height: 1400px;
  animation: pulseEllipseOuter 8s ease-in-out infinite;
}

.sui-bridge__ellipse--inner {
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  animation: pulseEllipseInner 6s ease-in-out infinite alternate;
}

@keyframes pulseEllipseOuter {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.03); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
}

@keyframes pulseEllipseInner {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(0.96); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
}

.sui-bridge__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sui-bridge__logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.sui-bridge__logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.sui-bridge__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #ffffff; /* Contrast white */
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.sui-bridge__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1; /* Soft light text */
  max-width: 620px;
  margin: 0 auto 36px;
}

.sui-bridge__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.sui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

.sui-btn--primary {
  background-color: #8c6f38;
  color: #ffffff;
  border: 1px solid #8c6f38;
}

.sui-btn--primary:hover {
  background-color: #755c2e;
  border-color: #755c2e;
}

.sui-btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(140, 111, 56, 0.5);
}

.sui-btn--outline:hover {
  border-color: #8c6f38;
  background-color: rgba(140, 111, 56, 0.15);
}

/* Responsive */
@media (max-width: 1024px) {
  .sui-grid-two {
    grid-template-columns: 1fr;
  }
  .sui-grid-three {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sui-standards__panel {
    padding: 40px 24px;
  }
  .sui-standards__panel .sui-grid-three {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sui-standard-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(38, 57, 44, 0.08);
    padding: 0 0 24px;
  }
  .sui-standard-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .sui-values__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sui-hero {
    padding-top: 100px;
  }
  .sui-values__grid {
    grid-template-columns: 1fr;
  }
  .sui-timeline__years {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .sui-timeline__track {
    display: none;
  }
  .sui-bridge__actions {
    flex-direction: column;
    align-items: center;
  }
  .sui-btn {
    width: 100%;
    max-width: 280px;
  }
}