/* ── BODY BACKGROUND ── */
body{
  background:radial-gradient(circle at 20% 20%,#0f0c29,#302b63,#24243e);
  color:#fff;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;width:200%;height:200%;
  background:url('https://www.transparenttextures.com/patterns/stardust.png');
  animation:moveStars 60s linear infinite;
  opacity:0.2;pointer-events:none;z-index:0;
}
@keyframes moveStars{from{transform:translate(0,0)}to{transform:translate(-500px,-500px)}}

/* ── PAGE WRAPPER ── */
.inner-page{position:relative;z-index:1;padding-top:80px}

/* ── HERO ── */
.about-hero{
  padding:80px 60px 70px;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.about-hero-eyebrow{
  display:inline-block;
  padding:5px 16px;border-radius:20px;
  font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  background:rgba(168,85,247,0.15);
  border:1px solid rgba(168,85,247,0.3);
  color:#bf5fff;
  margin-bottom:22px;
}
.about-hero h1{
  font-family:'Orbitron',sans-serif;
  font-size:clamp(32px,5vw,56px);font-weight:800;
  line-height:1.15;margin-bottom:20px;
  background:linear-gradient(135deg,#e9d5ff,#bf5fff,#00b7ff);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.about-hero p{
  font-size:17px;color:#a0a0c0;line-height:1.8;
  max-width:600px;margin:0 auto 36px;
}
.about-hero-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.btn-primary-grad{
  padding:13px 30px;border-radius:10px;border:none;
  background:linear-gradient(135deg,#bf5fff,#6f42ff);
  color:#fff;font-size:14px;font-weight:600;
  cursor:pointer;font-family:'Inter',sans-serif;text-decoration:none;
  transition:.25s;display:inline-flex;align-items:center;gap:8px;
}
.btn-primary-grad:hover{opacity:.85;transform:translateY(-2px)}
.btn-outline-grad{
  padding:13px 30px;border-radius:10px;
  border:1.5px solid rgba(168,85,247,0.4);
  background:transparent;color:#bf5fff;font-size:14px;font-weight:600;
  cursor:pointer;font-family:'Inter',sans-serif;text-decoration:none;
  transition:.25s;display:inline-flex;align-items:center;gap:8px;
}
.btn-outline-grad:hover{background:rgba(168,85,247,0.1);border-color:#bf5fff}

/* ── STATS STRIP ── */
.stats-strip{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:rgba(255,255,255,0.06);
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.stat-item{
  padding:24px 20px;text-align:center;
  background:rgba(255,255,255,0.02);
}
.stat-num{
  font-family:'Orbitron',sans-serif;
  font-size:36px;font-weight:800;
  background:linear-gradient(90deg,#bf5fff,#00b7ff);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  margin-bottom:6px;
}
.stat-label{font-size:12px;color:#6666aa;letter-spacing:.5px;text-transform:uppercase}

/* ── SECTION BASE ── */
.section{padding:80px 60px;position:relative;z-index:1}
.section-tag{
  font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  color:#bf5fff;margin-bottom:12px;display:block;
}
.section h2{
  font-family:'Orbitron',sans-serif;
  font-size:clamp(22px,3vw,34px);font-weight:700;
  margin-bottom:16px;
  background:linear-gradient(90deg,#e9d5ff,#bf5fff);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.section p{font-size:15px;color:#9090b8;line-height:1.8;max-width:600px}

/* ── STORY SECTION ── */
.story-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
}
.story-content .story-lead{
  font-size:18px;color:#d0d0e8;line-height:1.75;margin-bottom:20px;font-weight:400;
}
.story-content p{font-size:14px;color:#7777a0;line-height:1.9;margin-bottom:14px;max-width:100%}
.story-visual{
  display:flex;flex-direction:column;gap:16px;
}
.story-pill{
  padding:18px 22px;border-radius:14px;
  background:rgba(255,255,255,0.09);
  border:1px solid rgba(255,255,255,0.15);
  display:flex;align-items:flex-start;gap:14px;
  transition:.25s;
}
.story-pill:hover{background:rgba(168,85,247,0.12);border-color:rgba(168,85,247,0.35)}
.story-pill i{font-size:18px;color:#bf5fff;margin-top:2px;flex-shrink:0}
.story-pill-title{font-size:13px;font-weight:600;color:#e0e0f0;margin-bottom:4px}
.story-pill-desc{font-size:12px;color:#9999c0;line-height:1.6}

/* ── PRODUCTS SECTION ── */
.products-section{
  background:rgba(0,0,0,0.2);
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.products-section .section-inner{max-width:1100px;margin:0 auto}
.products-section .section-header{text-align:center;margin-bottom:48px}
.products-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;
}
.product-card{
  padding:28px;border-radius:18px;
  background:rgba(255,255,255,0.09);
  border:1px solid rgba(255,255,255,0.15);
  transition:.3s;
  text-decoration:none;display:block;
}
.product-card:hover{
  background:rgba(255,255,255,0.13);
  transform:translateY(-3px);
  border-color:rgba(168,85,247,0.35);
}
.product-card-header{
  display:flex;align-items:center;gap:12px;margin-bottom:14px;
}
.product-card-icon{
  font-size:24px;flex-shrink:0;
}
.product-card h3{
  font-family:'Orbitron',sans-serif;font-size:14px;font-weight:700;
  color:#e0e0f0;margin:0;
}
.product-card p{font-size:13px;color:#9999c0;line-height:1.7;margin:0}
.product-card-link{
  font-size:12px;color:#bf5fff;margin-top:14px;display:inline-flex;align-items:center;gap:5px;
}

/* ── MISSION SECTION ── */
.mission-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start;
  max-width:1000px;margin:0 auto;
}
.mission-box{
  padding:28px;border-radius:18px;
  border-left:3px solid #bf5fff;
  background:rgba(168,85,247,0.10);
}
.vision-box{
  padding:28px;border-radius:18px;
  border-left:3px solid #00b7ff;
  background:rgba(0,183,255,0.10);
}
.mission-box h3,.vision-box h3{
  font-family:'Orbitron',sans-serif;font-size:13px;font-weight:700;
  letter-spacing:1px;text-transform:uppercase;margin-bottom:12px;
}
.mission-box h3{color:#bf5fff}
.vision-box h3{color:#00b7ff}
.mission-box p,.vision-box p{
  font-size:14px;color:#b0b0cc;line-height:1.8;margin:0;max-width:100%;
}

/* ── CTA SECTION ── */
.about-cta{
  text-align:center;padding:80px 60px;
  border-top:1px solid rgba(255,255,255,0.05);
}
.about-cta h2{
  font-family:'Orbitron',sans-serif;font-size:clamp(22px,3vw,34px);font-weight:700;
  margin-bottom:14px;
  background:linear-gradient(90deg,#e9d5ff,#00b7ff);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.about-cta p{font-size:15px;color:#7777a0;margin-bottom:32px}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .about-hero{padding:60px 24px 50px}
  .section{padding:60px 24px}
  .stats-strip{grid-template-columns:repeat(2,1fr)}
  .story-grid{grid-template-columns:1fr;gap:36px}
  .products-grid{grid-template-columns:1fr}
  .mission-grid{grid-template-columns:1fr;gap:20px}
  .about-cta{padding:60px 24px}
}
@media(max-width:520px){
  .stats-strip{grid-template-columns:repeat(2,1fr)}
}
