
:root {
  --bg: #070908;
  --panel: #101412;
  --panel-2: #151b18;
  --text: #f4f7f3;
  --muted: #c3c9c2;
  --line: rgba(255,255,255,.12);
  --brand: #8AC053;
  --brand-dark: #6fa23d;
  --ink: #0b0d0a;
  --max: 1180px;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.skip-link {
  position: absolute; left: -999px; top: 8px; background: var(--brand); color: #000; padding: 10px 14px; z-index: 999;
}
.skip-link:focus { left: 8px; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,9,8,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 16px 0;
}
.logo-link { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo { width: auto; height: 78px; max-width: 270px; display: block; }
.nav { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; font-weight: 700; font-size: 14px; color: var(--text);
  padding: 10px 12px; border-radius: 999px;
}
.nav a:hover, .nav a.active { background: rgba(138,192,83,.14); color: var(--brand); }
.nav a.cta-nav { background: var(--brand); color: #071006; margin-left: 6px; }
.nav a.cta-nav:hover { background: #fff; color: #071006; }
.hero {
  position: relative;
  padding: 94px 0 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(138,192,83,.20), transparent 26%),
    linear-gradient(120deg, rgba(0,0,0,.94), rgba(0,0,0,.72)),
    var(--hero-image, linear-gradient(135deg, #111, #050505));
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero::after {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 6px;
  background: linear-gradient(90deg, var(--brand), transparent 78%);
}
.hero-content { position: relative; max-width: 860px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--brand); display: inline-block; }
h1, h2, h3, h4 { font-family: 'Montserrat', Arial, sans-serif; line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(2.2rem, 5vw, 4.9rem); letter-spacing: -.045em; max-width: 980px; }
h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); letter-spacing: -.025em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 780px; color: #e5ebe2; }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 13px 20px;
  border-radius: 999px; text-decoration: none; font-weight: 800;
  border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #051004; }
.btn-primary:hover { background: #fff; color: #051004; }
.btn-secondary { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.04); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.section { padding: 74px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 840px; margin-bottom: 34px; }
.kicker { color: var(--brand); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; margin-bottom: 10px; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card:hover { border-color: rgba(138,192,83,.45); }
.card .tag { display:inline-block; color: var(--brand); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.card a.more { color: var(--brand); font-weight: 800; text-decoration: none; }
.card a.more:hover { text-decoration: underline; }
.card ul, .content ul { margin: 16px 0 0; padding-left: 20px; color: var(--muted); }
.card li, .content li { margin-bottom: 8px; }
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stat { background: #0c100e; padding: 24px; }
.stat strong { display:block; color: var(--brand); font-family: 'Montserrat'; font-size: 1.7rem; line-height: 1; margin-bottom: 8px; }
.stat span { color: var(--muted); font-size: 14px; }
.capability-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px;
}
.capability-list li {
  position: relative; padding: 14px 16px 14px 44px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px; color: #e7eee4;
}
.capability-list li::before {
  content: '✓'; position: absolute; left: 16px; top: 13px; color: var(--brand); font-weight: 900;
}
.project-card { padding: 0; overflow: hidden; }
.project-media {
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(138,192,83,.35), rgba(0,0,0,.75)),
    var(--project-image, linear-gradient(135deg, #2c332f, #0a0a0a));
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--line);
}
.project-body { padding: 26px; }
.meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px;
}
.meta span {
  display: inline-flex; padding: 6px 10px; border: 1px solid rgba(138,192,83,.30); border-radius: 999px;
  color: var(--brand); font-size: 12px; font-weight: 800;
}
.info-panel {
  background: var(--brand); color: #071006; border-radius: var(--radius); padding: 32px;
}
.info-panel p, .info-panel li { color: #16200f; }
.info-panel h2, .info-panel h3 { color: #071006; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 38px; align-items: start; }
.breadcrumbs { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--brand); text-decoration: none; }
.content { max-width: 900px; }
.content h2 { margin-top: 38px; }
.feature-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 12px; border: 1px solid var(--line); }
.feature-table th, .feature-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.feature-table th { background: rgba(138,192,83,.14); color: var(--brand); font-family: 'Montserrat'; }
.feature-table tr:last-child td { border-bottom: none; }
.notice { border-left: 4px solid var(--brand); padding: 18px 20px; background: rgba(138,192,83,.08); border-radius: 0 12px 12px 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #fff; font-size: 14px; }
input, textarea, select {
  width: 100%; padding: 14px 14px; border-radius: 10px; border: 1px solid var(--line);
  background: #0a0e0c; color: #fff; font: inherit;
}
textarea { min-height: 160px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(138,192,83,.45); border-color: var(--brand); }
.site-footer { background: #050605; border-top: 1px solid var(--line); padding: 48px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr .8fr; gap: 28px; margin-bottom: 32px; }
.footer-logo { height: 70px; width: auto; max-width: 250px; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); font-size: 14px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .logo { height: 66px; max-width: 240px; }
  .nav { justify-content: flex-start; }
  .grid-3, .grid-4, .grid-2, .split, .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .capability-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero { padding: 70px 0 54px; }
  .nav a { padding: 9px 10px; font-size: 13px; }
  .nav a.cta-nav { margin-left: 0; }
  .section { padding: 54px 0; }
  .stat-strip { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .logo { height: 58px; max-width: 220px; }
  .header-inner { gap: 14px; }
  .nav { width: 100%; gap: 6px; }
}
