:root{
  --about-bg:#f8fafc;
  --about-card:#ffffff;
  --about-text:#0f172a;
  --about-muted:#475569;
  --about-border:rgba(2,6,23,.10);
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--about-text);background:var(--about-bg)}
a{color:inherit}

/* Light "earthquake" background (no heavy images needed) */
.about-page{
  min-height:100vh;
  background:
    radial-gradient(1200px 600px at 70% 0%, rgba(220,38,38,.08), rgba(220,38,38,0) 60%),
    radial-gradient(900px 500px at 15% 25%, rgba(37,99,235,.08), rgba(37,99,235,0) 55%),
    repeating-linear-gradient(115deg, rgba(2,6,23,.06) 0 1px, rgba(2,6,23,0) 1px 18px),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Simple crack overlay using CSS lines */
.about-page::before{
  content:"";
  position:fixed;
  inset:-20vh -20vw;
  pointer-events:none;
  background:
    repeating-linear-gradient(25deg, rgba(2,6,23,.06) 0 1px, rgba(2,6,23,0) 1px 48px),
    repeating-linear-gradient(-18deg, rgba(2,6,23,.05) 0 1px, rgba(2,6,23,0) 1px 56px);
  opacity:.22;
  transform:rotate(-2deg);
}

/* Top nav */
.about-nav{
  position:sticky;
  top:0;
  z-index:5;
  backdrop-filter:blur(10px);
  background:rgba(248,250,252,.75);
  border-bottom:1px solid var(--about-border);
}

.about-nav-inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.about-brand{display:flex;align-items:center;gap:10px}
.about-logo{
  width:38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  font-weight:900;
  background:rgba(220,38,38,.10);
  border:1px solid rgba(220,38,38,.18);
}
.about-brand-title{font-weight:900;line-height:1.1}
.about-brand-sub{font-size:12px;color:var(--about-muted)}

.about-actions{display:flex;gap:10px;align-items:center}

/* Hero */
.about-hero{
  position:relative;
  z-index:1;
  max-width:1100px;
  margin:0 auto;
  padding:46px 18px 26px;
}

.about-hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:center;
}

.about-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--about-border);
  background:rgba(255,255,255,.75);
  font-size:12px;
  color:var(--about-muted);
}

.about-title{font-size:54px;line-height:1.02;margin:12px 0 10px;font-weight:900}
.about-desc{font-size:16px;line-height:1.6;color:var(--about-muted);max-width:58ch}

.about-media{
  background:rgba(255,255,255,.86);
  border:1px solid var(--about-border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(2,6,23,.10);
}

.about-media video{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

.about-media-cap{
  padding:12px 14px;
  font-size:12px;
  color:var(--about-muted);
  border-top:1px solid var(--about-border);
}

/* Sections */
.about-sections{
  position:relative;
  z-index:1;
  max-width:1100px;
  margin:0 auto;
  padding:16px 18px 64px;
}

.about-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
}

.about-card{
  background:rgba(255,255,255,.88);
  border:1px solid var(--about-border);
  border-radius:18px;
  padding:16px 16px 14px;
  box-shadow:0 10px 30px rgba(2,6,23,.06);
}

.about-card h3{margin:0 0 8px;font-size:16px}
.about-card p,.about-card li{color:var(--about-muted);font-size:14px;line-height:1.55}
.about-card ul{margin:0;padding-left:18px}

.about-footer{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Reuse button styles from main CSS; provide fallbacks */
.btn{cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:8px;text-decoration:none}
.btn-sm{padding:8px 10px;border-radius:10px;font-size:13px}
.btn-ghost{background:rgba(255,255,255,.6);border:1px solid var(--about-border)}

@media (max-width:980px){
  .about-hero-grid{grid-template-columns:1fr;}
  .about-title{font-size:40px}
  .about-media video{height:260px}
  .about-cards{grid-template-columns:1fr}
}
