:root {
  --mf-primary: #ff6a00;
  --mf-primary-dark: #c94c00;
  --mf-ink: #111827;
  --mf-muted: #5b6472;
  --mf-border: rgba(17, 24, 39, 0.1);
  --mf-shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --mf-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body.info-page {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--mf-ink);
  background: #f7f8fb;
  -webkit-font-smoothing: antialiased;
}

.mf-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.mf-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--mf-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.mf-nav-link {
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms var(--mf-ease), transform 180ms var(--mf-ease);
}

.mf-nav-link:hover {
  color: var(--mf-primary);
  transform: translateY(-1px);
}

.mf-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: #ff6a00;
  color: #ffffff;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.28);
  transition: transform 180ms var(--mf-ease), box-shadow 180ms var(--mf-ease);
}

.mf-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(255, 106, 0, 0.34);
  background: #f05f00;
}

.mf-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #111827;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms var(--mf-ease), border-color 180ms var(--mf-ease);
}

.mf-btn-secondary:hover {
  border-color: rgba(255, 106, 0, 0.55);
  background: #ffffff;
}

.mf-card {
  border: 1px solid var(--mf-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.07);
}

.mf-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: 0;
}

.mf-page-title {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.mf-reveal {
  animation: mf-rise 520ms var(--mf-ease) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes mf-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mf-reveal,
  .mf-btn-primary,
  .mf-btn-secondary {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
