:root {
  --pt-navy: #081429;
  --pt-navy-2: #0d1d38;
  --pt-blue: #2f7cff;
  --pt-teal: #2dd4bf;
  --pt-purple: #7358ff;
  --pt-gold: #f59e0b;
  --pt-soft: #f5f8ff;
  --pt-text: #112033;
  --pt-muted: #5c6b7c;
  --pt-border: rgba(15, 23, 42, 0.08);
  --pt-shadow: 0 20px 60px rgba(7, 17, 31, 0.12);
}

body {
  color: var(--pt-text);
  font-family: 'Poppins', sans-serif;
}

.header .navbar-brand img {
  width: 280px;
  max-width: 100%;
}

.pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid transparent;
}

.pt-btn:hover { text-decoration: none; transform: translateY(-2px); }
.pt-btn-primary { background: linear-gradient(135deg, var(--pt-blue), var(--pt-purple)); color: #fff; box-shadow: 0 10px 30px rgba(47,124,255,.25); }
.pt-btn-dark { background: #0f172a; color: #fff; }
.pt-btn-outline { border-color: rgba(255,255,255,0.35); color: #fff; background: rgba(255,255,255,0.06); }
.pt-btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }

.about-hero {
  position: relative;
  padding: 140px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 212, 191, 0.18), transparent 25%),
    radial-gradient(circle at 85% 12%, rgba(115, 88, 255, 0.25), transparent 20%),
    linear-gradient(135deg, #07101f 0%, #0b1730 55%, #0e2144 100%);
  color: #fff;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
  opacity: .35;
}

.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); font-weight: 600; font-size: 14px;
}
.hero-badge span { width: 10px; height: 10px; background: linear-gradient(135deg, var(--pt-teal), var(--pt-blue)); border-radius: 50%; box-shadow: 0 0 20px rgba(45,212,191,.8); }
.hero-title {
  margin-top: 22px; margin-bottom: 20px; color: #fff; font-size: 54px; line-height: 1.08; font-weight: 800; letter-spacing: -0.02em;
}
.hero-title-highlight { color: #7dd3fc; }
.hero-copy { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 620px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-visual { position: relative; min-height: 530px; }
.glow-orb {
  position: absolute; border-radius: 50%; filter: blur(12px); opacity: .65;
}
.glow-a { width: 190px; height: 190px; background: rgba(45,212,191,.25); top: 40px; right: 40px; }
.glow-b { width: 170px; height: 170px; background: rgba(115,88,255,.25); bottom: 30px; left: 10px; }
.tech-card {
  position: relative; z-index: 2; padding: 28px; border-radius: 32px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(14px); box-shadow: 0 35px 80px rgba(0,0,0,.25);
}
.tech-card-main { margin-top: 10px; }
.mini-chip {
  display: inline-flex; font-size: 13px; font-weight: 600; padding: 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,.1); color: #dbeafe; border: 1px solid rgba(255,255,255,.12);
}
.visual-stage { margin-top: 18px; border-radius: 24px; overflow: hidden; background: radial-gradient(circle at 50% 20%, rgba(47,124,255,.12), rgba(0,0,0,0) 55%); }
.about-hero-svg { width: 100%; height: auto; display: block; }
.hero-metrics { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.metric-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 12px 14px; min-width: 120px;
}
.metric-pill strong, .metric-pill span { display: block; }
.metric-pill strong { font-size: 15px; color: #fff; }
.metric-pill span { font-size: 12px; color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .06em; }
.floating-note {
  position: absolute; z-index: 3; padding: 10px 14px; border-radius: 14px; background: #fff; color: var(--pt-text); font-weight: 600;
  box-shadow: var(--pt-shadow); font-size: 14px;
}
.note-left { left: -10px; top: 80px; animation: bob 4.2s ease-in-out infinite; }
.note-right { right: -10px; bottom: 80px; animation: bob 4.8s ease-in-out infinite; }

.stats-strip { margin-top: -45px; position: relative; z-index: 3; }
.stats-box {
  background: #fff; border-radius: 28px; box-shadow: 0 18px 50px rgba(7,17,31,.1); padding: 26px 18px;
}
.stat-item { text-align: center; padding: 8px 10px; }
.stat-number { font-size: 40px; line-height: 1; font-weight: 800; color: var(--pt-blue); letter-spacing: -0.03em; }
.stat-number::after { content: attr(data-suffix); }
.stat-label { margin-top: 10px; font-size: 14px; color: var(--pt-muted); }

.pt-section { padding: 96px 0; }
.pt-section-soft { background: linear-gradient(180deg, #f6f9ff 0%, #edf4ff 100%); }
.pt-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--pt-blue);
}
.pt-title {
  font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.18; color: var(--pt-text); font-weight: 700;
}
.pt-lead { font-size: 18px; line-height: 1.9; color: var(--pt-muted); }

.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.info-card, .value-card, .difference-card, .process-card, .why-card, .split-card {
  background: #fff; border: 1px solid var(--pt-border); border-radius: 26px; padding: 28px; box-shadow: 0 14px 45px rgba(7,17,31,.06);
}
.info-card h4, .value-card h4, .difference-card h4, .split-card h3, .journey-step strong { color: var(--pt-text); }
.info-card p, .value-card p, .difference-card p, .split-card p, .journey-step p { color: var(--pt-muted); margin-bottom: 0; line-height: 1.8; }
.info-icon, .value-icon {
  width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px;
  margin-bottom: 18px; background: linear-gradient(135deg, rgba(47,124,255,.12), rgba(115,88,255,.14)); color: var(--pt-blue); font-size: 22px; font-weight: 700;
}
.hover-rise { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.hover-rise:hover { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(7,17,31,.11); border-color: rgba(47,124,255,.2); }

.split-card {
  height: 100%; padding: 34px; position: relative; overflow: hidden;
}
.mission-card { background: linear-gradient(145deg, #0c1b34, #132447); color: #fff; }
.vision-card { background: linear-gradient(145deg, #ffffff, #f6f9ff); }
.mission-card h3, .mission-card p, .mission-card .pt-eyebrow { color: #fff; }
.mission-card::after, .vision-card::after {
  content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -55px; bottom: -55px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%);
}
.vision-card .pt-eyebrow { color: var(--pt-purple); }

.value-card, .difference-card { height: 100%; }
.value-card { text-align: center; }
.value-icon { margin-left: auto; margin-right: auto; font-size: 24px; }
.difference-card {
  position: relative; overflow: hidden; background: rgba(255,255,255,0.96);
}
.difference-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(180deg, var(--pt-blue), var(--pt-teal)); border-radius: 20px;
}
.culture-panel {
  border-radius: 32px; background: linear-gradient(135deg, #09172c, #102447); padding: 46px; color: #fff; overflow: hidden; position: relative;
}
.culture-panel::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(45,212,191,.12); filter: blur(2px);
}
.culture-panel .pt-title, .culture-panel .pt-lead, .culture-panel .pt-eyebrow { color: #fff; position: relative; z-index: 2; }
.journey-steps { display: grid; gap: 18px; position: relative; z-index: 2; }
.journey-step {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
}
.journey-step span {
  width: 44px; height: 44px; flex: 0 0 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--pt-teal), var(--pt-blue)); font-weight: 700; color: #07111f;
}

.final-cta {
  padding: 54px 34px; border-radius: 34px; background: linear-gradient(135deg, #0b1730 0%, #12284a 100%); color: #fff; position: relative; overflow: hidden; box-shadow: 0 25px 75px rgba(7,17,31,.16);
}
.final-cta::before,
.final-cta::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.06);
}
.final-cta::before { width: 240px; height: 240px; top: -90px; right: -80px; }
.final-cta::after { width: 170px; height: 170px; left: -60px; bottom: -50px; }
.final-cta .pt-title, .final-cta .pt-lead, .final-cta .pt-eyebrow { color: #fff; position: relative; z-index: 2; }
.cta-button-row { gap: 14px; position: relative; z-index: 2; }
.max-760 { max-width: 760px; }

.footer-logo { max-width: 210px; }
.footer-description { color: rgba(255,255,255,0.8); max-width: 520px; }
#movetop { display: none; }

.reveal {
  opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.float-slow { animation: bob 6s ease-in-out infinite; }
.float-people { animation: bob 5.2s ease-in-out infinite; transform-origin: center; }
.float-people-delayed { animation: bob 5.8s ease-in-out infinite .7s; transform-origin: center; }
.node-pulse { animation: nodeGlow 2.8s ease-in-out infinite; transform-origin: center; }
.node-two { animation-delay: .4s; } .node-three { animation-delay: .8s; } .node-four { animation-delay: 1.2s; }

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

@keyframes nodeGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.07); opacity: .82; }
}

@media (max-width: 991px) {
  .about-hero { padding: 130px 0 70px; }
  .hero-title { font-size: 42px; }
  .hero-visual { min-height: auto; }
  .stats-strip { margin-top: 25px; }
  .info-grid { grid-template-columns: 1fr; }
  .pt-section { padding: 78px 0; }
  .culture-panel { padding: 34px 24px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 34px; }
  .hero-copy, .pt-lead { font-size: 16px; }
  .pt-title { font-size: 32px; }
  .tech-card { padding: 18px; }
  .floating-note { display: none; }
  .stat-number { font-size: 30px; }
  .final-cta { padding: 42px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Readability alignment: justify longer narrative text while preserving headings, buttons, navigation, stats, and centered sections. */
.pt-section p,
.split-card p,
.info-card p,
.value-card p,
.difference-card p,
.culture-panel p,
.final-cta p,
.footer-description,
.hero-copy {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.text-center p,
.stat-label,
.metric-pill span,
.footer14-nav,
.footer14-nav a,
.pt-btn,
.nav-link,
.hero-badge,
.pt-eyebrow {
  text-align: inherit;
  hyphens: none;
}

@media (max-width: 767px) {
  .pt-section p,
  .split-card p,
  .info-card p,
  .value-card p,
  .difference-card p,
  .culture-panel p,
  .final-cta p,
  .footer-description,
  .hero-copy {
    text-align: left;
    hyphens: none;
  }
}

