:root {
  color-scheme: dark;
  --navy: #031426;
  --navy-2: #07223b;
  --emerald: #21c784;
  --emerald-2: #12a56a;
  --text: #eaf2ff;
  --muted: #8fa1bf;
  --border: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(33, 199, 132, 0.16), transparent 28%),
    radial-gradient(circle at right center, rgba(18, 165, 106, 0.14), transparent 26%),
    linear-gradient(180deg, #031426 0%, #071b2e 45%, #081b2d 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(255,255,255,0.05) 0%, transparent 40%, rgba(255,255,255,0.03) 100%);
  mix-blend-mode: screen;
}

.about-page {
  padding: 7rem 1rem 4rem;
  position: relative;
}

.about-hero {
  max-width: 1240px;
  margin: 0 auto 2rem;
  padding: 2rem;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.2);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
}

.about-hero::before,
.about-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.about-hero::before {
  width: 280px;
  height: 280px;
  background: rgba(33, 199, 132, 0.16);
  top: -100px;
  right: -80px;
}

.about-hero::after {
  width: 240px;
  height: 240px;
  background: rgba(18, 165, 106, 0.14);
  bottom: -100px;
  left: -80px;
}

.about-hero__content,
.about-hero__visual {
  position: relative;
  z-index: 1;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8feecb;
  margin-bottom: 1rem;
}

.about-badge__logo {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(77, 184, 255, 0.4));
}

.about-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 700;
  max-width: 680px;
}

.about-hero p {
  font-size: 1.03rem;
  line-height: 1.8;
  color: #dce8ff;
  margin: 0 0 1.3rem;
  max-width: 640px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.metric {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 150px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric i {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(77, 184, 255, 0.24), rgba(139, 92, 246, 0.2));
  color: #e8f2ff;
}

.metric strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #014651;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-glass:hover {
  transform: translateY(-2px);
  background: #0f5f4b;
  box-shadow: 0 12px 32px rgba(1,70,81,0.22);
}

.btn-glass.primary {
  background: #014651;
  color: #fff;
}

.about-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-hero__visual.visible {
  opacity: 1;
  transform: translateY(0);
}

.visual-card {
  border-radius: 24px;
  padding: 0.95rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 20px 40px rgba(0,0,0,0.16);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.logo-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  gap: 1rem;
}

.logo-orb {
  width: min(240px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.24), rgba(255,255,255,0.06) 46%, rgba(255,255,255,0.01) 72%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  animation: floatLogo 5s ease-in-out infinite;
}

.logo-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.visual-card__title {
  text-align: center;
  max-width: 260px;
}

.visual-card__label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #8ed1ff;
  margin-bottom: 0.4rem;
}

.visual-card__title p {
  margin: 0;
  color: #dbe7ff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.visual-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.visual-card__status {
  width: 100%;
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.status-pill i {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(77,184,255,0.28), rgba(139,92,246,0.28));
  color: #fff;
}

.status-copy strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.18rem;
}

.status-copy span {
  display: block;
  color: #cbd7ea;
  font-size: 0.86rem;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e1ebff;
  font-size: 0.84rem;
}

.floating-panel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.floating-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(77, 184, 255, 0.4);
}

.floating-panel.secondary {
  margin-left: 1.2rem;
}

.floating-panel__thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(77, 184, 255, 0.2), rgba(139, 92, 246, 0.2));
  display: grid;
  place-items: center;
  color: #eaf4ff;
  font-size: 1rem;
}

.floating-panel__copy h3 {
  margin: 0 0 0.2rem;
  font-size: 0.96rem;
}

.floating-panel__copy p {
  margin: 0;
  color: #cbd7ea;
  font-size: 0.86rem;
  line-height: 1.5;
}

.about-section {
  max-width: 1240px;
  margin: 0 auto 1.6rem;
}

.about-card,
.timeline-shell,
.services-shell,
.cta-shell {
  padding: 1.8rem;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.timeline-shell.timeline-modern {
  background: linear-gradient(135deg, rgba(3, 20, 38, 0.96), rgba(7, 34, 59, 0.95));
  border: 1px solid rgba(33, 199, 132, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.timeline-shell.timeline-modern .section-heading h2 {
  color: #f8fbff;
}

.timeline-shell.timeline-modern .section-heading p {
  color: #bfcde6;
}

.about-card__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.about-card__panel {
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-card__panel.highlight {
  background: linear-gradient(135deg, rgba(33, 199, 132, 0.14), rgba(3, 20, 38, 0.92));
}

.about-card p,
.about-card li,
.timeline-content p,
.services-shell p,
.cta-shell p {
  color: #dce8ff;
  line-height: 1.75;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #e9f3ff;
  font-size: 0.9rem;
}

.about-list {
  margin: 0;
  padding-left: 1rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
}

.section-heading p {
  margin: 0;
  color: #cbd7ea;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  margin-top: 1.1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(33, 199, 132, 0.95), rgba(18, 165, 106, 0.4));
  box-shadow: 0 0 30px rgba(33, 199, 132, 0.18);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  align-items: start;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(2) {
  animation-delay: 0.18s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.34s;
}

.timeline-item.active .timeline-content {
  background: linear-gradient(135deg, rgba(33, 199, 132, 0.2), rgba(3, 20, 38, 0.96));
  border-color: rgba(33, 199, 132, 0.4);
  box-shadow: 0 26px 62px rgba(33, 199, 132, 0.16);
}

.timeline-item.highlighted .timeline-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(18, 165, 106, 0.25));
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.timeline-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-2));
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  z-index: 1;
}

.timeline-content {
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  opacity: 0.6;
}

.timeline-content:hover {
  border-color: rgba(77, 184, 255, 0.42);
  box-shadow: 0 22px 48px rgba(77, 184, 255, 0.12);
}

.timeline-content__eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #7cc7ff;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.1rem;
}

.service-card {
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255,255,255,0.2);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  border-color: rgba(33, 199, 132, 0.3);
}

.service-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 16px;
  background: rgba(33, 199, 132, 0.14);
  color: var(--emerald);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.cta-shell {
  text-align: center;
}

.cta-shell__content {
  max-width: 760px;
  margin: 0 auto;
}

.cta-shell h2 {
  margin: 0 0 0.6rem;
  font-size: 1.45rem;
}

.cta-shell p {
  margin: 0 auto 1.1rem;
  color: #dce8ff;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

.scroll-reveal,
.timeline-item {
  opacity: 0;
  transform: translateY(24px);
}

.scroll-reveal.visible,
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-card__grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-page {
    padding: 5.5rem 0.8rem 3rem;
  }

  .about-hero,
  .about-card,
  .timeline-shell,
  .services-shell,
  .cta-shell {
    padding: 1rem;
    border-radius: 24px;
  }

  .about-hero {
    gap: 1rem;
  }

  .about-hero h1 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .about-hero p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-glass {
    width: 100%;
    justify-content: center;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 0.7rem;
  }

  .metric {
    width: 100%;
    min-width: 0;
  }

  .logo-visual {
    padding: 1rem;
  }

  .logo-orb {
    width: min(180px, 70%);
  }

  .visual-card__status {
    gap: 0.6rem;
  }

  .status-pill {
    padding: 0.8rem 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .service-card {
    padding: 1rem;
  }

  .about-card__panel {
    padding: 0.95rem;
  }

  .section-heading h2 {
    font-size: 1.25rem;
  }

  .section-heading p {
    font-size: 0.94rem;
  }

  .timeline {
    gap: 0.9rem;
  }

  .timeline-item {
    grid-template-columns: 2rem 1fr;
    gap: 0.8rem;
  }

  .timeline-badge {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.8rem;
  }

  .timeline-content {
    padding: 0.95rem;
  }

  .floating-panel.secondary {
    margin-left: 0;
  }
}
