:root {
  --bg: #0f1412;
  --bg-2: #171d1a;
  --panel: #1c2420;
  --ink: #eef3ef;
  --muted: #a7b5ad;
  --line: rgba(238, 243, 239, 0.12);
  --accent: #c8f05e;
  --accent-ink: #14200a;
  --warm: #f0a35e;
  --max: 1120px;
  --radius: 18px;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background:
  radial-gradient(1000px 500px at 10% -10%, rgba(200, 240, 94, 0.12), transparent 55%),
  radial-gradient(800px 400px at 90% 0%, rgba(240, 163, 94, 0.1), transparent 50%),
  var(--bg);
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #ddff8a; }
img { max-width: 100%; display: block; }
.skip {
  position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--accent-ink);
  padding: .5rem 1rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.top {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(15, 20, 18, 0.82);
  border-bottom: 1px solid var(--line);
}
.top-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .75rem; color: inherit; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--accent), #8fbf2e);
  color: var(--accent-ink); font-weight: 700; font-size: 1.15rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.05rem; letter-spacing: 0.01em; }
.brand-text span { color: var(--muted); font-size: .78rem; }
.nav { display: flex; gap: 1.1rem; margin-left: auto; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: .95rem; }
.nav a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .75rem 1.15rem; font-weight: 600;
  text-decoration: none; border: 1px solid transparent; transition: .15s ease;
  font-size: .95rem;
}
.btn-call {
  background: transparent; border-color: var(--line); color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: .85rem;
}
.btn-call:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { filter: brightness(1.05); color: var(--accent-ink); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--muted); color: var(--ink); }
.btn-light { background: #fff; color: #122; }
.btn-light:hover { color: #122; filter: brightness(.96); }

.hero { padding: 4.5rem 0 3.5rem; }
.hero-grid {
  display: grid; grid-template-columns: 1.35fr .9fr; gap: 2rem; align-items: stretch;
}
.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: .72rem; color: var(--warm); margin: 0 0 .85rem;
}
.eyebrow.light { color: #ffe0b8; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); max-width: 12ch; }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
h3 { font-size: 1.2rem; }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 38ch; margin: 0 0 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem;
  margin: 0; padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.hero-stats dt {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .78rem; color: var(--accent); margin: 0 0 .2rem;
}
.hero-stats dd { margin: 0; color: var(--muted); font-size: .92rem; }

.hero-card {
  background: linear-gradient(180deg, #243029 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.28);
}
.card-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 .5rem;
}
.hero-card h2 { font-size: 1.55rem; }
.hero-card p { color: var(--muted); margin-top: 0; }
.phone-xl {
  display: inline-block; margin: .5rem 0 1.1rem;
  font-size: clamp(1.35rem, 3vw, 1.7rem); font-weight: 700;
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
}
.phone-xl:hover { color: var(--accent); }
.card-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.card-list li {
  display: grid; grid-template-columns: 4.5rem 1fr; gap: .5rem;
  font-size: .92rem; color: var(--muted);
  padding-top: .7rem; border-top: 1px solid var(--line);
}
.card-list span {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink);
}

.section { padding: 4rem 0; }
.section.tint { background: rgba(255,255,255,0.02); border-block: 1px solid var(--line); }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head p:last-child { color: var(--muted); margin: 0; }
.cards.three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.card-num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: var(--warm); margin: 0 0 .6rem; font-size: .8rem;
}
.card p { color: var(--muted); }
.card ul { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--ink); }
.card li { margin: .35rem 0; }

.table-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel);
}
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 1rem 1.1rem; border-bottom: 1px solid var(--line); }
th {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
tr:last-child td { border-bottom: 0; }
td { color: var(--ink); }
.fine { color: var(--muted); margin: 1rem 0 0; font-size: .92rem; }

.about-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start;
}
.about-grid > div > p { color: var(--muted); }
.pillars { display: grid; gap: .85rem; }
.pillars > div {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 1rem 1.1rem;
}
.pillars p { margin: 0; color: var(--muted); font-size: .95rem; }

.cta {
  background:
    linear-gradient(135deg, rgba(200,240,94,.14), transparent 40%),
    linear-gradient(225deg, rgba(240,163,94,.16), transparent 45%),
    #141b17;
  border-top: 1px solid var(--line);
}
.cta-inner { display: grid; gap: 1.25rem; }
.cta-inner > div > p { color: #d7e0da; max-width: 40ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.address {
  font-style: normal; color: var(--muted);
  padding-top: 1rem; border-top: 1px solid var(--line);
  line-height: 1.7;
}
.address strong { color: var(--ink); }
.address a { color: var(--ink); }

.foot { border-top: 1px solid var(--line); padding: 1.25rem 0 2rem; }
.foot-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-size: .9rem;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .cards.three, .about-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  h1 { max-width: none; }
}
