/* about.css � Page-specific styles only.
   Shared: base.css + theme.css + components.css */

/* -- LOCAL TOKENS (about page overrides) ------------------- */
:root {
  --primary:          #3B82F6;
  --primary-gradient: linear-gradient(135deg, #3B82F6, #06B6D4);
  --accent-gradient:  linear-gradient(135deg, #2f86ff 0%, #7b61ff 55%, #00d4ff 100%);
  --dark-bg:          #0B1120;
  --dark-secondary:   #0F172A;
  --dark-card:        rgba(255,255,255,0.06);
  --border-color:     rgba(255,255,255,0.13);
  --text-light:       #F8FAFC;
  --text-muted:       #CBD5E1;
  --radius:           14px;
}

/* -- HERO --------------------------------------------------- */
.about-hero {
  position: relative;
  padding: clamp(64px,10vw,100px) 0 clamp(60px,9vw,96px);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(47,134,255,.18), transparent),
    radial-gradient(circle at 80% 70%, rgba(123,97,255,.10), transparent 50%),
    var(--dark-secondary);
  overflow: hidden;
  z-index: 1;
  padding-top: 160px;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--dark-bg));
  pointer-events: none;
}

/* Container override for about page layout */
.container {
  width: 100%; max-width: var(--container-max, 1400px); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1;
}

/* Badge */
.badge-custom { background: rgba(59,130,246,.15); color: var(--primary); padding: .375rem .875rem; border-radius: 50px; font-size: .82rem; display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; letter-spacing: .04em; }
.badge-dot    { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(1.5); } }

/* Hero layout */
.hero-split   { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.hero-heading { font-size: clamp(2.4rem,4.5vw,3.8rem); font-weight: 800; line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 1.25rem; }
.hero-heading .heading-gradient { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc    { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; max-width: 440px; }

/* Stat cards */
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.stat-pill  { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all .3s ease; }
.stat-pill:hover { background: rgba(255,255,255,.08); border-color: rgba(96,165,250,.5); transform: translateY(-5px); }
.stat-pill strong { font-size: 2rem; color: #3b82f6; margin-bottom: .25rem; }
.stat-pill span   { font-size: .85rem; color: rgba(255,255,255,.7); text-transform: uppercase; font-weight: 600; letter-spacing: .05em; }

/* Hero right visual */
.hero-visual { position: relative; }
.hero-img-card { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.hero-img-card img { width: 100%; height: 380px; object-fit: cover; display: block; filter: brightness(.55) saturate(1.3); }
.hero-img-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(47,134,255,.2), transparent 60%); z-index: 1; }
@keyframes borderFlow { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }

.float-badge { position: absolute; bottom: -18px; left: 28px; background: rgba(15,23,42,.92); border: 1px solid var(--border-color); border-radius: 14px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; backdrop-filter: blur(12px); z-index: 3; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.float-badge-icon  { width: 40px; height: 40px; background: var(--primary-gradient); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.float-badge-text strong { display: block; font-size: .95rem; font-weight: 700; color: #fff; }
.float-badge-text span   { font-size: .75rem; color: var(--text-muted); }

/* -- SECTION COMMONS ---------------------------------------- */
section { padding: clamp(60px,10vw,100px) 0; position: relative; z-index: 1; }
.section-label { display: inline-block; color: var(--primary); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .75rem; }
.section-title { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 1rem; }
.section-desc  { color: var(--text-muted); font-size: 1rem; line-height: 1.75; max-width: 520px; }

/* -- MISSION ------------------------------------------------ */
.mission-section { background: var(--dark-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.mission-card { background: var(--dark-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 2rem; position: relative; overflow: hidden; transition: transform .3s, border-color .3s; }
.mission-card:hover { transform: translateY(-6px); border-color: transparent; }
.mission-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(59,130,246,.12); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; color: var(--primary); }
.mission-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; color: #fff; }
.mission-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* -- INFRASTRUCTURE ----------------------------------------- */
.infra-section { background: var(--dark-bg); }
.infra-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.infra-media   { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: 0 25px 70px rgba(0,0,0,.4); }
.infra-media img { width: 100%; height: 440px; object-fit: cover; display: block; filter: brightness(.5) saturate(1.4); }
.infra-media::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(47,134,255,.15), transparent); z-index: 1; }
.dc-badge { display: inline-block; background: rgba(37,99,235,.15); color: #3b82f6; padding: 8px 16px; border-radius: 30px; font-size: .78rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 1.2rem; }
.dc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 2rem; }
.dc-feature { display: flex; align-items: center; gap: 10px; background: var(--dark-card); border: 1px solid var(--border-color); padding: 14px 16px; border-radius: 12px; font-size: .87rem; font-weight: 500; color: var(--text-light); transition: border-color .3s, transform .3s; }
.dc-feature:hover { border-color: rgba(47,134,255,.4); transform: translateY(-2px); }
.dc-feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; box-shadow: 0 0 8px rgba(59,130,246,.6); }

/* -- FEATURES ----------------------------------------------- */
.features-section { background: var(--dark-secondary); border-top: 1px solid var(--border-color); }
.features-top  { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.glass-card    { background: var(--dark-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 2rem; height: 100%; position: relative; overflow: visible; transition: transform .3s, border-color .3s; }
.glass-card::before { content: ''; position: absolute; width: 180px; height: 180px; background: rgba(47,134,255,.1); filter: blur(60px); top: -60px; right: -60px; pointer-events: none; }
.glass-card:hover { transform: translateY(-6px); border-color: rgba(47,134,255,.22); }
.feat-icon-box { width: 48px; height: 48px; border-radius: 12px; background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; transition: transform .3s; }
.glass-card:hover .feat-icon-box { transform: scale(1.1); }
.glass-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; color: #fff; }
.glass-card p  { font-size: .87rem; color: var(--text-muted); line-height: 1.7; }
.feat-list { list-style: none; margin-top: 1rem; padding: 0; }
.feat-list li { font-size: .85rem; color: var(--text-muted); padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.feat-list li::before { content: '✓'; color: var(--primary); font-size: .8rem; flex-shrink: 0; font-weight: 700; }

/* -- TEAM --------------------------------------------------- */
.team-section { background: var(--dark-bg); }
.team-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 2rem; }
.team-top .section-desc { margin: 0; max-width: 280px; text-align: right; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.team-card { background: var(--dark-card); border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; transition: transform .35s, border-color .35s; }
.team-card:hover { transform: translateY(-8px); border-color: rgba(47,134,255,.22); }
.team-card-banner { height: 130px; background: linear-gradient(135deg,#040b2d,#0d1e5b); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 0; position: relative; }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg,#2f86ff,#7b61ff); display: flex; align-items: center; justify-content: center; position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%); border: 3px solid #0b1120; z-index: 10; box-shadow: 0 8px 20px rgba(0,0,0,.4); }
.team-avatar i  { font-size: 1.3rem; color: #fff; }
.team-card-body { padding: 42px 1.2rem 1.5rem; text-align: center; }
.team-card-body strong { display: block; font-size: .9rem; font-weight: 700; letter-spacing: .04em; margin-bottom: 5px; color: #fff; }
.team-card-body span   { font-size: .78rem; color: var(--primary); font-weight: 500; }

/* -- STATS BAND --------------------------------------------- */
.stats-band { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; background: linear-gradient(135deg,#0f172a 0%,#1e4bd1 100%); padding: 2rem; border-radius: 24px; border: 1px solid rgba(255,255,255,.1); position: relative; }
.stats-band-item { background: rgba(255,255,255,.05); padding: 2rem 1rem; border-radius: 16px; border: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; align-items: center; transition: transform .3s, background .3s; }
.stats-band-item:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); }
.stats-band-section { margin-bottom: 3rem; }
.stats-band-value   { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.stats-band-label   { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.8); text-align: center; text-transform: uppercase; letter-spacing: .1em; line-height: 1.4; }

/* -- CTA ---------------------------------------------------- */
.cta-section { background: var(--dark-secondary); border-top: 1px solid var(--border-color); }
.cta-wrap {
  background: radial-gradient(circle at top right,rgba(47,134,255,.15),transparent 50%), var(--dark-card);
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--brand-blue, #2f86ff);
  border-radius: 24px;
  padding: clamp(2rem,4vw,3rem) clamp(1.5rem,4vw,4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}
/* Remove stray corner decorations */
.enh-cta-corner { display: none; }

.cta-wrap h2 { font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800; letter-spacing: -0.01em; margin-bottom: .6rem; color: #fff; }
.cta-wrap p  { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; margin: 0; }
body:not(.light-mode) .cta-wrap h2 { color: #fff !important; -webkit-text-fill-color: #fff !important; }
body:not(.light-mode) .cta-wrap p  { color: rgba(255,255,255,.65) !important; -webkit-text-fill-color: rgba(255,255,255,.65) !important; }

.btn-gradient { background: var(--primary-gradient); border: none; color: #fff; padding: .85rem 1.8rem; border-radius: 10px; font-weight: 700; font-size: .95rem; display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; text-decoration: none; transition: all .3s ease; box-shadow: 0 10px 28px rgba(59,130,246,.3); }
.btn-gradient:hover { opacity: .9; transform: translateY(-2px); color: #fff; }

/* -- ANIMATIONS --------------------------------------------- */
.fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp .7s ease forwards; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
.d1 { animation-delay:.1s; } .d2 { animation-delay:.2s; } .d3 { animation-delay:.3s; } .d4 { animation-delay:.4s; }

/* -- ENHANCED (enh-*) CLASSES ------------------------------ */
.enh-hero { position: relative; overflow: hidden; padding-top: 160px !important; padding-bottom: 0 !important; }
.enh-hero-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(47,134,255,.08) 1px, transparent 1px); background-size: 36px 36px; pointer-events: none; z-index: 0; mask-image: radial-gradient(ellipse 80% 80% at 50% 40%,#000 40%,transparent 80%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%,#000 40%,transparent 80%); }
.enh-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.enh-orb-1 { width:500px;height:500px;background:rgba(47,134,255,.14);top:-100px;left:-100px;animation:orbDrift 14s ease-in-out infinite; }
.enh-orb-2 { width:400px;height:400px;background:rgba(123,97,255,.10);bottom:0;right:-80px;animation:orbDrift 10s ease-in-out infinite 2s reverse; }
.enh-orb-3 { width:300px;height:300px;background:rgba(0,212,255,.08);top:50%;left:50%;transform:translate(-50%,-50%);animation:orbDrift 12s ease-in-out infinite 4s; }
@keyframes orbDrift { 0%,100% { transform:translate(0,0) scale(1); } 50% { transform:translate(20px,-20px) scale(1.06); } }
.enh-hero .container { position: relative; z-index: 1; }
.enh-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(47,134,255,.12); border: 1px solid rgba(47,134,255,.25); color: #60a5fa; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 1.5rem; }
.enh-hero-badge .badge-dot { width:7px;height:7px;background:#2f86ff;border-radius:50%;box-shadow:0 0 8px rgba(47,134,255,.8);animation:pulseDot 1.8s ease-in-out infinite; }
.enh-hero-top { padding-bottom: 2.5rem; }
.enh-hero-heading { font-size: clamp(2.8rem,5vw,4.2rem) !important; letter-spacing: -0.01em !important; line-height: 1.35 !important; margin-bottom: 1.2rem !important; }
.enh-hero-lead { color: #94a3b8; font-size: 1.1rem; line-height: 1.7; max-width: 560px; margin: 0 auto; }

.enh-stat-row { display: flex; align-items: center; justify-content: center; gap: 0; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 1.6rem 2rem; margin: 2.5rem auto; max-width: 720px; backdrop-filter: blur(12px); }
.enh-stat-card { flex: 1; text-align: center; padding: 0 1.5rem; }
.enh-stat-icon { font-size: 1.1rem; color: #2f86ff; margin-bottom: .4rem; }
.enh-stat-val  { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; line-height: 1; }
.enh-stat-lbl  { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #64748b; margin-top: .3rem; }
.enh-stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.08); flex-shrink: 0; }

.enh-hero-img-wrap { max-width: 960px; margin: 0 auto; position: relative; }
.enh-hero-img-inner { position: relative; border-radius: 20px 20px 0 0; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-bottom: none; box-shadow: 0 -8px 60px rgba(47,134,255,.08), 0 30px 80px rgba(0,0,0,.5); transform: perspective(1200px) rotateX(3deg); transition: transform .5s ease; }
.enh-hero-img-inner:hover { transform: perspective(1200px) rotateX(0deg) translateY(-6px); }
.enh-hero-img-inner img { width: 100%; height: 400px; object-fit: cover; display: block; filter: brightness(.55) saturate(1.3); }
.enh-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(8,18,37,.9) 0%,transparent 50%); pointer-events: none; }
.enh-img-pill { position: absolute; display: flex; align-items: center; gap: 7px; background: rgba(8,18,37,.85); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px); border-radius: 50px; padding: 8px 16px; font-size: .78rem; font-weight: 600; color: #e2e8f0; white-space: nowrap; }
.enh-img-pill i { color: #2f86ff; }
.enh-img-pill-1 { top:20px;left:24px; animation:pillFloat1 5s ease-in-out infinite; }
.enh-img-pill-2 { top:20px;right:24px; animation:pillFloat1 6s ease-in-out infinite .5s; }
.enh-img-pill-3 { bottom:24px;left:50%;transform:translateX(-50%); animation:pillFloat 7s ease-in-out infinite 1s; }
.enh-img-pill-3 i { color:#22d07e; }
@keyframes pillFloat  { 0%,100% { transform:translateY(0) translateX(-50%); } 50% { transform:translateY(-6px) translateX(-50%); } }
@keyframes pillFloat1 { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }

.enh-stats-band-wrap { padding: 3rem 0; }
.enh-stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.enh-stats-band-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 2rem 1.5rem; text-align: center; transition: all .35s ease; opacity: 0; transform: translateY(24px); }
.enh-stats-band-item.enh-revealed { opacity: 1; transform: translateY(0); }
.enh-stats-band-item:hover { background: rgba(47,134,255,.08); border-color: rgba(47,134,255,.2); transform: translateY(-6px); }
.enh-sbi-icon { width:48px;height:48px;border-radius:14px;background:rgba(47,134,255,.12);color:#2f86ff;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin:0 auto 1rem; }
.enh-sbi-val  { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; margin-bottom: .3rem; }
.enh-sbi-lbl  { font-size: .78rem; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.enh-section-header { text-align: center; margin-bottom: 3.5rem; }
.enh-section-header .section-title { margin: .4rem auto 0; }
.enh-section-line { width: 60px; height: 3px; background: linear-gradient(90deg,#2f86ff,#7b61ff); border-radius: 4px; margin: 1.2rem auto 0; }

.enh-mission { padding-top: 5rem; padding-bottom: 5rem; }
.enh-mission-card { position: relative; overflow: hidden; opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.enh-mission-card.enh-revealed { opacity: 1; transform: translateY(0); }
.enh-mc-glow { position: absolute; width:200px;height:200px;border-radius:50%;filter:blur(70px);pointer-events:none;opacity:0;transition:opacity .4s ease;top:-60px;right:-60px; }
.enh-mission-card:hover .enh-mc-glow { opacity: 1; }
.enh-mc-glow-blue   { background: rgba(47,134,255,.25); }
.enh-mc-glow-purple { background: rgba(123,97,255,.25); }
.enh-mc-glow-cyan   { background: rgba(0,212,255,.2); }
.enh-mc-icon-wrap   { margin-bottom: 1rem; }
.enh-mc-tag { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #2f86ff; background: rgba(47,134,255,.1); border: 1px solid rgba(47,134,255,.2); padding: 4px 12px; border-radius: 50px; margin-top: 1.2rem; }

.enh-infra { padding-top: 5rem; padding-bottom: 5rem; }
.enh-infra-media { position: relative; }
.enh-infra-card { position: absolute; display: flex; align-items: center; gap: 8px; background: rgba(8,18,37,.88); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); border-radius: 12px; padding: 10px 16px; font-size: .82rem; font-weight: 600; color: #e2e8f0; z-index: 5; }
.enh-infra-card-1 { top:24px;left:24px; animation:pillFloat1 5s ease-in-out infinite; }
.enh-infra-card-1 .enh-infra-card-dot { width:8px;height:8px;border-radius:50%;background:#22d07e;box-shadow:0 0 10px rgba(34,208,126,.7);animation:dotPulse 1.8s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity:1;transform:scale(1); } 50% { opacity:.4;transform:scale(1.4); } }
.enh-infra-card-2 { bottom:30px;right:24px; animation:pillFloat1 6.5s ease-in-out infinite .8s; }
.enh-infra-card-2 i { color:#2f86ff;font-size:1rem; }
.enh-uptime-bar-wrap { margin-top: 2rem; padding: 1.25rem 1.5rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; }
.enh-uptime-label { display: flex; justify-content: space-between; font-size: .82rem; font-weight: 600; margin-bottom: .75rem; color: #94a3b8; }
.enh-uptime-pct   { color: #22d07e; }
.enh-uptime-track { height: 8px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; }
.enh-uptime-fill  { height: 100%; width: 0; background: linear-gradient(90deg,#22d07e,#16d3e0); border-radius: 99px; transition: width 1.8s cubic-bezier(.4,0,.2,1); box-shadow: 0 0 12px rgba(34,208,126,.4); }
.enh-grad-text { background: linear-gradient(135deg,#2f86ff,#7b61ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.enh-dc-badge { background: rgba(47,134,255,.12) !important; border: 1px solid rgba(47,134,255,.2); font-size: .75rem; font-weight: 700; letter-spacing: .08em; }
.enh-dc-feature { transition: all .3s ease; }
.enh-dc-feature:hover { background: rgba(47,134,255,.08) !important; border-color: rgba(47,134,255,.25) !important; transform: translateX(4px); }

.enh-features { padding-top: 5rem; padding-bottom: 5rem; }
.enh-glass-card { position: relative; opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.enh-glass-card.enh-revealed { opacity: 1; transform: translateY(0); }
.enh-gc-number { position: absolute; top: 1rem; right: 1.2rem; font-size: 4rem; font-weight: 900; color: rgba(255,255,255,.03); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -0.01em; }
.enh-feat-icon { font-size: 1.6rem !important; transition: transform .3s ease !important; }
.enh-glass-card:hover .enh-feat-icon { transform: scale(1.15) rotate(-5deg) !important; }
.enh-gc-bar { height: 3px; background: rgba(255,255,255,.06); border-radius: 99px; margin-top: 1.5rem; overflow: hidden; }
.enh-gc-bar-fill { height: 100%; border-radius: 99px; width: 0; transition: width 1.4s cubic-bezier(.4,0,.2,1) .2s; }
.enh-glass-card.enh-revealed .enh-gc-bar-fill { width: var(--bar-w,90%); }
.enh-glass-card-mid { border-color: rgba(123,97,255,.2) !important; }

.enh-team { padding-top: 5rem; padding-bottom: 5rem; }
.enh-team-card { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; overflow: visible !important; border-radius: var(--radius) !important; }
.enh-team-card.enh-revealed { opacity: 1; transform: translateY(0); }
.enh-team-banner { height: 130px; position: relative !important; overflow: visible !important; border-radius: var(--radius) var(--radius) 0 0 !important; padding-bottom: 0 !important; min-height: 130px !important; }
.enh-team-role-tag { position: absolute; top: 14px; right: 14px; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 4px 10px; border-radius: 50px; background: rgba(47,134,255,.18); color: #60a5fa; border: 1px solid rgba(47,134,255,.25); }
.enh-team-avatar { position: absolute !important; bottom: -28px !important; left: 50% !important; transform: translateX(-50%) !important; width: 56px !important; height: 56px !important; font-size: 1.3rem !important; border: 3px solid #0b1120 !important; box-shadow: 0 8px 24px rgba(0,0,0,.4) !important; z-index: 10 !important; }
.enh-team-body { padding-top: 2.2rem !important; padding-bottom: 1.25rem !important; text-align: center; position: relative; z-index: 1; }
.enh-team-socials { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 1rem; }
.enh-team-socials a { width:32px;height:32px;border-radius:8px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;font-size:.8rem;color:#94a3b8;text-decoration:none;transition:all .25s ease; }
.enh-team-socials a:hover { background:rgba(47,134,255,.15);border-color:rgba(47,134,255,.3);color:#2f86ff;transform:translateY(-2px); }
.team-grid .team-card.enh-team-card, .enh-team-grid .team-card.enh-team-card { overflow: visible !important; }

.enh-cta-section { padding-top: 5rem; padding-bottom: 5rem; }
.enh-cta-wrap { position: relative; }
.enh-cta-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(47,134,255,.1); border: 1px solid rgba(47,134,255,.2); color: #60a5fa; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 5px 14px; border-radius: 50px; margin-bottom: 1rem; }
.enh-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; flex-shrink: 0; }
.enh-cta-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px !important; border-radius: 12px !important; font-weight: 700; font-size: .95rem; white-space: nowrap; }
.enh-cta-btn-ghost { color: #94a3b8; font-size: .9rem; font-weight: 600; text-decoration: none; transition: color .25s; }
.enh-cta-btn-ghost:hover { color: #fff; }

/* -- LIGHT MODE --------------------------------------------- */
body.light-mode .about-hero { background: radial-gradient(ellipse 80% 60% at 50% -10%,rgba(47,134,255,.07),transparent), radial-gradient(circle at 80% 70%,rgba(123,97,255,.04),transparent 50%), #f0f4f8; }
body.light-mode .about-hero::after { background: linear-gradient(to bottom,transparent,#f0f4f8); }
body.light-mode .hero-desc { color: #475569; }
body.light-mode .stat-pill { background: #fff; border-color: rgba(0,0,0,.08); }
body.light-mode .stat-pill span { color: #475569; }
body.light-mode .mission-section, body.light-mode .features-section, body.light-mode .cta-section { background: #f0f4f8; border-color: rgba(0,0,0,.06) !important; }
body.light-mode .infra-section { background: #f0f4f8; }
body.light-mode .team-section  { background: #e8edf2; }
body.light-mode .mission-card, body.light-mode .glass-card, body.light-mode .team-card, body.light-mode .dc-feature { background: #fff !important; border-color: rgba(0,0,0,.08) !important; }
body.light-mode .mission-card h3, body.light-mode .glass-card h3, body.light-mode .team-card-body strong { color: #0f172a !important; -webkit-text-fill-color: #0f172a !important; }
body.light-mode .mission-card p, body.light-mode .glass-card p, body.light-mode .feat-list li { color: #475569 !important; }
body.light-mode .section-title, body.light-mode .hero-heading { color: #0f172a !important; }
body.light-mode .section-desc { color: #475569 !important; }
body.light-mode .team-avatar i  { color: #0f172a; }
body.light-mode .team-card-body span { color: #2563eb !important; }
body.light-mode .cta-wrap { background: #e8edf2; border-color: #8988fa; }
body.light-mode .cta-wrap h2 { color: #0f172a !important; }
body.light-mode .cta-wrap p   { color: #475569 !important; }
body.light-mode .enh-stat-row     { background: #fff; border-color: rgba(0,0,0,.08); }
body.light-mode .enh-stat-val     { color: #0f172a; }
body.light-mode .enh-stat-lbl     { color: #64748b; }
body.light-mode .enh-stat-divider { background: rgba(0,0,0,.08); }
body.light-mode .enh-stats-band-item { background: #fff; border-color: rgba(0,0,0,.08); }
body.light-mode .enh-sbi-val   { color: #0f172a; }
body.light-mode .enh-hero-grid { background-image: radial-gradient(rgba(47,134,255,.06) 1px,transparent 1px); }
body.light-mode .enh-img-pill, body.light-mode .enh-infra-card { background: rgba(255,255,255,.92); border-color: rgba(0,0,0,.1); color: #0f172a; }
body.light-mode .enh-mc-tag    { background: rgba(47,134,255,.08); border-color: rgba(47,134,255,.15); }
body.light-mode .enh-gc-number { color: rgba(0,0,0,.04); }
body.light-mode .enh-gc-bar    { background: rgba(0,0,0,.06); }
body.light-mode .enh-glass-card { background: #fff !important; border-color: rgba(0,0,0,.08) !important; }
body.light-mode .enh-glass-card h3 { color: #0f172a !important; }
body.light-mode .enh-glass-card p  { color: #475569 !important; }
body.light-mode .enh-uptime-bar-wrap { background: #f8fafc; border-color: rgba(0,0,0,.08); }
body.light-mode .enh-uptime-label   { color: #64748b; }
body.light-mode .enh-team-avatar    { border-color: #f1f5f9 !important; }
body.light-mode .enh-team-banner    { background: linear-gradient(135deg,#e8f0fe,#dbeafe) !important; }
body.light-mode .enh-team-socials a { background: #f1f5f9; border-color: rgba(0,0,0,.08); color: #64748b; }
body.light-mode .enh-cta-badge  { background: rgba(47,134,255,.08); }
body.light-mode .enh-cta-btn-ghost { color: #64748b; }
body.light-mode .enh-cta-btn-ghost:hover { color: #0f172a; }
body.light-mode .dc-feature, body.light-mode .enh-dc-feature { background: #fff !important; border-color: rgba(0,0,0,.08) !important; color: #334155 !important; }

/* Text visibility dark mode */
body:not(.light-mode) .section-title, body:not(.light-mode) .hero-heading, body:not(.light-mode) .mission-card h3, body:not(.light-mode) .glass-card h3, body:not(.light-mode) .cta-wrap h2, body:not(.light-mode) .team-card-body strong { color: #fff !important; -webkit-text-fill-color: #fff !important; }
body:not(.light-mode) .hero-desc, body:not(.light-mode) .section-desc, body:not(.light-mode) .mission-card p, body:not(.light-mode) .glass-card p, body:not(.light-mode) .feat-list li, body:not(.light-mode) .cta-wrap p, body:not(.light-mode) .stat-pill span { color: #CBD5E1 !important; -webkit-text-fill-color: #CBD5E1 !important; }
body:not(.light-mode) .mission-card, body:not(.light-mode) .glass-card, body:not(.light-mode) .team-card, body:not(.light-mode) .stat-pill, body:not(.light-mode) .dc-feature { background: rgba(255,255,255,.065) !important; border-color: rgba(255,255,255,.14) !important; }

/* -- RESPONSIVE --------------------------------------------- */
@media (max-width: 1023px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .infra-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .features-top { grid-template-columns: 1fr; }
  .cta-wrap { grid-template-columns: 1fr; text-align: center; }
  .cta-wrap .btn-gradient { margin: 0 auto; }
  /* Team: 2 columns on tablet */
  .team-grid, .enh-team-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 100% !important; }
}
@media (max-width: 767px) {
  .mission-grid { grid-template-columns: 1fr; }
  /* Feature cards: single column on mobile, icon visible */
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .glass-card { padding: 1.5rem; overflow: visible; }
  .feat-icon-box { margin-bottom: 0.8rem; }
  .enh-gc-number { font-size: 2.5rem; top: 0.75rem; right: 0.75rem; }
  /* Section padding reduced on mobile */
  .enh-features { padding-top: 3rem; padding-bottom: 3rem; }
  .enh-mission  { padding-top: 3rem; padding-bottom: 3rem; }
  .enh-infra    { padding-top: 3rem; padding-bottom: 3rem; }
  .enh-team     { padding-top: 3rem; padding-bottom: 3rem; }
  .enh-cta-section { padding-top: 3rem; padding-bottom: 3rem; }
  /* CTA card equal padding */
  .cta-wrap { padding: 1.75rem 1.25rem; text-align: center; }
  .cta-wrap h2 { font-size: 1.3rem !important; }
  .team-grid, .enh-team-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 540px !important; margin: 0 auto !important; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 16px; gap: 12px; }
  .stats-band-item { padding: 16px; }
  .team-top { flex-direction: column; align-items: flex-start; }
  .team-top .section-desc { text-align: left; max-width: 100%; }
  .enh-stat-row { flex-wrap: wrap; padding: 1.2rem; gap: 1rem; }
  .enh-stat-card { flex: 1 1 40%; }
  .enh-stat-divider { display: none; }
  .enh-hero-img-inner img { height: 240px; }
  .enh-img-pill-1, .enh-img-pill-2 { display: none; }
  .enh-hero-heading { font-size: clamp(2.2rem,8vw,3rem) !important; }
  .enh-cta-actions { flex-direction: column; width: 100%; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .enh-cta-btn { width: 100% !important; text-align: center; padding: 13px 20px !important; }
  .enh-cta-btn-ghost { text-align: center; padding: 10px 0; }
  .enh-stats-band { grid-template-columns: 1fr 1fr; }
@media (max-width: 767px) {
  .team-grid, .enh-team-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 540px !important; margin: 0 auto !important; gap: 12px !important; }
  /* Equal height cards */
  .enh-team-banner { height: 100px !important; min-height: 100px !important; }
  .enh-team-avatar { width: 44px !important; height: 44px !important; font-size: 1rem !important; bottom: -22px !important; }
  .enh-team-body { padding-top: 1.6rem !important; padding-bottom: 1rem !important; }
  .team-card-body { padding: 1.8rem 0.75rem 1rem !important; }
  .team-card-body strong { font-size: 0.82rem !important; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .team-card-body span { font-size: 0.68rem !important; display: block; line-height: 1.3; word-break: break-word; }
  .enh-team-role-tag { font-size: 0.55rem !important; padding: 3px 7px !important; }
}
  /* dc-features 1 col on mobile */
  .dc-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid, .enh-team-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 100% !important; gap: 12px !important; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .team-grid, .enh-team-grid { grid-template-columns: 1fr !important; max-width: 280px !important; margin: 0 auto !important; }
}
@media (max-width: 767px) {
  .about-hero { padding-bottom: 70px; }
  .hero-heading { font-size: clamp(2.05rem,11vw,2.75rem) !important; line-height: 1.35; }
}
@media (max-width: 991px) {
  .cta-wrap { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .enh-cta-badge { margin: 0 auto 1rem; }
  .cta-wrap h2 { font-size: clamp(1.3rem, 4vw, 1.7rem) !important; }
  .enh-cta-actions { flex-direction: row; gap: 12px; justify-content: center; margin-top: 0; width: auto; }
  .enh-cta-btn { width: auto !important; padding: 12px 24px !important; }
  .enh-cta-btn-ghost { align-self: center; }
}
