/* AlphaStratz.com — Netlify-ready static site
   Brand: AlphaStratz™ — Where Tech Meets EBITDA.
   Palette derived from provided logo assets. */

:root{
  --navy-950:#0b1522;
  --navy-900:#0f1b2a;
  --navy-850:#132235;
  --navy-800:#1a2a3d; /* primary background */
  --slate-100:#f7f8fa;
  --slate-200:#e7eaee;
  --slate-400:#aab3bd;
  --slate-600:#5a6775;
  --slate-800:#2b3440;
  --gold-500:#cfac4d;
  --gold-550:#caa94f;
  --danger-500:#ff4d4f;
  --ok-500:#24c07a;

  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --shadow-soft: 0 10px 24px rgba(0,0,0,.25);
  --radius: 14px;
  --radius-lg: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 900px at 20% -10%, rgba(207,172,77,.18), transparent 55%),
              radial-gradient(1000px 800px at 90% 0%, rgba(47,135,255,.12), transparent 55%),
              linear-gradient(180deg, var(--navy-950), var(--navy-900) 30%, var(--navy-800));
  color: var(--slate-100);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
small{color:var(--slate-400)}
code,kbd{font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace}

.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.section{padding:64px 0}
.section.tight{padding:42px 0}
.section.top{padding-top:28px}

.hr{
  height:1px; background: linear-gradient(90deg, transparent, rgba(231,234,238,.22), transparent);
  margin:18px 0;
}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(231,234,238,.18);
  background: rgba(19,34,53,.55);
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  color:var(--slate-200);
}

.badge .dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(207,172,77,.12);
}

h1,h2,h3{
  font-family: Montserrat, Inter, system-ui, sans-serif;
  margin:0 0 12px 0;
  letter-spacing:-.02em;
}
h1{font-size:44px; line-height:1.1}
h2{font-size:30px}
h3{font-size:20px}

p{margin:0 0 14px 0; color:rgba(247,248,250,.92)}
ul{margin:10px 0 0 0; padding-left:18px}
li{margin:6px 0; color:rgba(247,248,250,.92)}

.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(11,21,34,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(231,234,238,.12);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:36px; width:auto}
.nav-links{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  font-size:14px;
  color:rgba(247,248,250,.92);
}
.nav-links a{
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
}
.nav-links a:hover{
  border-color: rgba(231,234,238,.16);
  background: rgba(19,34,53,.45);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(231,234,238,.18);
  background: rgba(19,34,53,.55);
  color:var(--slate-100);
  font-weight:600;
  box-shadow: var(--shadow-soft);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn.primary{
  background: linear-gradient(180deg, rgba(207,172,77,.96), rgba(190,152,54,.96));
  color:#101828;
  border-color: rgba(207,172,77,.55);
}
.btn.ghost{
  background: transparent;
  box-shadow: none;
}

.hero{
  padding:42px 0 26px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:start;
}
@media (max-width: 900px){
  h1{font-size:38px}
  .hero-grid{grid-template-columns:1fr}
}

.hero-card{
  border:1px solid rgba(231,234,238,.14);
  background: rgba(19,34,53,.52);
  border-radius: var(--radius-lg);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card .kpi{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:12px;
}
.kpi .item{
  border:1px solid rgba(231,234,238,.12);
  border-radius:14px;
  padding:12px;
  background: rgba(11,21,34,.35);
}
.kpi .num{
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-weight:800;
  font-size:22px;
  letter-spacing:-.02em;
}
.kpi .lbl{
  color:rgba(231,234,238,.82);
  font-size:13px;
  margin-top:2px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media(max-width: 900px){
  .grid-3{grid-template-columns:1fr}
}

.card{
  border:1px solid rgba(231,234,238,.14);
  background: rgba(19,34,53,.52);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow-soft);
}
.card p{margin-bottom:10px}
.card .meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(231,234,238,.14);
  background: rgba(11,21,34,.35);
  font-size:12px;
  color:rgba(231,234,238,.9);
}
.pill strong{color:var(--gold-500); font-weight:800}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
@media(max-width: 900px){
  .split{grid-template-columns:1fr}
}

.timeline{
  border:1px solid rgba(231,234,238,.14);
  background: rgba(19,34,53,.52);
  border-radius: var(--radius-lg);
  padding:18px;
}
.step{
  display:grid;
  grid-template-columns: 46px 1fr;
  gap:14px;
  padding:12px 0;
}
.step + .step{border-top:1px solid rgba(231,234,238,.12)}
.step .n{
  width:38px; height:38px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(207,172,77,.16);
  border:1px solid rgba(207,172,77,.35);
  color: var(--gold-500);
  font-weight:900;
}
.step .t{font-weight:800; color:var(--slate-100)}
.step .d{color:rgba(231,234,238,.9); font-size:14px; margin-top:4px}

.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(231,234,238,.14);
  background: rgba(11,21,34,.35);
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(231,234,238,.12);
  vertical-align:top;
  font-size:14px;
}
.table th{
  text-align:left;
  color:rgba(231,234,238,.9);
  background: rgba(19,34,53,.45);
  font-weight:800;
}
.table tr:last-child td{border-bottom:none}
.table .tag{
  display:inline-block;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(231,234,238,.14);
  background: rgba(19,34,53,.45);
  font-size:12px;
  color:rgba(231,234,238,.92);
}

.form{
  border:1px solid rgba(231,234,238,.14);
  background: rgba(19,34,53,.52);
  border-radius: var(--radius-lg);
  padding:18px;
  box-shadow: var(--shadow-soft);
}
label{display:block; font-size:13px; color:rgba(231,234,238,.88); margin:10px 0 6px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(231,234,238,.16);
  background: rgba(11,21,34,.45);
  color: var(--slate-100);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{
  border-color: rgba(207,172,77,.42);
  box-shadow: 0 0 0 6px rgba(207,172,77,.10);
}

.footer{
  padding:30px 0;
  border-top:1px solid rgba(231,234,238,.12);
  background: rgba(11,21,34,.55);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr}}
.footer a{color:rgba(231,234,238,.9)}
.footer a:hover{color:var(--slate-100)}
.muted{color:rgba(231,234,238,.78)}
.gold{color:var(--gold-500)}

/* Accessibility: screen-reader-only */
.sr-only{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.fineprint{font-size:.85rem; opacity:.85; margin:.5rem 0 0;}
