/* about.css — Veloryn About page styles, linked from about.html */

/* NAV / HAMBURGER — duplicated from veloryn.css as a fallback for stale cache scenarios */

@font-face {
  font-family: 'Grava Roman';
  src: local('Grava Roman'), url('../fonts/Grava%20Roman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.border-subtle {
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-link:hover {
  color: #1E5FFF !important;
}

.nav-link:focus-visible,
.btn-get-started:focus-visible,
#mobile-menu-btn:focus-visible {
  outline: 2px solid rgba(30, 95, 255, 0.65);
  outline-offset: 3px;
  border-radius: 8px;
}

.btn-get-started {
  transition: background-color 0.25s ease-out, transform 0.25s ease-out;
}

.btn-get-started:hover {
  background-color: #4AA3FF !important;
  transform: scale(1.02);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #cbd5e1;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#mobile-menu-btn.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#mobile-menu-btn.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

#mobile-menu.open {
  max-height: 1000px;
  opacity: 1;
}

/* HERO SECTION */

.about-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #0A1224;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero/about-1280.jpg');
  background-size: cover;
  background-position: 80% 90%;
  background-repeat: no-repeat;
}

@media (min-width: 1280px) {
  .about-hero-bg {
    background-image: url('../images/hero/about-1920.jpg');
  }
}

@media (min-width: 1920px) {
  .about-hero-bg {
    background-image: url('../images/hero/about-2560.jpg');
  }
}




.about-hero-blob-br {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 360px;
  height: 360px;
  background: rgba(30, 95, 255, 0.05);
  border-radius: 50%;
  filter: blur(64px);
  z-index: 3;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
}

.about-hero-inner {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 24px 90px;
}

@media (min-width: 768px) {
  .about-hero-inner {
    padding: 140px 48px 90px;
  }
}

@media (min-width: 1024px) {
  .about-hero-inner {
    padding: 140px 80px 90px;
  }
}

@media (min-width: 1536px) {
  .about-hero-inner {
    padding: 140px 112px 90px;
  }
}

.about-hero-text {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.about-hero-heading {
  font-family: 'Sora', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F5F7FF;
}

@media (min-width: 640px) {
  .about-hero-heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-hero-heading {
    font-size: 3.75rem;
  }
}

.about-hero-heading span {
  background: linear-gradient(to right, #1E5FFF, #00F2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: #AEB6D3;
  max-width: 560px;
}

.about-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

/* BUTTONS */

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 180px;
  padding: 0 32px;
  background-color: #1E5FFF;
  color: #F5F7FF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(30, 95, 255, 0.2);
  transition: background-color 0.25s ease-out, transform 0.2s ease-out, box-shadow 0.25s ease-out;
  white-space: nowrap;
}

.about-btn-primary:hover {
  background-color: #4AA3FF;
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(30, 95, 255, 0.35);
}

.about-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 180px;
  padding: 0 32px;
  background-color: transparent;
  color: #F5F7FF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  border: 1px solid #26304A;
  text-decoration: none;
  transition: background-color 0.25s ease-out, border-color 0.25s ease-out;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.about-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.04);
}

.about-btn-secondary:focus-visible {
  outline: 2px solid rgba(30, 95, 255, 0.65);
  outline-offset: 3px;
}

/* FADE-UP ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease-out forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }

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

/* SCROLL REVEAL */

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }

/* SHARED SECTION CONTAINER */

.about-section-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px 48px;
}

@media (min-width: 768px) {
  .about-section-inner {
    padding: 64px 48px 48px;
  }
}

@media (min-width: 1024px) {
  .about-section-inner {
    padding: 64px 80px 48px;
  }
}

/* OUR STORY SECTION */

.about-story {
  background-color: #0A1224;
}

/* Eyebrow — matches platform.html: text-xs font-bold uppercase tracking-widest #AEB6D3 */
.about-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #AEB6D3;
  margin-bottom: 24px;
}

/* Section heading — matches platform.html h2: Sora bold clamp(24–44px) */
.about-story-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #F5F7FF;
  margin-bottom: 32px;
}

/* Lead paragraph — white, normal weight */
.about-story-lead {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
}

.about-story-header {
  max-width: 720px;
  margin-bottom: 40px;
}

/* Full-width subheading — matches platform.html "Maintenance" h3: Sora bold 18px #F5F7FF */
.about-story-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  color: #F5F7FF;
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .about-story-subheading { font-size: 18px; }
}

/* Two-column grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

/* Body copy */
.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.about-story-body p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
}

/* CTA row */
.about-story-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Image column */
.about-story-image-wrap {
  display: flex;
  justify-content: flex-end;
}

/* IMAGE BORDER GLOW ANIMATION */
/* Rotating conic-gradient with two opposite arcs (each 64deg wide)
   moving clockwise around the image frame at a slow 6s speed.    */

.about-story-image-frame {
  position: relative;
  border-radius: 10px;
  padding: 2px;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 1024px) {
  .about-story-image-frame {
    width: 90%;
  }
}

.about-story-image-frame::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(74, 163, 255, 0.5) 8deg,
    rgba(74, 163, 255, 0.95) 32deg,
    rgba(74, 163, 255, 0.5) 56deg,
    transparent 64deg,
    transparent 180deg,
    rgba(74, 163, 255, 0.5) 188deg,
    rgba(74, 163, 255, 0.95) 212deg,
    rgba(74, 163, 255, 0.5) 236deg,
    transparent 244deg,
    transparent 360deg
  );
  animation: borderGlowSpin 6s linear infinite;
  z-index: 0;
}

/* Interior mask creates the visible 2px border illusion */
.about-story-image-frame::after {
  content: '';
  position: absolute;
  inset: 2px;
  background-color: #161E2E;
  border-radius: 8px;
  z-index: 1;
}

@keyframes borderGlowSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-story-image {
  position: relative;
  z-index: 2;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #161E2E;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Default (mobile + desktop): show png, hide webp */
.about-story-img-tablet  { display: none; }
.about-story-img-default { display: block; }

/* TABLET IMAGE OVERRIDE (768–1023px) */
/* Swaps the square png for the landscape webp banner.
   The spinner is sized in vw units (equal on both axes) so
   the conic arc covers all four edges of the wider frame.   */

@media (min-width: 768px) and (max-width: 1023px) {
  .about-story-img-default { display: none !important; }
  .about-story-img-tablet  { display: block !important; }

  .about-story-image-wrap {
    width: 100%;
    justify-content: stretch;
  }

  .about-story-image-frame {
    width: 100%;
    border-radius: 10px;
  }

  /* 250vw square guarantees full corner coverage as frame rotates */
  .about-story-image-frame::before {
    width: 250vw;
    height: 250vw;
  }

  /* Tighten gap between banner image and timeline cards */
  .about-timeline {
    margin-top: 0px;
  }
  .about-story-image {
    aspect-ratio: unset;
    height: auto;
    border-radius: 8px;
  }

  .about-story-img-tablet {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: center;
    display: block;
  }
}

/* TIMELINE */

.about-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .about-timeline {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
  }
}

/* Base card — mirrors why-card from howtobuild.css */
.about-timeline-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #26304A;
  background-color: #161E2E;
  overflow: hidden;
  transition: border-color 80ms ease, box-shadow 80ms ease;
  cursor: default;
}

.about-timeline-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.about-timeline-card:hover .about-timeline-year {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.60);
}

.about-timeline-card:hover .about-timeline-card-header .material-symbols-outlined {
  filter: drop-shadow(0 0 8px rgba(30, 95, 255, 0.90));
}

/* Today card */
.about-timeline-card--today {
  border-color: rgba(30, 95, 255, 0.30);
  background-color: rgba(30, 95, 255, 0.08);
}

.about-timeline-card--today:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

/* Background icon */
.about-timeline-card-bg-icon {
  position: absolute;
  top: -12px;
  right: -12px;
  font-size: 96px;
  color: #F5F7FF;
  opacity: 0.06;
  pointer-events: none;
  line-height: 1;
}

.about-timeline-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-timeline-card-header .material-symbols-outlined {
  font-size: 22px;
  color: #1E5FFF;
  line-height: 1;
  transition: filter 80ms ease;
}

.about-timeline-year {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F5F7FF;
  transition: text-shadow 80ms ease;
}

.about-timeline-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
}

.about-timeline-text strong {
  color: #F5F7FF;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn-get-started,
  .hamburger-line,
  #mobile-menu,
  .about-btn-primary,
  .about-btn-secondary,
  .about-timeline-card,
  .about-timeline-card-header .material-symbols-outlined {
    transition: none !important;
  }

  .about-story-image-frame::before {
    animation: none !important;
  }
}

/* SECTIONS 1–9 — styles extracted from inline HTML; do not reintroduce inline styles to about.html */

/* SHARED MODIFIERS */

/* Wider story-header variant used in "What We Are" */
.about-story-header--wide {
  max-width: 860px;
}

/* Secondary-colour story-lead variant */
.about-story-lead--secondary {
  font-family: 'Inter', sans-serif;
  color: #AEB6D3;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}

/* Centred eyebrow variant */
.about-eyebrow--centered {
  display: block;
  text-align: center;
}

/* Flush section inner (no top/bottom padding) */
.about-section-inner--flush {
  padding-top: 0;
  padding-bottom: 0;
}


/* SECTION 1: WHAT WE ARE */

.about-what-we-are {
  background-color: #0A1224;
}

.about-wwa-commitments-block {
  margin-bottom: 48px;
}

.about-wwa-intro-block {
  margin-bottom: 32px;
}

.about-wwa-section-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  color: #F5F7FF;
  margin-bottom: 12px;
}

.about-wwa-section-tagline {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: #F5F7FF;
}

/* 3-column card grid */
.about-what-we-are-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .about-what-we-are-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-what-we-are-grid { grid-template-columns: repeat(3, 1fr); }
}

.wwa-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  border: 1px solid #26304A;
  background-color: #171C2F;
  padding: 32px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  cursor: default;
}

.wwa-card:hover {
  border-color: rgba(30, 95, 255, 0.50);
  background-color: rgba(30, 95, 255, 0.06);
}

.wwa-card-icon {
  display: flex;
  height: 48px;
  width: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(30, 95, 255, 0.10);
  color: #1E5FFF;
  margin-bottom: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.wwa-card:hover .wwa-card-icon {
  background-color: #1E5FFF;
  color: #fff;
}

.wwa-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.wwa-card-copy {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
  margin-top: 16px;
  flex: 1;
}

.wwa-card-bar-wrap {
  margin-top: auto;
  padding-top: 24px;
}

.wwa-card-bar {
  height: 2px;
  width: 50%;
  border-radius: 9999px;
  background: #1E5FFF;
  transition: width 0.3s ease;
}

.wwa-card:hover .wwa-card-bar { width: 100%; }

/* OSLM Panel */
.wwa-oslm-panel {
  background: #061a3a;
  border-radius: 16px;
  border: 1px solid rgba(30, 95, 255, 0.30);
  padding: 32px 24px;
  box-shadow: 0 0 0 1px rgba(30, 95, 255, 0.08);
}

@media (min-width: 768px) {
  .wwa-oslm-panel { padding: 40px; }
}

.wwa-oslm-flex {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.wwa-oslm-icon {
  margin-top: 4px;
  display: flex;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(30, 95, 255, 0.10);
  color: #1E5FFF;
}

.wwa-oslm-icon .material-symbols-outlined {
  font-size: 22px;
}

.wwa-oslm-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  color: #F5F7FF;
  margin-bottom: 16px;
}

.wwa-oslm-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #AEB6D3;
}

@keyframes wwa-gear-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.wwa-gear-spin {
  animation: wwa-gear-spin 10s linear infinite;
  transform-origin: center;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .wwa-gear-spin { animation: none; }
}


/* SECTION 2: MISSION AND VISION */

.about-mission {
  background-color: #0A1224;
  padding-top: 64px;
  padding-bottom: 48px;
}

.about-mission-panel {
  position: relative;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #26304A;
  background-color: #0f1523;
  overflow: hidden;
  padding: 48px 32px 0;
}

@media (min-width: 768px) {
  .about-mission-panel { padding: 64px 48px 0; }
}

.about-mission-wireframe-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(38, 48, 74, 0.4) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.40;
}


.about-mission-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-mission-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 64px;
  }
}

.about-mission-narrative {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-mission-headline-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-mission-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #AEB6D3;
}

.about-mission-headline {
  font-family: 'Sora', sans-serif;
  color: #F1F5F9;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.about-mission-divider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-mission-divider-line {
  height: 1px;
  width: 48px;
  background: #1E5FFF;
  flex-shrink: 0;
}

.about-mission-est {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
}

.about-mission-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-mission-card {
  position: relative;
  padding: 32px;
  border-radius: 12px;
  background-color: rgba(23, 28, 47, 0.5);
  border: 1px solid #26304A;
  transition: border-color 0.3s ease;
}

.about-mission-card:hover {
  border-color: rgba(30, 95, 255, 0.50);
}

.about-mission-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-mission-card-icon {
  display: flex;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(30, 95, 255, 0.10);
  color: #1E5FFF;
}

.about-mission-card-icon .material-symbols-outlined {
  font-size: 28px;
}

.about-mission-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-mission-card-title {
  font-family: 'Sora', sans-serif;
  color: #F1F5F9;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-mission-card-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
}

.about-mission-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-weight: 900;
  font-size: 40px;
  color: #334155;
  opacity: 0.10;
  pointer-events: none;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.about-mission-card:hover .about-mission-card-num { opacity: 0.20; }

@keyframes mission-bar-glow {
  0%, 100% {
    opacity: 0.25;
    filter: blur(0px);
  }
  50% {
    opacity: 1;
    filter: blur(1px);
  }
}

.about-mission-bottom-bar {
  height: 6px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(30, 95, 255, 0.7), transparent);
  animation: mission-bar-glow 4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .about-mission-bottom-bar {
    animation: none;
    opacity: 0.5;
  }
}


/* SECTION 3: WHAT WE STAND FOR */

.about-principles {
  background-color: #0A1224;
  background-image:
    linear-gradient(rgba(30, 95, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 95, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-principles-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 48rem;
  text-align: left;
  margin-bottom: 64px;
}

.about-principles-headline {
  font-family: 'Sora', sans-serif;
  color: #F1F5F9;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.about-principles-gradient-text {
  background: linear-gradient(to right, #1E5FFF, #6FEAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-principles-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
  max-width: 48rem;
  margin-top: 8px;
}

.about-principles-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .about-principles-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .about-principle-card:nth-child(1),
  .about-principle-card:nth-child(2),
  .about-principle-card:nth-child(3) { grid-column: span 2; }
  .about-principle-card:nth-child(4) { grid-column: 2 / span 2; }
  .about-principle-card:nth-child(5) { grid-column: 4 / span 2; }
}

@media (min-width: 1280px) {
  .about-principles-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.about-principle-card {
  background: rgba(15, 21, 35, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s ease;
}

.about-principle-card:hover { border-color: rgba(30, 95, 255, 0.50); }

.about-principle-inner {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(30, 95, 255, 0.20);
  background: rgba(10, 18, 36, 0.4);
  padding: 4px;
  overflow: hidden;
}

.about-principle-hover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.10), rgba(111, 234, 255, 0.10));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.about-principle-card:hover .about-principle-hover-bg { opacity: 1; }

.about-principle-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border-radius: 8px;
  overflow: hidden;
}

.about-principle-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.about-principle-icon {
  color: #00F2FF;
  font-size: 2.5rem !important;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.about-principle-card:hover .about-principle-icon { transform: scale(1.25); }

.about-principle-title {
  font-family: 'Sora', sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-principle-subtext {
  font-size: 0.75rem;
  color: #64748B;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-principle-accent {
  margin-top: 16px;
  height: 4px;
  width: 32px;
  background: #00F2FF;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.about-principle-card:hover .about-principle-accent { width: 64px; }

.about-principle-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.2;
  pointer-events: none;
}

.about-principle-copy {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
}


/* SECTION 4: COMMITMENT */

.about-commitment {
  background-color: #0A1224;
}

.about-commitment-intro {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .about-commitment-intro { margin-bottom: 96px; }
}

.about-commitment-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #FFFFFF;
}

.about-commitment-list {
  position: relative;
}

.about-commitment-item {
  border-top: 1px solid #26304A;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: background-color 0.25s ease;
}

@media (min-width: 768px) {
  .about-commitment-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 48px 20px;
  }
}

.about-commitment-item:hover { background-color: rgba(30, 95, 255, 0.03); }

.about-commitment-item--last { border-bottom: 1px solid #26304A; }

.about-commitment-icon-col { flex-shrink: 0; }

.about-commitment-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: rgba(23, 28, 47, 0.5);
  border: 1px solid #26304A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}

.about-commitment-item:hover .about-commitment-icon-wrap {
  background-color: rgba(30, 95, 255, 0.15);
}

.about-commitment-icon { color: #1E5FFF; }

.about-commitment-body-col { flex: 1; }

.about-commitment-item-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.about-commitment-title-row {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-commitment-num {
  display: inline-block;
  font-family: 'Inter', monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(30, 95, 255, 0.55);
}

.about-commitment-body-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
  max-width: 42rem;
}

.about-commitment-closing {
  margin-top: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-commitment-closing { margin-top: 48px; }
}

.about-commitment-closing-text {
  max-width: 42rem;
  margin-inline: auto;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.625;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .about-commitment-closing-text { font-size: 20px; }
}


/* SECTION 5: HOW WE WORK */

.about-how-we-work {
  background-color: #0A1224;
}

.about-how-we-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-how-we-work-grid { grid-template-columns: 1fr 1fr; }
}

.about-how-we-work-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-how-we-work-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-how-we-work-headline {
  font-family: 'Sora', sans-serif;
  color: #F1F5F9;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.about-how-we-work-accent { color: rgba(30, 95, 255, 0.9); }

.about-how-we-work-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
  max-width: 36rem;
  margin-top: 8px;
}

.about-how-we-work-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #F1F5F9;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 2px solid #1E5FFF;
  padding-bottom: 4px;
}

.about-how-we-work-cta-link:hover { color: #1E5FFF; }

.about-how-we-work-cta-link .material-symbols-outlined {
  transition: transform 0.2s ease;
}

.about-how-we-work-cta-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.about-how-we-work-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid #26304A;
}

@media (max-width: 480px) {
  .about-how-we-work-stats { grid-template-columns: 1fr; }
}

.about-how-we-work-stat { display: flex; gap: 12px; }

.about-how-we-work-stat-icon {
  color: #1E5FFF;
  transition: color 0.3s ease;
  font-size: 22px !important;
  flex-shrink: 0;
}

.about-how-we-work-stat-title {
  color: #F1F5F9;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
  transition: text-shadow 0.3s ease;
}

.about-how-we-work-stat-body {
  color: #475569;
  font-size: 12px;
}

.about-how-we-work-stat:hover .about-how-we-work-stat-icon {
  color: #FFFFFF;
}

.about-how-we-work-stat:hover .about-how-we-work-stat-title {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.about-how-we-work-visual-wrap {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.about-how-we-work-glow {
  position: absolute;
  inset: 0;
  background: rgba(30, 95, 255, 0.10);
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
}

.about-how-we-work-visual {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid #26304A;
  background: rgba(15, 20, 35, 0.50);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 95, 255, 0.20);
}

.about-dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
}

.about-how-we-work-visual-inner {
  position: relative;
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-orbit-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0.5px solid rgba(30, 95, 255, 0.3);
  border-radius: 9999px;
  animation: about-spin 20s linear infinite;
}

.about-orbit-inner {
  position: absolute;
  width: 75%;
  height: 75%;
  border: 0.5px solid rgba(30, 95, 255, 0.4);
  border-radius: 9999px;
  animation: about-spin-reverse 15s linear infinite;
}

@keyframes about-spin         { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes about-spin-reverse { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }

.about-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.8;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(1.25);
}

.about-health-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 12px;
  background: rgba(15, 20, 35, 0.85);
  border: 1px solid #334155;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.about-health-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.about-health-label {
  font-size: 10px;
  font-family: monospace;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-health-bar-track {
  height: 4px;
  width: 96px;
  background: #1E293B;
  border-radius: 9999px;
  overflow: hidden;
}

.about-health-bar-fill {
  height: 100%;
  width: 80%;
  background: #1E5FFF;
  transition: width 0.4s ease-in-out;
}

.about-governance-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 12px;
  background: rgba(15, 20, 35, 0.85);
  border: 1px solid #334155;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-governance-label {
  font-size: 10px;
  font-family: monospace;
  color: #1E5FFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-governance-hash {
  font-size: 12px;
  font-family: monospace;
  color: #F1F5F9;
}

.about-system-health-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.about-system-health-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgb(20 184 166);
  opacity: 0.75;
  animation: about-health-ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.about-system-health-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: rgb(20 184 166);
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.55);
}

@keyframes about-health-ping {
  0%        { transform: scale(1);   opacity: 0.75; }
  75%, 100% { transform: scale(2.1); opacity: 0; }
}


/* SECTION 6: TEAM */

.about-team {
  background-color: #0A1224;
}

.about-team-header {
  margin-bottom: 64px;
}

.about-team-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 32px;
}

.about-team-intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  max-width: 700px;
  color: #AEB6D3;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-team-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-team-card {
  background: #171C2F;
  border: 1px solid #26304A;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-team-card:hover {
  border-color: rgba(30, 95, 255, 0.40);
  box-shadow: 0 0 30px rgba(30, 95, 255, 0.10);
}

.about-team-photo-wrap {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1/1;
}

.about-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.about-team-card:hover .about-team-img {
  filter: grayscale(20%) contrast(1);
  box-shadow: 0 0 25px rgba(30, 95, 255, 0.30);
}

.about-team-info {
  margin-top: auto;
  position: relative;
}

.about-team-linkedin {
  position: absolute;
  top: 0;
  right: 0;
  color: #60A5FA;
  transition: color 0.2s ease;
}

.about-team-linkedin:hover { color: #93C5FD; }

.about-team-linkedin-icon {
  width: 20px;
  height: 20px;
}

.about-team-name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #fff;
}

.about-team-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: #60A5FA;
}

.about-team-bio {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
}

.about-team-placeholder {
  border: 2px dashed #26304A;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
  transition: border-color 0.3s ease;
}

.about-team-placeholder:hover { border-color: rgba(30, 95, 255, 0.40); }

.about-team-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 100%;
}

.about-team-plus-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: 1px solid #26304A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-team-plus-icon {
  width: 24px;
  height: 24px;
  opacity: 0.5;
  color: #AEB6D3;
}

.about-team-placeholder-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-team-placeholder-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.about-team-placeholder-body {
  font-size: 14px;
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
  color: #AEB6D3;
}

.about-team-join-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #F5F7FF;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.about-team-join-link:hover {
  color: #60a5fa;
  text-decoration-style: dashed;
  text-decoration-color: #60a5fa;
}

/* Tablet: placeholder spans full width */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-team-placeholder {
    grid-column: 1 / -1;
    min-height: 160px;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    padding: 32px 40px;
  }
}


/* SECTION 7: LOCATION */

.about-location {
  background-color: #0A1224;
  padding-top: 32px;
  padding-bottom: 16px;
  overflow: hidden;
}

.about-location-inner {
  display: flex;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.about-location-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.about-location-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
}

.about-location-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #F5F7FF;
  margin: 0 0 32px;
  font-size: clamp(24px, 3vw, 36px);
}

.about-location-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
  margin: 0;
}

.about-location-right {
  overflow: hidden;
  flex-shrink: 1;
  min-width: 0;
}

.about-location-right img {
  display: block;
}

@media (max-width: 640px) {
  .about-location-inner  { flex-direction: column; }
  .about-location-left   { width: 100%; padding: 0 24px; }
  .about-location-content { max-width: 100%; }
  .about-location-right  { width: 100%; height: auto; padding: 0 24px; margin-top: 40px; }
  .about-location-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .about-location-inner    { flex-direction: column; }
  .about-location-left     { width: 100%; padding: 0 48px; }
  .about-location-content  { max-width: 100%; }
  .about-location-right    { width: 100%; height: auto; display: flex; justify-content: center; padding: 0 48px; margin-top: 40px; }
  .about-location-right img {
    width: 80%;
    height: auto;
    object-fit: contain;
  }
}

@media (min-width: 1025px) {
  .about-location-inner  { flex-direction: row; align-items: center; min-height: 500px; }
  .about-location-left   { width: 50%; padding: 0 0 0 80px; }
  .about-location-content { max-width: 100%; }
  .about-location-right  { width: 50%; display: flex; align-items: center; justify-content: flex-end; padding-right: 80px; }
  .about-location-right img {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
  }
}


/* SECTION 8: CAREERS */

.about-careers { background-color: #0A1224; }

.about-careers-header {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-careers-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #fff;
}

.about-careers-intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
  max-width: 720px;
  margin-top: 8px;
}

.about-culture-section { margin-bottom: 64px; }

.about-culture-header {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-culture-icon { color: #1E5FFF; }

.about-culture-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
}

.about-culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .about-culture-grid { grid-template-columns: repeat(2, 1fr); }
}

.about-culture-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(30, 95, 255, 0.25);
  background-color: #171C2F;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-culture-card:hover {
  border-color: rgba(30, 95, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(30, 95, 255, 0.15), 0 0 20px rgba(30, 95, 255, 0.08);
}

.about-culture-img-wrap { overflow: hidden; aspect-ratio: 16/9; width: 100%; }

.about-culture-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-culture-card:hover .about-culture-img { transform: scale(1.07); }

.about-culture-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.about-culture-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-culture-num {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(30, 95, 255, 0.7);
}

.about-culture-icon-rocket,
.about-culture-icon-eye {
  font-size: 14px !important;
  color: rgba(30, 95, 255, 0.5);
}

.about-culture-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.about-culture-card-copy {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
}

@keyframes about-rocket-launch {
  0%   { transform: translateY(0)    rotate(-45deg); opacity: 0.5; }
  50%  { transform: translateY(-5px) rotate(-45deg); opacity: 1; }
  100% { transform: translateY(0)    rotate(-45deg); opacity: 0.5; }
}

@keyframes about-eye-pulse {
  0%   { transform: scale(1);    opacity: 0.5; }
  50%  { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(1);    opacity: 0.5; }
}

.about-culture-card:hover .about-culture-icon-rocket { animation: about-rocket-launch 0.7s ease forwards; }
.about-culture-card:hover .about-culture-icon-eye    { animation: about-eye-pulse 0.7s ease forwards; }

.about-candidate-section { margin-bottom: 64px; }

.about-candidate-header {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-candidate-icon { color: #1E5FFF; }

.about-candidate-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #fff;
}

.about-candidate-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-candidate-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  border: 1px solid rgba(30, 95, 255, 0.25);
  background-color: #171C2F;
  padding: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .about-candidate-card { flex-direction: row; align-items: center; }
}

.about-candidate-card:hover {
  border-color: rgba(30, 95, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(30, 95, 255, 0.15), 0 0 20px rgba(30, 95, 255, 0.08);
}

.about-candidate-icon-wrap {
  display: flex;
  height: 64px;
  width: 64px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(30, 95, 255, 0.10);
}

.about-candidate-icon-symbol {
  font-size: 30px !important;
  color: #1E5FFF;
}

.about-candidate-body {
  flex: 1;
  text-align: left;
}

.about-candidate-title {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.about-candidate-copy {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
}

.about-candidate-badge {
  flex-shrink: 0;
  align-self: flex-start;
}

.about-candidate-tag {
  display: inline-block;
  border-radius: 9999px;
  background: #0E1529;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94A3B8;
  transition: color 0.3s ease;
}

.about-candidate-card:hover .about-candidate-tag { color: #1E5FFF; }

.about-careers-cta {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #1E5FFF;
  padding: 32px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .about-careers-cta { padding: 48px; }
}

.about-careers-glow-tr {
  position: absolute;
  right: 0;
  top: 0;
  margin-right: -40px;
  margin-top: -40px;
  height: 256px;
  width: 256px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.10);
  filter: blur(48px);
  pointer-events: none;
}

.about-careers-glow-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -40px;
  margin-left: -40px;
  height: 192px;
  width: 192px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.10);
  filter: blur(32px);
  pointer-events: none;
}

.about-careers-cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .about-careers-cta-content {
    flex-direction: row;
    text-align: left;
  }
}

.about-careers-cta-text { max-width: 480px; }

.about-careers-cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 32px;
}

.about-careers-cta-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #fff;
}

.about-careers-email-btn {
  display: inline-flex;
  height: 56px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  color: #1E5FFF;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-careers-email-btn:hover {
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.25);
  transform: scale(1.04);
}


/* SECTION 9: CTA */

.about-cta {
  position: relative;
  display: flex;
  min-height: 560px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #0A1224;
  padding: 64px 24px 48px;
}

@media (min-width: 768px) {
  .about-cta { padding: 64px 48px 48px; }
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.20;
  pointer-events: none;
}

.about-cta-bg-tl {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: rgba(30, 95, 255, 0.20);
  filter: blur(120px);
  border-radius: 9999px;
}

.about-cta-bg-br {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: rgba(30, 95, 255, 0.10);
  filter: blur(120px);
  border-radius: 9999px;
}

.about-cta-inner {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.about-cta-headline {
  font-family: 'Sora', sans-serif;
  color: #F5F7FF;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.about-cta-accent { color: #1E5FFF; }

.about-cta-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #AEB6D3;
  margin-bottom: 48px;
  max-width: 680px;
  margin-inline: auto;
}

.about-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-cta-btn {
  display: inline-flex;
  min-width: 240px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: #1E5FFF;
  padding: 16px 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.about-cta-btn:hover {
  background-color: #4AA3FF;
  box-shadow: 0 8px 32px rgba(30, 95, 255, 0.35);
  transform: scale(1.02);
}

.about-cta-btn-icon {
  font-size: 20px !important;
  transition: transform 0.2s ease;
}

.about-cta-btn:hover .about-cta-btn-icon { transform: translateX(4px); }

.about-cta-trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 8px;
}

.about-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.about-cta-trust-icon {
  color: #64748B;
  font-size: 20px !important;
  transition: color 0.3s ease;
}

.about-cta-trust-item:hover .about-cta-trust-icon { color: #F5F7FF; }

.about-cta-trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #64748B;
  transition: color 0.3s ease;
}

.about-cta-trust-item:hover .about-cta-trust-label { color: #F5F7FF; }


/* Eyebrow margin reset — flex containers already provide 24px gap; zeroing margin-bottom prevents double-spacing */
.about-principles-intro > .about-eyebrow,
.about-how-we-work-header > .about-eyebrow,
.about-careers-header > .about-eyebrow {
  margin-bottom: 0;
}


/* REDUCED MOTION: all new sections */

@media (prefers-reduced-motion: reduce) {
  .wwa-card,
  .wwa-card-icon,
  .wwa-card-bar,
  .wwa-gear-spin,
  .about-mission-card,
  .about-principle-card,
  .about-principle-hover-bg,
  .about-principle-accent,
  .about-principle-icon,
  .about-commitment-item,
  .about-commitment-icon-wrap,
  .about-team-card,
  .about-team-img,
  .about-team-linkedin,
  .about-team-join-link,
  .about-culture-card,
  .about-culture-img,
  .about-culture-icon-rocket,
  .about-culture-icon-eye,
  .about-candidate-card,
  .about-careers-email-btn,
  .about-cta-btn,
  .about-cta-trust-item,
  .about-orbit-outer,
  .about-orbit-inner,
  .about-health-bar-fill,
  .about-system-health-dot::before {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}
