:root {
  --black: #03040a;
  --panel: rgba(8, 10, 24, 0.78);
  --panel-strong: rgba(12, 14, 32, 0.92);
  --text: #f5f7ff;
  --muted: #b8bfd4;
  --purple: #a33cff;
  --purple-deep: #6b24ff;
  --blue: #00b7ff;
  --blue-deep: #2268ff;
  --line: rgba(163, 60, 255, 0.42);
  --glow-purple: 0 0 28px rgba(163, 60, 255, 0.62);
  --glow-blue: 0 0 28px rgba(0, 183, 255, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(163, 60, 255, 0.28), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(0, 183, 255, 0.22), transparent 32%),
    linear-gradient(180deg, #05060d 0%, #02030a 58%, #060716 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    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: 58px 58px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(3, 4, 10, 0.82);
  border-bottom: 1px solid rgba(0, 183, 255, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--glow-purple), var(--glow-blue);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover,
.header-action:hover {
  color: var(--blue);
}

.header-action {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(760px, calc(100svh - 76px), 900px);
  padding-block: clamp(24px, 4vh, 54px) clamp(64px, 8vh, 96px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 4, 10, 0.86) 0%, rgba(3, 4, 10, 0.58) 44%, rgba(3, 4, 10, 0.1) 100%),
    url("mm-hero-user.png") right center / auto 100% no-repeat;
  background-repeat: no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  content: "";
  background: linear-gradient(180deg, transparent, #03040a);
}

.hero-media {
  display: none;
}

.hero-content {
  align-self: center;
  width: min(780px, calc(100% - 40px));
  margin-left: clamp(20px, 5vw, 74px);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.hero-brand img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(163, 60, 255, 0.8)) drop-shadow(0 0 22px rgba(0, 183, 255, 0.58));
}

.hero-brand span {
  display: block;
  color: #f6f8ff;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.hero-brand small {
  display: block;
  margin-top: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(74px, 11vw, 148px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(0, 183, 255, 0.26);
}

.hero h1 span {
  display: block;
}

.hero-service {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--purple);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-service strong {
  display: block;
  background: linear-gradient(90deg, #ffffff, var(--blue));
  background-clip: text;
  color: transparent;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(245, 247, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
}

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

.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #ffffff;
  box-shadow: var(--glow-purple);
}

.button.secondary {
  border-color: rgba(0, 183, 255, 0.55);
  color: var(--text);
  background: rgba(3, 4, 10, 0.54);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 clamp(18px, 4vw, 54px) clamp(34px, 5vw, 62px);
}

.intro div {
  min-height: 138px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid rgba(0, 183, 255, 0.34);
  border-radius: 8px;
  box-shadow: inset 0 0 34px rgba(163, 60, 255, 0.08);
}

.stat {
  display: block;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  background-clip: text;
  color: transparent;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.stat-label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.banner-line {
  margin: 0 clamp(18px, 4vw, 54px);
  padding: 18px;
  background: rgba(3, 4, 10, 0.72);
  border: 1px solid rgba(163, 60, 255, 0.9);
  border-radius: 10px;
  box-shadow: var(--glow-purple), inset 0 0 28px rgba(0, 183, 255, 0.08);
  text-align: center;
}

.banner-line p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.banner-line span {
  display: block;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  background-clip: text;
  color: transparent;
}

.section {
  padding: clamp(66px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.split,
.process {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 108px;
}

.section h2,
.cta h2 {
  margin: 0;
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-copy p:not(.eyebrow),
.cta p {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.work-item,
.steps article {
  background: var(--panel);
  border: 1px solid rgba(163, 60, 255, 0.45);
  border-radius: 8px;
  box-shadow: inset 0 0 40px rgba(0, 183, 255, 0.05), 0 0 24px rgba(0, 0, 0, 0.34);
}

.service-card {
  min-height: 238px;
  padding: 26px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 183, 255, 0.66);
  border-radius: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  box-shadow: var(--glow-blue);
}

h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
  text-transform: uppercase;
}

.service-card h3:nth-child(2),
.steps h3 {
  color: var(--purple);
}

.service-card p,
.work-item p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.work {
  background: linear-gradient(180deg, rgba(5, 6, 13, 0.5), rgba(8, 10, 24, 0.68));
  border-block: 1px solid rgba(0, 183, 255, 0.16);
}

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

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

.work-item {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.work-item img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  position: absolute;
  inset: 0;
  object-fit: cover;
  background: #070b18;
  filter: saturate(1.2) contrast(1.08);
}

.work-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3, 4, 10, 0.88) 0%, rgba(3, 4, 10, 0.58) 30%, rgba(3, 4, 10, 0.1) 100%);
  pointer-events: none;
}

.work-item h3,
.work-item p {
  position: relative;
  z-index: 1;
  padding-inline: 22px;
}

.work-item h3 {
  margin-top: 24px;
  padding-top: 0;
  color: var(--blue);
  text-shadow: 0 0 20px rgba(0, 183, 255, 0.72);
}

.work-item p {
  padding-bottom: 24px;
  color: #8fe6ff;
  font-weight: 800;
}

.projects {
  padding-top: clamp(62px, 8vw, 96px);
}

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

.project-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(0, 183, 255, 0.34);
  border-radius: 8px;
  box-shadow: inset 0 0 42px rgba(163, 60, 255, 0.08), 0 0 30px rgba(0, 0, 0, 0.34);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050714;
  border-bottom: 1px solid rgba(0, 183, 255, 0.24);
}

.project-card-wide {
  grid-column: 1 / -1;
}

.project-card-wide img {
  aspect-ratio: 21 / 9;
  object-position: center 42%;
}

.project-copy {
  padding: 24px;
}

.project-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.project-copy h3 {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  text-shadow: 0 0 18px rgba(0, 183, 255, 0.38);
}

.project-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.steps article {
  padding: 24px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 183, 255, 0.7);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 950;
  box-shadow: var(--glow-blue);
}

.cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  margin: 0 clamp(18px, 5vw, 70px) clamp(30px, 5vw, 64px);
  padding: clamp(40px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(163, 60, 255, 0.14), rgba(0, 183, 255, 0.12)),
    var(--panel-strong);
  border: 1px solid rgba(163, 60, 255, 0.76);
  border-radius: 10px;
  box-shadow: var(--glow-purple);
}

.cta p {
  color: rgba(245, 247, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(245, 247, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 183, 255, 0.38);
  border-radius: 8px;
  background: rgba(3, 4, 10, 0.72);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 247, 255, 0.38);
}

.contact-form button {
  justify-self: start;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(245, 247, 255, 0.72);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid rgba(0, 183, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: var(--glow-purple), var(--glow-blue);
}

.footer-link {
  color: var(--blue);
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(0, 183, 255, 0.62);
}

.footer-link:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-block: 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 4, 10, 0.58), rgba(3, 4, 10, 0.95) 72%),
      url("mm-hero-user.png") center top / cover no-repeat;
    background-repeat: no-repeat;
  }

  .hero-content {
    align-self: end;
    margin: 0 20px 44px;
  }

  .hero-brand {
    margin-bottom: 28px;
  }

  .hero-brand img {
    width: 86px;
    height: 86px;
  }

  .intro,
  .split,
  .process,
  .cta,
  .work-grid,
  .project-grid,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 78px);
  }

  .eyebrow {
    font-size: 26px;
    letter-spacing: 5px;
  }

  .button {
    width: 100%;
  }

  .intro,
  .section,
  .cta {
    padding-inline: 16px;
  }

  .cta {
    margin: 0 16px 34px;
  }

  .site-footer {
    flex-direction: column;
  }
}
