:root {
  --nm-bg: #e0e5ec;
  --nm-surface: #e0e5ec;
  --nm-surface-soft: #e8ecf2;
  --mh-blue: #1546a0;
  --mh-blue-dark: #0b3976;
  --mh-blue-deep: #062f66;
  --mh-green: #8cc73f;
  --mh-green-dark: #4c9a24;
  --text-primary: #0b3976;
  --text-body: #2f4056;
  --text-muted: #526071;
  --text-soft: #6d7a8d;
  --widget-bg: #ffffff;
  --widget-button: #050505;
  --widget-button-text: #ffffff;
  --shadow-raised:
    9px 9px 16px rgba(163, 177, 198, 0.6),
    -9px -9px 16px rgba(255, 255, 255, 0.55);
  --shadow-raised-lg:
    18px 18px 34px rgba(120, 137, 160, 0.3),
    -18px -18px 34px rgba(255, 255, 255, 0.64);
  --shadow-raised-sm:
    5px 5px 10px rgba(163, 177, 198, 0.58),
    -5px -5px 10px rgba(255, 255, 255, 0.55);
  --shadow-inset:
    inset 6px 6px 10px rgba(163, 177, 198, 0.58),
    inset -6px -6px 10px rgba(255, 255, 255, 0.55);
  --shadow-inset-deep:
    inset 12px 12px 24px rgba(142, 158, 181, 0.54),
    inset -12px -12px 24px rgba(255, 255, 255, 0.66);
  --shadow-widget:
    16px 18px 32px rgba(120, 137, 160, 0.32),
    -10px -10px 24px rgba(255, 255, 255, 0.6);
  font-family: "Plus Jakarta Sans", "Inter", "DM Sans", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-body);
  background: var(--nm-bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--nm-bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--nm-bg);
}

a {
  color: inherit;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 52% 22%, rgba(255, 255, 255, 0.24), transparent 28%),
    var(--nm-bg);
}

.site-header {
  position: relative;
  z-index: 3;
}

.logo-lockup {
  position: absolute;
  top: 32px;
  left: 56px;
  width: 260px;
  display: block;
  border-radius: 16px;
}

.logo-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.main {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  padding-top: clamp(112px, 14vh, 156px);
  padding-bottom: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  width: min(100%, 760px);
  text-align: center;
}

.kicker {
  margin: 0;
  color: var(--mh-green-dark);
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  margin: 26px 0 0;
  color: var(--mh-blue-dark);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
}

.hero-copy {
  margin: 27px auto 0;
  max-width: 650px;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
  text-wrap: balance;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.hero-divider span {
  width: 190px;
  max-width: 28vw;
  height: 1px;
  background: rgba(82, 96, 113, 0.22);
}

.hero-divider-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(82, 96, 113, 0.52);
  background: var(--nm-bg);
  box-shadow: var(--shadow-inset);
}

.hero-divider-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.widget-zone {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 520px);
}

.widget-shell {
  width: min(100%, 500px);
  border-radius: 32px;
  padding: 22px;
  background: var(--nm-bg);
  box-shadow: var(--shadow-widget);
}

.eleven-widget-target {
  width: 100%;
  min-height: 320px;
  border-radius: 28px;
}

.eleven-widget-frame {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 28px;
  background: transparent;
}

.local-widget-preview {
  width: 100%;
  min-height: 145px;
  border-radius: 28px;
  padding: 24px 26px 22px;
  background: var(--widget-bg);
  box-shadow:
    inset 0 0 0 1px rgba(11, 57, 118, 0.05),
    0 18px 28px rgba(11, 57, 118, 0.08);
}

.local-widget-preview__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 19px;
}

.local-widget-preview__avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(145deg, rgba(185, 229, 108, 0.38), rgba(107, 182, 47, 0.16));
  box-shadow: var(--shadow-raised-sm);
}

.local-widget-preview__avatar img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.local-widget-preview__title {
  color: var(--mh-blue-deep);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.local-widget-preview__button {
  width: 100%;
  min-height: 82px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--widget-button-text);
  background:
    linear-gradient(145deg, #062f66, #021e46);
  box-shadow:
    0 18px 28px rgba(6, 47, 102, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.local-widget-preview__button-icon {
  width: 35px;
  height: 27px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--mh-blue-deep);
  background: #ffffff;
}

.local-widget-preview__button-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.powered-by {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.powered-by a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.feature-strip {
  margin-top: 64px;
  width: min(100%, 1160px);
  border-radius: 36px;
  background: var(--nm-bg);
  box-shadow: var(--shadow-raised-lg);
  padding: 30px 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.feature-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--nm-bg);
  box-shadow: var(--shadow-raised-sm);
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-icon--green {
  color: var(--mh-green-dark);
}

.feature-icon--blue {
  color: var(--mh-blue);
}

.feature-icon--teal {
  color: #0e91a6;
}

.feature-icon--violet {
  color: #5a5ee8;
}

.feature-item h2 {
  margin: 0 0 6px;
  color: var(--mh-blue-dark);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.feature-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.footer {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1160px);
  margin: -35px auto 0;
  padding-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.footer a {
  color: var(--mh-blue-dark);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.interactive {
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    color 220ms ease-out;
}

.interactive:hover {
  transform: translateY(-1px);
}

.interactive:active {
  transform: translateY(1px);
}

.interactive:focus-visible,
.local-widget-preview__button:focus-visible {
  outline: 3px solid rgba(21, 70, 160, 0.42);
  outline-offset: 4px;
}

.decor-circle-outer,
.decor-circle-inner,
.decor-plus,
.dot-grid {
  pointer-events: none;
  user-select: none;
}

.decor-circle-outer {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -145px;
  top: -170px;
  border-radius: 999px;
  background: var(--nm-bg);
  box-shadow: var(--shadow-raised-lg);
}

.decor-circle-inner {
  position: absolute;
  width: 390px;
  height: 390px;
  left: -70px;
  top: -110px;
  border-radius: 999px;
  background: var(--nm-bg);
  box-shadow: var(--shadow-inset-deep);
}

.decor-plus {
  position: absolute;
  right: -92px;
  top: 275px;
  width: 420px;
  height: 420px;
  filter:
    drop-shadow(16px 18px 24px rgba(120, 137, 160, 0.3))
    drop-shadow(-10px -10px 18px rgba(255, 255, 255, 0.62));
  animation: float-soft 7s ease-in-out infinite;
}

.decor-plus::before,
.decor-plus::after {
  content: "";
  position: absolute;
  inset: 124px 0;
  border-radius: 76px;
  background: var(--nm-bg);
}

.decor-plus::after {
  transform: rotate(90deg);
}

.dot-grid {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(4, 10px);
  gap: 14px;
}

.dot-grid span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--nm-bg);
  box-shadow: var(--shadow-raised-sm);
}

.dot-grid--top {
  right: 120px;
  top: 62px;
}

.dot-grid--bottom {
  left: 120px;
  bottom: 170px;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (max-width: 1180px) {
  .logo-lockup {
    left: 34px;
    width: 220px;
  }

  .decor-plus {
    right: -190px;
    opacity: 0.72;
  }
}

@media (max-width: 1023px) {
  .main {
    padding-top: 150px;
  }

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

@media (max-width: 767px) {
  .page {
    overflow-x: hidden;
  }

  .site-header {
    display: flex;
    justify-content: center;
  }

  .logo-lockup {
    position: relative;
    top: auto;
    left: auto;
    width: 200px;
    margin: 28px auto 0;
  }

  .main {
    width: min(100% - 32px, 560px);
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .kicker {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.18em;
  }

  .hero-title {
    font-size: clamp(36px, 12vw, 48px);
    line-height: 1.05;
    margin-top: 20px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-divider span {
    width: 96px;
  }

  .widget-shell {
    padding: 14px;
    border-radius: 28px;
  }

  .local-widget-preview {
    padding: 19px;
  }

  .local-widget-preview__title {
    font-size: 21px;
  }

  .local-widget-preview__button {
    min-height: 68px;
    font-size: 21px;
  }

  .decor-plus,
  .dot-grid--top {
    display: none;
  }

  .decor-circle-outer {
    width: 340px;
    height: 340px;
    left: 50%;
    top: -190px;
    transform: translateX(-50%);
    opacity: 0.7;
  }

  .decor-circle-inner {
    width: 250px;
    height: 250px;
    left: 50%;
    top: -146px;
    transform: translateX(-50%);
    opacity: 0.76;
  }

  .dot-grid--bottom {
    left: 18px;
    bottom: 210px;
    opacity: 0.36;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 28px;
  }

  .footer {
    width: min(100% - 32px, 560px);
    margin-top: -20px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero-divider {
    gap: 16px;
  }

  .hero-divider span {
    width: 76px;
  }

  .feature-item {
    grid-template-columns: 56px 1fr;
    gap: 15px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
  --widget-frame-height: 600px;
}

.widget-zone {
  margin-top: 34px;
}

.eleven-widget-target {
  min-height: var(--widget-frame-height);
}

.eleven-widget-frame {
  height: var(--widget-frame-height);
}

@media (max-width: 767px) {
  :root {
    --widget-frame-height: 540px;
  }

  .widget-zone {
    margin-top: 30px;
  }
}

@media (max-width: 390px) {
  :root {
    --widget-frame-height: 520px;
  }
}
