:root {
  --ink: #050505;
  --ink-2: #0b0b0b;
  --ink-3: #111111;
  --surface: #f5f6f6;
  --surface-2: #eceeee;
  --white: #ffffff;
  --muted: #a5aaa6;
  --text: #202421;
  --green: #00ff00;
  --green-soft: rgba(0, 255, 0, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: #d8dcda;
  --radius: 24px;
  --radius-sm: 15px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--green); color: var(--ink); }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--green); color: var(--ink);
  padding: 10px 14px; font-weight: 800; text-decoration: none; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: 82px;
  border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(5,5,5,.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; width: min(240px, 36vw); text-decoration: none; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; color: #f4f5f4; font-size: .92rem; font-weight: 700; }
.primary-nav a { text-decoration: none; opacity: .82; transition: opacity .2s ease, color .2s ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { opacity: 1; color: var(--green); }
.primary-nav .nav-cta {
  opacity: 1; color: var(--ink); background: var(--green); border-radius: 999px; padding: 11px 17px;
}
.primary-nav .nav-cta:hover, .primary-nav .nav-cta:focus-visible { color: var(--ink); transform: translateY(-1px); }
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; transition: .2s ease; }

.section-dark { color: var(--white); background: var(--ink); }
.hero { position: relative; overflow: hidden; min-height: 760px; padding: 178px 0 96px; }
.grid-glow {
  position: absolute; inset: 0; pointer-events: none; opacity: .48;
  background:
    radial-gradient(circle at 75% 42%, rgba(0,255,0,.18), transparent 25%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero::after {
  content: ""; position: absolute; width: 360px; height: 360px; right: -180px; top: 180px; border-radius: 50%;
  border: 1px solid rgba(0,255,0,.22); box-shadow: 0 0 90px rgba(0,255,0,.06);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 72px; }
.eyebrow, .kicker { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; font-size: .73rem; }
.eyebrow { color: #d9dcd9; display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 34px; height: 2px; background: var(--green); box-shadow: 0 0 14px rgba(0,255,0,.8); }
.kicker { color: #404641; }
.hero h1 {
  margin: 0; max-width: 780px; font-size: clamp(3.3rem, 7.2vw, 6.9rem); line-height: .92; letter-spacing: -.065em; font-weight: 700;
}
.hero h1 strong { color: var(--green); font-weight: 700; }
.hero-lead { max-width: 680px; margin: 28px 0 0; color: #c4c8c5; font-size: clamp(1.08rem, 1.7vw, 1.28rem); line-height: 1.65; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 13px 21px; border-radius: 999px;
  text-decoration: none; font-weight: 900; font-size: .93rem; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--green); color: var(--ink); box-shadow: 0 8px 30px rgba(0,255,0,.15); }
.button-primary:hover, .button-primary:focus-visible { box-shadow: 0 12px 34px rgba(0,255,0,.26); }
.button-outline { border: 1px solid #2e342f; background: transparent; color: var(--ink); }
.button-outline:hover, .button-outline:focus-visible { background: var(--ink); color: var(--white); }
.button-large { min-height: 58px; padding-inline: 27px; }
.text-link { color: var(--white); text-decoration: none; font-weight: 800; }
.text-link span { color: var(--green); margin-left: 5px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 38px; }
.hero-chips span { border: 1px solid rgba(255,255,255,.13); color: #aeb2af; padding: 7px 11px; border-radius: 999px; font-size: .76rem; font-weight: 800; }

.hero-visual { position: relative; min-height: 500px; isolation: isolate; }
.screen-card { position: absolute; border-radius: 22px; border: 1px solid rgba(255,255,255,.18); background: #121412; box-shadow: var(--shadow); overflow: hidden; }
.screen-main { width: 90%; right: 0; top: 40px; transform: rotate(2deg); }
.screen-bar { height: 49px; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; gap: 7px; padding: 0 15px; color: #727872; font-size: .68rem; }
.screen-bar i { width: 7px; height: 7px; border-radius: 50%; background: #444944; }
.screen-bar i:first-child { background: var(--green); }
.screen-bar span { margin-left: 8px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.screen-content { min-height: 360px; padding: 46px 40px; position: relative; background: linear-gradient(135deg,#0c0e0c,#171b17); }
.screen-content::after { content: ""; position: absolute; inset: auto -50px -80px auto; width: 220px; height: 220px; background: var(--green); filter: blur(1px); border-radius: 50%; opacity: .86; }
.mini-label { color: var(--green); font-size: .65rem; letter-spacing: .17em; font-weight: 900; }
.mini-title { margin-top: 15px; color: var(--white); font-weight: 800; font-size: clamp(2rem, 4vw, 3.4rem); line-height: .98; letter-spacing: -.055em; }
.mini-button { width: 106px; height: 28px; border-radius: 999px; background: var(--green); margin-top: 26px; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 45px; width: 78%; }
.mini-grid div { height: 58px; border: 1px solid rgba(255,255,255,.11); border-radius: 9px; background: rgba(255,255,255,.03); }
.orbit { position: absolute; z-index: -1; border: 1px solid rgba(0,255,0,.2); border-radius: 50%; }
.orbit-a { width: 360px; height: 360px; top: 10px; left: 80px; }
.orbit-b { width: 230px; height: 230px; bottom: -20px; left: 15px; border-color: rgba(255,255,255,.08); }

.service-intro { padding: 98px 0 48px; background: var(--surface); }
.two-col-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: end; border-bottom: 1px solid var(--line-light); padding-bottom: 44px; }
.two-col-heading h2, .section-heading h2, .signs-copy h2, .contact-card h2 {
  margin: 0; font-size: clamp(2.35rem, 4.6vw, 4.7rem); line-height: .98; letter-spacing: -.055em; color: var(--ink); max-width: 900px;
}
.two-col-heading > p { margin: 0; font-size: 1.08rem; color: #5b615c; max-width: 560px; }

.web-services { padding: 62px 0 112px; }
.section-heading { max-width: 740px; }
.section-heading > p:last-child { color: #666d67; font-size: 1.05rem; margin: 21px 0 0; max-width: 650px; }
.service-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  min-height: 310px; padding: 28px; background: var(--white); border: 1px solid #e0e3e1; border-radius: var(--radius); position: relative;
  display: flex; flex-direction: column; align-items: flex-start; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(0,0,0,.08); border-color: #c7cbc8; }
.service-card-featured { grid-column: span 2; flex-direction: row; gap: 32px; min-height: 310px; background: var(--ink); border-color: var(--ink); color: var(--white); }
.service-card-featured .icon-box { flex: 0 0 auto; background: var(--green); border-color: var(--green); color: var(--ink); }
.service-card-featured h3 { color: var(--white); font-size: 2rem; }
.service-card-featured p:not(.card-number) { color: #aeb3af; max-width: 560px; }
.service-card-featured .card-number { color: #6e756f; }
.corner-mark { position: absolute; right: 24px; bottom: 18px; color: var(--green); font-size: 2rem; }
.icon-box { width: 48px; height: 48px; border: 1px solid #cfd4d0; border-radius: 13px; display: grid; place-items: center; margin-bottom: 32px; color: var(--ink); }
.icon-box svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card-number { margin: 0 0 8px; color: #9ba19c; font-size: .69rem; font-weight: 900; letter-spacing: .14em; }
.service-card h3 { margin: 0; font-size: 1.35rem; letter-spacing: -.035em; color: var(--ink); }
.service-card > p:last-child, .service-card div > p:last-child { margin: 14px 0 0; color: #707671; font-size: .94rem; }

.signs-section { padding: 112px 0; background: #e9ecea; border-top: 1px solid #dfe3df; border-bottom: 1px solid #d8ddda; overflow: hidden; }
.signs-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.signs-copy > p:not(.kicker) { margin: 24px 0 0; color: #5f655f; max-width: 580px; }
.check-list { list-style: none; margin: 34px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.check-list li { font-weight: 800; color: #252a26; font-size: .94rem; }
.check-list span { color: var(--ink); width: 24px; height: 24px; display: inline-grid; place-items: center; margin-right: 7px; background: var(--green); border-radius: 50%; font-size: .76rem; }
.sign-showcase { transform: rotate(1deg); }
.showcase-panel { border-radius: 22px; background: var(--ink); overflow: hidden; box-shadow: 0 28px 65px rgba(0,0,0,.13); position: relative; }
.showcase-panel p { margin: 0; color: #b5bbb6; font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.panel-building { min-height: 270px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; }
.building-lines { position: absolute; inset: 0; background: linear-gradient(120deg,transparent 46%,rgba(255,255,255,.05) 47%,transparent 48%), linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: auto, 70px 100%; }
.wall-sign { position: absolute; top: 55px; left: 50%; transform: translateX(-50%); width: 70%; border: 1px solid rgba(255,255,255,.22); padding: 18px 22px; text-align: center; background: rgba(255,255,255,.035); box-shadow: 0 0 50px rgba(0,255,0,.08); }
.wall-sign span { color: var(--white); font-size: 1.4rem; font-weight: 300; letter-spacing: .04em; }
.wall-sign strong { color: var(--green); font-size: 1.4rem; margin-left: 5px; }
.showcase-row { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; margin-top: 14px; }
.panel-vehicle, .panel-yard { min-height: 210px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.panel-vehicle svg { width: 100%; color: #eef0ee; margin-top: 2px; }
.panel-yard { background: var(--green); }
.panel-yard p { color: #101410; }
.yard-sign { align-self: center; margin-top: 16px; width: 130px; padding: 14px; background: var(--white); color: var(--ink); text-align: center; box-shadow: 0 9px 25px rgba(0,0,0,.12); }
.yard-sign b, .yard-sign strong, .yard-sign small { display: block; line-height: 1; }
.yard-sign b { font-size: .7rem; letter-spacing: .16em; }
.yard-sign strong { font-size: 1.35rem; margin: 4px 0; }
.yard-sign small { font-size: .56rem; letter-spacing: .12em; }
.stakes { height: 47px; width: 2px; background: #111; position: absolute; left: 50%; top: 113px; box-shadow: 40px 0 0 #111; transform: translateX(-20px); opacity: .9; }

.care-section { background: var(--ink); color: var(--white); padding: 112px 0; }
.care-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.care-section .kicker { color: var(--green); }
.care-section .section-heading h2 { color: var(--white); }
.care-section .section-heading > p:last-child { color: #979d98; }
.care-list { border-top: 1px solid var(--line-dark); }
.care-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line-dark); }
.care-item > span { color: var(--green); font-size: .73rem; font-weight: 900; letter-spacing: .12em; }
.care-item h3 { margin: 0; font-size: 1.2rem; }
.care-item p { margin: 7px 0 0; color: #969c97; font-size: .94rem; }

.process-section { padding: 110px 0; background: var(--white); }
.section-heading-centered { margin: 0 auto; text-align: center; }
.process-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.process-step { min-height: 245px; padding: 26px; border-right: 1px solid var(--line-light); background: #fbfcfb; }
.process-step:last-child { border-right: 0; }
.process-step b { color: var(--green); background: var(--ink); display: inline-grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; font-size: .72rem; }
.process-step h3 { margin: 48px 0 10px; font-size: 1.08rem; letter-spacing: -.025em; }
.process-step p { margin: 0; color: #747a75; font-size: .88rem; }

.contact-section { padding: 0 0 96px; background: var(--white); }
.contact-card {
  min-height: 385px; padding: clamp(34px, 5vw, 68px); border-radius: 30px; background: var(--ink); color: var(--white); display: grid;
  grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: end; position: relative; overflow: hidden;
}
.contact-card::before { content: ""; position: absolute; width: 420px; height: 420px; background: var(--green); border-radius: 50%; right: -240px; top: -180px; opacity: .95; }
.contact-card::after { content: ""; position: absolute; width: 310px; height: 310px; border: 1px solid rgba(0,255,0,.35); border-radius: 50%; right: -50px; bottom: -210px; }
.contact-card .kicker { color: var(--green); }
.contact-card h2 { color: var(--white); max-width: 760px; font-size: clamp(2.4rem, 4.8vw, 4.6rem); position: relative; z-index: 1; }
.contact-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.email-link { color: #c7cbc8; font-size: .9rem; word-break: break-word; }
.email-link:hover { color: var(--green); }

.site-footer { background: var(--ink); color: var(--white); padding: 55px 0 28px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 42px; }
.footer-brand img { width: min(380px, 90%); }
.footer-brand p { margin: 16px 0 0; color: #858b86; max-width: 440px; font-size: .9rem; }
.footer-links { display: grid; justify-content: end; align-content: start; gap: 8px; }
.footer-links a { color: #c3c7c4; text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { grid-column: 1 / -1; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 20px; color: #6f756f; font-size: .76rem; }
.footer-bottom a { color: #9aa09b; text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { height: 74px; }
  .brand { width: 220px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; left: 20px; right: 20px; top: 66px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px;
    background: #101210; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.38);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 12px; }
  .primary-nav .nav-cta { margin-top: 6px; text-align: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 140px; }
  .hero-grid, .signs-grid, .care-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-visual { min-height: 480px; width: min(620px, 96%); margin: 0 auto; }
  .screen-main { width: 92%; }
  .two-col-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-card-featured { grid-column: span 2; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .contact-card { grid-template-columns: 1fr; align-items: start; }
  .contact-actions { align-self: end; }
}

@media (max-width: 660px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .site-header { height: 68px; }
  .brand { width: min(190px, 58vw); }
  .hero { min-height: auto; padding: 118px 0 72px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-lead { font-size: 1rem; }
  .hero-visual { min-height: 395px; width: 100%; }
  .screen-main { width: 95%; top: 20px; }
  .screen-content { min-height: 300px; padding: 34px 25px; }
  .mini-grid { width: 84%; }
  .service-intro { padding-top: 72px; }
  .web-services, .signs-section, .care-section, .process-section { padding-top: 82px; padding-bottom: 82px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-featured { grid-column: auto; min-height: 270px; }
  .service-card-featured { flex-direction: column; gap: 0; }
  .service-card-featured h3 { font-size: 1.55rem; }
  .check-list { grid-template-columns: 1fr; }
  .showcase-row { grid-template-columns: 1fr; }
  .panel-building { min-height: 235px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line-light); min-height: 205px; }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 34px; }
  .contact-card { min-height: 430px; border-radius: 24px; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
  .footer-bottom { flex-direction: column; }
}

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