﻿:root{
  --bg:#05080c;
  --panel:#0b121b;
  --panel2:#111b26;
  --line:rgba(244,190,84,.24);
  --gold:#d69b2d;
  --gold2:#f4be54;
  --ember:#ff744d;
  --text:#f7f2e8;
  --muted:#bcc6d1;
  --blue:#44aaff;
  --red:#ff6458;
  --green:#74d36f;
  --violet:#be88ff;
  --cyan:#54d8d0;
  --pink:#ff6fae;
  --shadow:0 18px 50px rgba(0,0,0,.3);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 12% 0%,rgba(244,190,84,.12),transparent 28%),
    radial-gradient(circle at 90% 12%,rgba(68,170,255,.12),transparent 30%),
    linear-gradient(180deg,#06101a 0%,#04070b 52%,#06090d 100%);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.6;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
.wrap{width:min(1180px,92vw);margin:auto}
.skip-link{
  position:fixed;
  left:16px;
  top:16px;
  z-index:99;
  transform:translateY(-140%);
  background:var(--gold2);
  color:#111;
  padding:10px 14px;
  border-radius:6px;
  font-weight:800;
}
.skip-link:focus{transform:translateY(0)}
.nav{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(3,8,13,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(244,190,84,.2);
}
.navin{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
  min-width:255px;
}
.mark{
  width:42px;
  height:42px;
  border:1px solid var(--gold2);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--gold2);
  font-weight:900;
  flex:0 0 auto;
}
.brand strong{
  display:block;
  font-size:18px;
  text-transform:uppercase;
}
.brand span{
  display:block;
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
}
.menu{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
  align-items:center;
  font-size:11px;
  text-transform:uppercase;
}
.menu a{
  color:#eef3f8;
  opacity:.92;
  padding:7px 9px;
  border-radius:6px;
  line-height:1.2;
  transition:background .18s ease,color .18s ease,opacity .18s ease;
}
.menu a:hover,
.menu a.active{
  color:var(--gold2);
  background:rgba(244,190,84,.09);
  opacity:1;
}
a:focus-visible,
.btn:focus-visible{
  outline:2px solid var(--gold2);
  outline-offset:3px;
}
.hero{
  min-height:640px;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(244,190,84,.18);
}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(3,7,11,.98) 0%,rgba(3,7,11,.78) 36%,rgba(3,7,11,.2) 68%,rgba(3,7,11,.58) 100%),
    url('assets/img/hero-ajf-web.jpg') center right/cover no-repeat;
  filter:saturate(1.08) contrast(1.02);
}
.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:160px;
  background:linear-gradient(180deg,transparent,rgba(5,8,12,.9));
}
.hero .wrap{
  position:relative;
  z-index:1;
}
.heroBox{max-width:600px}
.eyebrow{
  color:var(--gold2);
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
}
.hero h1{
  font-size:48px;
  line-height:1.07;
  margin:12px 0 18px;
  text-transform:uppercase;
}
.hero h1 span{color:var(--gold2)}
.hero p{
  color:#e3e8ee;
  font-size:17px;
  max-width:660px;
}
.btns{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:28px 0;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 18px;
  border:1px solid rgba(244,190,84,.66);
  border-radius:6px;
  font-size:13px;
  text-transform:uppercase;
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}
.btn:hover{
  transform:translateY(-1px);
  background:rgba(244,190,84,.08);
  border-color:var(--gold2);
}
.btn.primary{
  background:linear-gradient(135deg,var(--gold2),#bd7d19);
  color:#111;
  font-weight:900;
}
.btn.primary:hover{background:linear-gradient(135deg,#ffd37a,#d89424)}
.metrics{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border:1px solid rgba(244,190,84,.25);
  border-radius:8px;
  overflow:hidden;
  max-width:660px;
  background:rgba(8,16,24,.78);
  box-shadow:var(--shadow);
}
.metricsWide{max-width:none}
.metric{
  padding:14px 16px;
  border-right:1px solid rgba(244,190,84,.18);
}
.metric:last-child{border-right:0}
.metric b{
  font-size:28px;
  color:var(--gold2);
  display:block;
  line-height:1.1;
}
.metric small{
  text-transform:uppercase;
  color:#dce2e8;
  font-size:11px;
}
.section{
  padding:62px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section h2{
  text-align:center;
  text-transform:uppercase;
  font-size:28px;
  line-height:1.2;
  margin:0 0 8px;
}
.section .sub{
  text-align:center;
  color:var(--muted);
  margin:0 auto 30px;
  max-width:760px;
}
.gold{color:var(--gold2)}
.split{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:28px;
  align-items:center;
}
.card{
  background:linear-gradient(180deg,rgba(17,27,38,.95),rgba(7,13,20,.95));
  border:1px solid rgba(244,190,84,.22);
  border-radius:8px;
  padding:24px;
  box-shadow:var(--shadow);
}
.card h2{text-align:left}
.card p,
.card li{color:#d9e0e7}
.card h3{margin-top:0}
.visual{
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(244,190,84,.25);
  background:#080b10;
  box-shadow:var(--shadow);
}
.visual img{
  display:block;
  width:100%;
}
.flow{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:10px;
  margin-top:22px;
}
.flow div{
  min-height:74px;
  padding:12px;
  border:1px solid rgba(244,190,84,.28);
  border-radius:8px;
  text-align:center;
  background:rgba(244,190,84,.07);
  font-size:13px;
  display:grid;
  place-items:center;
}
.kernelGrid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:14px;
}
.kernelItem{
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(180deg,rgba(17,28,40,.86),rgba(8,15,24,.9));
  padding:22px 14px;
  border-radius:8px;
  text-align:center;
  min-height:184px;
}
.kernelItem .ico{
  font-size:34px;
  color:var(--gold2);
  margin-bottom:8px;
}
.kernelItem h3{
  font-size:14px;
  text-transform:uppercase;
}
.kernelItem p{
  font-size:13px;
  color:#cbd3dc;
}
.projects{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.project{
  min-height:166px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(135deg,rgba(18,30,43,.95),rgba(8,15,24,.95));
  border-radius:8px;
  padding:20px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
a.project:hover{
  transform:translateY(-2px);
  border-color:rgba(244,190,84,.42);
  background:linear-gradient(135deg,rgba(22,38,54,.98),rgba(10,19,30,.98));
}
.pico{
  font-size:32px;
  line-height:1;
  flex:0 0 auto;
}
.project h3{
  margin:0 0 6px;
  font-size:18px;
  line-height:1.2;
}
.project p{
  margin:0;
  color:#d1d8e0;
  font-size:14px;
}
.state{
  display:block;
  margin-top:14px;
  font-size:12px;
  text-transform:uppercase;
  font-weight:800;
}
.s-blue{color:var(--blue)}
.s-violet{color:var(--violet)}
.s-cyan{color:var(--cyan)}
.s-red{color:var(--red)}
.s-green{color:var(--green)}
.s-gold{color:var(--gold2)}
.s-pink{color:var(--pink)}
.three{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.footerCta{
  text-align:center;
  padding:32px 0;
  background:linear-gradient(90deg,transparent,rgba(244,190,84,.15),rgba(255,116,77,.1),transparent);
}
footer{
  padding:34px 0;
  background:#03070b;
}

.domainLine{
  margin:.35rem 0 0;
  color:var(--muted);
  font-size:13px;
}
footer a:hover,
.textLink{
  color:var(--gold2);
  text-decoration:underline;
  text-underline-offset:3px;
}
.footerGrid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:30px;
  align-items:start;
}
.quote{
  color:#c7ced8;
  font-style:italic;
}
.small{
  font-size:12px;
  color:#97a2ae;
  text-align:center;
  margin-top:24px;
}
.pageHero{
  padding:74px 0 46px;
  background:
    linear-gradient(90deg,rgba(3,7,11,.94),rgba(3,7,11,.74)),
    url('assets/img/oid-banner.jpeg') center/cover no-repeat;
  border-bottom:1px solid rgba(244,190,84,.2);
}
.pageHero h1{
  font-size:44px;
  line-height:1.08;
  margin:0;
  text-transform:uppercase;
}
.pageHero p{
  max-width:760px;
  color:#dce2e8;
}
.contentGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.full{grid-column:1/-1}
.bannerImg{
  margin-top:20px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(244,190,84,.25);
}
.bannerImg img{
  width:100%;
  display:block;
}
.center{text-align:center}
.mt{margin-top:22px}
@media(max-width:1180px){
  .kernelGrid,
  .projects{grid-template-columns:repeat(3,minmax(0,1fr))}
  .flow{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:950px){
  .navin{
    align-items:flex-start;
    flex-direction:column;
  }
  .brand{min-width:0}
  .menu{
    width:100%;
    flex-wrap:nowrap;
    justify-content:flex-start;
    overflow-x:auto;
    padding-bottom:6px;
    scrollbar-width:thin;
  }
  .menu a{
    flex:0 0 auto;
    border:1px solid rgba(255,255,255,.1);
    background:rgba(255,255,255,.03);
  }
  .hero{
    min-height:600px;
    align-items:flex-end;
    padding:90px 0 48px;
  }
  .hero:before{
    background:
      linear-gradient(180deg,rgba(3,7,11,.64),rgba(3,7,11,.96) 68%,rgba(3,7,11,.98)),
      url('assets/img/hero-ajf-web.jpg') center/cover no-repeat;
  }
  .hero h1{font-size:38px}
  .metrics{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:none;
  }
  .metric:nth-child(2){border-right:0}
  .metric:nth-child(-n+2){border-bottom:1px solid rgba(244,190,84,.18)}
  .split,
  .three,
  .contentGrid,
  .footerGrid{grid-template-columns:1fr}
  .kernelGrid,
  .projects{grid-template-columns:repeat(2,minmax(0,1fr))}
  .card h2{text-align:center}
}
@media(max-width:620px){
  .wrap{width:min(100% - 28px,1180px)}
  .brand strong{font-size:15px}
  .brand span{font-size:10px}
  .mark{
    width:38px;
    height:38px;
  }
  .hero{
    min-height:560px;
    padding-bottom:36px;
  }
  .hero h1{font-size:32px}
  .hero p{font-size:16px}
  .section{padding:46px 0}
  .section h2{font-size:24px}
  .pageHero{
    padding:58px 0 36px;
  }
  .pageHero h1{font-size:34px}
  .btn{
    width:100%;
  }
  .metrics,
  .kernelGrid,
  .projects,
  .flow{grid-template-columns:1fr}
  .metric{
    border-right:0;
    border-bottom:1px solid rgba(244,190,84,.18);
  }
  .metric:last-child{border-bottom:0}
  .project{min-height:auto}
}

