/* ==========================================================================
   MadeReady Demo Site — Dual-Mode CSS
   Marketing mode: MadeReady brand (Luma Cyan, DM Sans, Source Serif 4)
   Demo store mode: Virginia Primozic brand (Teal, Source Sans Pro)
   ========================================================================== */

/* --- Dual-Mode Variables --- */
[data-mode="marketing"] {
  --brand-primary: #00ACEC;
  --brand-primary-hover: #0098d4;
  --brand-dark: #0F1923;
  --brand-secondary: #1B6B8A;
  --brand-accent: #00ACEC;
  --brand-text: #0F1923;
  --brand-text-muted: #4A5568;
  --brand-bg: #F5F8FA;
  --brand-bg-alt: #FFFFFF;
  --brand-border: #E0E7ED;
  --brand-white: #FFFFFF;
  --brand-heading-font: 'Source Serif 4', Georgia, serif;
  --brand-body-font: 'DM Sans', sans-serif;
  --brand-mono-font: 'DM Mono', monospace;
  --brand-btn-radius: 16px;
}

[data-mode="demo-store"] {
  --brand-primary: #2da2bd;
  --brand-primary-hover: #2590c5;
  --brand-dark: #121212;
  --brand-secondary: #2c3e3f;
  --brand-accent: #d4b574;
  --brand-text: #121212;
  --brand-text-muted: #8b7355;
  --brand-bg: #ffffff;
  --brand-bg-alt: #f3f3f3;
  --brand-border: #e5e5e5;
  --brand-white: #FFFFFF;
  --brand-heading-font: 'Source Sans Pro', sans-serif;
  --brand-body-font: 'Source Sans Pro', sans-serif;
  --brand-mono-font: monospace;
  --brand-btn-radius: 0px;
}

/* --- Shared Structural Styles --- */
h1, h2, h3, h4 {
  font-family: var(--brand-heading-font);
  color: var(--brand-text);
}

/* --- Primary Button --- */
.btn-primary {
  background-color: var(--brand-primary);
  color: var(--brand-white);
  font-family: var(--brand-body-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--brand-btn-radius);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: background 200ms ease-out, box-shadow 200ms ease-out;
}

.btn-primary:hover {
  background-color: var(--brand-primary-hover);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- Outline Button --- */
.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
  font-family: var(--brand-body-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: var(--brand-btn-radius);
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: background 200ms ease-out, color 200ms ease-out;
}

.btn-outline:hover {
  background-color: var(--brand-primary);
  color: var(--brand-white);
}

/* --- Focus Indicator --- */
*:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* --- Product Card Hover --- */
.card-wrapper {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.card-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* --- Price Display --- */
.price-item {
  font-variant-numeric: tabular-nums;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ==========================================================================
   Section Styles — MadeReady Marketing Homepage
   ========================================================================== */

/* --- Hero Section --- */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.madeready-hero {
  background-color: #0F1923;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.madeready-hero__inner {
  max-width: 1200px;
  width: 100%;
}

.madeready-hero__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 72px;
  color: #FFFFFF;
  margin: 0 0 16px;
  animation: heroFadeIn 600ms ease-out both;
}

.madeready-hero__partner {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 16px;
  text-transform: lowercase;
  animation: heroSlideIn 500ms ease-out 300ms both;
}

.madeready-hero__by {
  color: #4A5568;
}

.madeready-hero__luma {
  color: #00ACEC;
}

.madeready-hero__prints {
  color: #1B6B8A;
}

.madeready-hero__tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4A5568;
  margin: 0 0 40px;
}

.madeready-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .madeready-hero__heading {
    font-size: 40px;
  }

  .madeready-hero__partner {
    font-size: 20px;
  }
}

/* --- Value Props Section --- */
.madeready-value-props {
  background-color: #F5F8FA;
  padding: 80px 24px;
}

.madeready-value-props__container {
  max-width: 1200px;
  margin: 0 auto;
}

.madeready-value-props__eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00ACEC;
  text-align: center;
  margin: 0 0 12px;
}

.madeready-value-props__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  color: #0F1923;
  text-align: center;
  margin: 0 0 48px;
}

.madeready-value-props__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.madeready-value-props__item {
  text-align: center;
}

.madeready-value-props__num {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--brand-primary);
  margin: 0 auto 16px;
  animation: mr-icon-bob 6.4s ease-in-out infinite;
  will-change: transform;
}

/* Stagger the bob so the three numbers float organically, not in lockstep */
.madeready-value-props__item:nth-child(2) .madeready-value-props__num {
  animation-duration: 7s;
  animation-delay: 0.9s;
}

.madeready-value-props__item:nth-child(3) .madeready-value-props__num {
  animation-duration: 6s;
  animation-delay: 1.8s;
}

@keyframes mr-icon-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.madeready-value-props__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: #0F1923;
  margin: 0 0 12px;
}

.madeready-value-props__description {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .madeready-value-props {
    padding: 48px 24px;
  }

  .madeready-value-props__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .madeready-value-props__heading {
    font-size: 28px;
  }
}

/* --- Demo CTA Section --- */
.madeready-demo-cta {
  background-color: #0F1923;
  padding: 96px 24px;
  text-align: center;
}

.madeready-demo-cta__container {
  max-width: 1200px;
  margin: 0 auto;
}

.madeready-demo-cta__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  color: #F5F8FA;
  margin: 0 0 16px;
}

.madeready-demo-cta__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #4A5568;
  margin: 0 0 40px;
}

.madeready-demo-cta__button {
  font-size: 17px;
  padding: 16px 40px;
}

@media (max-width: 768px) {
  .madeready-demo-cta {
    padding: 48px 24px;
  }

  .madeready-demo-cta__heading {
    font-size: 28px;
  }
}

/* --- About Section --- */
.madeready-about {
  background-color: #F5F8FA;
  padding: 80px 24px;
}

/* "The People" reuses the About layout but sits on white to keep
   the section background alternation (dark CTA → white → grey Story). */
.madeready-about--people {
  background-color: #FFFFFF;
}

.madeready-about__container {
  /* Single centered reading column for the long-form origin story.
     When an About image is added, restore: max-width 1200px + grid-template-columns 1fr 1fr. */
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  text-align: center;
}

.madeready-about__subtitle {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00ACEC;
  margin: 0 0 12px;
}

.madeready-about__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  color: #0F1923;
  margin: 0 0 24px;
}

.madeready-about__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.7;
}

.madeready-about__body p {
  margin: 0 0 16px;
}

.madeready-about__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .madeready-about {
    padding: 48px 24px;
  }

  .madeready-about__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .madeready-about__heading {
    font-size: 28px;
  }
}

/* --- Partners Teaser Section --- */
.madeready-partners-teaser {
  background-color: #FFFFFF;
  padding: 80px 24px;
  text-align: center;
}

.madeready-partners-teaser__container {
  max-width: 1200px;
  margin: 0 auto;
}

.madeready-partners-teaser__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  color: #0F1923;
  margin: 0 0 24px;
}

.madeready-partners-teaser__lead,
.madeready-partners-teaser__closing {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.madeready-partners-teaser__lead {
  margin-bottom: 28px;
}

.madeready-partners-teaser__closing {
  margin-top: 28px;
  margin-bottom: 32px;
}

.madeready-partners-teaser__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.madeready-partners-teaser__body ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.madeready-partners-teaser__body li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .madeready-partners-teaser {
    padding: 48px 24px;
  }

  .madeready-partners-teaser__heading {
    font-size: 28px;
  }
}

/* --- Interstitial Modal --- */
.interstitial {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.interstitial.interstitial-open {
  display: flex;
}

.interstitial__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 35, 0.85);
}

.interstitial__card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  z-index: 1;
}

.interstitial__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #6B7280;
  cursor: pointer;
}

.interstitial__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #2D2D2D;
  margin: 0 0 12px;
}

.interstitial__body {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 32px;
}

.interstitial__access {
  background: #F5F8FA;
  border: 1px solid #E3EAF0;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0 0 24px;
}

.interstitial__access-note {
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0 0 14px;
}

.interstitial__access-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0F1923;
  background: #FFFFFF;
  border: 1.5px solid #00ACEC;
  border-radius: var(--brand-btn-radius, 16px);
  padding: 11px 22px;
  cursor: pointer;
  transition: background 200ms ease-out, color 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}

.interstitial__access-copy:hover {
  background: #00ACEC;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 172, 236, 0.25);
}

.interstitial__access-copy:focus-visible {
  outline: 2px solid #00ACEC;
  outline-offset: 2px;
}

.interstitial__access-copy.is-copied {
  background: #0F1923;
  color: #00ACEC;
  border-color: #0F1923;
  box-shadow: none;
}

.interstitial__access-icon {
  flex-shrink: 0;
}

.interstitial__access-status {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  color: #00ACEC;
  margin-top: 10px;
  min-height: 1em;
}

.interstitial__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.interstitial__cta {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--brand-btn-radius, 16px);
  text-decoration: none;
  transition: background 200ms ease-out, color 200ms ease-out, box-shadow 200ms ease-out;
  border: 1.5px solid transparent;
}

.interstitial__cta--primary {
  background: #0F1923;
  color: #00ACEC;
  border-color: #0F1923;
}

.interstitial__cta--primary:hover {
  background: #162330;
  box-shadow: 0 4px 16px rgba(0, 172, 236, 0.25);
}

.interstitial__cta--secondary {
  background: transparent;
  color: #0F1923;
  border-color: #0F1923;
}

.interstitial__cta--secondary:hover {
  background: #0F1923;
  color: #00ACEC;
}

.interstitial__hint {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   Video Modal — Merchant Dashboard Tour
   ========================================================================== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.video-modal.video-modal-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 35, 0.92);
  cursor: pointer;
}

.video-modal__card {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 150ms ease-out, background 150ms ease-out;
}

.video-modal__close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.65);
}

.video-modal__frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

.video-modal__iframe,
.video-modal__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #0F1923 0%, #1B6B8A 100%);
}

.video-modal__placeholder-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
}

.video-modal__placeholder-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 360px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .video-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}

/* ==========================================================================
   Demo Store Sections — Virginia Primozic Brand
   ========================================================================== */

/* --- Hide Dawn's default header in demo-store mode --- */
[data-mode="demo-store"] .shopify-section-group-header-group {
  display: none !important;
}

/* --- Virginia Primozic Header --- */
.vpart-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 48px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  position: relative;
}

.vpart-header__logo-link {
  text-decoration: none;
}

/* --- Virginia Logo Container (matches her actual site) --- */
.virginia-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.virginia-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 15px 0;
  position: relative;
  z-index: 2;
}

.virginia-logo {
  opacity: 0;
  animation: vpLogoFadeIn 1.5s ease-in-out forwards;
}

.virginia-logo-image {
  width: 100px;
  height: auto;
  display: block;
  object-fit: contain;
}

.fade-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  opacity: 0;
}

.fade-text-left {
  right: 135px;
  animation: vpTextFadeIn 1s ease-out 1.5s forwards;
}

.fade-text-right {
  left: 150px;
  animation: vpTextFadeIn 1s ease-out 1.8s forwards;
}

.fade-text-content {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #333;
  white-space: nowrap;
}

@keyframes vpLogoFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vpTextFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header nav — centered below logo */
.vpart-header__nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 8px 0 0;
}

.vpart-header__nav a {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgb(18, 18, 18);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 150ms ease-out;
  padding: 8px 0;
}

.vpart-header__nav a:hover {
  opacity: 0.7;
}

.vpart-header__icons {
  position: absolute;
  top: 20px;
  right: 48px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.vpart-header__icon {
  color: #121212;
  text-decoration: none;
  transition: transform 150ms ease-out, color 150ms ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.vpart-header__icon:hover {
  color: #2da2bd;
  transform: scale(1.07);
}

/* Large desktop */
@media (min-width: 1200px) {
  .virginia-logo-image { width: 120px; }
  .fade-text-content { font-size: 3.2rem; letter-spacing: 0.5em; }
  .fade-text-left { right: 155px; }
  .fade-text-right { left: 170px; }
}

/* Tablet */
@media (max-width: 989px) {
  .virginia-logo-container {
    flex-direction: column;
    gap: 6px;
  }
  .fade-text {
    position: static;
    transform: none;
    display: block;
  }
  .fade-text-left { right: auto; order: 0; margin-bottom: -2px; }
  .virginia-logo-wrapper { order: 1; min-height: 0; padding: 0; }
  .fade-text-right { left: auto; order: 2; }
  .fade-text-content { text-align: center; line-height: 1; font-size: 2.4rem; letter-spacing: 0.45em; }
  .virginia-logo-image { width: 90px; }
  .vpart-header__nav--left { display: none; }
  .vpart-header { padding: 16px 24px; }
}

/* Mobile */
@media (max-width: 549px) {
  .fade-text-content { font-size: 1.8rem; letter-spacing: 0.35em; }
  .virginia-logo-image { width: 70px; }
}

@media (max-width: 399px) {
  .fade-text-content { font-size: 1.35rem; letter-spacing: 0.24em; }
  .virginia-logo-image { width: 60px; }
}

/* --- Back to MadeReady Button --- */
.madeready-back-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: #00ACEC;
  color: #FFFFFF;
  padding: 10px 20px 10px 12px;
  border-radius: 40px;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 200ms ease-out, box-shadow 200ms ease-out;
}

[data-mode="demo-store"] .madeready-back-btn {
  display: flex;
}

.madeready-back-btn:hover {
  background: #0098d4;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.madeready-back-btn__mark {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.madeready-back-btn__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

/* --- VP Slideshow Hero --- */
.vpart-hero {
  padding: 0;
  background: none;
}

.vpart-slideshow {
  width: 100%;
  overflow: hidden;
}

.vpart-slideshow__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
}

.vpart-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.vpart-slideshow__slide--active {
  opacity: 1;
}

.vpart-slideshow__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: vpKenBurns 18s ease-in-out infinite alternate;
}

@keyframes vpKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

@media (max-width: 768px) {
  .vpart-slideshow__slides {
    aspect-ratio: 4 / 3;
  }
}

/* --- VP Collection Grid --- */
.vpart-collection-grid {
  background: #ffffff;
  padding: 80px 24px;
}

.vpart-collection-grid__container {
  max-width: 1200px;
  margin: 0 auto;
}

.vpart-collection-grid__header {
  text-align: center;
  margin-bottom: 48px;
}

.vpart-collection-grid__heading {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #121212;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.vpart-collection-grid__subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  color: rgba(18, 18, 18, 0.6);
  margin-top: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

/* Hide sold out badges */
.vpart-collection-grid .badge,
.vpart-collection-grid .card__badge {
  display: none !important;
}

.vpart-collection-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vpart-product-card {
  text-decoration: none;
  display: block;
  text-align: center;
}

.vpart-product-card__image-wrapper {
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}

.vpart-product-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease-out;
}

.vpart-product-card:hover .vpart-product-card__img {
  transform: scale(1.03);
}

.vpart-product-card__title {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  color: #121212;
  text-align: center;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vpart-product-card__price {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: #627478;
  font-variant-numeric: tabular-nums;
  display: block;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* VP-matching "Create Your Print" CTA button on each card */
.vpart-product-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #000000;
  color: #ffffff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.4rem 2rem;
  border-radius: 0.8rem;
  transition: background-color 200ms ease-out, box-shadow 200ms ease-out;
}

.vpart-product-card__cta:hover,
.vpart-product-card__cta:focus {
  background-color: #2da2bd;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(45, 162, 189, 0.25);
}

/* View all button — matches Virginia's black button with teal hover */
.vpart-collection-grid__view-all {
  text-align: center;
  margin-top: 2.5rem;
}

.vpart-collection-grid__view-all-btn {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1.5rem 3.5rem;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 200ms ease-out, color 200ms ease-out;
}

.vpart-collection-grid__view-all-btn:hover {
  background: #ffffff;
  color: #2da2bd;
}

@media (max-width: 768px) {
  .vpart-collection-grid {
    padding: 48px 24px;
  }

  .vpart-collection-grid__heading {
    font-size: 3rem;
  }

  .vpart-collection-grid__subtitle {
    font-size: 1.2rem;
  }

  .vpart-collection-grid__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .vpart-collection-grid__view-all-btn {
    font-size: 1.4rem;
    padding: 1.2rem 2.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .vpart-collection-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- VP Artist Quote --- */
.vpart-quote {
  padding: 80px 24px;
  text-align: center;
}

.vpart-quote__container {
  max-width: 800px;
  margin: 0 auto;
}

.vpart-quote__text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: #ffffff;
  opacity: 0;
  transform: translateX(-60px);
  filter: blur(4px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
  line-height: 1.5;
  margin: 0 0 32px;
  border: none;
  padding: 0;
}

.vpart-quote__attribution {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #8b7355;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-style: normal;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.vpart-quote__text.reveal-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.vpart-quote__attribution.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .vpart-quote {
    padding: 48px 24px;
  }

  .vpart-quote__text {
    font-size: 22px;
  }
}

/* --- VP About Bio --- */
.vpart-about-bio {
  background: #ffffff;
  padding: 80px 24px;
}

.vpart-about-bio__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vpart-about-bio__heading {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #2da2bd;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.vpart-about-bio__body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.6rem;
  color: #121212;
  line-height: 1.8;
  letter-spacing: 0.06rem;
}

.vpart-about-bio__body p {
  margin: 0 0 16px;
}

.vpart-about-bio__img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

@media (max-width: 768px) {
  .vpart-about-bio {
    padding: 48px 24px;
  }

  .vpart-about-bio__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vpart-about-bio__heading {
    font-size: 28px;
  }
}

/* --- VP Featured Prints --- */
.vpart-featured-prints {
  background: #ffffff;
  padding: 60px 24px 40px;
}

.vpart-featured-prints__container {
  max-width: 1200px;
  margin: 0 auto;
}

.vpart-featured-prints__header {
  text-align: center;
  margin-bottom: 48px;
}

.vpart-featured-prints__heading {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #121212;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.vpart-featured-prints__subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  color: rgba(18, 18, 18, 0.6);
  margin-top: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}

.vpart-featured-prints__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vpart-featured-prints__view-all {
  text-align: center;
  margin-top: 2.5rem;
}

.vpart-featured-prints__view-all-btn {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1.5rem 3.5rem;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 200ms ease-out, color 200ms ease-out;
}

.vpart-featured-prints__view-all-btn:hover {
  background: #ffffff;
  color: #2da2bd;
}

/* Hide sold out badges */
.vpart-featured-prints .badge,
.vpart-featured-prints .card__badge {
  display: none !important;
}

@media (max-width: 768px) {
  .vpart-featured-prints {
    padding: 40px 24px 32px;
  }

  .vpart-featured-prints__heading {
    font-size: 2.4rem;
  }

  .vpart-featured-prints__subtitle {
    font-size: 1.2rem;
  }

  .vpart-featured-prints__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .vpart-featured-prints__view-all-btn {
    font-size: 1.4rem;
    padding: 1.2rem 2.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .vpart-featured-prints__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- VP Newsletter ("Join the Studio") --- */
.vpart-newsletter {
  background-color: #2c3e3f;
  padding: 60px 24px;
  text-align: center;
}

.vpart-newsletter__container {
  max-width: 600px;
  margin: 0 auto;
}

.vpart-newsletter__heading {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 1.5rem;
}

.vpart-newsletter__text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 0 2.5rem;
}

.vpart-newsletter__form-wrapper {
  width: 100%;
}

.vpart-newsletter__form {
  width: 100%;
}

.vpart-newsletter__fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.vpart-newsletter__name-row {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 360px;
}

.vpart-newsletter__field {
  width: 100%;
  max-width: 360px;
}

.vpart-newsletter__field--half {
  flex: 1;
  min-width: 0;
}

.vpart-newsletter__input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.4rem;
  color: #121212;
  background: #ffffff;
  border: none;
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
}

.vpart-newsletter__input::placeholder {
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
}

.vpart-newsletter__input:focus {
  outline: 2px solid #2da2bd;
  outline-offset: -2px;
}

.vpart-newsletter__button {
  width: 100%;
  max-width: 360px;
  padding: 1.2rem 2.5rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.vpart-newsletter__button:hover {
  background-color: #ffffff;
  color: #2da2bd;
}

.vpart-newsletter__privacy {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.5rem;
  line-height: 1.5;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.vpart-newsletter__error {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-top: 1rem;
}

.vpart-newsletter__success {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
  margin-top: 1.5rem;
}

@media (max-width: 480px) {
  .vpart-newsletter__heading {
    font-size: 2.4rem;
  }

  .vpart-newsletter__name-row {
    flex-direction: column;
    gap: 1rem;
  }

  .vpart-newsletter__field--half {
    width: 100%;
  }
}

/* --- Demo Store Mode — Dawn Overrides --- */
[data-mode="demo-store"] .header-wrapper {
  background: #ffffff;
}

[data-mode="demo-store"] .header-wrapper .header__heading-link {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #121212;
}

[data-mode="demo-store"] .header-wrapper .header__menu-item {
  color: #121212;
  font-family: 'Source Sans Pro', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

[data-mode="demo-store"] .header-wrapper .header__menu-item:hover {
  color: #2da2bd;
}

[data-mode="demo-store"] .header-wrapper .header__icon {
  color: #121212;
}

/* --- Demo Store Collection Page --- */
[data-mode="demo-store"] .collection-hero__inner {
  text-align: center;
  align-items: center;
}

[data-mode="demo-store"] .collection-hero__title {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

[data-mode="demo-store"] .collection-hero__description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.6rem;
  color: #555555;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-style: italic;
}

[data-mode="demo-store"] .collection-hero__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card text area — add breathing room and round bottom corners to match image card */
[data-mode="demo-store"] .card__content {
  padding: 1rem 1.2rem 0.5rem !important;
  border-radius: 0 0 var(--border-radius, 10px) var(--border-radius, 10px);
}

/* Card titles — larger, Source Sans Pro, uppercase */
[data-mode="demo-store"] .card__heading a,
[data-mode="demo-store"] .card__heading {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Card prices — match VP site: italic, centered, subtle grey */
[data-mode="demo-store"] .card-wrapper .price__container,
[data-mode="demo-store"] .card-wrapper .price {
  display: flex;
  justify-content: center;
  text-align: center;
  font-style: italic;
}
[data-mode="demo-store"] .card-wrapper .price-item--regular,
[data-mode="demo-store"] .card-wrapper .price-item--sale {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: #627478;
  letter-spacing: 0.02em;
}
/* Center-align card content to match VP layout */
[data-mode="demo-store"] .card-wrapper .card__information {
  text-align: center;
}

/* Hide filter/sort bar — unnecessary for a demo with curated products */
[data-mode="demo-store"] .facets-container,
[data-mode="demo-store"] .active-facets-mobile,
[data-mode="demo-store"] .collection-filters {
  display: none !important;
}

@media (max-width: 768px) {
  [data-mode="demo-store"] .collection-hero__title {
    font-size: 3rem;
  }
}

/* --- Demo Store Product Page — VP Branding --- */
[data-mode="demo-store"] .product__title {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

[data-mode="demo-store"] .product__text,
[data-mode="demo-store"] .product__description,
[data-mode="demo-store"] .product .rte {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.6rem;
  color: #121212;
  line-height: 1.7;
}

[data-mode="demo-store"] .product .price-item--regular,
[data-mode="demo-store"] .product .price-item--sale {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.8rem;
  color: #121212;
  letter-spacing: 0.1rem;
}

/* Vendor name */
[data-mode="demo-store"] .product .caption-with-letter-spacing {
  font-family: 'Source Sans Pro', sans-serif;
  color: #121212;
  letter-spacing: 0.08em;
}

/* --- Demo Store Buttons — All matching: black, 8px radius, full-width (VP style) --- */
[data-mode="demo-store"] .product-form__submit {
  background-color: transparent !important;
  color: #121212 !important;
  border: 1px solid #121212 !important;
  border-radius: 8px !important;
  font-family: 'Source Sans Pro', sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08rem !important;
  text-transform: uppercase !important;
  min-height: 5rem !important;
  width: 100% !important;
}

[data-mode="demo-store"] .product-form__submit:hover {
  background-color: #121212 !important;
  color: #ffffff !important;
}

/* "Buy it now" dynamic checkout button */
[data-mode="demo-store"] .shopify-payment-button .shopify-payment-button__button {
  background-color: #121212 !important;
  color: #ffffff !important;
  border: 1px solid #121212 !important;
  border-radius: 8px !important;
  font-family: 'Source Sans Pro', sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08rem !important;
  text-transform: uppercase !important;
  min-height: 5rem !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 2rem !important;
}

[data-mode="demo-store"] .shopify-payment-button .shopify-payment-button__button:hover {
  background-color: #2c3e3f !important;
  border-color: #2c3e3f !important;
}

/* General button override for collection/other pages */
[data-mode="demo-store"] .button--primary {
  background-color: #121212 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-family: 'Source Sans Pro', sans-serif !important;
}

[data-mode="demo-store"] .button--primary:hover {
  background-color: #2c3e3f !important;
}

/* MadeReady "Customize as Print" button — VP teal accent */
[data-mode="demo-store"] .product .shopify-block button,
[data-mode="demo-store"] .product .shopify-block a.button,
[data-mode="demo-store"] .product .shopify-block [class*="button"],
[data-mode="demo-store"] .product .shopify-block input[type="submit"] {
  width: 100% !important;
  max-width: 100% !important;
  background-color: #2da2bd !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-family: 'Source Sans Pro', sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08rem !important;
  min-height: 5rem !important;
  padding: 1.2rem 2rem !important;
  border: 1px solid #2da2bd !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-transform: uppercase !important;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

[data-mode="demo-store"] .product .shopify-block button:hover,
[data-mode="demo-store"] .product .shopify-block a.button:hover,
[data-mode="demo-store"] .product .shopify-block [class*="button"]:hover {
  background-color: #248fa6 !important;
  border-color: #248fa6 !important;
}

/* Global font and text-transform override for all demo-store headings */
[data-mode="demo-store"] h1,
[data-mode="demo-store"] h2,
[data-mode="demo-store"] h3,
[data-mode="demo-store"] h4 {
  font-family: 'Source Sans Pro', sans-serif;
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

[data-mode="demo-store"] .product label,
[data-mode="demo-store"] .product .form__label {
  font-family: 'Source Sans Pro', sans-serif;
  color: #121212;
}

@media (max-width: 768px) {
  [data-mode="demo-store"] .product__title {
    font-size: 2.4rem;
  }
  [data-mode="demo-store"] .product-form__submit {
    width: 100%;
  }
}

/* ==========================================================================
   For Partners Page — MadeReady Brand
   ========================================================================== */

/* --- Partners Hero --- */
.madeready-partners-hero {
  background-color: #0F1923;
  padding: 96px 24px;
  text-align: center;
}

.madeready-partners-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.madeready-partners-hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00ACEC;
  margin: 0 0 16px;
}

.madeready-partners-hero__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 48px;
  color: #F5F8FA;
  margin: 0 0 24px;
}

.madeready-partners-hero__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #4A5568;
  line-height: 1.7;
  margin: 0;
}

.madeready-partners-hero__ctas {
  margin-top: 32px;
}

/* "Partner with Us" lead-in on the partners page — light-grey ground so it
   separates the dark hero above from the white dashboard section below. */
.madeready-partners-teaser--intro {
  background-color: #F5F8FA;
}

@media (max-width: 768px) {
  .madeready-partners-hero {
    padding: 48px 24px;
  }

  .madeready-partners-hero__heading {
    font-size: 32px;
  }
}

/* --- Partners Value Props --- */
.madeready-partners-value-props {
  background-color: #F5F8FA;
  padding: 80px 24px;
}

.madeready-partners-value-props__container {
  max-width: 1200px;
  margin: 0 auto;
}

.madeready-partners-value-props__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  color: #0F1923;
  text-align: center;
  margin: 0 0 48px;
}

.madeready-partners-value-props__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.madeready-partners-value-props__card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.madeready-partners-value-props__icon {
  width: 40px;
  height: 40px;
  background: #00ACEC;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.madeready-partners-value-props__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: #0F1923;
  margin: 0 0 8px;
}

.madeready-partners-value-props__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .madeready-partners-value-props {
    padding: 48px 24px;
  }

  .madeready-partners-value-props__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .madeready-partners-value-props__heading {
    font-size: 28px;
  }
}

/* --- Partners Flow --- */
.madeready-partners-flow {
  background-color: #FFFFFF;
  padding: 80px 24px;
}

.madeready-partners-flow__container {
  max-width: 1200px;
  margin: 0 auto;
}

.madeready-partners-flow__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  color: #0F1923;
  text-align: center;
  margin: 0 0 48px;
}

.madeready-partners-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.madeready-partners-flow__step {
  text-align: center;
  padding: 24px 16px;
}

.madeready-partners-flow__label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00ACEC;
  margin-bottom: 12px;
}

.madeready-partners-flow__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #4A5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .madeready-partners-flow {
    padding: 48px 24px;
  }

  .madeready-partners-flow__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .madeready-partners-flow__heading {
    font-size: 28px;
  }
}

/* --- Partners CTA --- */
.madeready-partners-cta {
  background-color: #0F1923;
  padding: 96px 24px;
  text-align: center;
}

.madeready-partners-cta__container {
  max-width: 800px;
  margin: 0 auto;
}

.madeready-partners-cta__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  color: #F5F8FA;
  margin: 0 0 16px;
}

.madeready-partners-cta__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #4A5568;
  line-height: 1.7;
  margin: 0 0 40px;
}

.madeready-partners-cta__button {
  font-size: 17px;
  padding: 16px 40px;
}

@media (max-width: 768px) {
  .madeready-partners-cta {
    padding: 48px 24px;
  }

  .madeready-partners-cta__heading {
    font-size: 28px;
  }
}

/* ==========================================================================
   Polish — Footer, Scroll Reveal, Mobile, Accessibility
   ========================================================================== */

/* --- Marketing Mode Footer --- */
[data-mode="marketing"] .footer {
  background: #0F1923;
  color: #F5F8FA;
}

[data-mode="marketing"] .footer h2,
[data-mode="marketing"] .footer .footer__heading {
  color: #F5F8FA;
  font-family: 'Source Serif 4', Georgia, serif;
}

[data-mode="marketing"] .footer a {
  color: #8A9BAD;
  transition: color 150ms ease-out;
}

[data-mode="marketing"] .footer a:hover {
  color: #00ACEC;
}

/* Center the brand-info block (heading + tagline) — sits in the middle column */
[data-mode="marketing"] .footer .footer-block__brand-info {
  text-align: center;
}

/* --- Marketing Mode Header --- */
[data-mode="marketing"] .header-wrapper {
  background: #0F1923;
  border-bottom: 2px solid #00ACEC;
}

[data-mode="marketing"] .header-wrapper .header__heading-link,
[data-mode="marketing"] .header-wrapper .header__heading-link:hover {
  color: #F5F8FA;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

[data-mode="marketing"] .header-wrapper .header__menu-item,
[data-mode="marketing"] .header-wrapper .list-menu__item--link {
  color: rgba(245, 248, 250, 0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: color 150ms ease-out;
}

[data-mode="marketing"] .header-wrapper .header__menu-item:hover,
[data-mode="marketing"] .header-wrapper .list-menu__item--link:hover {
  color: #00ACEC;
}

[data-mode="marketing"] .header-wrapper .header__icon,
[data-mode="marketing"] .header-wrapper .header__icon:hover {
  color: #F5F8FA;
}

[data-mode="marketing"] .header-wrapper .menu-drawer__open,
[data-mode="marketing"] .header-wrapper details-disclosure button {
  color: #F5F8FA;
}

/* --- Demo Store Mode Footer --- */
/* Hide Dawn's default footer, use custom VP footer instead */
[data-mode="demo-store"] .shopify-section-group-footer-group {
  display: none !important;
}

/* Push VP footer to bottom of viewport on short pages */
.vpart-footer {
  margin-top: auto;
}

[data-mode="demo-store"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

[data-mode="demo-store"] .shopify-section-group-header-group,
[data-mode="demo-store"] .vpart-footer {
  flex-shrink: 0;
}

[data-mode="demo-store"] #MainContent {
  flex: 1 0 auto;
}

/* VP Custom Footer — matches Virginia's black footer */
.vpart-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
}

.vpart-footer__container {
  max-width: 600px;
  margin: 0 auto;
}

/* Social icons */
.vpart-footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.vpart-footer__social-link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.vpart-footer__social-link:hover {
  opacity: 0.7;
}

/* 3-column nav */
.vpart-footer__nav {
  padding: 0.5rem 0 1.25rem;
}

.vpart-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.vpart-footer__column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vpart-footer__column-heading {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.vpart-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vpart-footer__links--inline {
  flex-direction: row;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.vpart-footer__link {
  font-size: 1.05rem;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}

.vpart-footer__link:hover {
  opacity: 0.7;
}

/* Copyright */
.vpart-footer__copyright {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1rem;
}

.vpart-footer__copyright-text {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 480px) {
  .vpart-footer__columns {
    gap: 1rem;
  }

  .vpart-footer__column-heading {
    font-size: 0.95rem;
  }

  .vpart-footer__link {
    font-size: 0.95rem;
  }
}

/* --- Scroll Reveal --- */
/* One uniform motion everywhere: every .reveal element fades and floats
   vertically into place, replaying each time it re-enters the viewport. No
   horizontal slide — a vertical float reads consistently across every section.
   .reveal-group is a JS-only marker (no styles of its own): its direct children
   are promoted to .reveal so a section's intro and content blocks float in
   individually, instead of animating the whole section wrapper as one. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 450ms ease-out, transform 450ms ease-out;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bidirectional reveal: when scrolling UP, an element re-enters from ABOVE, so
   it's primed with a negative offset and settles DOWN into place. (JS toggles
   reveal--from-top on exit.) :not(.reveal-visible) guarantees reveal-visible
   still wins → translateY(0) while it's on screen. */
.reveal.reveal--from-top:not(.reveal-visible) {
  transform: translateY(-24px);
}

/* Already in view on first paint → appear instantly, no float on load.
   Applied briefly by JS, then removed so later scroll passes animate normally. */
.reveal.reveal-static {
  transition: none;
}

/* When motion is reduced the IntersectionObserver is skipped, so make sure
   revealed content is never left stuck at opacity:0. */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Partners hero — staggered fade-up entrance (mirrors the homepage hero) */
.madeready-partners-hero__subtitle { animation: heroFadeIn 600ms ease-out both; }
.madeready-partners-hero__heading  { animation: heroFadeIn 700ms ease-out 120ms both; }
.madeready-partners-hero__body     { animation: heroFadeIn 700ms ease-out 260ms both; }
.madeready-partners-hero__ctas     { animation: heroFadeIn 700ms ease-out 380ms both; }

/* Desktop-only card hover lift. Pointer/hover query keeps it off touch devices.
   Bobbing cards (.mr-cart__step, homepage numerals) are excluded — their
   infinite transform animation would override a hover transform. */
@media (hover: hover) and (pointer: fine) {
  .mr-dash__card, .mr-cart__problem, .mr-cart__solution, .mr-cart__benefit,
  .mr-img__problem, .mr-img__formula, .mr-img__matrix, .mr-img__quality,
  .mr-img__resolve, .mr-img__optimize, .mr-img__tier,
  .mr-luma__card, .mr-back__layer, .mr-back__principle,
  .mr-support__card, .mr-privacy__card, .mr-roadmap__item, .mr-flow__note {
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
  }
  .mr-dash__card:hover, .mr-cart__problem:hover, .mr-cart__solution:hover, .mr-cart__benefit:hover,
  .mr-img__problem:hover, .mr-img__formula:hover, .mr-img__matrix:hover, .mr-img__quality:hover,
  .mr-img__resolve:hover, .mr-img__optimize:hover, .mr-img__tier:hover,
  .mr-luma__card:hover, .mr-back__layer:hover, .mr-back__principle:hover,
  .mr-support__card:hover, .mr-privacy__card:hover, .mr-roadmap__item:hover, .mr-flow__note:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(15, 25, 35, 0.10);
  }

  /* Homepage value-prop cards — lift on hover while preserving their reveal fade */
  .madeready-value-props__item {
    transition: opacity 400ms ease-out, transform 250ms ease-out, box-shadow 250ms ease-out;
  }
  .madeready-value-props__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(15, 25, 35, 0.10);
  }
}

/* --- Global Image Overflow Protection --- */
img {
  max-width: 100%;
  height: auto;
}

/* --- Mobile Responsiveness Pass --- */
@media (max-width: 768px) {
  .madeready-demo-cta,
  .madeready-partners-cta {
    padding: 48px 24px;
  }

  .interstitial__card {
    width: 95%;
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .btn-primary,
  .btn-outline,
  .madeready-demo-cta__button,
  .madeready-partners-cta__button,
  .vpart-collection-grid__view-all-btn,
  .vpart-featured-prints__view-all-btn,
  .interstitial__cta {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .madeready-hero__ctas {
    flex-direction: column;
  }
}

/* ==========================================================================
   Partners Page — Deep Marketing Sections (MadeReady brand)
   Tokens: serif Source Serif 4, sans DM Sans, dark #0F1923, cyan #00ACEC,
           bg #F5F8FA, alt #FFFFFF, body #4A5568, border #E0E7ED
   ========================================================================== */

.mr-setup, .mr-flow, .mr-cart, .mr-img, .mr-luma, .mr-back, .mr-dash, .mr-support, .mr-privacy, .mr-channel, .mr-ops {
  font-family: 'DM Sans', sans-serif;
  color: #4A5568;
  padding: 96px 24px;
}
.mr-setup__container, .mr-flow__container, .mr-cart__container,
.mr-img__container, .mr-luma__container, .mr-back__container {
  max-width: 1100px;
  margin: 0 auto;
}
.mr-setup__eyebrow, .mr-flow__eyebrow, .mr-cart__eyebrow,
.mr-img__eyebrow, .mr-luma__eyebrow, .mr-back__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00ACEC;
  margin: 0 0 16px;
  text-align: center;
}
.mr-setup__heading, .mr-flow__heading, .mr-cart__heading,
.mr-img__heading, .mr-luma__heading, .mr-back__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #0F1923;
  margin: 0 0 20px;
  text-align: center;
}
.mr-setup__lede, .mr-flow__lede, .mr-cart__lede,
.mr-img__lede, .mr-luma__lede, .mr-back__lede {
  font-size: 17px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0 auto 56px;
  max-width: 720px;
  text-align: center;
}

/* --- Setup section --- */
.mr-setup { background: #F5F8FA; }
.mr-setup__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mr-setup__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  background: #FFFFFF;
  border: 1px solid #E0E7ED;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 2px 8px rgba(15, 25, 35, 0.04);
}
.mr-setup__step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00ACEC;
  color: #FFFFFF;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mr-setup__step-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 4px;
}
.mr-setup__step-time {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00ACEC;
  margin: 0 0 12px;
}
.mr-setup__step-desc { font-size: 16px; line-height: 1.65; margin: 0 0 12px; }
.mr-setup__step-detail {
  font-size: 13px;
  line-height: 1.6;
  color: #6B7785;
  background: #F5F8FA;
  border-left: 3px solid #00ACEC;
  padding: 12px 16px;
  border-radius: 4px;
  margin: 0;
}
.mr-setup__footer {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: #4A5568;
  margin: 0;
}

/* --- Customizer flow tree --- */
.mr-flow { background: #FFFFFF; }
.mr-flow__tree {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  margin-bottom: 56px;
}
.mr-flow__node {
  background: #FFFFFF;
  border: 1.5px solid #E0E7ED;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.mr-flow__node--root {
  background: #0F1923;
  border-color: #0F1923;
  align-self: center;
  text-align: center;
  min-width: 320px;
}
.mr-flow__node--root .mr-flow__node-title { color: #FFFFFF; }
.mr-flow__node--root .mr-flow__node-sub   { color: #B8C4CE; }
.mr-flow__node-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00ACEC;
}
.mr-flow__node-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #0F1923;
}
.mr-flow__node-sub { font-size: 13px; color: #6B7785; }
.mr-flow__node--small {
  font-size: 14px;
  font-weight: 500;
  color: #0F1923;
  padding: 10px 14px;
}
.mr-flow__node--small em { color: #6B7785; font-style: normal; font-size: 12px; }
.mr-flow__node--ghost {
  border-style: dashed;
  color: #B8C4CE;
  font-style: italic;
  background: transparent;
}
.mr-flow__node--tail {
  background: #F5F8FA;
  border-color: #00ACEC;
}
.mr-flow__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mr-flow__branch {
  background: #F5F8FA;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mr-flow__branch-tag, .mr-flow__sub-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background: #1B6B8A;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.mr-flow__sub-tag { background: #00ACEC; }
.mr-flow__sub-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.mr-flow__sub-branch {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 12px;
}
.mr-flow__tail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mr-flow__notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mr-flow__note {
  background: #F5F8FA;
  border-left: 3px solid #00ACEC;
  padding: 20px 24px;
  border-radius: 4px;
}
.mr-flow__note h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  color: #0F1923;
  margin: 0 0 6px;
}
.mr-flow__note p { font-size: 14px; line-height: 1.6; margin: 0; }

/* --- Dual cart --- */
.mr-cart { background: #F5F8FA; }
.mr-cart__sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  color: #0F1923;
  margin: 0 0 16px;
}
.mr-cart__problem, .mr-cart__solution {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 24px;
  border: 1px solid #E0E7ED;
}
.mr-cart__problem p, .mr-cart__solution p { font-size: 16px; line-height: 1.7; }
.mr-cart__math {
  list-style: none;
  padding: 16px 20px;
  margin: 16px 0;
  background: #F5F8FA;
  border-radius: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: #0F1923;
}
.mr-cart__math li { padding: 2px 0; }
.mr-cart__math-result {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  color: #0F1923;
}
.mr-cart__diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin: 24px 0;
}
.mr-cart__step {
  background: #0F1923;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  animation: mr-card-bob 6.4s ease-in-out infinite;
  will-change: transform;
}

/* Stagger the float so the four cards drift organically, not in lockstep.
   The diagram interleaves step/arrow divs, so steps are nth-child 1,3,5,7;
   arrows stay put while the cards bob. Disabled under prefers-reduced-motion
   by the global rule above. */
.mr-cart__step:nth-child(3) { animation-duration: 7.2s; animation-delay: 0.8s; }
.mr-cart__step:nth-child(5) { animation-duration: 6s;   animation-delay: 1.6s; }
.mr-cart__step:nth-child(7) { animation-duration: 6.8s; animation-delay: 2.4s; }

@keyframes mr-card-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.mr-cart__step strong {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  color: #FFFFFF;
  display: block;
}
.mr-cart__step p {
  font-size: 13px;
  line-height: 1.55;
  color: #B8C4CE;
  margin: 0;
}
.mr-cart__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00ACEC;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mr-cart__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00ACEC;
  font-weight: 700;
}
.mr-cart__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.mr-cart__benefit {
  background: #FFFFFF;
  border-top: 3px solid #00ACEC;
  border-radius: 4px;
  padding: 20px 24px;
}
.mr-cart__benefit h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  color: #0F1923;
  margin: 0 0 8px;
}
.mr-cart__benefit p { font-size: 14px; line-height: 1.6; margin: 0; }

/* --- Image pipeline --- */
.mr-img { background: #FFFFFF; }
.mr-img__sub {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  color: #0F1923;
  margin: 0 0 12px;
}
.mr-img__problem, .mr-img__formula, .mr-img__matrix, .mr-img__quality, .mr-img__resolve, .mr-img__optimize {
  background: #F5F8FA;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 24px;
}
.mr-img p, .mr-img li { font-size: 15px; line-height: 1.65; }
.mr-img__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}
.mr-img__table th, .mr-img__table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #E0E7ED;
}
.mr-img__table th {
  background: #0F1923;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 13px;
}
.mr-img__table code {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  background: #F5F8FA;
  padding: 2px 6px;
  border-radius: 3px;
}
.mr-img__footnote {
  font-size: 13px;
  color: #6B7785;
  font-style: italic;
  margin-top: 12px;
}
.mr-img__profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0;
}
.mr-img__profiles span {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #0F1923;
  background: #FFFFFF;
  padding: 8px 12px;
  border-radius: 4px;
  border-left: 2px solid #00ACEC;
}
.mr-img__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.mr-img__tier {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  border-top: 3px solid #E0E7ED;
  animation: mr-card-bob 6.4s ease-in-out infinite;
  will-change: transform;
}

/* Stagger the float so the three traffic-light tiers drift out of sync.
   Reuses the mr-card-bob keyframe; disabled under the global
   prefers-reduced-motion rule above. */
.mr-img__tier:nth-child(2) { animation-duration: 7.2s; animation-delay: 0.9s; }
.mr-img__tier:nth-child(3) { animation-duration: 6s;   animation-delay: 1.8s; }
.mr-img__tier strong {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  color: #0F1923;
  display: block;
  margin: 8px 0;
}
.mr-img__tier p { font-size: 14px; margin: 0; }
.mr-img__tier--green { border-top-color: #2BA84A; }
.mr-img__tier--amber { border-top-color: #D49A2C; }
.mr-img__tier--red   { border-top-color: #D14545; }
.mr-img__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.mr-img__dot--green { background: #2BA84A; }
.mr-img__dot--amber { background: #D49A2C; }
.mr-img__dot--red   { background: #D14545; }
.mr-img__resolve ol { margin: 12px 0 0 20px; padding: 0; }
.mr-img__resolve li { margin-bottom: 8px; }

/* --- LumaPrints native grid --- */
.mr-luma { background: #0F1923; }
.mr-luma__eyebrow { color: #00ACEC; }
.mr-luma__heading { color: #FFFFFF; }
.mr-luma__lede    { color: #B8C4CE; }
.mr-luma__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mr-luma__card {
  background: #1B2632;
  border: 1px solid #2A3A4A;
  border-radius: 12px;
  padding: 28px 32px;
}
.mr-luma__card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  color: #FFFFFF;
  margin: 0 0 12px;
}
.mr-luma__card p {
  font-size: 14px;
  line-height: 1.65;
  color: #B8C4CE;
  margin: 0 0 12px;
}
.mr-luma__card p:last-child { margin-bottom: 0; }
.mr-luma__card strong { color: #FFFFFF; }
.mr-luma__card code {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  background: #0F1923;
  color: #00ACEC;
  padding: 2px 6px;
  border-radius: 3px;
}
.mr-luma__widths {
  list-style: none;
  padding: 12px 16px;
  margin: 12px 0;
  background: #0F1923;
  border-radius: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #B8C4CE;
}
.mr-luma__widths li { padding: 2px 0; }
.mr-luma__widths strong { color: #00ACEC; }

/* --- Backend stack --- */
.mr-back { background: #F5F8FA; }
.mr-back__stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.mr-back__layer {
  background: #FFFFFF;
  border: 1px solid #E0E7ED;
  border-radius: 10px;
  padding: 24px 28px;
}
.mr-back__layer-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00ACEC;
  background: #F5F8FA;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.mr-back__layer h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  color: #0F1923;
  margin: 0 0 8px;
}
.mr-back__layer p { font-size: 14px; line-height: 1.6; margin: 0; }
.mr-back__layer code {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  background: #F5F8FA;
  padding: 1px 5px;
  border-radius: 3px;
  color: #0F1923;
}
.mr-back__principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mr-back__principle {
  background: #FFFFFF;
  border-left: 3px solid #00ACEC;
  padding: 20px 24px;
  border-radius: 4px;
}
.mr-back__principle h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  color: #0F1923;
  margin: 0 0 8px;
}
.mr-back__principle p { font-size: 14px; line-height: 1.6; margin: 0; }

/* --- Mobile responsive --- */
@media (max-width: 900px) {
  .mr-setup, .mr-flow, .mr-cart, .mr-img, .mr-luma, .mr-back, .mr-dash, .mr-support, .mr-privacy { padding: 64px 20px; }
  .mr-setup__heading, .mr-flow__heading, .mr-cart__heading,
  .mr-img__heading, .mr-luma__heading, .mr-back__heading,
  .mr-dash__heading, .mr-support__heading, .mr-privacy__heading { font-size: 30px; }
  .mr-flow__split, .mr-flow__tail, .mr-flow__sub-split,
  .mr-flow__notes, .mr-cart__benefits, .mr-cart__diagram,
  .mr-img__profiles, .mr-img__tiers, .mr-luma__grid,
  .mr-back__stack, .mr-back__principles,
  .mr-dash__grid, .mr-support__summary, .mr-privacy__grid { grid-template-columns: 1fr; }
  .mr-cart__arrow { transform: rotate(90deg); padding: 4px 0; }
  .mr-setup__step { grid-template-columns: 48px 1fr; padding: 20px; gap: 16px; }
  .mr-setup__step-num { width: 40px; height: 40px; font-size: 18px; }
  .mr-cart__problem, .mr-cart__solution,
  .mr-img__problem, .mr-img__formula, .mr-img__matrix,
  .mr-img__quality, .mr-img__resolve, .mr-img__optimize,
  .mr-luma__card, .mr-back__layer { padding: 20px 22px; }
  .mr-img__table { font-size: 12px; }
  .mr-img__table th, .mr-img__table td { padding: 8px 10px; }
  .mr-dash__group-title { font-size: 20px; }
  .mr-roadmap__item-cols { grid-template-columns: 1fr; }
  .mr-roadmap__item-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* ==========================================================================
   Partners Roadmap — "What We Build Together"
   ========================================================================== */
.mr-roadmap {
  font-family: 'DM Sans', sans-serif;
  color: #4A5568;
  padding: 96px 24px;
  background: #FFFFFF;
}
.mr-roadmap__container { max-width: 1100px; margin: 0 auto; }
.mr-roadmap__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00ACEC;
  margin: 0 0 16px;
  text-align: center;
}
.mr-roadmap__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #0F1923;
  margin: 0 0 20px;
  text-align: center;
}
.mr-roadmap__lede {
  font-size: 17px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0 auto 56px;
  max-width: 720px;
  text-align: center;
}
.mr-roadmap__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mr-roadmap__item {
  background: #F5F8FA;
  border: 1px solid #E0E7ED;
  border-radius: 12px;
  padding: 32px 36px;
}
.mr-roadmap__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.mr-roadmap__item-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #00ACEC;
  color: #FFFFFF;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mr-roadmap__item-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #0F1923;
  margin: 0;
}
.mr-roadmap__item-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}
.mr-roadmap__item-now, .mr-roadmap__item-future {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px 24px;
}
.mr-roadmap__col-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.mr-roadmap__item-now .mr-roadmap__col-label { color: #6B7785; }
.mr-roadmap__item-future .mr-roadmap__col-label { color: #00ACEC; }
.mr-roadmap__item-future {
  border-left: 3px solid #00ACEC;
}
.mr-roadmap__item-now p, .mr-roadmap__item-future p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.mr-roadmap__item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00ACEC;
  font-weight: 700;
  padding-top: 24px;
}
.mr-roadmap__item-detail {
  font-size: 13px;
  line-height: 1.6;
  color: #6B7785;
  background: #FFFFFF;
  border-left: 3px solid #00ACEC;
  padding: 12px 16px;
  border-radius: 4px;
  margin: 20px 0 0;
}

/* --- Merchant Dashboard --- */
.mr-dash { background: #FFFFFF; }
.mr-dash__container { max-width: 1100px; margin: 0 auto; }
.mr-dash__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00ACEC;
  margin: 0 0 16px;
  text-align: center;
}
.mr-dash__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #0F1923;
  margin: 0 0 20px;
  text-align: center;
}
.mr-dash__lede {
  font-size: 17px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0 auto 56px;
  max-width: 720px;
  text-align: center;
}
.mr-dash__group {
  margin-bottom: 48px;
}
.mr-dash__group:last-child {
  margin-bottom: 0;
}
.mr-dash__group-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E0E7ED;
}
.mr-dash__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mr-dash__card {
  background: #F5F8FA;
  border: 1px solid #E0E7ED;
  border-radius: 12px;
  padding: 28px 32px;
}
.mr-dash__card-icon {
  width: 44px;
  height: 44px;
  background: rgba(27, 107, 138, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mr-dash__card h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 12px;
}
.mr-dash__card p {
  font-size: 14px;
  line-height: 1.65;
  color: #4A5568;
  margin: 0;
}

/* Embedded-in-Shopify-admin band */
.mr-dash__embed {
  max-width: 900px;
  margin: 0 auto 56px;
}
.mr-dash__embed-band {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 22px;
  align-items: start;
  background: rgba(0, 172, 236, 0.06);
  border: 1px solid rgba(0, 172, 236, 0.25);
  border-radius: 12px;
  padding: 28px 32px;
}
.mr-dash__embed-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 172, 236, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.mr-dash__embed-body h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 8px;
}
.mr-dash__embed-body p {
  font-size: 15px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0;
}
.mr-dash__embed-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.mr-dash__embed-points li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.6;
  color: #4A5568;
}
.mr-dash__embed-points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #00ACEC;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.mr-dash__embed-points strong {
  color: #0F1923;
  font-weight: 700;
}
/* Mobile override placed AFTER the base rules above so it wins on source order
   (the global max-width:900px block sits earlier in the file than these rules). */
@media (max-width: 900px) {
  .mr-dash__embed-band { grid-template-columns: 1fr; gap: 16px; padding: 22px 24px; }
  .mr-dash__embed-points { grid-template-columns: 1fr; }
}

/* --- Support & Updates --- */
.mr-support { background: #0F1923; }
.mr-support__container { max-width: 1100px; margin: 0 auto; }
.mr-support__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00ACEC;
  margin: 0 0 16px;
  text-align: center;
}
.mr-support__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 20px;
  text-align: center;
}
.mr-support__lede {
  font-size: 17px;
  line-height: 1.7;
  color: #B8C4CE;
  margin: 0 auto 56px;
  max-width: 720px;
  text-align: center;
}
.mr-support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.mr-support__card {
  background: #1B2632;
  border: 1px solid #2A3A4A;
  border-radius: 12px;
  padding: 32px 36px;
}
.mr-support__card--featured {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 0 20px;
}
.mr-support__card-icon {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  background: rgba(0, 172, 236, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  align-self: start;
  margin-top: 2px;
}
.mr-support__card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}
.mr-support__card p {
  font-size: 15px;
  line-height: 1.7;
  color: #B8C4CE;
  margin: 0;
}
.mr-support__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mr-support__summary-item {
  background: #1B2632;
  border-top: 3px solid #00ACEC;
  border-radius: 4px;
  padding: 24px 28px;
}
.mr-support__summary-item h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  color: #FFFFFF;
  margin: 0 0 8px;
}
.mr-support__summary-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #B8C4CE;
  margin: 0;
}

/* ==========================================================================
   Privacy / Data Protection Section (Partners Page)
   ========================================================================== */
.mr-privacy { background: #F5F8FA; }
.mr-privacy__container { max-width: 1100px; margin: 0 auto; }
.mr-privacy__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1B6B8A;
  margin: 0 0 16px;
  text-align: center;
}
.mr-privacy__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #0F1923;
  margin: 0 0 20px;
  text-align: center;
}
.mr-privacy__lede {
  font-size: 17px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0 auto 56px;
  max-width: 720px;
  text-align: center;
}
.mr-privacy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.mr-privacy__card {
  background: #FFFFFF;
  border: 1px solid #E0E7ED;
  border-radius: 12px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 0 20px;
}
.mr-privacy__card-icon {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  background: rgba(27, 107, 138, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  align-self: start;
  margin-top: 2px;
}
.mr-privacy__card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 8px;
}
.mr-privacy__card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0;
}
.mr-privacy__footer-note {
  background: #FFFFFF;
  border-left: 3px solid #1B6B8A;
  border-radius: 0 8px 8px 0;
  padding: 20px 28px;
  max-width: 820px;
  margin: 0 auto;
}
.mr-privacy__footer-note p {
  font-size: 15px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0;
}

/* ==========================================================================
   Partner Channel — Direct Line to Engineering (Partners Page)
   ========================================================================== */
.mr-channel { background: #FFFFFF; }
.mr-channel__container { max-width: 1100px; margin: 0 auto; }
.mr-channel__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1B6B8A;
  margin: 0 0 16px;
  text-align: center;
}
.mr-channel__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #0F1923;
  margin: 0 0 20px;
  text-align: center;
}
.mr-channel__lede {
  font-size: 17px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0 auto 48px;
  max-width: 760px;
  text-align: center;
}
.mr-channel__highlight {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 22px;
  align-items: start;
  background: rgba(0, 172, 236, 0.06);
  border: 1px solid rgba(0, 172, 236, 0.25);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 0 auto 40px;
  max-width: 900px;
}
.mr-channel__highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 172, 236, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.mr-channel__highlight-body h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 8px;
}
.mr-channel__highlight-body p {
  font-size: 15px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0;
}
.mr-channel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.mr-channel__card {
  background: #F5F8FA;
  border: 1px solid #E0E7ED;
  border-radius: 12px;
  padding: 32px;
}
.mr-channel__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(27, 107, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.mr-channel__card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 10px;
  line-height: 1.3;
}
.mr-channel__card p {
  font-size: 15px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0;
}
.mr-channel__note {
  background: #F5F8FA;
  border-left: 3px solid #1B6B8A;
  border-radius: 0 8px 8px 0;
  padding: 20px 28px;
  max-width: 900px;
  margin: 0 auto;
}
.mr-channel__note p {
  font-size: 15px;
  line-height: 1.7;
  color: #4A5568;
  margin: 0;
}

/* ==========================================================================
   Maintenance / Releases / Transparency (Partners Page)
   ========================================================================== */
.mr-ops { background: #0F1923; }
.mr-ops__container { max-width: 1100px; margin: 0 auto; }
.mr-ops__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00ACEC;
  margin: 0 0 16px;
  text-align: center;
}
.mr-ops__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 20px;
  text-align: center;
}
.mr-ops__lede {
  font-size: 17px;
  line-height: 1.7;
  color: #B8C4CE;
  margin: 0 auto 56px;
  max-width: 760px;
  text-align: center;
}
.mr-ops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.mr-ops__card {
  background: #1B2632;
  border: 1px solid #2A3A4A;
  border-radius: 12px;
  padding: 32px;
}
.mr-ops__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 172, 236, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.mr-ops__card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
  line-height: 1.3;
}
.mr-ops__card p {
  font-size: 15px;
  line-height: 1.7;
  color: #B8C4CE;
  margin: 0;
}
.mr-ops__tags {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mr-ops__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0F1923;
  border: 1px solid #2A3A4A;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #D6E0E8;
}
.mr-ops__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mr-ops__tag-dot--release { background: #00ACEC; }
.mr-ops__tag-dot--breaking { background: #E53E3E; }
.mr-ops__tag-dot--deprecation { background: #D69E2E; }
.mr-ops__tag-dot--incident { background: #E53E3E; }
.mr-ops__tag-dot--hotfix { background: #38A169; }
.mr-ops__pages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0 48px;
}
.mr-ops__page {
  background: #1B2632;
  border: 1px solid #2A3A4A;
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
}
.mr-ops__page-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 172, 236, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.mr-ops__page h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
}
.mr-ops__page p {
  font-size: 15px;
  line-height: 1.7;
  color: #B8C4CE;
  margin: 0 0 24px;
}
.mr-ops__page-link {
  align-self: flex-start;
  margin-top: auto;
}
.mr-ops__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mr-ops__summary-item {
  background: #1B2632;
  border-top: 3px solid #00ACEC;
  border-radius: 4px;
  padding: 24px 28px;
}
.mr-ops__summary-item h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  color: #FFFFFF;
  margin: 0 0 8px;
}
.mr-ops__summary-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #B8C4CE;
  margin: 0;
}

/* --- Built for Shopify readiness (dark) --- */
.mr-bfs {
  background: #0F1923;
  font-family: 'DM Sans', sans-serif;
  color: #B8C4CE;
  padding: 96px 24px;
}
.mr-bfs__container { max-width: 1100px; margin: 0 auto; }
.mr-bfs__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00ACEC;
  margin: 0 0 16px;
  text-align: center;
}
.mr-bfs__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 20px;
  text-align: center;
}
.mr-bfs__lede {
  font-size: 17px;
  line-height: 1.7;
  color: #B8C4CE;
  margin: 0 auto 56px;
  max-width: 760px;
  text-align: center;
}
.mr-bfs__pillars {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mr-bfs__pillar {
  background: #1B2632;
  border: 1px solid #2A3A4A;
  border-radius: 12px;
  padding: 28px 24px;
}
.mr-bfs__pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 172, 236, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mr-bfs__pillar h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
}
.mr-bfs__pillar p {
  font-size: 14px;
  line-height: 1.65;
  color: #B8C4CE;
  margin: 0;
}
.mr-bfs__why {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(0, 172, 236, 0.08);
  border: 1px solid rgba(0, 172, 236, 0.25);
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
}
.mr-bfs__why-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
}
.mr-bfs__why p {
  font-size: 15px;
  line-height: 1.7;
  color: #B8C4CE;
  margin: 0;
}
/* mr-bfs mobile — placed after its base rules so it wins on source order */
@media (max-width: 900px) {
  .mr-bfs { padding: 64px 20px; }
  .mr-bfs__heading { font-size: 30px; }
  .mr-bfs__pillars { grid-template-columns: 1fr 1fr; }
  .mr-bfs__pillar { padding: 22px 20px; }
  .mr-bfs__why { padding: 22px 24px; }
}
@media (max-width: 540px) {
  .mr-bfs__pillars { grid-template-columns: 1fr; }
}

/* --- Mobile responsive (Channel + Ops) --- */
@media (max-width: 900px) {
  .mr-channel, .mr-ops { padding: 64px 20px; }
  .mr-channel__heading, .mr-ops__heading { font-size: 30px; }
  .mr-channel__grid,
  .mr-ops__grid, .mr-ops__pages, .mr-ops__summary { grid-template-columns: 1fr; }
  .mr-channel__highlight {
    grid-template-columns: 1fr;
    gap: 16px 0;
    padding: 22px 24px;
  }
  .mr-channel__card, .mr-channel__note,
  .mr-ops__card, .mr-ops__page { padding: 22px 24px; }
}

/* ==========================================================================
   Status Page
   ========================================================================== */
.mr-status {
  font-family: 'DM Sans', sans-serif;
  color: #4A5568;
}

.mr-status__container {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Hero --- */
.mr-status__hero {
  background: #0F1923;
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
}
.mr-status__hero--degraded { background: linear-gradient(135deg, #0F1923 70%, #3D2E0A); }
.mr-status__hero--down { background: linear-gradient(135deg, #0F1923 70%, #3A1515); }
.mr-status__eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #00ACEC;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
}
.mr-status__heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  color: #F5F8FA;
  margin: 0 0 12px;
  line-height: 1.2;
}
.mr-status__updated {
  font-size: 14px;
  color: #8A9BAD;
  margin: 0 0 32px;
}
.mr-status__overall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #F5F8FA;
}

/* --- Status dots --- */
.mr-status__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.mr-status__dot--operational {
  background: #2DD4A8;
  box-shadow: 0 0 8px rgba(45,212,168,0.5);
}
.mr-status__dot--degraded {
  background: #F5A623;
  box-shadow: 0 0 8px rgba(245,166,35,0.5);
}
.mr-status__dot--down {
  background: #E5534B;
  box-shadow: 0 0 8px rgba(229,83,75,0.5);
}
.mr-status__dot--maintenance {
  background: #00ACEC;
  box-shadow: 0 0 8px rgba(0,172,236,0.4);
}
.mr-status__dot--checking {
  background: #8A9BAD;
  animation: mr-status-pulse 1.5s ease-in-out infinite;
}
@keyframes mr-status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* --- Service cards --- */
.mr-status__services {
  background: #F5F8FA;
  padding: 48px 24px 56px;
}
.mr-status__service {
  background: #FFFFFF;
  border: 1px solid #E0E7ED;
  border-radius: 10px;
  padding: 24px 28px 20px;
  margin-bottom: 16px;
  transition: box-shadow 200ms ease-out;
}
.mr-status__service:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.mr-status__service:last-child { margin-bottom: 0; }
.mr-status__service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.mr-status__service-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 2px;
}
.mr-status__service-url {
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  color: #8A9BAD;
}
.mr-status__service-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.mr-status__service-label {
  font-size: 14px;
  font-weight: 600;
  color: #0F1923;
}

/* --- Uptime bar --- */
.mr-status__bar-track {
  height: 8px;
  background: #E0E7ED;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.mr-status__bar-fill {
  height: 100%;
  background: #2DD4A8;
  border-radius: 4px;
  transition: width 600ms ease-out;
}
.mr-status__bar-fill--degraded { background: #F5A623; }
.mr-status__bar-fill--down { background: #E5534B; }
.mr-status__bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #8A9BAD;
}
.mr-status__uptime-pct {
  font-weight: 600;
  font-family: 'DM Mono', monospace;
  color: #1B6B8A;
}

/* --- Incidents --- */
.mr-status__incidents {
  background: #FFFFFF;
  padding: 48px 24px 56px;
}
.mr-status__incidents-heading {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 24px;
}
.mr-status__no-incidents {
  background: #F5F8FA;
  border: 1px solid #E0E7ED;
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  font-size: 15px;
  color: #8A9BAD;
}
.mr-status__incident {
  border-left: 3px solid #E5534B;
  padding: 16px 20px;
  margin-bottom: 16px;
  background: #FDF5F3;
  border-radius: 0 8px 8px 0;
}
.mr-status__incident--resolved { border-left-color: #2DD4A8; background: #F0FDF9; }
.mr-status__incident-title {
  font-size: 15px;
  font-weight: 700;
  color: #0F1923;
  margin: 0 0 4px;
}
.mr-status__incident-date {
  font-size: 12px;
  color: #8A9BAD;
  font-family: 'DM Mono', monospace;
  margin-bottom: 8px;
}
.mr-status__incident-body { font-size: 14px; line-height: 1.6; margin: 0; }

/* --- Footer --- */
.mr-status__footer {
  background: #0F1923;
  padding: 24px;
  text-align: center;
}
.mr-status__footer-text {
  font-size: 13px;
  color: #8A9BAD;
  margin: 0;
}
.mr-status__footer-text a {
  color: #00ACEC;
  text-decoration: none;
  font-weight: 600;
}
.mr-status__footer-text a:hover { text-decoration: underline; }
.mr-status__footer-sep { margin: 0 8px; }

/* --- Mobile --- */
@media (max-width: 768px) {
  .mr-status__hero { padding: 48px 20px 40px; }
  .mr-status__heading { font-size: 28px; }
  .mr-status__services { padding: 32px 16px 40px; }
  .mr-status__service { padding: 20px 20px 16px; }
  .mr-status__service-head { flex-direction: column; gap: 8px; }
  .mr-status__service-status { align-self: flex-start; }
  .mr-status__incidents { padding: 32px 16px 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .mr-status__dot--checking { animation: none; }
}
