:root {
  --ink: #090b0a;
  --surface: #101311;
  --surface-2: #171b18;
  --paper: #f4f5f1;
  --white: #fff;
  --muted: #a9afa9;
  --muted-dark: #565d57;
  --line: #303630;
  --line-light: #d5d9d3;
  --accent: #9ad929;
  --accent-strong: #b7f044;
  --accent-dark: #4d7010;
  --danger: #d9534f;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 4px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent);
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(9,11,10,.94);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { flex: 0 0 auto; }
.brand img { height: 40px; width: auto; }
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #d8ddd8;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
nav a:hover { color: var(--accent); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(.96); }
.button-primary { color: var(--ink); background: var(--accent); }
.button-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.button-secondary { color: var(--white); background: transparent; border-color: #555d57; }
.button-secondary:hover { border-color: var(--accent); }
.button-compact { min-height: 42px; padding: 8px 13px; font-size: .8rem; }
.full-width { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 28%, rgba(154,217,41,.08), transparent 27%),
    linear-gradient(180deg, #0c0f0d 0%, var(--ink) 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 78px;
  padding-block: 88px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--accent-dark); }
.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(154,217,41,.12);
}
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 span { color: var(--accent); }
.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: #c0c6c0;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { max-width: 580px; margin: 20px 0 0; color: var(--muted); font-size: .84rem; }

.diagnostic-panel {
  position: relative;
  border: 1px solid #3b433c;
  border-radius: 6px;
  background: rgba(16,19,17,.88);
  box-shadow: 0 24px 90px rgba(0,0,0,.4);
}
.diagnostic-panel::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.035);
  content: "";
  pointer-events: none;
}
.panel-topline {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #7f887f;
  font-family: var(--mono);
  font-size: .68rem;
}
.panel-live { color: var(--accent); }
.panel-live i { width: 6px; height: 6px; display: inline-block; margin-right: 6px; border-radius: 50%; background: var(--accent); }
.board-visual {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(154,217,41,.08), transparent 45%),
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.04) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(255,255,255,.04) 50%, transparent 50.5%);
  background-size: auto, 32px 32px, 32px 32px;
}
.chip { position: absolute; border: 1px solid #708070; background: #202720; }
.chip-main {
  width: 106px; height: 106px; left: calc(50% - 53px); top: 92px;
  display: grid; place-items: center;
  box-shadow: 0 0 0 8px #131713, 0 0 40px rgba(154,217,41,.08);
}
.chip-main::before, .chip-main::after {
  position: absolute; background: repeating-linear-gradient(90deg, #6b776b 0 2px, transparent 2px 8px); content: "";
}
.chip-main::before { width: 138px; height: 6px; }
.chip-main::after { width: 6px; height: 138px; background: repeating-linear-gradient(0deg, #6b776b 0 2px, transparent 2px 8px); }
.chip-main span { color: var(--accent); font-family: var(--mono); font-size: 1.5rem; font-weight: 800; }
.chip-small { width: 32px; height: 20px; }
.chip-one { left: 17%; top: 68px; }
.chip-two { right: 16%; bottom: 74px; }
.port-hdmi {
  width: 80px; height: 34px; right: 7%; top: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #818a81; background: #090b09;
  clip-path: polygon(8% 0,92% 0,100% 100%,0 100%);
}
.port-hdmi span { color: #929a92; font-family: var(--mono); font-size: .55rem; }
.trace { position: absolute; height: 1px; background: var(--accent-dark); opacity: .75; }
.trace::after { position: absolute; right: -3px; top: -3px; width: 7px; height: 7px; border: 1px solid var(--accent); border-radius: 50%; content: ""; }
.trace-a { width: 34%; left: 5%; top: 45%; transform: rotate(18deg); }
.trace-b { width: 31%; right: 6%; top: 62%; transform: rotate(-25deg); }
.trace-c { width: 28%; left: 15%; bottom: 18%; transform: rotate(-12deg); }
.probe { position: absolute; width: 2px; height: 74px; top: 12px; background: #899389; transform-origin: top; }
.probe::after { position: absolute; bottom: -5px; left: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); content: ""; box-shadow: 0 0 14px var(--accent); }
.probe-left { left: 37%; transform: rotate(18deg); }
.probe-right { right: 35%; transform: rotate(-22deg); }
.bench-readout { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--line); }
.bench-readout div { display: flex; justify-content: space-between; padding: 13px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bench-readout dt { color: #9ca39c; font-size: .73rem; }
.bench-readout dd { margin: 0; color: var(--accent); font-family: var(--mono); font-size: .7rem; }

.proof-strip { border-bottom: 1px solid var(--line); background: #0d100e; }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.proof-grid div { min-height: 102px; display: flex; flex-direction: column; justify-content: center; padding: 22px 30px; border-right: 1px solid var(--line); }
.proof-grid div:first-child { border-left: 1px solid var(--line); }
.proof-grid strong { font-size: .95rem; }
.proof-grid span { margin-top: 3px; color: var(--muted); font-size: .8rem; }

.section { padding-block: 108px; }
.section-light { color: var(--ink); background: var(--paper); }
.section-dark { background: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 64px; margin-bottom: 48px; }
.section-heading h2, .process-intro h2, .area-grid h2, .faq-grid h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(2rem,4vw,3.45rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-heading > p { max-width: 490px; margin: 0; color: var(--muted-dark); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 400px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff;
}
.service-card-featured { color: var(--white); background: var(--surface); border-color: var(--surface); }
.service-index { position: absolute; top: 20px; right: 20px; color: #8c938d; font-family: var(--mono); font-size: .7rem; }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 54px; border: 1px solid var(--line-light); color: var(--accent-dark); font-size: 1.6rem; }
.service-card-featured .service-icon { border-color: var(--line); color: var(--accent); }
.service-card h3 { margin: 0; font-size: 1.35rem; letter-spacing: -.02em; }
.service-card p { margin: 13px 0 20px; color: #5b625c; }
.service-card-featured p { color: var(--muted); }
.service-card ul { display: grid; gap: 8px; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--line-light); list-style: none; }
.service-card-featured ul { border-color: var(--line); }
.service-card li { position: relative; padding-left: 16px; font-size: .84rem; font-weight: 650; }
.service-card li::before { position: absolute; left: 0; color: var(--accent-dark); content: "+"; }
.service-card-featured li::before { color: var(--accent); }

.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-intro > p:not(.eyebrow) { max-width: 430px; color: var(--muted); }
.text-link { display: inline-flex; gap: 12px; margin-top: 20px; padding-bottom: 3px; border-bottom: 2px solid var(--accent); font-weight: 800; text-decoration: none; }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--accent); font-family: var(--mono); font-size: .72rem; }
.process-list h3 { margin: 0 0 8px; font-size: 1.2rem; }
.process-list p { max-width: 580px; margin: 0; color: var(--muted); }

.price-table { overflow-x: auto; border: 1px solid var(--line-light); background: #fff; }
table { width: 100%; min-width: 760px; border-collapse: collapse; }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--line-light); text-align: left; }
thead th { color: #697069; background: #e9ebe6; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
tbody th { font-size: .9rem; }
tbody td { color: #4f5650; font-size: .88rem; }
tbody td:nth-child(2) { color: var(--ink); font-family: var(--mono); font-weight: 800; white-space: nowrap; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.pricing-note { margin: 16px 0 0; color: var(--muted-dark); font-size: .78rem; }

.section-area { background: var(--surface); }
.area-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 90px; }
.area-grid > div > p:not(.eyebrow) { max-width: 640px; color: var(--muted); }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; }
.area-tags li { padding: 8px 11px; border: 1px solid #3c443d; color: #d9ded9; font-family: var(--mono); font-size: .7rem; }
.pickup-card { padding: 32px; border: 1px solid #414941; border-top: 3px solid var(--accent); background: #0b0e0c; }
.pickup-label { margin: 0 0 24px; color: var(--accent); font-family: var(--mono); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.pickup-card ol { display: grid; gap: 18px; margin: 0 0 28px; padding: 0; list-style: none; }
.pickup-card li { display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 10px; color: #c5cbc5; font-size: .88rem; }
.pickup-card li span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--accent); font-family: var(--mono); font-size: .65rem; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line-light); }
details { border-bottom: 1px solid var(--line-light); }
summary { position: relative; padding: 22px 48px 22px 0; cursor: pointer; font-weight: 750; list-style: none; }
summary:focus-visible { outline: 3px solid var(--accent-dark); outline-offset: 4px; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; right: 8px; color: var(--accent-dark); content: "+"; font-family: var(--mono); font-size: 1.25rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 720px; margin: -4px 0 24px; color: var(--muted-dark); }

.final-cta { padding-block: 76px; border-top: 1px solid #303630; background: #0e110f; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-actions { display: flex; align-items: center; gap: 22px; }
.phone-link { min-height: 44px; display: inline-flex; align-items: center; font-family: var(--mono); font-size: .9rem; text-decoration-color: var(--accent); text-underline-offset: 6px; }

.site-footer { padding: 66px 0 24px; color: #c4cac4; background: #060706; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3,1fr); gap: 48px; }
.footer-grid img { width: 190px; }
.footer-grid p { max-width: 300px; color: #7e867f; font-size: .82rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid strong { margin-bottom: 8px; color: var(--white); font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { min-height: 30px; color: #8e968f; font-size: .8rem; text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 50px; padding-top: 20px; border-top: 1px solid #202420; color: #697069; font-family: var(--mono); font-size: .64rem; }
.mobile-contact-bar { display: none; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .diagnostic-panel { width: min(600px,100%); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 330px; }
  .process-layout, .faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .process-intro { position: static; }
  .area-grid { grid-template-columns: 1fr; gap: 54px; }
  .pickup-card { max-width: 620px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 700px) {
  :root { --shell: min(100% - 28px, 1180px); }
  body { padding-bottom: 57px; }
  .header-inner { min-height: 66px; }
  .brand img { width: 168px; }
  .header-cta { padding: 8px 10px; font-size: .7rem; }
  .hero-grid { min-height: auto; padding: 64px 0 84px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .diagnostic-panel { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div, .proof-grid div:first-child { min-height: 84px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .section { padding-block: 72px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 360px; }
  .process-layout, .faq-grid { gap: 38px; }
  .process-list li { grid-template-columns: 38px 1fr; }
  .area-grid { gap: 38px; }
  .pickup-card { padding: 24px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .final-actions { width: 100%; align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 0;
    border-top: 1px solid #394238;
    background: rgba(6,7,6,.97);
    box-shadow: 0 -8px 24px rgba(0,0,0,.25);
  }
  .mobile-contact-bar a {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-contact-bar a + a { color: var(--ink); background: var(--accent); }
  .mobile-contact-bar span { color: var(--accent); font-family: var(--mono); }
  .mobile-contact-bar a + a span { color: var(--ink); }
}

@media (max-width: 390px) {
  .header-inner { gap: 12px; }
  .brand img { width: 150px; }
  .header-cta { min-width: 0; padding-inline: 8px; font-size: .66rem; }
  .service-card { padding: 23px; }
  .area-tags li { font-size: .64rem; }
}

.legal-copy { max-width: 780px; }
.legal-copy h1, .not-found h1 {
  margin: 0 0 30px;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.legal-copy h2 { margin: 40px 0 8px; font-size: 1.28rem; }
.legal-copy p { color: var(--muted-dark); }
.legal-copy a:not(.text-link) { color: var(--ink); text-decoration-color: var(--accent-dark); text-underline-offset: 4px; }
.legal-back { color: var(--ink); }
.not-found { min-height: 100vh; display: grid; place-items: center; background: var(--ink); }
.not-found-inner { max-width: 760px; padding-block: 70px; }
.not-found-inner > img { margin-bottom: 80px; }
.not-found-inner > p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
