:root {
  --mp-red: #e53935;
  --mp-red-soft: #ff6b6b;
  --mp-bg: #0a0a0a;
  --mp-surface: #151515;
  --mp-surface-2: #1e1e1e;
  --mp-border: #2a2a2a;
  --mp-text: #f2f2f2;
  --mp-muted: #a9a9a9;
  --mp-max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--mp-bg);
  color: var(--mp-text);
  font-family: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--mp-red-soft);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: #fff;
}

.mp-container {
  width: 100%;
  max-width: var(--mp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/*  Header  */
.mp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(10, 10, 10, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mp-border);
}

.mp-header .mp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  flex-wrap: wrap;
}

.mp-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--mp-text);
  font-weight: 700;
  letter-spacing: .3px;
}

.mp-brand:hover {
  color: var(--mp-text);
}

.mp-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.mp-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .95rem;
}

.mp-nav a {
  color: var(--mp-muted);
}

.mp-nav a:hover,
.mp-nav a[aria-current="page"] {
  color: var(--mp-red-soft);
}

/*  Hero  */
.mp-hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(229, 57, 53, .28), transparent 65%),
    radial-gradient(700px 380px at 95% 10%, rgba(229, 57, 53, .12), transparent 60%);
}

.mp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}

.mp-logo-lg {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.mp-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 800;
}

.mp-hero h1 span {
  color: var(--mp-red);
}

.mp-lead {
  color: var(--mp-muted);
  font-size: 1.1rem;
  margin: 0 0 2rem;
  max-width: 34rem;
}

.mp-phone {
  border: 1px solid var(--mp-border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(229, 57, 53, .18);
  max-width: 300px;
  margin: 0 auto;
}

/*  Store badges  */
.mp-stores {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.mp-store {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--mp-border);
  background-color: var(--mp-surface);
  color: var(--mp-text);
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
}

.mp-store:hover {
  color: #fff;
  border-color: var(--mp-red);
  transform: translateY(-2px);
}

.mp-store--primary {
  background-color: var(--mp-red);
  border-color: var(--mp-red);
}

.mp-store--primary:hover {
  background-color: #c62828;
}

/*  Sections  */
.mp-section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--mp-border);
}

.mp-section h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin: 0 0 .6rem;
  font-weight: 800;
}

.mp-section-sub {
  color: var(--mp-muted);
  margin: 0 0 2.75rem;
  max-width: 42rem;
}

.mp-center {
  text-align: center;
}

.mp-center .mp-section-sub {
  margin-left: auto;
  margin-right: auto;
}

/*  Features  */
.mp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mp-feature {
  background-color: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: border-color .25s ease, transform .25s ease;
}

.mp-feature:hover {
  border-color: var(--mp-red);
  transform: translateY(-4px);
}

.mp-feature-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background-color: rgba(229, 57, 53, .14);
  color: var(--mp-red-soft);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.mp-feature h3 {
  font-size: 1.1rem;
  margin: 0 0 .5rem;
}

.mp-feature p {
  color: var(--mp-muted);
  margin: 0;
  font-size: .95rem;
}

/*  Gallery  */
.mp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.mp-shot {
  border: 1px solid var(--mp-border);
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--mp-surface);
}

.mp-shot figcaption {
  padding: .8rem 1rem;
  font-size: .85rem;
  color: var(--mp-muted);
  border-top: 1px solid var(--mp-border);
}

/*  CTA  */
.mp-cta {
  background: linear-gradient(135deg, rgba(229, 57, 53, .22), rgba(229, 57, 53, .04));
  border: 1px solid rgba(229, 57, 53, .35);
  border-radius: 22px;
  padding: 3rem 2rem;
  text-align: center;
}

.mp-cta h2 {
  margin-top: 0;
}

.mp-cta .mp-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.mp-cta .mp-stores {
  justify-content: center;
}

/*  Legal pages  */
.mp-legal {
  padding: 3.5rem 0 4.5rem;
  max-width: 820px;
}

.mp-legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 .4rem;
}

.mp-updated {
  color: var(--mp-muted);
  font-size: .9rem;
  margin: 0 0 2.5rem;
}

.mp-legal h2 {
  font-size: 1.25rem;
  margin: 2.5rem 0 .75rem;
  color: var(--mp-red-soft);
}

.mp-legal p,
.mp-legal li {
  color: #dcdcdc;
}

.mp-legal ul {
  padding-left: 1.2rem;
}

.mp-legal li {
  margin-bottom: .5rem;
}

.mp-note {
  background-color: var(--mp-surface-2);
  border-left: 3px solid var(--mp-red);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.mp-note p {
  margin: 0;
}

/*  Footer  */
.mp-footer {
  border-top: 1px solid var(--mp-border);
  padding: 2.5rem 0;
  color: var(--mp-muted);
  font-size: .9rem;
}

.mp-footer .mp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mp-footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .mp-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mp-hero .mp-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .mp-hero .mp-stores,
  .mp-hero .mp-logo-lg {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .mp-header .mp-container {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }
}
