:root {
  --bg: #101412;
  --bg-soft: #171d1a;
  --surface: #ffffff;
  --surface-soft: #f3f6f4;
  --ink: #101412;
  --muted: #65716a;
  --line: rgba(16, 20, 18, 0.12);
  --white: #ffffff;
  --green: #20d36b;
  --green-dark: #0d8f45;
  --blue: #2f8cff;
  --amber: #ffb000;
  --shadow: 0 24px 70px rgba(6, 8, 7, 0.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--surface);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(calc(100% - 28px), 1220px);
  height: 72px;
  margin: 14px auto 0;
  padding: 0 14px 0 18px;
  color: var(--white);
  background: rgba(12, 15, 14, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  font-weight: 800;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}

.brand-text strong {
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
}

.brand-text span {
  color: var(--green);
  font-size: 22px;
  font-weight: 950;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  color: #07110c;
  background: var(--green);
  font-size: 14px;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn svg,
.header-cta svg,
.contact-list svg,
.hero-strip svg,
.service-card svg,
.map-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 88svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 138px 24px 34px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 0.34), rgba(7, 10, 9, 0.04)),
    url("assets/hero-dk-tech.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(6, 8, 7, 0.94) 0%,
      rgba(6, 8, 7, 0.72) 34%,
      rgba(6, 8, 7, 0.22) 78%
    ),
    linear-gradient(0deg, rgba(6, 8, 7, 0.92) 0%, rgba(6, 8, 7, 0) 42%),
    radial-gradient(circle at 24% 22%, rgba(32, 211, 107, 0.2), transparent 32%);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-bottom: 92px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 88px;
  line-height: 0.92;
  font-weight: 950;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn-primary {
  color: #061009;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(32, 211, 107, 0.24);
}

.btn-primary:hover {
  background: #35ea80;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(calc(100% - 48px), var(--max));
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-strip a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 64px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(9, 12, 11, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.hero-strip a:hover {
  color: var(--white);
  background: rgba(32, 211, 107, 0.14);
}

.section {
  padding: 92px 24px;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 52px;
  align-items: end;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.02;
}

.section-heading p:last-child,
.split-copy p,
.contact-copy p,
.service-card p,
.proof-item p,
.timeline p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading p:last-child {
  margin: 0;
  font-size: 17px;
}

.services-section {
  border-top: 1px solid var(--line);
  background: #fbfcfb;
}

.service-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  border-top: 1px solid var(--line);
}

.service-card,
.proof-item,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  min-height: auto;
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-card svg {
  width: 46px;
  height: 46px;
  padding: 10px;
  color: #07110c;
  background: rgba(32, 211, 107, 0.16);
  border: 1px solid rgba(32, 211, 107, 0.34);
  border-radius: 8px;
}

.service-card:nth-child(2n) svg {
  background: rgba(47, 140, 255, 0.12);
  border-color: rgba(47, 140, 255, 0.24);
}

.service-card:nth-child(3n) svg {
  background: rgba(255, 176, 0, 0.16);
  border-color: rgba(255, 176, 0, 0.28);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.proof-item strong,
.timeline h3 {
  margin: 18px 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.service-card p,
.proof-item p,
.timeline p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: 56px;
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto;
  background: var(--surface);
}

.split-copy,
.contact-copy {
  min-width: 0;
}

.split-copy p {
  font-size: 18px;
}

.proof-grid {
  display: grid;
  gap: 0;
  padding: 10px 26px;
  color: var(--white);
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.proof-item {
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
}

.proof-item:last-child {
  border-bottom: 0;
}

.proof-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  color: #07110c;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.proof-item strong {
  display: block;
}

.proof-item p {
  color: rgba(255, 255, 255, 0.66);
}

.process-section {
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c120f;
}

.process-section .section-heading h2,
.process-section .timeline h3 {
  color: var(--white);
}

.process-section .section-heading p:last-child,
.process-section .timeline p {
  color: rgba(255, 255, 255, 0.66);
}

.timeline {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline article {
  min-height: auto;
  padding: 30px 30px 34px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #07110c;
  background: var(--green);
  border-radius: 8px;
  font-weight: 950;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: stretch;
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.contact-copy p {
  font-size: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.contact-actions .btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.contact-actions .btn-secondary:hover {
  background: var(--surface-soft);
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-list svg {
  margin-top: 3px;
  color: var(--green-dark);
}

.contact-list a {
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.map-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  opacity: 1;
  filter: saturate(0.95) contrast(1.04);
  z-index: 1;
}

.map-fallback {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  z-index: 2;
  pointer-events: none;
}

.map-route {
  display: none;
}

.route-a {
  left: -12%;
  right: 18%;
  top: 34%;
  transform: rotate(-12deg);
}

.route-b {
  left: 26%;
  right: -10%;
  bottom: 30%;
  background: rgba(32, 211, 107, 0.22);
  transform: rotate(24deg);
}

.map-pin-card {
  position: static;
  display: grid;
  gap: 5px;
  width: min(280px, 100%);
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 20, 18, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 20, 18, 0.18);
  backdrop-filter: blur(10px);
}

.map-pin-card svg {
  width: 28px;
  height: 28px;
  color: var(--green-dark);
}

.map-pin-card strong {
  font-size: 18px;
}

.map-pin-card span {
  color: var(--muted);
  font-size: 14px;
}

.map-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(16, 20, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--bg);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a:last-child {
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 92px;
    z-index: 30;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(12, 15, 14, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    min-height: 52px;
    padding: 0 14px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-strip,
  .section-heading,
  .split-section,
  .contact-section,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    position: static;
    width: min(100%, var(--max));
    margin: 10px auto 0;
    transform: none;
  }

  .hero-content {
    padding-bottom: 20px;
  }

  .section-heading {
    gap: 18px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    height: 64px;
    margin-top: 10px;
    padding: 0 10px 0 12px;
  }

  .hero {
    min-height: 82svh;
    padding: 112px 18px 24px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(6, 8, 7, 0.94) 0%,
        rgba(6, 8, 7, 0.76) 54%,
        rgba(6, 8, 7, 0.38) 100%
      ),
      linear-gradient(0deg, rgba(6, 8, 7, 0.92) 0%, rgba(6, 8, 7, 0) 44%);
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn,
  .header-cta {
    width: 100%;
    min-height: 52px;
  }

  .section {
    padding: 64px 18px;
  }

  .section-heading h2,
  .split-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline article {
    min-height: auto;
    padding: 24px;
  }

  .split-section,
  .contact-section {
    gap: 34px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
