:root {
  color-scheme: dark;
  --site-width: 1440px;
  --bg: #070908;
  --surface: #101514;
  --surface-2: #151b1a;
  --text: #f3f7f4;
  --muted: #9ba8a1;
  --soft: #d7eee2;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #5cf08a;
  --accent-2: #71c7ff;
  --warning: #ffd36b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M6 3l15 11-7 1.4 4.4 6.8-3.6 2.2-4.2-6.7L6 23V3z' fill='%235cf08a' stroke='%2304100a' stroke-width='1.6'/%3E%3C/svg%3E") 6 3, auto;
}

a,
button,
summary,
.button,
.nav-group,
.nav-panel a {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Ccircle cx='15' cy='15' r='7' fill='%235cf08a' fill-opacity='0.28' stroke='%235cf08a' stroke-width='2'/%3E%3Ccircle cx='15' cy='15' r='2.4' fill='%23f3f7f4'/%3E%3C/svg%3E") 15 15, pointer;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(92, 240, 138, 0.18), transparent 30rem),
    radial-gradient(circle at 86% 8%, rgba(113, 199, 255, 0.16), transparent 30rem),
    linear-gradient(180deg, #080b0a 0%, #07100c 38%, #080908 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.nav-cta,
.button {
  border-radius: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(92, 240, 138, 0.35);
  background: linear-gradient(135deg, rgba(92, 240, 138, 0.18), rgba(113, 199, 255, 0.12));
  color: var(--accent);
  font-size: 0.78rem;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(16, 21, 20, 0.72);
}

.nav a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
}

.nav-group > a {
  display: inline-flex;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 40;
  display: none;
  width: min(680px, calc(100vw - 40px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 13, 12, 0.97);
  box-shadow: var(--shadow);
}

.industries-panel {
  width: min(520px, calc(100vw - 40px));
}

.nav-group:hover .nav-panel,
.nav-group:focus-within .nav-panel {
  display: grid;
}

.nav-panel a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  line-height: 1.25;
}

.nav-panel a:hover {
  border-color: rgba(92, 240, 138, 0.3);
  background: rgba(92, 240, 138, 0.08);
}

.nav a:hover,
.nav-cta:hover {
  color: var(--text);
}

.nav-cta {
  border: 1px solid rgba(92, 240, 138, 0.34);
  background: rgba(92, 240, 138, 0.08);
  color: var(--soft);
}

main {
  overflow: hidden;
}

.hero,
.page-hero,
.section,
.cta,
.logo-strip,
.error-page {
  width: min(var(--site-width), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 5vw, 86px);
  min-height: calc(100vh - 76px);
  padding: 52px 0 76px;
}

.page-hero {
  display: grid;
  align-content: end;
  min-height: 54vh;
  padding: 84px 0 54px;
}

.page-hero.detail-hero {
  min-height: 62vh;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 8vw, 7.7rem);
  line-height: 0.91;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 13ch;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.lead,
.section-heading p,
.cta p,
.service-card p,
.timeline-item p,
.detail-panel p,
.faq-list p,
.value-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: var(--accent);
  color: #04100a;
  box-shadow: 0 16px 45px rgba(92, 240, 138, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-metrics div {
  min-width: 0;
  padding: 18px;
  background: rgba(16, 21, 20, 0.82);
}

.hero-metrics strong {
  display: block;
  font-size: 1.45rem;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: 12% 9%;
  z-index: -1;
  content: "";
  border-radius: 999px;
  background: rgba(92, 240, 138, 0.18);
  filter: blur(70px);
}

.hero-visual img {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.logo-strip span {
  display: grid;
  min-height: 66px;
  place-items: center;
  background: rgba(16, 21, 20, 0.72);
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.section {
  padding: 118px 0 0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 560px;
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  color: var(--text);
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 27, 26, 0.88), rgba(12, 16, 15, 0.88));
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(92, 240, 138, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(21, 27, 26, 0.94), rgba(12, 16, 15, 0.92));
}

.service-card:hover {
  border-color: rgba(92, 240, 138, 0.36);
  transform: translateY(-2px);
}

.link-card strong {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent);
  font-size: 0.9rem;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid rgba(92, 240, 138, 0.28);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 20, 0.72);
}

.timeline-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(113, 199, 255, 0.12);
  color: var(--accent-2);
  font-weight: 900;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 20, 0.78);
}

.detail-panel h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  color: var(--accent);
  content: "+";
  font-weight: 900;
}

.platform-band {
  padding-bottom: 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.platform-grid div,
.platform-grid a {
  display: block;
  min-height: 170px;
  padding: 24px;
  background: rgba(16, 21, 20, 0.8);
  color: var(--text);
  text-decoration: none;
  transition: background 160ms ease;
}

.platform-grid a:hover {
  background: rgba(21, 31, 28, 0.94);
}

.platform-grid span,
.platform-grid a span {
  display: block;
  margin-bottom: 22px;
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.platform-grid strong,
.platform-grid a strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.45;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 20, 0.72);
  color: var(--soft);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 20, 0.78);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 20, 0.78);
}

.value-grid p {
  margin-bottom: 0;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  margin-top: 118px;
  margin-bottom: 46px;
  padding: 34px;
  border: 1px solid rgba(92, 240, 138, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 240, 138, 0.13), transparent 45%),
    rgba(16, 21, 20, 0.9);
}

.cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.cta p {
  max-width: 700px;
  margin-bottom: 0;
}

.error-page {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: 48px 0;
}

.error-page section {
  max-width: 720px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-panel {
    position: fixed;
    top: 118px;
    left: 16px;
  }

  .hero,
  .split,
  .cta,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    max-width: 12ch;
  }

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

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .page-hero,
  .section,
  .cta,
  .logo-strip,
  .error-page {
    width: min(100% - 24px, var(--site-width));
  }

  .brand {
    font-size: 0.95rem;
  }

  .nav-cta {
    display: none;
  }

  .nav a {
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .hero {
    gap: 36px;
    padding-bottom: 48px;
  }

  h1 {
    max-width: none;
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-metrics,
  .service-grid,
  .platform-grid,
  .logo-strip,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    min-height: 0;
  }

  .service-card {
    min-height: auto;
  }

  .section {
    padding-top: 84px;
  }

  .cta {
    margin-top: 84px;
    padding: 24px;
  }

  .cta .button {
    width: 100%;
  }
}
