:root {
  --primary: #0f766e;
  --primary-2: #14b8a6;
  --secondary: #2563eb;
  --violet: #7c3aed;
  --accent: #f97316;
  --dark: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 24px 64px rgba(37, 99, 235, 0.18);
  --grad: linear-gradient(135deg, #0f766e, #2563eb 56%, #7c3aed);
  --grad-soft: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.12),
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.1)
  );
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    Segoe UI,
    Tahoma,
    sans-serif;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 45%, #eef7ff 100%);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1200px, 92%);
  margin: auto;
}

.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 136px 0 78px;
  overflow: hidden;
}
.about-hero:before {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(20, 184, 166, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 14%,
      rgba(37, 99, 235, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 84%,
      rgba(124, 58, 237, 0.16),
      transparent 28%
    );
  animation: bgMove 12s ease-in-out infinite alternate;
}
.hero-grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  animation: gridMove 18s linear infinite;
}
.hero-light {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: float 7s ease-in-out infinite;
}
.hero-light.one {
  width: 120px;
  height: 120px;
  left: 7%;
  top: 23%;
  background: rgba(20, 184, 166, 0.16);
}
.hero-light.two {
  width: 90px;
  height: 90px;
  right: 10%;
  top: 22%;
  background: rgba(37, 99, 235, 0.15);
  animation-delay: 1.2s;
}
.hero-light.three {
  width: 170px;
  height: 170px;
  right: 22%;
  bottom: 5%;
  background: rgba(124, 58, 237, 0.12);
  animation-delay: 2s;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 118, 110, 0.18);
  color: var(--primary);
  font-weight: 900;
  font-size: 0.88rem;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.08);
}
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  margin: 18px 0 22px;
}
.hero-copy p {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 670px;
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: 0.35s ease;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.34);
}
.btn-light {
  background: #fff;
  border-color: var(--line);
  color: var(--dark);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.btn-light:hover {
  transform: translateY(-5px);
  border-color: var(--primary-2);
  color: var(--primary);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.hero-metrics div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}
.hero-metrics strong {
  display: block;
  font-size: 1.35rem;
}
.hero-metrics span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 800;
}
.command-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(26px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 36px;
  padding: 24px;
  box-shadow: var(--shadow);
  animation: cardFloat 6s ease-in-out infinite;
}
.command-panel:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 36px;
  padding: 1px;
  background: var(--grad);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.28;
}
.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.panel-top i {
  margin-left: auto;
  color: var(--muted);
}
.pulse-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 1.8s infinite;
}
.brand-core {
  text-align: center;
  padding: 30px 0;
}
.logo-orbit {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #fff 0%, #eef6ff 65%, transparent 66%);
}
.logo-orbit:before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(37, 99, 235, 0.28);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.logo-orbit img {
  width: 110px;
  height: 110px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(15, 118, 110, 0.16);
}
.orbit {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--secondary);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.11);
  animation: float 5s ease-in-out infinite;
}
.o1 {
  top: 8px;
  left: 85px;
}
.o2 {
  right: 9px;
  top: 84px;
  animation-delay: 0.6s;
}
.o3 {
  bottom: 8px;
  left: 86px;
  animation-delay: 1.1s;
}
.o4 {
  left: 9px;
  top: 84px;
  animation-delay: 1.6s;
}
.brand-core h2 {
  font-size: 2rem;
  letter-spacing: -0.05em;
}
.brand-core p {
  color: var(--muted);
  font-weight: 750;
}
.panel-progress {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
}
.panel-progress div {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  margin-bottom: 12px;
}
.panel-progress i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 98%;
  animation: loadBar 1.8s ease;
}
.panel-tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.panel-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #eef6ff;
  color: #1d4ed8;
  font-weight: 850;
  font-size: 0.8rem;
}
.section {
  position: relative;
  padding: 96px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
  margin: 12px auto;
  max-width: 850px;
}
.section-head p {
  color: var(--muted);
  max-width: 740px;
  margin: auto;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}
.bento-card,
.value-card,
.timeline-item {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
  transition: 0.38s ease;
}
.bento-card.large {
  grid-row: span 2;
  min-height: 330px;
}
.bento-card:before,
.value-card:before,
.timeline-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: 0.35s;
}
.bento-card:hover,
.value-card:hover,
.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 184, 166, 0.35);
}
.bento-card:hover:before,
.value-card:hover:before,
.timeline-item:hover:before {
  opacity: 1;
}
.bento-card > *,
.value-card > *,
.timeline-item > * {
  position: relative;
}
.card-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 18px;
}
.bento-card h3,
.value-card h3,
.timeline-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.bento-card p,
.value-card p,
.timeline-item p {
  color: var(--muted);
}
.capability-section,
.timeline-section {
  background: linear-gradient(135deg, #eff6ff, #f0fdfa);
}
.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: center;
}
.split-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 12px 0;
}
.split-copy p {
  color: var(--muted);
  margin-bottom: 24px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.capability-grid div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  transition: 0.32s;
}
.capability-grid div:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(37, 99, 235, 0.25);
}
.capability-grid i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 12px;
}
.capability-grid strong {
  display: block;
}
.capability-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.timeline-item span {
  font-size: 2.6rem;
  font-weight: 950;
  color: #bfdbfe;
}
.cta-section {
  padding-bottom: 110px;
}
.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--grad);
  color: #fff;
  border-radius: 36px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.25);
}
.cta-card:before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22),
    transparent 38%
  );
  animation: bgMove 10s linear infinite alternate;
}
.cta-card > * {
  position: relative;
}
.cta-card .section-kicker {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cta-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin: 12px 0;
  max-width: 760px;
}
.cta-card p {
  color: #dbeafe;
}
.contact-pro-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 22px;
  background: #fff;
  color: var(--secondary);
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  transition: 0.4s;
}
.contact-pro-btn span {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(37, 99, 235, 0.14) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  transition: 0.8s;
}
.contact-pro-btn:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 28px 66px rgba(15, 23, 42, 0.24);
}
.contact-pro-btn:hover span {
  transform: translateX(120%);
}
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.delay-3 {
  transition-delay: 0.32s;
}
@keyframes bgMove {
  to {
    transform: translate(25px, -18px) scale(1.03);
  }
}
@keyframes gridMove {
  to {
    background-position: 52px 52px;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0);
  }
  50% {
    transform: translateY(-12px) rotateX(2deg);
  }
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes loadBar {
  from {
    width: 0;
  }
  to {
    width: 98%;
  }
}
@media (max-width: 1100px) {
  .hero-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }
  .command-panel {
    max-width: 600px;
    margin: auto;
  }
  .bento-grid,
  .values-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .about-hero {
    padding: 116px 0 60px;
  }
  .hero-copy h1 {
    font-size: 2.55rem;
  }
  .hero-actions,
  .cta-actions,
  .cta-card {
    flex-direction: column;
    align-items: stretch;
  }
  .btn,
  .contact-pro-btn {
    justify-content: center;
  }
  .hero-metrics,
  .bento-grid,
  .capability-grid,
  .values-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.large {
    min-height: auto;
  }
  .section {
    padding: 72px 0;
  }
  .cta-card {
    padding: 30px;
  }
  .logo-orbit {
    width: 180px;
    height: 180px;
  }
  .logo-orbit img {
    width: 92px;
    height: 92px;
  }
}

/* =========================================================
   HERO 100VH PROFESSIONAL BALANCED FIX
   Keeps text and image/card in same viewport height
========================================================= */

.about-hero {
  min-height: calc(100vh - 82px);
  padding: 105px 0 42px;
  display: flex;
  align-items: center;
}

.about-hero .container {
  width: min(1280px, 92%);
}

.hero-layout {
  min-height: calc(100vh - 170px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy h1 {
  font-size: clamp(3.25rem, 4.35vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.078em;
  margin: 16px 0 20px;
}

.hero-copy p {
  max-width: 610px;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 24px;
}

.hero-metrics {
  margin-top: 24px;
}

.command-panel {
  width: min(100%, 520px);
  justify-self: end;
  padding: 22px;
  border-radius: 34px;
}

.brand-core {
  padding: 24px 0 22px;
}

.logo-orbit {
  width: 190px;
  height: 190px;
}

.logo-orbit img {
  width: 96px;
  height: 96px;
  border-radius: 26px;
}

.orbit {
  width: 44px;
  height: 44px;
  border-radius: 15px;
}

.o1 {
  top: 6px;
  left: 73px;
}

.o2 {
  right: 6px;
  top: 73px;
}

.o3 {
  bottom: 6px;
  left: 73px;
}

.o4 {
  left: 6px;
  top: 73px;
}

.brand-core h2 {
  font-size: clamp(1.65rem, 2vw, 2rem);
}

.panel-progress {
  padding: 14px;
}

.panel-tags {
  margin-top: 14px;
}

/* Large laptop / browser zoom fix */
@media (max-width: 1400px) {
  .about-hero {
    padding-top: 96px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.75fr);
    gap: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 4.15vw, 4.65rem);
  }

  .command-panel {
    width: min(100%, 485px);
  }

  .logo-orbit {
    width: 175px;
    height: 175px;
  }

  .logo-orbit img {
    width: 88px;
    height: 88px;
  }

  .o1,
  .o3 {
    left: 66px;
  }

  .o2,
  .o4 {
    top: 66px;
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .about-hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .command-panel {
    justify-self: center;
    width: min(100%, 560px);
  }
}

/* Mobile */
@media (max-width: 680px) {
  .about-hero {
    padding: 104px 0 54px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.15rem);
    line-height: 1;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .command-panel {
    padding: 18px;
  }
}
