:root {
  --purple: #7b26d8;
  --purple-deep: #4d138f;
  --ink: #09080d;
  --text: #1e1b25;
  --muted: #6c6675;
  --line: #e8e2ef;
  --soft: #f7f4fb;
  --white: #ffffff;
  --teal: #0f8b8d;
  --shadow: 0 18px 45px rgba(16, 10, 25, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(232, 226, 239, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  color: #30283b;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 13px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--purple-deep);
  background: #f0e7fb;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 72px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 5, 9, 0.88) 0%, rgba(24, 10, 42, 0.66) 48%, rgba(8, 8, 12, 0.24) 100%),
    linear-gradient(0deg, rgba(5, 4, 8, 0.84), rgba(5, 4, 8, 0.08) 45%);
}

.hero-media {
  z-index: -2;
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9c2ff;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 5.4rem;
  line-height: 0.96;
}

h2 {
  color: var(--ink);
  font-size: 3.2rem;
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 14px;
  color: #f3ecff;
  font-size: 1.42rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 720px;
  color: #eee8f7;
  font-size: 1.03rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
  padding: 13px 20px;
}

.button.primary {
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 12px 28px rgba(123, 38, 216, 0.34);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.section-pad {
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.split p:last-child {
  color: var(--muted);
  font-size: 1.12rem;
}

.soft-band {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 242px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(24, 15, 35, 0.04);
}

.service-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.why-grid p,
.contact-grid p {
  color: var(--muted);
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.check-grid span {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 14px 12px 42px;
  font-weight: 750;
}

.check-grid span::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(15, 139, 141, 0.12);
}

.black-band {
  color: var(--white);
  background: linear-gradient(135deg, #070509 0%, #181020 54%, #2b104f 100%);
}

.black-band h2,
.black-band strong {
  color: var(--white);
}

.section-kicker.light {
  color: #d9c2ff;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
}

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

.why-grid div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.why-grid p {
  color: #d8d1e1;
  margin: 10px 0 0;
}

.industry-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.industry-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 12px;
}

.industry-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 12px 16px;
  color: #332a3d;
  font-weight: 800;
}

.contact-band {
  background:
    linear-gradient(rgba(247, 244, 251, 0.92), rgba(247, 244, 251, 0.92)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1700&q=82") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-style: normal;
  padding: 28px;
}

.contact-card strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  width: fit-content;
  color: var(--purple-deep);
  font-weight: 850;
}

.footer {
  color: #d7d0df;
  background: var(--ink);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: 8px;
    padding: 12px;
  }

  .split,
  .image-split,
  .why-layout,
  .industry-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.45rem;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .brand span {
    max-width: 160px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 126px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 5, 9, 0.92) 0%, rgba(24, 10, 42, 0.74) 100%),
      linear-gradient(0deg, rgba(5, 4, 8, 0.86), rgba(5, 4, 8, 0.16) 45%);
  }

  .section-pad {
    padding: 68px 0;
  }

  .services-grid,
  .why-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
