﻿:root {
  --bg: #0c0d0e;
  --bg-soft: #121417;
  --panel: #16181c;
  --panel-2: #1c1f24;
  --surface: #16181c;
  --text: #e9e6df;
  --muted: #8b8f96;
  --primary: #f5b50a;          /* industrial / hazard yellow */
  --primary-dark: #d99c00;
  --accent: #ff5a1f;           /* safety orange */
  --steel: #2a2e34;
  --steel-light: #3a3f47;
  --border: #2a2e34;
  --radius: 0px;               /* hard edges */
  --shadow: 0 14px 40px -16px rgba(0, 0, 0, 0.85);
  --shadow-lg: 0 30px 70px -24px rgba(0, 0, 0, 0.9);
  --max: 1200px;
  --hazard: repeating-linear-gradient(45deg, #f5b50a 0 14px, #0c0d0e 14px 28px);
  --grid: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image: var(--grid);
  background-size: 48px 48px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Archivo Black", "Oswald", sans-serif;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.brand-name { font-family: "Archivo Black", sans-serif; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

a { text-decoration: none; color: inherit; }

/* ---- Buttons: square, bolted, uppercase ---- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; font-family: "Oswald", sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 24px; border-radius: 0; cursor: pointer;
  border: 2px solid var(--steel-light); color: var(--text);
  background: var(--panel-2);
  transition: all .15s ease;
}
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--primary); color: #0c0d0e; border-color: var(--primary);
  font-weight: 700; box-shadow: 4px 4px 0 #000;
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #000; background: #ffc426; }
.btn-outline { background: transparent; border-color: var(--steel-light); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); box-shadow: 4px 4px 0 rgba(245,181,10,.25); }
.btn-ghost { background: transparent; border-color: transparent; color: #b9bcc2; }
.btn-ghost:hover { color: var(--primary); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.eyebrow::before { content: "//"; color: var(--accent); }

.gradient-text { color: var(--primary); }

/* ---- Navbar ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0; border-bottom: 2px solid transparent;
  transition: all .25s ease;
}
.navbar.scrolled {
  background: rgba(12,13,14,.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--steel);
  padding: 8px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 0;
  background: var(--primary);
  border: 2px solid #000;
  box-shadow: inset 0 0 0 2px var(--bg), 3px 3px 0 #000;
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 6px;
  background: var(--hazard); background-size: auto; opacity: .9;
}
.brand-name { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: .02em; }
.brand-name span { color: var(--primary); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: "Oswald", sans-serif; color: #b9bcc2; font-weight: 500; font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase; transition: color .15s; position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--primary); transition: .3s; }

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12,13,14,.4), rgba(12,13,14,.92)),
    radial-gradient(900px 500px at 78% -5%, #2a2410, var(--bg) 62%);
  padding: 150px 0 90px; color: #fff;
  border-bottom: 2px solid var(--steel);
}
.hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 10px;
  background: var(--hazard);
}
.hero-glow {
  position: absolute; bottom: -160px; left: -80px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,90,31,.18), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; position: relative; }
.hero-copy .eyebrow { color: var(--primary); background: rgba(245,181,10,.08); padding: 7px 12px; border: 1px solid var(--steel); border-radius: 0; }
.hero h1 { font-size: clamp(40px, 6vw, 78px); font-weight: 900; margin-bottom: 22px; letter-spacing: -0.01em; }
.lead { font-family: "Oswald", sans-serif; font-weight: 300; font-size: 19px; color: #b9bcc2; max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-trust > span { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .2em; }
.logos { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.logos span {
  font-family: "Oswald", sans-serif; font-weight: 600; color: #6f747c; letter-spacing: .1em; font-size: 13px;
  border: 1px solid var(--steel); padding: 5px 12px; text-transform: uppercase;
}

/* Hero floating cards -> instrument gauges */
.hero-visual { position: relative; height: 430px; }
.card-float {
  position: absolute; background: var(--panel); color: var(--text);
  border-radius: 0; padding: 18px; border: 2px solid var(--steel);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.02);
  animation: float 6s ease-in-out infinite;
}
.card-float::before {
  content: ""; position: absolute; top: 6px; left: 6px; right: 6px; height: 0;
  border-top: 1px dashed var(--steel-light);
}
.card-1 { top: 16px; left: 0; width: 268px; }
.card-2 { top: 196px; right: 0; width: 178px; text-align: center; animation-delay: 1.5s; border-color: var(--primary); }
.card-3 { bottom: 0; left: 36px; display: flex; align-items: center; gap: 10px; animation-delay: 3s; }
.card-2 strong { font-family: "Archivo Black", sans-serif; font-size: 34px; display: block; color: var(--primary); }
.card-2 span { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.card-3 span { font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.dot-row { display: flex; gap: 6px; margin-bottom: 14px; }
.dot-row i { width: 10px; height: 10px; border-radius: 0; background: var(--steel-light); }
.dot-row i:first-child { background: var(--accent); }
.dot-row i:nth-child(2) { background: var(--primary); }
.dot-row i:nth-child(3) { background: #5a8f3a; }
.bar { height: 9px; border-radius: 0; background: var(--primary); margin-bottom: 8px; border: 1px solid #000; }
.bar-80 { width: 80%; } .bar-60 { width: 60%; } .bar-90 { width: 90%; }
.card-1 p { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--muted); margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; }
.avatar-stack { display: flex; }
.avatar-stack i { width: 26px; height: 26px; border-radius: 0; border: 2px solid var(--panel); margin-left: -8px; }
.avatar-stack i:first-child { margin-left: 0; background: var(--primary); }
.avatar-stack i:nth-child(2) { background: var(--accent); }
.avatar-stack i:nth-child(3) { background: #5a8f3a; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---- Sections ---- */
.section { padding: 92px 0; position: relative; }
.section-alt { background: var(--bg-soft); border-top: 2px solid var(--steel); border-bottom: 2px solid var(--steel); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 50px); font-weight: 900; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; font-weight: 300; }

.grid { display: grid; gap: 2px; background: var(--steel); border: 2px solid var(--steel); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Feature cards -> machined plates */
.feature-card {
  background: var(--panel); border-radius: 0;
  padding: 32px 28px; transition: all .18s ease; position: relative;
}
.feature-card::before {
  content: ""; position: absolute; top: 10px; right: 10px;
  width: 7px; height: 7px; background: var(--steel-light);
  box-shadow: 14px 0 0 var(--steel-light);
  border-radius: 50%;
}
.feature-card:hover { background: var(--panel-2); }
.feature-card:hover .feature-icon { border-color: var(--primary); color: var(--primary); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 0; display: grid; place-items: center;
  font-size: 26px; margin-bottom: 20px; background: var(--bg);
  border: 2px solid var(--steel-light); transition: all .18s;
}
/* tint classes kept but neutralized to steel for cohesion */
.icon-blue, .icon-purple, .icon-green, .icon-orange, .icon-pink, .icon-teal { background: var(--bg); }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: .02em; }
.feature-card p { color: var(--muted); font-size: 15px; font-weight: 300; }

/* ---- Split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.split-copy > p { color: var(--muted); font-size: 17px; font-weight: 300; margin-bottom: 24px; }
.check-list { list-style: none; margin-bottom: 28px; }
.check-list li {
  font-family: "Oswald", sans-serif; font-weight: 400; padding-left: 32px; position: relative;
  margin-bottom: 13px; color: #cfd2d7; letter-spacing: .02em;
}
.check-list li::before {
  content: "▸"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--primary); color: #0c0d0e;
  border-radius: 0; font-size: 13px; display: grid; place-items: center; font-weight: 700;
}
.panel {
  background: var(--panel); color: #fff;
  border-radius: 0; padding: 24px; border: 2px solid var(--steel);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.panel::before { content: ""; position: absolute; top: -2px; left: -2px; right: -2px; height: 6px; background: var(--hazard); }
.panel-top { display: flex; align-items: center; gap: 12px; margin: 8px 0 20px; }
.pill { font-family: "JetBrains Mono", monospace; font-size: 11px; padding: 4px 10px; border-radius: 0; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.pill-live { background: rgba(90,143,58,.18); color: #8fd35a; border: 1px solid #5a8f3a; }
.panel-title { font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 22px; background: var(--steel); border: 1px solid var(--steel); }
.stat-box { background: var(--bg); border-radius: 0; padding: 16px; }
.stat-box strong { display: block; font-family: "Archivo Black", sans-serif; font-size: 24px; color: var(--primary); }
.stat-box span { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.panel-chart { display: flex; align-items: flex-end; gap: 6px; height: 110px; background: var(--bg); padding: 8px; border: 1px solid var(--steel); }
.panel-chart span { flex: 1; background: var(--primary); border-radius: 0; border-top: 2px solid #ffc426; }

/* ---- Stats ---- */
.stats { background: var(--bg); position: relative; }
.stats::before, .stats::after { content: ""; position: absolute; left: 0; right: 0; height: 8px; background: var(--hazard); }
.stats::before { top: 0; } .stats::after { bottom: 0; }
.stats .section-head h2 { color: #fff; }
.stat-grid { text-align: center; background: var(--steel); }
.stat { background: var(--bg-soft); padding: 14px 8px; }
.stat strong { font-size: 52px; font-weight: 900; font-family: "Archivo Black"; display: block; color: var(--primary); }
.stat span { font-family: "JetBrains Mono", monospace; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

/* ---- Quote ---- */
.quote { max-width: 820px; margin: 0 auto; text-align: center; position: relative; padding-top: 30px; }
.quote::before { content: "“"; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-family: "Archivo Black"; font-size: 90px; color: var(--steel-light); line-height: 1; }
.quote p { font-family: "Oswald", sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 500; color: var(--text); margin-bottom: 28px; letter-spacing: .01em; }
.quote footer { display: flex; align-items: center; justify-content: center; gap: 14px; }
.q-avatar { width: 50px; height: 50px; border-radius: 0; background: var(--primary); color: #0c0d0e; display: grid; place-items: center; font-family: "Archivo Black"; font-weight: 700; border: 2px solid #000; }
.q-name { text-align: left; font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.q-name small { display: block; font-family: "JetBrains Mono", monospace; color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ---- Pricing ---- */
.pricing-grid { align-items: stretch; background: var(--steel); }
.price-card { position: relative; background: var(--panel); border-radius: 0; padding: 34px 30px; display: flex; flex-direction: column; }
.price-card h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: .04em; }
.price { font-family: "Archivo Black", sans-serif; font-size: 46px; font-weight: 900; margin-bottom: 8px; color: #fff; }
.price span { font-size: 24px; vertical-align: super; color: var(--primary); }
.price small { font-family: "JetBrains Mono", monospace; font-size: 13px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.price-custom { font-size: 40px; }
.price-sub { color: var(--muted); margin-bottom: 24px; font-weight: 300; }
.price-card .check-list { flex: 1; }
.price-featured { border: 2px solid var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg); z-index: 1; }
.price-featured::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--hazard); }
.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #0c0d0e; font-family: "Oswald"; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 0; text-transform: uppercase; letter-spacing: .12em; border: 2px solid #000; }

/* ---- CTA ---- */
.cta { background: var(--bg-soft); color: #fff; position: relative; }
.cta::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: var(--hazard); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.cta-copy h2 { font-size: clamp(32px,4.5vw,52px); margin-bottom: 18px; }
.cta-copy > p { color: #b9bcc2; font-size: 18px; font-weight: 300; margin-bottom: 28px; }
.cta-meta { display: flex; flex-direction: column; gap: 12px; font-family: "JetBrains Mono", monospace; color: #cfd2d7; font-size: 14px; }
.cta-meta a { color: var(--primary); }
.cta-meta a:hover { text-decoration: underline; }
.cta-form { background: var(--panel); color: var(--text); border-radius: 0; padding: 32px; border: 2px solid var(--steel); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: "JetBrains Mono", monospace; font-size: 12px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.field input { width: 100%; padding: 13px 14px; background: var(--bg); border: 2px solid var(--steel); border-radius: 0; font-size: 15px; font-family: "Oswald", sans-serif; color: var(--text); transition: border .15s; }
.field input::placeholder { color: #5a5e66; }
.field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(245,181,10,.2); }
.form-note { margin-top: 16px; text-align: center; font-family: "JetBrains Mono", monospace; color: #8fd35a; font-weight: 700; }

/* ---- Footer ---- */
.footer { background: #0a0b0c; color: #8b8f96; padding: 60px 0 26px; border-top: 8px solid transparent; border-image: var(--hazard) 8; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 40px; padding-bottom: 40px; border-bottom: 2px solid var(--steel); }
.footer-brand p { margin-top: 16px; max-width: 300px; font-size: 14px; font-weight: 300; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-cols h4 { font-family: "Oswald"; color: var(--primary); font-size: 14px; margin-bottom: 16px; letter-spacing: .14em; }
.footer-cols a { display: block; color: #8b8f96; font-size: 14px; margin-bottom: 10px; transition: color .15s; }
.footer-cols a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; font-family: "JetBrains Mono", monospace; font-size: 12px; flex-wrap: wrap; gap: 10px; letter-spacing: .04em; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: all .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 16px; right: 16px; background: var(--panel); padding: 20px; border: 2px solid var(--steel); border-radius: 0; gap: 16px; box-shadow: var(--shadow-lg); }
  .nav-toggle { display: flex; }
  .hero-inner, .split, .cta-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; margin-top: 20px; }
  .grid-3, .grid-4, .footer-inner { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
