: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(10px, 2vw, 24px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0, 183, 255, 0.48);
  border-radius: 8px;
  background: rgba(3, 4, 10, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  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(650px, calc(92svh - 76px), 820px);
  padding-block: clamp(22px, 4vh, 44px) clamp(56px, 7vh, 84px);
  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("assets/mm-hero-digital.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(700px, calc(100% - 40px));
  margin-left: clamp(20px, 5vw, 74px);
}

.trust-line {
  margin: 18px 0 0;
  color: rgba(245, 247, 255, 0.7);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero-brand img {
  width: 76px;
  height: 76px;
  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(20px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  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: 18px 0 0;
  color: rgba(245, 247, 255, 0.86);
  font-size: clamp(17px, 1.6vw, 20px);
}

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

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

.page-hero {
  min-height: auto;
  padding: clamp(82px, 10vw, 132px) clamp(18px, 5vw, 70px);
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 4, 10, 0.9), rgba(3, 4, 10, 0.7)),
    radial-gradient(circle at 78% 22%, rgba(0, 183, 255, 0.22), transparent 32%),
    radial-gradient(circle at 16% 28%, rgba(163, 60, 255, 0.22), transparent 34%);
}

.page-hero .hero-content {
  margin-left: 0;
  width: min(980px, 100%);
}

.page-hero h1 {
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.95;
}

.problem-grid,
.solution-grid,
.industry-grid,
.why-grid,
.detail-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.problem-grid p,
.solution-grid article,
.industry-grid article,
.why-grid article,
.detail-card,
.case-card,
.about-panel {
  margin: 0;
  padding: 24px;
  background: var(--panel);
  border: 1px solid rgba(0, 183, 255, 0.26);
  border-radius: 8px;
  box-shadow: inset 0 0 34px rgba(163, 60, 255, 0.06);
}

.statement-line {
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid rgba(163, 60, 255, 0.7);
  border-radius: 8px;
  color: #ffffff;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.solution-grid article span,
.product-kicker,
.detail-card strong {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.center-button {
  display: flex;
  width: max-content;
  margin: 30px auto 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  padding: 10px 12px;
  border: 1px solid rgba(0, 183, 255, 0.26);
  border-radius: 8px;
  color: rgba(245, 247, 255, 0.82);
  background: rgba(3, 4, 10, 0.44);
}

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

.about-panel {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.five-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.free-review {
  background: linear-gradient(180deg, rgba(3, 4, 10, 0.2), rgba(12, 14, 32, 0.66));
}

.review-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px;
}

.review-form label:nth-last-of-type(-n + 3),
.review-form button,
.review-form .form-status {
  grid-column: 1 / -1;
}

.contact-form select {
  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;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.product-highlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  background:
    radial-gradient(circle at 78% 34%, rgba(0, 183, 255, 0.18), transparent 32%),
    radial-gradient(circle at 12% 20%, rgba(163, 60, 255, 0.18), transparent 34%);
}

.product-copy p:not(.eyebrow),
.product-panel p {
  color: var(--muted);
  font-size: 18px;
}

.product-copy h2 {
  margin: 0 0 18px;
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
  text-transform: uppercase;
}

.product-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(3, 4, 10, 0.15), rgba(3, 4, 10, 0.92)),
    radial-gradient(circle at 50% 22%, rgba(163, 60, 255, 0.38), transparent 34%),
    linear-gradient(135deg, rgba(163, 60, 255, 0.18), rgba(0, 183, 255, 0.16));
  border: 1px solid rgba(0, 183, 255, 0.44);
  border-radius: 10px;
  box-shadow: var(--glow-blue);
}

.product-kicker {
  width: max-content;
  margin-bottom: auto;
  padding: 8px 12px;
  border: 1px solid rgba(163, 60, 255, 0.7);
  border-radius: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-panel h3 {
  max-width: 520px;
  color: #ffffff;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.05;
}

.example-highlight {
  padding-top: 0;
}

.example-panel {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(163, 60, 255, 0.18), rgba(0, 183, 255, 0.12)),
    rgba(5, 6, 18, 0.86);
  border: 1px solid rgba(163, 60, 255, 0.62);
  border-radius: 10px;
  box-shadow: var(--glow-purple);
}

.example-panel h2 {
  margin: 0;
  background: linear-gradient(90deg, #ffffff, var(--blue));
  background-clip: text;
  color: transparent;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
}

.example-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.example-panel .button {
  justify-self: start;
}

.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.02) 0%, rgba(3, 4, 10, 0.34) 48%, rgba(3, 4, 10, 0.88) 100%);
  pointer-events: none;
}

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

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

.work-item p {
  padding-bottom: 24px;
  color: rgba(245, 247, 255, 0.82);
}

.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: grid;
  grid-template-columns: 1fr auto 1.4fr;
  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;
}

.site-footer div,
.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer nav {
  grid-template-columns: repeat(4, max-content);
  justify-content: end;
}

.site-footer a:hover {
  color: var(--blue);
}

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

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(3, 4, 10, 0.96);
    border: 1px solid rgba(0, 183, 255, 0.3);
    border-radius: 8px;
  }

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

  .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("assets/mm-hero-digital.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,
  .product-highlight,
  .work-grid,
  .service-grid,
  .problem-grid,
  .solution-grid,
  .industry-grid,
  .why-grid,
  .detail-grid,
  .case-grid,
  .review-form,
  .five-steps,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

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

  .site-footer nav {
    grid-template-columns: 1fr 1fr;
    justify-content: start;
  }
}

@media (max-width: 1120px) {
  .header-action {
    display: none;
  }
}

@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: 12px;
    letter-spacing: 2px;
  }

  .button {
    width: 100%;
  }

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

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

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