:root{
  --bg: #12161A;
  --surface: #1A2027;
  --surface-2: #1F262E;
  --border: #2A323B;
  --text: #EDEAE2;
  --text-muted: #98A2AC;
  --accent: #E8A33D;
  --accent-dim: #B87F2E;
  --ok: #4FAE73;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*{box-sizing:border-box; margin:0; padding:0;}

html{scroll-behavior:smooth;}

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

.wrap{
  max-width:1120px;
  margin:0 auto;
  padding:0 32px;
}

a{color:inherit; text-decoration:none;}

/* subtle scanline texture, purely decorative, very low opacity */
.scanline{
  position:fixed; inset:0; pointer-events:none; z-index:1;
  background:repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 3px);
}

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:20;
  background:rgba(18,22,26,0.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:68px;
}
.wordmark{
  font-family:var(--mono);
  font-weight:600;
  font-size:17px;
  letter-spacing:0.02em;
}
.wordmark span{color:var(--accent);}
.main-nav{display:flex; align-items:center; gap:28px; font-size:14px; font-family:var(--mono);}
.main-nav a:not(:last-child){margin-right:28px;}
@supports (gap:1px){ .main-nav a:not(:last-child){margin-right:0;} }
.main-nav a{color:var(--text-muted); transition:color .15s ease;}
.main-nav a:hover{color:var(--text);}
.nav-cta{
  color:var(--bg) !important;
  background:var(--accent);
  padding:8px 16px;
  border-radius:2px;
  font-weight:600;
}
.nav-cta:hover{background:var(--text) !important;}

/* ---------- Hero ---------- */
.hero{padding:100px 0 64px;}
.eyebrow{
  font-family:var(--mono);
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:20px;
}
.hero h1{
  font-family:var(--mono);
  font-weight:700;
  font-size:clamp(32px, 5vw, 54px);
  line-height:1.12;
  letter-spacing:-0.01em;
  max-width:820px;
  margin-bottom:24px;
}
.hero-sub{
  font-size:18px;
  color:var(--text-muted);
  max-width:640px;
  margin-bottom:36px;
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
.btn{
  display:inline-block;
  font-family:var(--mono);
  font-size:14px;
  font-weight:600;
  padding:13px 24px;
  border-radius:2px;
  transition:all .15s ease;
  border:1px solid transparent;
}
.btn-primary{background:var(--accent); color:var(--bg);}
.btn-primary:hover{background:#F2B85A;}
.btn-ghost{border-color:var(--border); color:var(--text);}
.btn-ghost:hover{border-color:var(--text-muted);}

/* ---------- Status strip (signature element) ---------- */
.status-strip{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:var(--surface);
  padding:22px 0 16px;
}
.status-inner{
  display:flex; align-items:center; flex-wrap:wrap; gap:20px;
}
.status-item{display:flex; flex-direction:column; gap:2px;}
.status-value{font-family:var(--mono); font-weight:700; font-size:20px; color:var(--text);}
.status-label{font-family:var(--mono); font-size:11.5px; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.04em;}
.status-divider{width:1px; height:30px; background:var(--border);}
.status-dot{
  width:9px; height:9px; border-radius:50%;
  background:var(--ok);
  box-shadow:0 0 0 3px rgba(79,174,115,0.18);
  animation:pulse 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce){ .status-dot{animation:none;} }
@keyframes pulse{
  0%,100%{opacity:1;}
  50%{opacity:0.55;}
}
.status-footnote{
  font-family:var(--mono); font-size:11.5px; color:var(--text-muted); opacity:0.7;
  margin-top:14px;
}

/* ---------- Section shared ---------- */
section{padding:88px 0;}
.section-eyebrow{
  font-family:var(--mono); font-size:13px; color:var(--accent);
  letter-spacing:0.06em; margin-bottom:14px;
}
h2{
  font-family:var(--mono); font-weight:700;
  font-size:clamp(26px, 3.4vw, 36px);
  margin-bottom:16px;
  max-width:640px;
}
.section-sub{color:var(--text-muted); font-size:17px; max-width:600px; margin-bottom:48px;}

/* ---------- Services ---------- */
.services{background:var(--bg);}
.service-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
}
.service-card{
  background:var(--surface);
  padding:32px;
}
.service-index{
  font-family:var(--mono); font-size:12px; color:var(--accent-dim);
  letter-spacing:0.1em; margin-bottom:14px;
}
.service-card h3{font-size:19px; margin-bottom:10px; font-weight:600;}
.service-card p{color:var(--text-muted); font-size:15px; margin-bottom:16px;}
.service-card ul{list-style:none; display:flex; flex-direction:column; gap:8px;}
.service-card li{
  font-size:14px; color:var(--text); padding-left:16px; position:relative;
}
.service-card li::before{
  content:'—'; position:absolute; left:0; color:var(--accent-dim);
}

/* ---------- Approach ---------- */
.approach{background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
.approach-body{display:flex; flex-direction:column; gap:18px; max-width:680px; font-size:17px; color:var(--text-muted);}
.approach-body p:first-child{color:var(--text); font-size:19px;}

/* ---------- Industries ---------- */
.industry-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
.industry-card{
  border:1px solid var(--border);
  padding:28px 24px;
  background:var(--surface);
}
.industry-card h3{font-size:17px; margin-bottom:10px; font-weight:600;}
.industry-card p{color:var(--text-muted); font-size:14.5px;}

/* ---------- Contact ---------- */
.contact{background:var(--surface-2); border-top:1px solid var(--border);}
.contact-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:1px;
  background:var(--border); border:1px solid var(--border);
  max-width:760px;
}
.contact-method{
  background:var(--surface); padding:24px;
  display:flex; flex-direction:column; gap:6px;
  transition:background .15s ease;
}
.contact-method:hover{background:#232B33;}
.contact-label{font-family:var(--mono); font-size:11.5px; color:var(--accent); text-transform:uppercase; letter-spacing:0.06em;}
.contact-value{font-size:15px; font-weight:500;}

/* ---------- Footer ---------- */
.site-footer{border-top:1px solid var(--border); padding:28px 0;}
.footer-inner{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
  font-family:var(--mono); font-size:12.5px; color:var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width:760px){
  .main-nav{gap:16px; font-size:13px;}
  .main-nav a:not(.nav-cta){display:none;}
  .service-grid{grid-template-columns:1fr;}
  .industry-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  section{padding:56px 0;}
  .hero{padding:64px 0 40px;}
  .status-inner{gap:16px;}
  .status-divider{display:none;}
}
