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

:root {
  --brand: #008a4a;
  --brand-dark: #006e3b;
  --brand-light: #e8f5ef;
  --bg: #f6f8fb;
  --bg-alt: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e5e7eb;
  --footer-pad-y: 40px;
  --footer-content-min: 2.75rem;
  --footer-block-height: calc(var(--footer-pad-y) * 2 + var(--footer-content-min));
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(246, 248, 251, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img { width: 36px; height: 36px; border-radius: 8px; }

.nav-brand span {
  font-family: Nunito, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

nav.is-menu-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

nav.is-menu-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

nav.is-menu-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-contact {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.nav-contact a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}
.nav-contact a:hover { color: var(--brand-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--brand); }

.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}

.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-dropdown-trigger:hover,
.lang-dropdown-trigger[aria-expanded="true"] {
  border-color: rgba(0, 138, 74, 0.45);
  box-shadow: 0 4px 14px rgba(0, 138, 74, 0.1);
}

.lang-dropdown-trigger .lang-flag {
  font-size: 18px;
  line-height: 1;
}

.lang-dropdown-trigger .lang-label {
  display: none;
}

.lang-dropdown-trigger .lang-chevron {
  color: var(--muted);
  transition: transform 0.2s;
}

.lang-dropdown-trigger[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  z-index: 200;
}

.lang-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.lang-dropdown-menu a:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.lang-dropdown-menu a.is-current {
  background: var(--brand-light);
  color: var(--brand-dark);
}

.lang-dropdown-menu .lang-flag {
  font-size: 20px;
  line-height: 1;
}

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
  color: #fff !important;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 110px 80px 60px;
  gap: 40px;
  background: var(--bg);
}

.hero-text { max-width: 720px; }

.hero-heading {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 18px);
  margin-bottom: 20px;
  /* Match h1 font-size so logo can scale in em with the headline */
  font-size: clamp(34px, 4vw, 56px);
}

.hero-heading h1 {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
  font-size: 1em;
  line-height: 1.1;
}

/* ~3 lines × line-height 1.1 — matches wrapped headline block */
.hero-logo {
  flex-shrink: 0;
  width: 3.3em;
  height: 3.3em;
  object-fit: contain;
  border-radius: 0.38em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

h1 {
  font-family: Nunito, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: pretty;
}

h1 em { color: var(--brand); font-style: normal; }

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 36px;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.app-store-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.app-store-btn-text { display: flex; flex-direction: column; }

.app-store-btn-text small { font-size: 10px; opacity: 0.7; line-height: 1; }

.app-store-btn-text strong { font-size: 17px; font-weight: 600; line-height: 1.3; }

.hero-note { font-size: 13px; color: var(--muted); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 40px;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.phone-wrap {
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(0, 138, 74, 0.18));
}

.phone-frame {
  width: 260px;
  background: #111;
  border-radius: 44px;
  padding: 12px;
  border: 1px solid #2a2a2a;
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #111;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: #f2f2f7;
  aspect-ratio: 9 / 19.5;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.phone-float {
  position: absolute;
  width: 200px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

.phone-float-right {
  right: -65px;
  bottom: 30px;
  transform: rotate(7deg);
}

.phone-float-left {
  left: -30px;
  bottom: 0;
  transform: rotate(-6deg);
}

.showcase-phones-nutrition .phone-wrap {
  position: relative;
  z-index: 2;
}

.showcase-phones-nutrition .phone-float-right {
  right: -115px;
  bottom: 10px;
  z-index: 1;
  transform: rotate(7deg);
}

.phone-float .phone-frame {
  width: 200px;
  border-radius: 36px;
  padding: 9px;
}

.phone-float .phone-frame::before {
  width: 70px;
  height: 22px;
  top: 9px;
}

.phone-float .phone-screen {
  border-radius: 28px;
}

.showcase-phones {
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 20px;
}

section { padding: 90px 80px; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

h2 {
  font-family: Nunito, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: pretty;
}

.section-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  text-wrap: pretty;
}

.features { background: #fff; }

.features-header { text-align: center; margin-bottom: 64px; }

.features-header .section-intro { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 138, 74, 0.1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.feature-icon-svg {
  display: block;
  flex-shrink: 0;
}

.feature-card h3 {
  font-family: Nunito, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.feature-card p { font-size: 14px; line-height: 1.65; color: var(--muted); }

.showcase {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.showcase ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.showcase li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--brand-light);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23008a4a'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-section {
  background: var(--brand);
  text-align: center;
  padding: 100px 40px;
}

.cta-section h2 { color: #fff; margin-bottom: 16px; }

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-section .app-store-btn {
  background: #fff;
  color: #000;
  margin: 0 auto;
}

.cta-section .app-store-btn svg path { fill: #000; }

.cta-section .app-store-btn-text small { color: #555; }

.cta-section .app-store-btn-text strong { color: #000; }

footer {
  background: #0f1723;
  color: rgba(255, 255, 255, 0.5);
  padding: var(--footer-pad-y) 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }

.footer-brand img { width: 30px; height: 30px; border-radius: 7px; opacity: 0.8; }

.footer-brand span {
  font-family: Nunito, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}

.footer-end {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* Article list & article pages */
.page-main {
  padding: 100px 24px 64px;
  max-width: 760px;
  margin: 0 auto;
}

.page-main.wide { max-width: 920px; }

.page-main.articles-hub {
  max-width: 1280px;
  padding-bottom: calc(1.5 * var(--footer-block-height));
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 13px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: '›';
  margin-right: 4px;
  color: #94a3b8;
}

.breadcrumb a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.breadcrumb [aria-current='page'] {
  color: var(--text);
  font-weight: 600;
}

.page-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.page-main h1 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 12px;
}

.page-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}

.article-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 56px;
  align-items: start;
  margin-top: 8px;
}

.article-block {
  min-width: 0;
  padding: 0;
}

.article-block-title {
  font-family: Nunito, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.article-list { display: flex; flex-direction: column; gap: 14px; }

.article-row > div:first-child {
  flex: 1;
  min-width: 0;
}

.article-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.article-row:hover {
  border-color: rgba(0, 138, 74, 0.35);
  box-shadow: 0 8px 24px rgba(0, 138, 74, 0.08);
}

.article-row h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
}

.article-row .chev {
  flex-shrink: 0;
  font-size: 22px;
  color: #94a3b8;
}

.prose p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.prose .callout {
  background: var(--brand-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.article-back-wrap {
  margin: 28px 0 0;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.article-back:hover {
  color: var(--brand-dark);
  border-color: rgba(0, 138, 74, 0.35);
  box-shadow: 0 6px 18px rgba(0, 138, 74, 0.08);
}

.article-back-arrow {
  font-size: 18px;
  line-height: 1;
  color: #94a3b8;
}

.prose .footnote {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-top: 24px;
}

.field-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin: 20px 0 8px;
}

.bcs-size-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 8px;
}

.bcs-hint {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.level-block {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.level-block h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.bcs-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  margin-top: 12px;
  border-radius: 12px;
  background: var(--brand-light);
}

ol.bullets {
  margin: 0 0 12px 22px;
  padding: 0;
}

ol.bullets li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

details.block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

details.block summary {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 16px;
}

details.block summary::-webkit-details-marker { display: none; }

details.block summary::after {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  content: '▾';
  font-size: 16px;
  font-weight: 900;
  color: #94a3b8;
  line-height: 1;
}

details.block[open] summary::after {
  content: '▴';
}

details.block .summary-sub {
  grid-column: 1;
  grid-row: 2;
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0;
}

details.block .block-body {
  padding: 0 20px 20px;
  border-top: 1px solid var(--border);
}

details.block .block-body p,
details.block .block-body .subheading {
  font-size: 15px;
  line-height: 1.65;
  margin: 12px 0;
}

details.block .subheading {
  font-weight: 700;
  color: var(--text);
}

ul.dots {
  margin: 8px 0 12px 20px;
}

ul.dots li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.alert-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #9a3412;
  margin: 12px 0;
}

.nav-minimal .nav-right {
  margin-left: auto;
}

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-toggle { display: flex; }

  .nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(246, 248, 251, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  }

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

  .nav-panel .nav-contact {
    display: block;
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-panel .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-top: 8px;
  }

  .nav-panel .nav-links a {
    padding: 12px 4px;
    font-size: 16px;
  }

  .nav-panel .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  body.nav-menu-open { overflow: hidden; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; text-align: center; }
  .hero-heading {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero-logo {
    width: 3.3em;
    height: 3.3em;
  }

  .hero-actions { justify-content: center; }
  .hero-visual {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
    margin-top: 8px;
  }

  .phone-frame { width: 200px; }

  /* Hero: keep Pet + Analytics; other sections stay single phone */
  .phone-float { display: none; }

  .hero-visual .showcase-phones,
  .hero-visual .phone-wrap {
    overflow: visible;
  }

  .hero-visual .phone-float {
    display: block;
    width: 158px;
    right: -18px;
    bottom: 18px;
    transform: rotate(6deg);
  }

  .hero-visual .phone-float .phone-frame {
    width: 158px;
    border-radius: 32px;
    padding: 8px;
  }

  .hero-visual .phone-float .phone-frame::before {
    width: 58px;
    height: 18px;
    top: 8px;
  }

  .hero-visual .phone-float .phone-screen {
    border-radius: 24px;
  }
  section { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; gap: 40px; }
  :root {
    --footer-pad-y: 32px;
    --footer-content-min: 5.5rem;
  }

  footer { flex-direction: column; align-items: flex-start; padding: var(--footer-pad-y) 24px; }
  .footer-end { margin-left: 0; align-self: stretch; justify-content: flex-end; }
  .article-blocks { grid-template-columns: 1fr; }
}

/* Coming soon modal (download buttons) */
.mpn-coming-soon {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mpn-coming-soon[hidden] {
  display: none;
}

.mpn-coming-soon__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.mpn-coming-soon__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.mpn-coming-soon__text {
  margin: 0 0 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  color: #0f172a;
}

.mpn-coming-soon__btn {
  border: none;
  background: var(--brand);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 12px;
  cursor: pointer;
}

.mpn-coming-soon__btn:hover {
  background: var(--brand-dark);
}
