:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #d9e2e8;
  --paper: #f8fbfc;
  --white: #ffffff;
  --teal: #7a4dff;
  --green: #2cc2ff;
  --blue: #1a6cff;
  --magenta: #ff48d4;
  --navy: #0a0f2a;
  --shadow: 0 24px 80px rgba(22, 32, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Figtree", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 252, 0.9);
  border-bottom: 1px solid rgba(217, 226, 232, 0.8);
  backdrop-filter: blur(18px);
}

.notice {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 18px;
  color: #344054;
  font-size: 0.86rem;
  background: #f3f0ff;
}

.notice a {
  color: inherit;
  text-decoration-color: rgba(110, 64, 255, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.notice a:hover {
  color: var(--ink);
}

.notice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--magenta), var(--green));
  box-shadow: 0 0 0 5px rgba(122, 77, 255, 0.12);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
}

.brand-mark {
  width: 48px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(122, 77, 255, 0.16));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #334155;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 2px;
}

.nav-links a:last-child {
  padding: 10px 18px;
  color: var(--white);
  background: linear-gradient(120deg, var(--teal), var(--blue));
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 251, 252, 0.98) 0%, rgba(248, 251, 252, 0.9) 35%, rgba(248, 251, 252, 0.18) 78%),
    linear-gradient(180deg, rgba(248, 251, 252, 0.1), rgba(248, 251, 252, 0.94));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 90px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-heading span {
  display: block;
}

.hero-heading span:nth-child(2) {
  margin-top: 18px;
  color: #5f6b7a;
  font-size: clamp(1.65rem, 3.7vw, 3.1rem);
  line-height: 1.02;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 600px;
  color: #344054;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.pricing-actions,
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(120deg, var(--teal), var(--blue));
  box-shadow: 0 16px 35px rgba(122, 77, 255, 0.2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(17, 24, 39, 0.18);
}

.button.dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-stats {
  max-width: 780px;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stats div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 82px;
  align-items: start;
}

.platform-heading {
  max-width: 640px;
}

.platform-heading span {
  display: block;
}

.platform-heading span:nth-child(2) {
  margin-top: 18px;
  color: #353a63;
  font-size: clamp(1.95rem, 3.4vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
}

.platform-heading span:nth-child(3) {
  margin-top: 12px;
  color: #5f6b7a;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.12;
  font-weight: 700;
}

.split p,
.pricing p,
.case-list p,
.faq p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-band {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: var(--white);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 38px;
}

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

.feature-card,
.sector-grid article {
  min-height: 235px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--teal);
  font-weight: 800;
}

.feature-card p,
.sector-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.case-list article {
  padding: 28px 0;
  border-top: 2px solid var(--teal);
}

.sectors {
  padding-top: 46px;
}

.sector-grid article {
  min-height: 215px;
  background: rgba(255, 255, 255, 0.72);
}

.sector-grid h3 {
  color: #172033;
}

.pricing {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 100% 0%, rgba(44, 194, 255, 0.14), transparent 32%),
    linear-gradient(135deg, var(--navy), #11153a);
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  color: var(--white);
}

.pricing-panel p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
}

.download {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.download-copy {
  max-width: 560px;
}

.download-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.store-button {
  min-width: 190px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: #0b1220;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.18);
}

.store-button small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.store-button span:last-child {
  font-weight: 800;
  line-height: 1.1;
}

.store-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: var(--white);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.store-icon.apple {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4 12.6c0-2.8 2.3-4.2 2.4-4.3-1.3-1.9-3.3-2.2-4-2.2-1.7-.2-3.3 1-4.2 1-.9 0-2.2-1-3.6-.9-1.9 0-3.6 1.1-4.6 2.8-2 3.5-.5 8.7 1.4 11.5 1 1.4 2.1 3 3.6 2.9 1.4-.1 2-.9 3.7-.9s2.2.9 3.7.9c1.5 0 2.5-1.4 3.5-2.8 1.1-1.6 1.5-3.1 1.5-3.2 0-.1-3.4-1.4-3.4-4.8ZM13.7 4.3c.8-1 1.3-2.3 1.2-3.7-1.2.1-2.5.8-3.4 1.8-.7.9-1.4 2.2-1.2 3.6 1.3.1 2.6-.7 3.4-1.7Z'/%3E%3C/svg%3E");
}

.store-icon.play {
  clip-path: polygon(8% 3%, 88% 50%, 8% 97%);
}

.faq {
  padding-top: 40px;
}

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

details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.1rem;
}

details p {
  margin: 14px 0 0;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  border-top: 1px solid var(--line);
}

.footer address {
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
}

.footer-mmc-logo {
  width: 132px;
  margin-top: 16px;
  opacity: 0.78;
}

.footer-parent {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-parent a {
  color: inherit;
  text-decoration-color: rgba(110, 64, 255, 0.4);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.footer-parent a:hover {
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 12px;
  color: #344054;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

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

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

  .nav-links a:last-child {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    opacity: 0.42;
    object-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(248, 251, 252, 0.94), rgba(248, 251, 252, 0.82));
  }

  .hero-content {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .hero-stats,
  .split,
  .feature-grid,
  .case-list,
  .sector-grid,
  .pricing-panel,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

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

  .store-buttons,
  .store-button {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .notice {
    font-size: 0.78rem;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 42px;
    height: 30px;
  }

  .hero-actions,
  .pricing-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
