/* about.css */
:root{
  --bg:#0b0f14;
  --panel:#111827;
  --panel2:#0f172a;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --line:rgba(255,255,255,.10);
  --accent:#ff3b30; /* close to your red mark */
  --accent2:#ffb000; /* warm highlight */
  --radius:18px;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:radial-gradient(1200px 700px at 15% -10%, rgba(255,59,48,.22), transparent 60%),
             radial-gradient(900px 600px at 90% 0%, rgba(255,176,0,.14), transparent 55%),
             var(--bg);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.9}

.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,15,20,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand-logo{display:block;height:84px;width:auto}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-link{
  font-weight:600;
  font-size:14px;
  color:rgba(229,231,235,.85);
}
.nav-link.is-active{color:#fff}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  font-size:14px;
  letter-spacing:.2px;
  white-space:nowrap;
}
.btn-primary{
  border-color:rgba(255,59,48,.35);
  background:linear-gradient(135deg, rgba(255,59,48,.92), rgba(255,176,0,.72));
  color:#0b0f14;
}
.btn-lg{padding:12px 18px;font-size:15px}

.lang{position:relative}
.lang-btn{
  cursor:pointer;
  background:transparent;
  color:rgba(229,231,235,.85);
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:9px 12px;
  font-weight:700;
  font-size:13px;
}
.lang-menu{
  position:absolute;
  right:0;
  top:46px;
  min-width:170px;
  background:rgba(17,24,39,.98);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:8px;
  display:none;
}
.lang.is-open .lang-menu{display:block}
.lang-item{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  color:rgba(229,231,235,.92);
  font-weight:600;
  font-size:14px;
}
.lang-item:hover{background:rgba(255,255,255,.06)}

/* Mobile menu */
.burger{
  display:none;
  width:44px;height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:transparent;
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  width:18px;
  background:rgba(229,231,235,.9);
  margin:4px auto;
  border-radius:999px;
}

@media (max-width: 900px){
  .burger{display:block}
  .nav{
    position:fixed;
    inset:68px 0 auto 0;
    background:rgba(11,15,20,.92);
    border-bottom:1px solid var(--line);
    padding:16px 4vw 18px;
    display:none;
    flex-wrap:wrap;
    gap:12px;
  }
  .nav.is-open{display:flex}
}

/* Hero */
.hero{
  position:relative;
  padding:56px 0 26px;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.0), rgba(0,0,0,.22));
  pointer-events:none;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:center;
}
.hero-kicker{
  margin:0 0 10px;
  color:rgba(255,176,0,.92);
  font-weight:800;
  letter-spacing:.3px;
}
.hero-title{
  margin:0;
  font-size: clamp(32px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.03em;
}
.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.hero-image{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .hero-image{height:280px}
}

/* Sections */
.section{
  padding:56px 0;
}
.section-muted{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.split.reverse .copy{order:2}
.split.reverse .media{order:1}

@media (max-width: 900px){
  .split{grid-template-columns:1fr}
  .split.reverse .copy, .split.reverse .media{order:unset}
}

.eyebrow{
  margin:0 0 10px;
  color:rgba(229,231,235,.75);
  font-weight:800;
  text-transform:none;
  letter-spacing:.2px;
}
.copy h2{
  margin:0 0 12px;
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing:-.02em;
}
.copy p{
  margin:0 0 12px;
  color:rgba(229,231,235,.80);
  line-height:1.7;
}

.media-frame{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.media-frame img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}
@media (max-width: 900px){
  .media-frame img{height:320px}
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:18px;
  margin-top:18px;
}
@media (max-width: 900px){
  .cards{grid-template-columns:1fr}
}
.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(17,24,39,.55);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.card-kicker{
  margin:0 0 6px;
  color:rgba(255,176,0,.92);
  font-weight:800;
  font-size:13px;
}
.card h3{
  margin:0 0 8px;
  font-size:18px;
  letter-spacing:-.01em;
}
.card p{
  margin:0;
  color:rgba(229,231,235,.80);
  line-height:1.7;
}

/* CTA */
.cta{
  padding:54px 0;
  background:radial-gradient(900px 500px at 15% 40%, rgba(255,59,48,.20), transparent 60%),
             radial-gradient(900px 500px at 85% 35%, rgba(255,176,0,.12), transparent 60%),
             rgba(255,255,255,.02);
  border-top:1px solid var(--line);
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.cta h2{
  margin:8px 0 10px;
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing:-.02em;
}
.cta-text{margin:0;color:rgba(229,231,235,.82);line-height:1.7}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap}

@media (max-width: 900px){
  .cta-inner{flex-direction:column;align-items:flex-start}
}

/* Footer */
.site-footer{
  padding:22px 0 28px;
  border-top:1px solid var(--line);
  color:rgba(229,231,235,.72);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.footer-links a{color:rgba(229,231,235,.72)}
.footer-links a:hover{color:#fff}
.footer-meta{display:flex;gap:10px;flex-wrap:wrap}
.dot{opacity:.6}
