/*
 * Theme Name: UnusualBeauty
 * Theme URI: https://unusualbeautymodel.com
 * Author: UBM Development
 * Description: Custom theme for Unusual Beauty Model — premium model content platform
 * Version: 1.4.12
 * Text Domain: unusualbeauty
 */

/* ============================================================
   1. CSS VARIABLES — LIGHT (DEFAULT)
   ============================================================ */
:root {
  /* Accents */
  --ubm-gold: #b76e79;
  --ubm-rose-gold: #b76e79;
  --ubm-gold-hover: #9f5f6d;
  --ubm-gold-border: rgba(183,110,121,0.4);
  --ubm-gold-border-hover: rgba(183,110,121,0.85);
  --ubm-white: #ffffff;
  --ubm-black: #000000;

  /* Light theme (default) */
  --ubm-bg: #ffffff;
  --ubm-bg-secondary: #f7f4ef;
  --ubm-bg-card: #ffffff;
  --ubm-bg-card-hover: #fdf8f0;
  --ubm-text-primary: #1a1a1a;
  --ubm-text-secondary: #555555;
  --ubm-text-muted: #888888;
  --ubm-border: rgba(183,110,121,0.25);
  --ubm-overlay: rgba(255,255,255,0.65);
  --ubm-nav-bg: rgba(255,255,255,0.92);
  --ubm-nav-border: rgba(183,110,121,0.2);
  --ubm-card-shadow: 0 2px 16px rgba(0,0,0,0.08);
  --ubm-input-bg: #f9f9f9;
  --ubm-input-border: #e0d5c0;

  /* Layout */
  --ubm-radius: 10px;
  --ubm-radius-sm: 4px;
  --ubm-transition: 0.25s ease;
  --ubm-container: 1200px;
  --ubm-banner-h: 44px;
}

/* ============================================================
   2. CSS VARIABLES — DARK MODE
   ============================================================ */
[data-theme="dark"] {
  --ubm-bg: #0a0a0a;
  --ubm-bg-secondary: #111111;
  --ubm-bg-card: #141414;
  --ubm-bg-card-hover: #1c1c1c;
  --ubm-text-primary: #f5f5f5;
  --ubm-text-secondary: #bbbbbb;
  --ubm-text-muted: #777777;
  --ubm-border: rgba(183,110,121,0.25);
  --ubm-overlay: rgba(0,0,0,0.65);
  --ubm-nav-bg: rgba(10,10,10,0.92);
  --ubm-nav-border: rgba(183,110,121,0.15);
  --ubm-card-shadow: 0 2px 24px rgba(0,0,0,0.5);
  --ubm-input-bg: #1a1a1a;
  --ubm-input-border: #333333;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ubm-bg: #000000;
    --ubm-bg-secondary: #0b0b0b;
    --ubm-bg-card: #121212;
    --ubm-bg-card-hover: #1a1a1a;
    --ubm-text-primary: #f5f5f5;
    --ubm-text-secondary: #c2c2c2;
    --ubm-text-muted: #8a8a8a;
    --ubm-border: rgba(183,110,121,0.25);
    --ubm-overlay: rgba(0,0,0,0.7);
    --ubm-nav-bg: rgba(0,0,0,0.92);
    --ubm-nav-border: rgba(183,110,121,0.15);
    --ubm-card-shadow: 0 2px 24px rgba(0,0,0,0.5);
    --ubm-input-bg: #171717;
    --ubm-input-border: #333333;
  }
}

/* ============================================================
   3. BASE RESET & TYPOGRAPHY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--ubm-bg);
  color: var(--ubm-text-secondary);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  transition: background-color 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--ubm-text-primary);
  line-height: 1.2;
}
h4, h5, h6 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--ubm-text-primary);
}
p { color: var(--ubm-text-secondary); margin-bottom: 1rem; }
a { color: var(--ubm-gold); text-decoration: none; transition: color var(--ubm-transition); }
a:hover { color: var(--ubm-gold-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.ubm-container {
  max-width: var(--ubm-container);
  margin-inline: auto;
  padding-inline: 2rem;
}
.ubm-section { padding-block: 5rem; }
.ubm-section--sm { padding-block: 3rem; }
.text-center { text-align: center; }
.text-gold { color: var(--ubm-gold); }
.text-muted { color: var(--ubm-text-muted); font-size: 13px; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--ubm-radius-sm);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background-color var(--ubm-transition), transform var(--ubm-transition), box-shadow var(--ubm-transition), color var(--ubm-transition);
  text-decoration: none;
  line-height: 1;
  min-height: 44px;
  padding: 12px 28px;
  border: none;
}
.btn-gold {
  background: var(--ubm-gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--ubm-gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183,110,121,0.4);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ubm-gold);
  color: var(--ubm-gold);
}
.btn-outline:hover {
  background: var(--ubm-gold);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { font-size: 16px; padding: 14px 36px; }
.btn-sm { font-size: 13px; padding: 7px 18px; min-height: 36px; }
.btn-block { width: 100%; }

/* ============================================================
   6. STICKY HEADER WRAPPER
   ============================================================ */
.ubm-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1001;
}

/* ============================================================
   7. ANNOUNCEMENT BANNER
   ============================================================ */
.ubm-banner {
  background: linear-gradient(90deg, var(--ubm-gold), var(--ubm-gold-hover));
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0 3rem;
  height: var(--ubm-banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
[data-theme="dark"] .ubm-banner {
  background: linear-gradient(90deg, #9f5f6d, #7d4754);
  color: #f5f5f5;
}
.ubm-banner.dismissed { display: none; }
.ubm-banner__dismiss {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.ubm-banner__dismiss:hover { opacity: 1; }

/* ============================================================
   8. NAVBAR
   ============================================================ */
.ubm-nav {
  background: var(--ubm-nav-bg);
  border-bottom: 1px solid var(--ubm-nav-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease;
}
.ubm-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.ubm-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding-inline: 2rem;
  max-width: 1400px;
  margin-inline: auto;
}

/* Logo */
.ubm-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ubm-text-primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.ubm-nav__logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(216, 95, 135, 0.22);
  transition: transform var(--ubm-transition), box-shadow var(--ubm-transition);
}
.ubm-nav__logo:hover .ubm-nav__logo-mark {
  transform: translateY(-1px) rotate(-2deg);
  box-shadow: 0 14px 30px rgba(216, 95, 135, 0.32);
}
.ubm-nav__wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.24em;
}
.ubm-nav__wordmark-accent { color: var(--ubm-gold); }

/* Center nav links */
.ubm-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto; /* Moves menu to the right */
  margin-right: 1.5rem;
}
.ubm-nav__links a {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--ubm-text-primary);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--ubm-transition), border-color var(--ubm-transition);
}
.ubm-nav__links a:hover,
.ubm-nav__links a.active {
  color: var(--ubm-gold);
  border-bottom-color: var(--ubm-gold);
}

/* Right controls */
.ubm-nav__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.ubm-theme-toggle {
  background: transparent;
  border: 1.5px solid var(--ubm-gold-border);
  border-radius: 20px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 16px;
  color: var(--ubm-text-primary);
  transition: border-color var(--ubm-transition), background var(--ubm-transition);
  min-height: 44px;
  min-width: 44px;
}
.ubm-theme-toggle:hover { border-color: var(--ubm-gold); background: var(--ubm-gold-border); }

/* Hamburger */
.ubm-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.ubm-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ubm-text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ubm-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ubm-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.ubm-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.ubm-nav__drawer {
  display: none;
  flex-direction: column;
  background: var(--ubm-nav-bg);
  border-top: 1px solid var(--ubm-nav-border);
  padding: 1.5rem 2rem;
  gap: 0;
}
.ubm-nav__drawer.open { display: flex; }
.ubm-nav__drawer a {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: var(--ubm-text-primary);
  padding: 14px 0;
  border-bottom: 1px solid var(--ubm-border);
  text-decoration: none;
}
.ubm-nav__drawer a:hover { color: var(--ubm-gold); }
.ubm-nav__drawer a:last-child { border-bottom: none; }

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.ubm-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background-color: var(--ubm-bg-secondary);
  position: relative;
  overflow: hidden;
}
.ubm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(183,110,121,0.08) 0%, transparent 70%);
  pointer-events: none;
}
[data-theme="dark"] .ubm-hero::before {
  background: radial-gradient(ellipse at center, rgba(183,110,121,0.06) 0%, transparent 70%);
}
.ubm-hero__eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ubm-gold);
  margin-bottom: 1.25rem;
}
.ubm-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
.ubm-hero__sub {
  font-size: 18px;
  color: var(--ubm-text-secondary);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.ubm-hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ubm-hero__deco {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ubm-text-muted);
  font-size: 13px;
}
.ubm-hero__deco::before, .ubm-hero__deco::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ubm-border);
  min-width: 60px;
}

/* ============================================================
   10. INTRO TEXT BAND
   ============================================================ */
.ubm-intro {
  border-top: 3px solid var(--ubm-gold);
  padding-top: 1.5rem;
  max-width: 720px;
  margin: 3rem auto;
  text-align: center;
  color: var(--ubm-text-secondary);
  font-size: 16px;
  line-height: 1.8;
  padding-inline: 1rem;
}

/* ============================================================
   11. MODEL GRID SECTION
   ============================================================ */
.ubm-models {
  background: var(--ubm-bg);
  padding-block: 4rem;
}
.ubm-models__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.ubm-models__subtitle {
  font-size: 15px;
  color: var(--ubm-text-muted);
  margin-top: 0.75rem;
}
.ubm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-inline: 2rem;
  max-width: 1340px;
  margin-inline: auto;
}

/* ============================================================
   12. MODEL CARDS
   ============================================================ */
.ubm-card {
  background: var(--ubm-bg-card);
  border: 1px solid var(--ubm-border);
  border-radius: var(--ubm-radius);
  box-shadow: var(--ubm-card-shadow);
  overflow: hidden;
  transition: transform var(--ubm-transition), box-shadow var(--ubm-transition), border-color var(--ubm-transition), background-color var(--ubm-transition);
  text-decoration: none;
  display: block;
}
.ubm-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 22px rgba(183,110,121,0.45);
  border-color: var(--ubm-gold);
  background: var(--ubm-bg-card-hover);
}
.ubm-card__img-wrap {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--ubm-bg-secondary);
  position: relative;
}
.ubm-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ubm-card:hover .ubm-card__img-wrap img { transform: scale(1.06); }
.ubm-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--ubm-bg-secondary) 0%, var(--ubm-bg-card) 100%);
  color: var(--ubm-gold);
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
}
.ubm-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--ubm-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}
.ubm-card__footer {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.ubm-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ubm-gold);
  line-height: 1.2;
}

/* ============================================================
   13. TEASER VIDEO ROW
   ============================================================ */
.ubm-teasers {
  background: var(--ubm-bg-secondary);
  padding-block: 4rem;
}
.ubm-teasers__title {
  text-align: center;
  font-size: 24px;
  color: var(--ubm-text-primary);
  margin-bottom: 2rem;
}
.ubm-teasers__scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 2rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--ubm-gold-border) transparent;
}
.ubm-teasers__scroll::-webkit-scrollbar { height: 4px; }
.ubm-teasers__scroll::-webkit-scrollbar-track { background: transparent; }
.ubm-teasers__scroll::-webkit-scrollbar-thumb { background: var(--ubm-gold-border); border-radius: 4px; }
.ubm-video-item {
  flex-shrink: 0;
  width: 260px;
  border-radius: var(--ubm-radius);
  overflow: hidden;
  border: 1px solid var(--ubm-border);
  background: var(--ubm-bg-card);
  scroll-snap-align: start;
  transition: border-color var(--ubm-transition), transform var(--ubm-transition);
}
.ubm-video-item:hover {
  border-color: var(--ubm-gold);
  transform: translateY(-4px);
}
.ubm-video-item video {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.ubm-footer {
  background: var(--ubm-bg-secondary);
  border-top: 2px solid var(--ubm-gold);
  padding: 2.5rem 2rem;
}
.ubm-footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ubm-footer__copy { color: var(--ubm-text-muted); font-size: 13px; }
.ubm-footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ubm-footer__links a {
  color: var(--ubm-text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--ubm-transition);
}
.ubm-footer__links a:hover { color: var(--ubm-gold); }
.ubm-footer__brand-note {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
}
.ubm-footer__tagline { color: var(--ubm-text-muted); font-size: 13px; font-style: italic; }
.ubm-footer__powered {
  margin: 0;
  color: var(--ubm-text-secondary);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ubm-footer__powered span {
  color: var(--ubm-gold);
  font-weight: 800;
}

/* ============================================================
   15. PRICING PAGE
   ============================================================ */
.ubm-pricing { padding-block: 5rem; background: var(--ubm-bg); }
.ubm-pricing__hero { text-align: center; margin-bottom: 3.5rem; }
.ubm-pricing__hero h1 { margin-bottom: 0.75rem; }
.ubm-pricing__hero p { color: var(--ubm-text-muted); }
.ubm-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.ubm-plan {
  background: var(--ubm-bg-card);
  border: 1px solid var(--ubm-border);
  border-radius: var(--ubm-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--ubm-transition), box-shadow var(--ubm-transition);
}
.ubm-plan:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(183,110,121,0.2); }
.ubm-plan--featured {
  border-color: var(--ubm-gold);
  box-shadow: 0 4px 24px rgba(183,110,121,0.25);
}
.ubm-plan__popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ubm-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.ubm-plan__label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ubm-text-muted); margin-bottom: 0.75rem; }
.ubm-plan__price { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--ubm-text-primary); }
.ubm-plan__price sup { font-size: 1.25rem; vertical-align: super; }
.ubm-plan__period { font-size: 13px; color: var(--ubm-text-muted); margin-bottom: 1.5rem; }
.ubm-plan__savings { font-size: 13px; color: var(--ubm-gold); font-weight: 700; margin-bottom: 1.5rem; }
.ubm-all-access {
  max-width: 560px;
  margin: 3rem auto 0;
  text-align: center;
  background: linear-gradient(135deg, var(--ubm-bg-card) 0%, var(--ubm-bg-secondary) 100%);
  border: 2px solid var(--ubm-gold);
  border-radius: var(--ubm-radius);
  padding: 2.5rem 2rem;
}
.ubm-all-access h2 { margin-bottom: 0.5rem; }
.ubm-all-access p { margin-bottom: 1.5rem; }

/* ============================================================
   15b. PREMIUM PRICING PAGE (DARK THEME)
   ============================================================ */
.ubm-pricing-premium {
  background-color: #0a0a0a !important;
  color: #f5f5f5 !important;
}
.ubm-pricing-premium .ubm-pricing__hero h1,
.ubm-pricing-premium .ubm-pricing__hero p,
.ubm-pricing-premium h2,
.ubm-pricing-premium .wp-block-heading {
  color: #ffffff;
}
.ubm-pricing-premium .ubm-plan {
  background-color: #141414;
  border: 1px solid rgba(183,110,121,0.3);
}
.ubm-pricing-premium .ubm-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(183,110,121,0.35);
  border-color: #b76e79;
}
.ubm-pricing-premium .ubm-plan--featured {
  border-color: #b76e79;
  box-shadow: 0 0 15px rgba(183,110,121,0.3);
}
.ubm-pricing-premium .ubm-plan__label {
  color: #b76e79;
  font-weight: bold;
}
.ubm-pricing-premium .ubm-plan__price {
  color: #ffffff;
}
.ubm-pricing-premium .ubm-all-access {
  background: linear-gradient(135deg, #181112 0%, #110a0b 100%);
  border: 2px solid #b76e79; /* rose gold */
  box-shadow: 0 0 30px rgba(183,110,121,0.2);
}
.ubm-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.ubm-faq-details {
  background: #141414;
  border: 1px solid rgba(183,110,121,0.2);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 1rem;
}
.ubm-faq-details summary {
  color: #b76e79;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
}
.ubm-faq-details p {
  margin-top: 1rem;
  color: #bbbbbb;
  line-height: 1.6;
  margin-bottom: 0;
}
.ubm-pricing-premium .ubm-teasers video, 
.ubm-pricing-premium .ubm-video-item {
  border-color: rgba(183,110,121,0.3);
}

.ubm-post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .ubm-post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .ubm-post-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   16. LOGIN / REGISTER PAGES
   ============================================================ */
.ubm-auth { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; background: var(--ubm-bg); }
.ubm-auth__box {
  background: var(--ubm-bg-card);
  border: 1px solid var(--ubm-border);
  border-radius: var(--ubm-radius);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--ubm-card-shadow);
}
.ubm-auth__box h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.ubm-auth__box .ubm-auth__sub { font-size: 14px; color: var(--ubm-text-muted); margin-bottom: 2rem; }
.ubm-form__group { margin-bottom: 1.25rem; }
.ubm-form__label { display: block; font-size: 13px; font-weight: 700; color: var(--ubm-text-secondary); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.ubm-form__input {
  width: 100%;
  background: var(--ubm-input-bg);
  border: 1px solid var(--ubm-input-border);
  border-radius: var(--ubm-radius-sm);
  color: var(--ubm-text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  min-height: 44px;
  transition: border-color var(--ubm-transition), box-shadow var(--ubm-transition);
  outline: none;
}
.ubm-form__input:focus { border-color: var(--ubm-gold); box-shadow: 0 0 0 3px var(--ubm-gold-border); }
.ubm-auth__footer { margin-top: 1.5rem; text-align: center; font-size: 14px; color: var(--ubm-text-muted); }
.ubm-auth__footer a { color: var(--ubm-gold); }

.ubm-social-login {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ubm-social-login__button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--ubm-border);
  border-radius: var(--ubm-radius-sm);
  background: color-mix(in srgb, var(--ubm-bg-card) 88%, var(--ubm-bg-secondary));
  color: var(--ubm-text-primary);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--ubm-transition), border-color var(--ubm-transition), box-shadow var(--ubm-transition), background var(--ubm-transition);
}

.ubm-social-login__button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--ubm-gold-border-hover);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.ubm-social-login__button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.ubm-social-login__button.is-loading {
  opacity: 0.78;
}

.ubm-social-login__button[hidden] {
  display: none;
}

.ubm-social-login__mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  flex: 0 0 auto;
}

.ubm-social-login__icon {
  width: 24px;
  height: 24px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

.ubm-google-identity-button,
.ubm-google-identity-button > div {
  width: 100% !important;
}

.ubm-social-login__status {
  min-height: 18px;
  margin: 0;
  color: var(--ubm-text-muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.ubm-social-login__status[data-state="error"] {
  color: var(--ubm-rose-gold);
}

.ubm-social-login__status[data-state="success"] {
  color: var(--ubm-gold);
}

.ubm-auth__divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  color: var(--ubm-text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ubm-auth__divider::before,
.ubm-auth__divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--ubm-border);
}

/* ============================================================
   17. MODEL PAGE (single-ubm_model)
   ============================================================ */
.ubm-model-page { background: var(--ubm-bg); padding-bottom: 6rem; }
.ubm-model-hero {
  background: var(--ubm-bg-secondary);
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--ubm-border);
}
.ubm-model-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.ubm-model-hero__tagline { color: var(--ubm-gold); font-size: 15px; font-style: italic; }

.ubm-pricing-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding: 2.5rem 2rem;
  max-width: 900px;
  margin-inline: auto;
}
.ubm-pricing-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--ubm-bg-card);
  border: 1.5px solid var(--ubm-gold-border);
  border-radius: var(--ubm-radius);
  padding: 1rem 1.25rem;
  min-width: 140px;
  text-decoration: none;
  transition: transform var(--ubm-transition), border-color var(--ubm-transition), box-shadow var(--ubm-transition);
}
.ubm-pricing-btn:hover {
  border-color: var(--ubm-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(183,110,121,0.25);
}
.ubm-pricing-btn__period { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ubm-text-muted); margin-bottom: 4px; }
.ubm-pricing-btn__price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--ubm-gold); }

.ubm-model-content {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.ubm-model-bio { margin-bottom: 2.5rem; }
.ubm-model-bio h2 { margin-bottom: 1rem; }

.ubm-teaser-video {
  margin-bottom: 2.5rem;
  border-radius: var(--ubm-radius);
  overflow: hidden;
  border: 1px solid var(--ubm-border);
}
.ubm-teaser-video video { width: 100%; max-height: 480px; object-fit: cover; display: block; }

.ubm-unlock-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--ubm-bg-secondary);
  border-radius: var(--ubm-radius);
  border: 1px solid var(--ubm-border);
  margin-bottom: 2.5rem;
}
.ubm-unlock-cta h3 { margin-bottom: 0.75rem; }
.ubm-unlock-cta p { color: var(--ubm-text-muted); margin-bottom: 1.5rem; }

.ubm-gallery-locked { position: relative; }
.ubm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ubm-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  filter: blur(18px) brightness(0.5);
}
.ubm-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--ubm-overlay);
  border-radius: var(--ubm-radius);
  text-align: center;
  padding: 2rem;
}
.ubm-gallery-overlay h3 { color: var(--ubm-text-primary); }
.ubm-gallery-overlay p { color: var(--ubm-text-secondary); font-size: 14px; }

/* ============================================================
   18. ANIMATIONS
   ============================================================ */
@keyframes ubm-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ubm-fade-up { animation: ubm-fade-up 0.6s ease both; }
.ubm-fade-up--d1 { animation-delay: 0.1s; }
.ubm-fade-up--d2 { animation-delay: 0.2s; }
.ubm-fade-up--d3 { animation-delay: 0.3s; }

/* ============================================================
   19. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1440px) {
  .ubm-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1200px) {
  .ubm-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .ubm-grid { grid-template-columns: repeat(2, 1fr); padding-inline: 1rem; gap: 1rem; }
  .ubm-nav__links { display: none; }
  .ubm-nav__hamburger { display: flex; }
  .ubm-hero h1 { font-size: 2rem; }
  .ubm-hero__sub { font-size: 16px; }
  .ubm-footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .ubm-footer__brand-note { justify-items: center; }
  .ubm-plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .ubm-pricing-buttons { flex-direction: column; align-items: center; }
  .ubm-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ubm-section { padding-block: 3rem; }
  .ubm-container { padding-inline: 1rem; }
}
@media (max-width: 480px) {
  .ubm-grid { grid-template-columns: 1fr; }
  .ubm-nav__inner { padding-inline: 1rem; }
  .ubm-nav__logo { gap: 0.5rem; font-size: 18px; }
  .ubm-nav__logo-mark { width: 36px; height: 36px; border-radius: 10px; }
  .ubm-nav__wordmark > span:last-child { display: none; }
  .ubm-banner { font-size: 12px; padding-inline: 2.5rem; }
  .ubm-video-item { width: 220px; }
  .ubm-gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
}

/* ============================================================
   20. MODEL PAGE PREMIUM (CHUNKS 3A - 3D)
   ============================================================ */

/* 3A: CINEMATIC HERO */
.ubm-model-hero--premium {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

.ubm-model-hero__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
  z-index: 1;
  transition: transform 10s linear;
}
.ubm-model-hero--premium:hover .ubm-model-hero__bg { transform: scale(1.1); }

.ubm-model-hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 1000px;
}

.ubm-model-hero--premium h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--ubm-gold);
  line-height: 0.9;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -3px;
  font-weight: 900;
  filter: drop-shadow(0 0 30px rgba(183, 110, 121, 0.5));
  animation: ubm-hero-pulse 4s infinite alternate ease-in-out;
}

@keyframes ubm-hero-pulse {
  from { transform: scale(1); filter: drop-shadow(0 0 30px rgba(183, 110, 121, 0.4)); }
  to { transform: scale(1.02); filter: drop-shadow(0 0 60px rgba(183, 110, 121, 0.7)); }
}

.ubm-model-hero--premium .ubm-model-hero__tagline {
  font-family: var(--ubm-font-heading);
  font-size: 1.75rem;
  color: var(--ubm-white);
  font-style: italic;
  letter-spacing: 4px;
  opacity: 0.8;
  margin-top: 1rem;
}

/* 3B: SUBSCRIPTION BUTTON CARDS */
.ubm-pricing-cards {
  display: flex;
  gap: 1.25rem;
  padding: 0 5%;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ubm-pricing-cards::-webkit-scrollbar { display: none; }

.ubm-pricing-card {
  flex: 1;
  min-width: 220px;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid var(--ubm-gold-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  scroll-snap-align: center;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ubm-pricing-card:hover {
  transform: translateY(-20px);
  border-color: var(--ubm-gold);
  box-shadow: 0 20px 50px rgba(183, 110, 121, 0.3), 0 0 30px rgba(183, 110, 121, 0.1);
}

.ubm-pricing-card__label {
  font-size: 0.8rem;
  color: var(--ubm-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.ubm-pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ubm-white);
  margin-bottom: 1.5rem;
}

.ubm-pricing-card__badge {
  background: var(--ubm-gold);
  color: var(--ubm-black);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  align-self: center;
}

.ubm-pricing-models {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ubm-pricing-model {
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(183, 110, 121, 0.22);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.ubm-pricing-model__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ubm-pricing-model__head h3 {
  margin: 0;
  font-size: 1.4rem;
}

.ubm-pricing-model__head h3 a {
  color: #fff;
  text-decoration: none;
}

.ubm-pricing-model__head p {
  margin: 0;
  color: var(--ubm-text-muted);
  max-width: 38rem;
}

.ubm-pricing-model__tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
}

.ubm-pricing-model__tier {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0.98), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(183, 110, 121, 0.18);
  border-radius: 18px;
  padding: 1rem;
  min-height: 128px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ubm-pricing-model__tier:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 110, 121, 0.5);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.ubm-pricing-model__tier-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ubm-text-muted);
}

.ubm-pricing-model__tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--ubm-gold);
}

.ubm-pricing-model__tier-badge {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(183, 110, 121, 0.25);
  background: rgba(183, 110, 121, 0.08);
  color: #f3c3cd;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .ubm-pricing-model__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ubm-pricing-model__tiers {
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  }
}

/* 3C: BIO & FREE VIDEO */
.ubm-content-split {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .ubm-content-split { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
}

.ubm-bio--premium h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--ubm-gold); }
.ubm-bio--premium p { font-size: 1.2rem; line-height: 1.8; color: var(--ubm-text-secondary); }

.ubm-video-teaser--premium {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  background: #000;
  position: relative;
  aspect-ratio: 16/9;
}
.ubm-video-teaser--premium video { width: 100%; height: 100%; object-fit: cover; }

/* 3D: LOCKED GALLERY UI */
.ubm-gallery-header--premium { text-align: center; margin: 8rem 0 4rem; }
.ubm-gallery-header--premium h2 { font-size: 3rem; margin-bottom: 1rem; }

.ubm-locked-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 2rem;
  position: relative;
}

.ubm-locked-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ubm-bg-card);
  border: 1px solid var(--ubm-border);
}

.ubm-locked-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(15px) brightness(0.6); /* 3D: Blur effect */
}

.ubm-locked-item::after {
  content: '🔒';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  z-index: 2;
  text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.ubm-gallery-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 20;
  backdrop-filter: blur(4px);
}

.btn-unlock-gold {
  background: var(--ubm-gold);
  color: var(--ubm-black);
  padding: 1.25rem 3.5rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 15px 40px rgba(183, 110, 121, 0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-unlock-gold:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 60px rgba(183, 110, 121, 0.7);
  background: #fff;
}

/* Shared model page rebuild */
.ubm-model-page {
  background:
    radial-gradient(circle at top, rgba(183, 110, 121, 0.12), transparent 32%),
    linear-gradient(180deg, var(--ubm-bg) 0%, var(--ubm-bg-secondary) 100%);
  color: var(--ubm-text-secondary);
}

[data-theme="dark"] .ubm-model-page {
  background:
    radial-gradient(circle at top, rgba(183, 110, 121, 0.18), transparent 38%),
    linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  color: #f5f5f5;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .ubm-model-page {
    background:
      radial-gradient(circle at top, rgba(183, 110, 121, 0.18), transparent 38%),
      linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: #f5f5f5;
  }
}

.ubm-model-hero-cinematic {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ubm-model-hero-cinematic__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.ubm-model-hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, var(--ubm-overlay) 100%),
    linear-gradient(90deg, var(--ubm-overlay) 0%, transparent 45%, var(--ubm-overlay) 100%);
}

.ubm-model-hero-cinematic__content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 10rem 0 5rem;
}

.ubm-model-hero-cinematic__eyebrow,
.ubm-section-heading__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 234, 237, 0.76);
}

.ubm-model-hero-cinematic h1 {
  margin: 0;
  font-size: clamp(3.6rem, 9vw, 7.4rem);
  line-height: 0.95;
  color: var(--ubm-gold);
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.ubm-model-hero-cinematic__tagline {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 244, 246, 0.9);
}

.ubm-model-subscriptions,
.ubm-model-story,
.ubm-model-unlock-bar,
.ubm-model-gallery {
  width: min(1260px, calc(100% - 3rem));
  margin: 0 auto;
}

.ubm-model-subscriptions {
  padding: 4.5rem 0 0;
}

.ubm-section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.ubm-section-heading--left {
  text-align: left;
}

.ubm-section-heading h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--ubm-text-primary);
}

.ubm-section-heading p {
  max-width: 52rem;
  margin: 0 auto;
  color: var(--ubm-text-secondary);
}

.ubm-section-heading--left p {
  margin-left: 0;
}

.ubm-model-subscriptions__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
}

.ubm-model-subscription-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 260px;
  padding: 1.4rem;
  border-radius: 24px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(36, 22, 27, 0.96), rgba(16, 11, 13, 0.98));
  border: 1px solid rgba(183, 110, 121, 0.55);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.ubm-model-subscription-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 175, 185, 0.9);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.ubm-model-subscription-card__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(183, 110, 121, 0.16);
  color: var(--ubm-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ubm-model-subscription-card__title {
  font-size: 1.6rem;
  color: var(--ubm-text-primary);
}

.ubm-model-subscription-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ubm-gold);
}

.ubm-model-subscription-card__copy {
  color: var(--ubm-text-secondary);
  line-height: 1.6;
}

.ubm-model-subscription-card__cta {
  margin-top: auto;
  color: var(--ubm-text-primary);
  font-weight: 700;
}

.ubm-model-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 2rem;
  padding: 4.5rem 0 0;
}

.ubm-model-story__copy,
.ubm-model-story__teaser {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(18, 12, 14, 0.82);
  border: 1px solid rgba(183, 110, 121, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.ubm-model-story__video-frame {
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.ubm-model-story__video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ubm-model-story__video-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--ubm-text-secondary);
}

.ubm-model-unlock-bar {
  padding: 2.5rem 0 0;
  text-align: center;
}

.ubm-model-unlock-bar__status {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: var(--ubm-text-secondary);
}

.ubm-model-gallery {
  padding: 4.5rem 0 6rem;
}

.ubm-model-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.ubm-model-gallery__item {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 22px;
  border: 1px solid rgba(183, 110, 121, 0.18);
  background: var(--ubm-bg-card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.ubm-model-gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(120px, 1fr));
  gap: 0.3rem;
  height: 100%;
  padding: 0.3rem;
}

.ubm-model-gallery__cell {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ubm-bg-secondary);
}

.ubm-model-gallery__cell img,
.ubm-model-gallery__cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ubm-model-gallery__item.is-locked .ubm-model-gallery__cell img,
.ubm-model-gallery__item.is-locked .ubm-model-gallery__cell video {
  filter: blur(15px) brightness(0.45);
  transform: scale(1.04);
}

.ubm-model-gallery__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.62));
}

.ubm-model-gallery__tier {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(12, 8, 9, 0.7);
  border: 1px solid rgba(183, 110, 121, 0.45);
  color: var(--ubm-gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ubm-model-gallery__set-name {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(12, 8, 9, 0.8);
  color: var(--ubm-text-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.ubm-model-gallery__lock {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.ubm-model-gallery__lock-icon {
  font-size: 2.4rem;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.ubm-model-gallery__lock-badge {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(12, 8, 9, 0.88);
  border: 1px solid rgba(183, 110, 121, 0.62);
  color: #ffffff;
  font-weight: 700;
}

.ubm-model-gallery__item.is-unlocked .ubm-model-gallery__lock {
  display: none;
}

@media (max-width: 1180px) {
  .ubm-model-subscriptions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ubm-model-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ubm-model-hero-cinematic {
    min-height: 68vh;
  }

  .ubm-model-story {
    grid-template-columns: 1fr;
  }

  .ubm-model-subscriptions__grid,
  .ubm-model-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .ubm-model-hero-cinematic__content,
  .ubm-model-subscriptions,
  .ubm-model-story,
  .ubm-model-unlock-bar,
  .ubm-model-gallery {
    width: min(100% - 1.4rem, 1260px);
  }

  .ubm-model-subscriptions__grid,
  .ubm-model-gallery__grid {
    grid-template-columns: 1fr;
  }

  .ubm-model-subscription-card {
    min-height: auto;
  }

  .ubm-model-gallery__item {
    min-height: 300px;
  }
}

/* ============================================================
   21. LUXURY REBRAND 2026
   ============================================================ */
:root {
  --ubm-gold: #d8b66a;
  --ubm-rose-gold: #c88d8d;
  --ubm-gold-hover: #f0d992;
  --ubm-gold-border: rgba(216, 182, 106, 0.34);
  --ubm-gold-border-hover: rgba(240, 217, 146, 0.72);
  --ubm-emerald: #4f8a74;
  --ubm-bg: #090806;
  --ubm-bg-secondary: #11100d;
  --ubm-bg-card: #17130f;
  --ubm-bg-card-hover: #211a13;
  --ubm-text-primary: #fff8ec;
  --ubm-text-secondary: #d8cbb4;
  --ubm-text-muted: #a99b83;
  --ubm-border: rgba(216, 182, 106, 0.2);
  --ubm-overlay: rgba(7, 6, 4, 0.72);
  --ubm-nav-bg: rgba(9, 8, 6, 0.86);
  --ubm-nav-border: rgba(216, 182, 106, 0.18);
  --ubm-card-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  --ubm-input-bg: rgba(255, 248, 236, 0.06);
  --ubm-input-border: rgba(216, 182, 106, 0.24);
  --ubm-radius: 8px;
  --ubm-radius-sm: 6px;
  --ubm-container: 1220px;
}

[data-theme="light"] {
  --ubm-bg: #fbf7ef;
  --ubm-bg-secondary: #efe6d7;
  --ubm-bg-card: #fffdf8;
  --ubm-bg-card-hover: #fff7e9;
  --ubm-text-primary: #1f1711;
  --ubm-text-secondary: #5d5043;
  --ubm-text-muted: #8a7862;
  --ubm-border: rgba(130, 92, 34, 0.22);
  --ubm-overlay: rgba(251, 247, 239, 0.78);
  --ubm-nav-bg: rgba(251, 247, 239, 0.9);
  --ubm-nav-border: rgba(130, 92, 34, 0.16);
  --ubm-card-shadow: 0 18px 44px rgba(72, 50, 25, 0.14);
  --ubm-input-bg: rgba(31, 23, 17, 0.05);
  --ubm-input-border: rgba(130, 92, 34, 0.24);
}

body {
  background:
    linear-gradient(180deg, var(--ubm-bg) 0%, var(--ubm-bg-secondary) 46%, var(--ubm-bg) 100%);
  color: var(--ubm-text-secondary);
}

body,
.ubm-luxe-page {
  min-height: 100vh;
}

::selection {
  background: var(--ubm-gold);
  color: #0a0805;
}

.ubm-container {
  width: min(100% - 2rem, var(--ubm-container));
  padding-inline: 0;
}

.ubm-header-wrap {
  box-shadow: 0 1px 0 rgba(216, 182, 106, 0.08);
}

.ubm-banner {
  min-height: var(--ubm-banner-h);
  height: auto;
  background: #17130f;
  border-bottom: 1px solid rgba(216, 182, 106, 0.2);
  color: #f7e6bc;
  letter-spacing: 0.04em;
}

[data-theme="light"] .ubm-banner {
  background: #2a1d13;
  color: #f8e9c7;
}

.ubm-banner__dismiss {
  border-radius: 999px;
}

.ubm-nav {
  background: var(--ubm-nav-bg);
  border-bottom: 1px solid var(--ubm-nav-border);
}

.ubm-nav__inner {
  height: 72px;
}

.ubm-nav__logo {
  color: var(--ubm-text-primary);
  font-size: 21px;
  letter-spacing: 0;
}

.ubm-nav__wordmark-accent {
  color: var(--ubm-gold);
}

.ubm-nav__links a {
  color: var(--ubm-text-secondary);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.ubm-nav__links a:hover,
.ubm-nav__links a.active {
  color: var(--ubm-text-primary);
  border-bottom-color: var(--ubm-gold);
}

.ubm-theme-toggle {
  position: relative;
  width: 46px;
  height: 28px;
  min-height: 28px;
  min-width: 46px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid var(--ubm-gold-border);
}

.ubm-theme-toggle__icon {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ubm-gold);
  box-shadow: inset -5px -3px 0 rgba(9, 8, 6, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ubm-theme-toggle.is-dark .ubm-theme-toggle__icon {
  transform: translateX(18px);
}

.btn,
.ubm-btn,
.button,
input[type="submit"] {
  border-radius: var(--ubm-radius-sm);
  letter-spacing: 0.01em;
}

.btn-gold,
.ubm-btn,
input[type="submit"] {
  background: linear-gradient(180deg, #f0d992 0%, var(--ubm-gold) 100%);
  color: #15100a;
  border: 1px solid rgba(255, 248, 236, 0.26);
  box-shadow: 0 12px 34px rgba(216, 182, 106, 0.24);
}

.btn-gold:hover,
.ubm-btn:hover,
input[type="submit"]:hover {
  background: linear-gradient(180deg, #fff0bd 0%, var(--ubm-gold-hover) 100%);
  color: #120d08;
  box-shadow: 0 18px 42px rgba(216, 182, 106, 0.34);
}

.btn-outline {
  border: 1px solid var(--ubm-gold-border-hover);
  color: var(--ubm-text-primary);
  background: rgba(255, 248, 236, 0.04);
}

.btn-outline:hover {
  background: rgba(216, 182, 106, 0.12);
  color: var(--ubm-text-primary);
}

.js .ubm-luxe-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .ubm-luxe-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ubm-luxe-hero {
  position: relative;
  isolation: isolate;
  min-height: 76vh;
  background: #090806;
  overflow: hidden;
}

.ubm-luxe-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 3px),
    linear-gradient(120deg, rgba(216, 182, 106, 0.18), transparent 38%, rgba(79, 138, 116, 0.14));
  mix-blend-mode: overlay;
}

.ubm-model-hero-cinematic {
  align-items: flex-end;
}

.ubm-model-hero-cinematic__media {
  filter: saturate(0.92) contrast(1.08) brightness(0.72);
}

.ubm-model-hero-cinematic__overlay {
  background:
    linear-gradient(180deg, rgba(9, 8, 6, 0.04) 0%, rgba(9, 8, 6, 0.62) 54%, rgba(9, 8, 6, 0.96) 100%),
    linear-gradient(90deg, rgba(9, 8, 6, 0.92) 0%, rgba(9, 8, 6, 0.34) 46%, rgba(9, 8, 6, 0.76) 100%);
}

.ubm-model-hero-cinematic__content {
  z-index: 3;
  padding-bottom: 6rem;
}

.ubm-model-hero-cinematic__eyebrow,
.ubm-section-heading__eyebrow,
.ubm-pricing-model__kicker {
  color: var(--ubm-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ubm-model-hero-cinematic h1,
.ubm-pricing-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ubm-text-primary);
  font-size: 5rem;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
  filter: none;
  animation: none;
}

.ubm-model-hero-cinematic h1::after,
.ubm-pricing-hero h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin-top: 1.4rem;
  background: linear-gradient(90deg, var(--ubm-gold), transparent);
}

.ubm-model-hero-cinematic__tagline,
.ubm-pricing-hero p {
  max-width: 620px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 1.18rem;
  line-height: 1.65;
  letter-spacing: 0;
}

.ubm-model-hero__actions,
.ubm-pricing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.ubm-model-hero__status,
.ubm-pricing-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.ubm-model-hero__status span,
.ubm-pricing-hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 182, 106, 0.28);
  background: rgba(9, 8, 6, 0.56);
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.ubm-luxe-band {
  padding: 5rem 0;
}

.ubm-section-heading {
  max-width: 760px;
  margin-inline: auto;
}

.ubm-section-heading h2 {
  color: var(--ubm-text-primary);
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.ubm-section-heading p {
  color: var(--ubm-text-secondary);
  font-size: 1.02rem;
}

.ubm-model-subscriptions__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.ubm-model-subscription-card,
.ubm-pricing-model,
.ubm-luxe-panel,
.ubm-all-access,
.ubm-auth__box,
.ubm-dashboard .ubm-card {
  border-radius: var(--ubm-radius);
  border: 1px solid var(--ubm-border);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.075), rgba(255, 248, 236, 0.025)),
    var(--ubm-bg-card);
  box-shadow: var(--ubm-card-shadow);
}

.ubm-model-subscription-card {
  min-height: 260px;
  padding: 1.35rem;
  border-color: rgba(216, 182, 106, 0.26);
  background:
    linear-gradient(180deg, rgba(216, 182, 106, 0.16), transparent 36%),
    var(--ubm-bg-card);
}

.ubm-model-subscription-card:hover {
  transform: translateY(-8px);
  border-color: var(--ubm-gold-border-hover);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(216, 182, 106, 0.12);
}

.ubm-model-subscription-card__badge,
.ubm-pricing-model__tier-badge {
  border-radius: 999px;
  color: #15100a;
  background: var(--ubm-gold);
  border: 0;
}

.ubm-model-subscription-card__title,
.ubm-model-subscription-card__cta {
  color: var(--ubm-text-primary);
}

.ubm-model-subscription-card__price,
.ubm-pricing-model__tier-price {
  color: var(--ubm-gold);
  font-family: 'Playfair Display', serif;
}

.ubm-model-subscription-card__copy {
  color: var(--ubm-text-muted);
}

.ubm-luxe-split,
.ubm-model-story {
  width: min(1220px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  gap: 1.2rem;
  padding: 0 0 5rem;
}

.ubm-model-story__copy,
.ubm-model-story__teaser {
  padding: 1.5rem;
}

.ubm-model-story__copy h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: var(--ubm-text-primary);
}

.ubm-prose,
.ubm-prose p {
  color: var(--ubm-text-secondary);
}

.ubm-model-story__teaser-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--ubm-text-primary);
}

.ubm-model-story__video-frame {
  border-radius: var(--ubm-radius);
  border: 1px solid rgba(216, 182, 106, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 236, 0.04);
}

.ubm-model-story__video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ubm-model-gallery {
  padding-bottom: 7rem;
}

.ubm-model-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.ubm-model-gallery__item {
  position: relative;
  min-height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--ubm-radius);
  border: 1px solid rgba(216, 182, 106, 0.2);
  background: #090806;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.ubm-model-gallery__media,
.ubm-model-gallery__media img,
.ubm-model-gallery__media video {
  width: 100%;
  height: 100%;
}

.ubm-model-gallery__media img,
.ubm-model-gallery__media video {
  object-fit: cover;
  display: block;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.ubm-model-gallery__item.is-locked .ubm-model-gallery__media img,
.ubm-model-gallery__item.is-locked .ubm-model-gallery__media video {
  filter: blur(16px) brightness(0.48) saturate(0.82);
  transform: scale(1.08);
}

.ubm-model-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 8, 6, 0.88) 100%);
}

.ubm-model-gallery__caption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: end;
  color: var(--ubm-text-primary);
}

.ubm-model-gallery__caption span {
  color: var(--ubm-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ubm-model-gallery__caption strong {
  font-size: 0.88rem;
  text-align: right;
}

.ubm-model-gallery__lock {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--ubm-text-primary);
  text-decoration: none;
}

.ubm-model-gallery__lock-icon {
  position: relative;
  width: 42px;
  height: 34px;
  border-radius: 6px;
  border: 2px solid var(--ubm-gold);
  background: rgba(9, 8, 6, 0.74);
}

.ubm-model-gallery__lock-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -18px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--ubm-gold);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.ubm-model-gallery__lock-badge {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(9, 8, 6, 0.84);
  border: 1px solid var(--ubm-gold-border-hover);
  color: var(--ubm-text-primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.ubm-model-gallery__item:hover .ubm-model-gallery__media img,
.ubm-model-gallery__item:hover .ubm-model-gallery__media video {
  transform: scale(1.04);
}

.ubm-model-gallery__item.is-locked:hover .ubm-model-gallery__media img,
.ubm-model-gallery__item.is-locked:hover .ubm-model-gallery__media video {
  transform: scale(1.12);
}

.ubm-model-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 2rem));
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border-radius: var(--ubm-radius);
  border: 1px solid var(--ubm-gold-border);
  background: rgba(12, 10, 7, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ubm-model-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.ubm-model-sticky-cta span {
  flex: 1;
  color: var(--ubm-text-primary);
  font-weight: 700;
}

.ubm-pricing-hero {
  display: flex;
  align-items: center;
  min-height: 62vh;
  padding: 7rem 0 5rem;
  background:
    linear-gradient(120deg, rgba(216, 182, 106, 0.1), transparent 38%),
    linear-gradient(180deg, #090806, #15100b);
}

.ubm-pricing-hero__inner {
  position: relative;
  z-index: 3;
}

.ubm-pricing-feature {
  margin-top: -4rem;
  position: relative;
  z-index: 4;
}

.ubm-all-access {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem;
  background:
    linear-gradient(90deg, rgba(216, 182, 106, 0.2), rgba(79, 138, 116, 0.1)),
    var(--ubm-bg-card);
}

.ubm-all-access h2,
.ubm-all-access p {
  margin-bottom: 0.35rem;
}

.ubm-all-access__price {
  text-align: right;
  color: var(--ubm-text-primary);
}

.ubm-all-access__price strong {
  display: block;
  color: var(--ubm-gold);
  font-size: 2.5rem;
  line-height: 1;
}

.ubm-all-access__price span {
  color: var(--ubm-text-muted);
  font-weight: 700;
}

.ubm-pricing-models-wrap {
  padding: 5rem 0 6rem;
}

.ubm-pricing-models {
  gap: 1rem;
}

.ubm-pricing-model {
  padding: 1.25rem;
}

.ubm-pricing-model__head {
  align-items: center;
  margin-bottom: 1.25rem;
}

.ubm-pricing-model__head h3 a {
  color: var(--ubm-text-primary);
}

.ubm-pricing-model__head p {
  color: var(--ubm-text-muted);
}

.ubm-pricing-model__tiers {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.ubm-pricing-model__tier {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  border-radius: var(--ubm-radius);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.06), rgba(255, 248, 236, 0.015)),
    #11100d;
}

.ubm-pricing-model__tier::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(216, 182, 106, 0.14), transparent);
  transform: translateX(-40%);
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.ubm-pricing-model__tier:hover::before {
  opacity: 1;
  transform: translateX(40%);
}

.ubm-pricing-model__tier-label,
.ubm-pricing-model__tier-price,
.ubm-pricing-model__tier-badge,
.ubm-pricing-model__tier-cta {
  position: relative;
  z-index: 1;
}

.ubm-pricing-model__tier-cta {
  margin-top: auto;
  color: var(--ubm-text-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.ubm-entry-content {
  background:
    linear-gradient(180deg, var(--ubm-bg) 0%, var(--ubm-bg-secondary) 52%, var(--ubm-bg) 100%);
  color: var(--ubm-text-secondary);
  padding: 3rem 0 6rem;
}

.ubm-entry-content > * {
  width: min(1220px, calc(100% - 2rem));
  margin-inline: auto;
}

.ubm-entry-content .wp-block-heading,
.ubm-entry-content h1,
.ubm-entry-content h2,
.ubm-entry-content h3 {
  color: var(--ubm-text-primary);
  letter-spacing: 0;
}

.ubm-entry-content h1:first-child,
.ubm-entry-content .wp-block-heading:first-child {
  max-width: 820px;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 4rem;
  line-height: 1;
}

.ubm-entry-content p {
  color: var(--ubm-text-secondary);
}

.ubm-entry-content .wp-block-columns {
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.ubm-entry-content figure.wp-block-image,
.ubm-entry-content figure.wp-block-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--ubm-radius);
  border: 1px solid rgba(216, 182, 106, 0.18);
  background: #090806;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ubm-entry-content figure.wp-block-image:hover,
.ubm-entry-content figure.wp-block-video:hover {
  transform: translateY(-5px);
  border-color: var(--ubm-gold-border-hover);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.36);
}

.ubm-entry-content figure.wp-block-image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.ubm-entry-content figure.wp-block-image:hover img {
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.05);
}

.ubm-entry-content figure.wp-block-video video {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.ubm-entry-content .wp-element-caption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  margin: 0;
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  background: rgba(9, 8, 6, 0.78);
  border: 1px solid rgba(216, 182, 106, 0.26);
  color: var(--ubm-text-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.ubm-home {
  --ubm-bg: #090806;
  --ubm-bg-secondary: #11100d;
  --ubm-bg-card: #17130f;
  --ubm-bg-card-hover: #211a13;
  --ubm-text-primary: #fff8ec;
  --ubm-text-secondary: #d8cbb4;
  --ubm-text-muted: #a99b83;
  --ubm-border: rgba(216, 182, 106, 0.2);
  background:
    linear-gradient(135deg, rgba(216, 182, 106, 0.1) 0%, transparent 24%),
    linear-gradient(225deg, rgba(183, 110, 121, 0.08) 0%, transparent 28%),
    linear-gradient(180deg, var(--ubm-bg) 0%, #120f0b 46%, var(--ubm-bg) 100%);
}

.ubm-home-hero {
  position: relative;
  min-height: calc(100svh - var(--ubm-banner-h) - 184px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 4.75rem 0 3.25rem;
  background:
    linear-gradient(120deg, rgba(216, 182, 106, 0.16), transparent 32%),
    linear-gradient(180deg, #15100b 0%, #090806 100%);
}

.ubm-home-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.72);
  transform: scale(1.03);
}

.ubm-home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.96) 0%, rgba(9, 8, 6, 0.7) 44%, rgba(9, 8, 6, 0.26) 100%),
    linear-gradient(180deg, rgba(9, 8, 6, 0.18) 0%, rgba(9, 8, 6, 0.92) 100%);
}

.ubm-home-hero__content {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 2rem));
  margin-inline: auto;
}

.ubm-home-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ubm-text-primary);
  font-size: 4.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.ubm-home-hero h1::after {
  content: "";
  display: block;
  width: 104px;
  height: 2px;
  margin-top: 1.45rem;
  background: linear-gradient(90deg, var(--ubm-gold), transparent);
}

.ubm-home-hero p:not(.ubm-section-heading__eyebrow) {
  max-width: 650px;
  margin-top: 1.35rem;
  color: rgba(255, 248, 236, 0.84);
  font-size: 1.15rem;
  line-height: 1.7;
}

.ubm-home-hero__actions,
.ubm-home-final-cta .ubm-container > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.ubm-home-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.55rem;
}

.ubm-home-hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 182, 106, 0.28);
  background: rgba(9, 8, 6, 0.56);
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.ubm-home-featured {
  position: absolute;
  right: max(1rem, calc((100vw - 1220px) / 2));
  bottom: 5rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: min(300px, calc(100% - 2rem));
  padding: 1rem;
  border-radius: var(--ubm-radius);
  border: 1px solid var(--ubm-gold-border);
  background: rgba(12, 10, 7, 0.7);
  backdrop-filter: blur(16px);
  color: var(--ubm-text-primary);
  box-shadow: var(--ubm-card-shadow);
}

.ubm-home-featured span,
.ubm-home-featured em {
  color: var(--ubm-text-muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ubm-home-featured strong {
  color: var(--ubm-gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
}

.ubm-home-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -3rem;
  position: relative;
  z-index: 6;
}

.ubm-home-benefit {
  padding: 1.3rem;
  border-radius: var(--ubm-radius);
  border: 1px solid var(--ubm-border);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.075), rgba(255, 248, 236, 0.025)),
    var(--ubm-bg-card);
  box-shadow: var(--ubm-card-shadow);
}

.ubm-home-benefit h2 {
  margin: 0.9rem 0 0.55rem;
  color: var(--ubm-text-primary);
  font-size: 1.35rem;
}

.ubm-home-benefit p {
  margin: 0;
  color: var(--ubm-text-secondary);
  font-size: 0.96rem;
}

.ubm-home-benefit__icon {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ubm-gold-border-hover);
  background: rgba(216, 182, 106, 0.12);
}

.ubm-home-benefit__icon::before,
.ubm-home-benefit__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.ubm-home-benefit__icon.is-lock::before {
  width: 20px;
  height: 16px;
  border: 2px solid var(--ubm-gold);
  border-radius: 4px;
}

.ubm-home-benefit__icon.is-lock::after {
  top: 15px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ubm-gold);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.ubm-home-benefit__icon.is-tier::before {
  width: 22px;
  height: 22px;
  border-left: 2px solid var(--ubm-gold);
  border-bottom: 2px solid var(--ubm-gold);
}

.ubm-home-benefit__icon.is-tier::after {
  width: 6px;
  height: 24px;
  box-shadow: 0 10px 0 var(--ubm-gold), 8px 4px 0 var(--ubm-gold), 16px -4px 0 var(--ubm-gold);
}

.ubm-home-benefit__icon.is-member::before {
  width: 13px;
  height: 13px;
  top: 16px;
  border-radius: 50%;
  background: var(--ubm-gold);
}

.ubm-home-benefit__icon.is-member::after {
  top: 29px;
  width: 24px;
  height: 12px;
  border-radius: 20px 20px 4px 4px;
  background: var(--ubm-gold);
}

.ubm-home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ubm-home-section-head h2,
.ubm-home-conversion__copy h2,
.ubm-home-final-cta h2 {
  margin: 0.35rem 0 0;
  color: var(--ubm-text-primary);
  font-size: 2.8rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.ubm-home-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ubm-home-model-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--ubm-radius);
  border: 1px solid rgba(216, 182, 106, 0.2);
  background: #090806;
  color: var(--ubm-text-primary);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.ubm-home-model-card__media,
.ubm-home-model-card__media img,
.ubm-home-model-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.ubm-home-model-card__media {
  position: absolute;
  inset: 0;
}

.ubm-home-model-card__media img {
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.82);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.ubm-home-model-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #21170f, #0b0907);
  color: var(--ubm-gold);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
}

.ubm-home-model-card__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(9, 8, 6, 0.88) 100%),
    linear-gradient(90deg, rgba(9, 8, 6, 0.32), transparent 56%);
}

.ubm-home-model-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding: 1rem;
}

.ubm-home-model-card__body strong {
  display: block;
  color: var(--ubm-text-primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
}

.ubm-home-model-card__body small {
  display: -webkit-box;
  margin-top: 0.35rem;
  overflow: hidden;
  color: rgba(255, 248, 236, 0.74);
  font-size: 0.84rem;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ubm-home-model-card__body em {
  flex-shrink: 0;
  padding: 0.42rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 182, 106, 0.36);
  background: rgba(9, 8, 6, 0.72);
  color: var(--ubm-gold);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.ubm-home-model-card:hover {
  border-color: var(--ubm-gold-border-hover);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
}

.ubm-home-model-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.08) brightness(0.92);
}

.ubm-home-teasers {
  background: linear-gradient(180deg, rgba(216, 182, 106, 0.055), transparent);
}

.ubm-home-teaser-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 0.8fr);
  gap: 1rem;
}

.ubm-home-teaser {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--ubm-radius);
  border: 1px solid rgba(216, 182, 106, 0.2);
  background: #090806;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.ubm-home-teaser video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.92);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.ubm-home-teaser:hover video,
.ubm-home-teaser.is-playing video {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(1);
}

.ubm-home-teaser div {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
  padding: 0.75rem;
  border-radius: var(--ubm-radius);
  background: rgba(9, 8, 6, 0.7);
  border: 1px solid rgba(216, 182, 106, 0.22);
  backdrop-filter: blur(12px);
}

.ubm-home-teaser span {
  display: block;
  color: var(--ubm-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ubm-home-teaser strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--ubm-text-primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.ubm-home-conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  padding: 2rem 0 5rem;
}

.ubm-home-conversion__copy,
.ubm-home-step {
  border-radius: var(--ubm-radius);
  border: 1px solid var(--ubm-border);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.075), rgba(255, 248, 236, 0.025)),
    var(--ubm-bg-card);
  box-shadow: var(--ubm-card-shadow);
}

.ubm-home-conversion__copy {
  padding: 1.5rem;
}

.ubm-home-conversion__copy p:not(.ubm-section-heading__eyebrow) {
  color: var(--ubm-text-secondary);
}

.ubm-home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ubm-home-step {
  padding: 1.2rem;
}

.ubm-home-step span {
  color: var(--ubm-gold);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ubm-home-step h3 {
  margin: 1.6rem 0 0.55rem;
  color: var(--ubm-text-primary);
  font-size: 1.35rem;
}

.ubm-home-step p {
  margin: 0;
  color: var(--ubm-text-muted);
}

.ubm-home-final-cta {
  padding: 5rem 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.9), rgba(9, 8, 6, 0.62)),
    linear-gradient(135deg, rgba(216, 182, 106, 0.18) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.04), transparent);
  border-top: 1px solid var(--ubm-border);
}

.ubm-home-final-cta h2 {
  max-width: 680px;
}

.ubm-auth,
.ubm-dashboard {
  background:
    linear-gradient(180deg, var(--ubm-bg), var(--ubm-bg-secondary));
}

.ubm-auth__box {
  max-width: 480px;
  padding: 2rem;
}

.ubm-form__input {
  border-radius: var(--ubm-radius-sm);
  background: var(--ubm-input-bg);
  border-color: var(--ubm-input-border);
  color: var(--ubm-text-primary);
}

.ubm-form__input:focus {
  border-color: var(--ubm-gold);
  box-shadow: 0 0 0 3px rgba(216, 182, 106, 0.14);
}

@media (max-width: 1180px) {
  .ubm-home-hero h1 {
    font-size: 4.25rem;
  }

  .ubm-model-subscriptions__grid,
  .ubm-model-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ubm-home-model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ubm-home-teaser-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ubm-model-hero-cinematic h1,
  .ubm-pricing-hero h1 {
    font-size: 3.3rem;
  }

  .ubm-model-story,
  .ubm-luxe-split {
    grid-template-columns: 1fr;
  }

  .ubm-all-access {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .ubm-all-access__price {
    text-align: left;
  }

  .ubm-home-hero h1 {
    font-size: 3.35rem;
  }

  .ubm-home-hero {
    display: block;
  }

  .ubm-home-featured {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(1220px, calc(100% - 2rem));
    margin: 2rem auto 0;
  }

  .ubm-home-benefits,
  .ubm-home-conversion {
    grid-template-columns: 1fr;
  }

  .ubm-home-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .ubm-nav__inner {
    height: 64px;
    padding-inline: 1rem;
  }

  .ubm-model-hero-cinematic__content {
    width: min(100% - 1.5rem, 1220px);
    padding-bottom: 4rem;
  }

  .ubm-model-hero-cinematic h1,
  .ubm-pricing-hero h1 {
    font-size: 2.55rem;
  }

  .ubm-model-hero-cinematic__tagline,
  .ubm-pricing-hero p {
    font-size: 1rem;
  }

  .ubm-section-heading h2 {
    font-size: 2rem;
  }

  .ubm-home-hero {
    min-height: auto;
    padding: 3.5rem 0 2.25rem;
  }

  .ubm-home-hero h1 {
    font-size: 2.3rem;
  }

  .ubm-home-hero p:not(.ubm-section-heading__eyebrow) {
    font-size: 1rem;
  }

  .ubm-home-hero__actions .btn {
    flex: 1 1 100%;
  }

  .ubm-home-hero__proof {
    display: none;
  }

  .ubm-home-benefits {
    margin-top: -2rem;
  }

  .ubm-home-benefits,
  .ubm-home-model-grid,
  .ubm-home-teaser-row {
    grid-template-columns: 1fr;
  }

  .ubm-home-model-card,
  .ubm-home-teaser {
    min-height: 390px;
  }

  .ubm-home-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ubm-home-section-head h2,
  .ubm-home-conversion__copy h2,
  .ubm-home-final-cta h2 {
    font-size: 2rem;
  }

  .ubm-model-subscriptions__grid,
  .ubm-model-gallery__grid {
    grid-template-columns: 1fr;
  }

  .ubm-model-subscription-card {
    min-height: auto;
  }

  .ubm-model-sticky-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .ubm-luxe-reveal,
  .js .ubm-luxe-reveal.is-visible,
  .ubm-model-gallery__media img,
  .ubm-model-gallery__media video,
  .ubm-pricing-model__tier::before,
  .ubm-model-subscription-card,
  .btn {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* ============================================================
   22. PLAYFUL HOME DISCOVERY
   ============================================================ */
body.home {
  background: #fff7ec;
}

body.home .ubm-banner {
  background: #2a1d13;
  color: #ffe4a8;
}

body.home .ubm-nav {
  background: rgba(255, 250, 243, 0.94);
  border-bottom-color: rgba(202, 125, 82, 0.22);
}

body.home .ubm-nav__logo,
body.home .ubm-nav__links a,
body.home .ubm-theme-toggle {
  color: #26170f;
}

body.home .ubm-nav__hamburger span {
  background: #26170f;
}

body.home .ubm-nav__links a:hover {
  color: #b84f75;
}

.ubm-home {
  --ubm-gold: #e1ad4f;
  --ubm-rose-gold: #d85f87;
  --ubm-gold-hover: #f3c96f;
  --ubm-gold-border: rgba(193, 119, 45, 0.28);
  --ubm-gold-border-hover: rgba(216, 95, 135, 0.62);
  --ubm-emerald: #3e927b;
  --ubm-bg: #fff7ec;
  --ubm-bg-secondary: #ffe9da;
  --ubm-bg-card: #fffdf8;
  --ubm-bg-card-hover: #fff3e5;
  --ubm-text-primary: #29180e;
  --ubm-text-secondary: #67483a;
  --ubm-text-muted: #9b735f;
  --ubm-border: rgba(181, 111, 57, 0.2);
  --ubm-card-shadow: 0 22px 56px rgba(122, 71, 38, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 223, 180, 0.7) 0%, rgba(255, 250, 243, 0) 34%),
    linear-gradient(225deg, rgba(245, 132, 160, 0.2) 0%, rgba(255, 250, 243, 0) 30%),
    linear-gradient(180deg, #fff8ef 0%, #ffe9d8 44%, #fffaf3 100%);
}

.ubm-home .ubm-section-heading__eyebrow {
  color: #b84f75;
}

.ubm-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100svh - var(--ubm-banner-h) - 210px);
  padding: 3.75rem max(1rem, calc((100vw - 1220px) / 2)) 3rem;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.98), rgba(255, 246, 232, 0.82)),
    linear-gradient(160deg, #fff8ed 0%, #ffd9c4 100%);
}

.ubm-home-hero__media {
  opacity: 0.13;
  filter: saturate(1.1) contrast(1.03) brightness(1.05);
  transform: scale(1.06);
}

.ubm-home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.96), rgba(255, 250, 243, 0.72) 48%, rgba(255, 236, 214, 0.5)),
    linear-gradient(180deg, rgba(255, 250, 243, 0.12), rgba(255, 229, 205, 0.58));
}

.ubm-home .ubm-luxe-hero__grain {
  opacity: 0.1;
  mix-blend-mode: multiply;
}

.ubm-home-hero__content {
  width: auto;
  margin: 0;
}

.ubm-home-hero h1 {
  color: #24140d;
  font-size: clamp(3.15rem, 6.3vw, 5.75rem);
  line-height: 0.92;
  text-wrap: balance;
}

.ubm-home-hero h1::after {
  background: linear-gradient(90deg, #d85f87, #e1ad4f, transparent);
}

.ubm-home-hero p:not(.ubm-section-heading__eyebrow) {
  color: #5e3d31;
}

.ubm-home-hero__proof span {
  border-color: rgba(216, 95, 135, 0.3);
  background: rgba(255, 255, 255, 0.62);
  color: #6d4332;
  box-shadow: 0 10px 30px rgba(122, 71, 38, 0.08);
}

.ubm-home .btn-gold {
  background: linear-gradient(180deg, #ffd977 0%, #e1ad4f 100%);
  color: #22130a;
  box-shadow: 0 16px 34px rgba(205, 128, 45, 0.26);
}

.ubm-home .btn-outline {
  border-color: rgba(184, 79, 117, 0.44);
  background: rgba(255, 255, 255, 0.66);
  color: #4d2b21;
}

.ubm-home .btn-outline:hover {
  background: #fff0f4;
  color: #b84f75;
}

.ubm-home-showcase {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(6, 60px);
  gap: 0.85rem;
  min-height: 430px;
}

.ubm-home-showcase__card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: #fff3e5;
  color: #fffaf3;
  box-shadow: 0 24px 54px rgba(95, 52, 31, 0.2);
  transform: translateY(0) rotate(var(--ubm-tilt, 0deg));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ubm-home-showcase__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 10, 6, 0.02) 0%, rgba(18, 10, 6, 0.72) 100%),
    linear-gradient(120deg, rgba(216, 95, 135, 0.12), transparent 46%);
}

.ubm-home-showcase__card img,
.ubm-home-showcase__card > span {
  width: 100%;
  height: 100%;
}

.ubm-home-showcase__card img {
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.ubm-home-showcase__card > span {
  display: grid;
  place-items: center;
  color: #b84f75;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
}

.ubm-home-showcase__card em,
.ubm-home-showcase__card strong {
  position: absolute;
  z-index: 2;
  left: 0.85rem;
  right: 0.85rem;
}

.ubm-home-showcase__card em {
  top: 0.85rem;
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.84);
  color: #b84f75;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ubm-home-showcase__card strong {
  bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
}

.ubm-home-showcase__card:hover {
  transform: translateY(-8px) rotate(var(--ubm-tilt, 0deg));
  box-shadow: 0 30px 70px rgba(95, 52, 31, 0.28);
}

.ubm-home-showcase__card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) brightness(1.02);
}

.ubm-home-showcase__card.is-card-1 {
  --ubm-tilt: -2deg;
  grid-area: 1 / 1 / 5 / 4;
}

.ubm-home-showcase__card.is-card-2 {
  --ubm-tilt: 2deg;
  grid-area: 2 / 4 / 6 / 7;
}

.ubm-home-showcase__card.is-card-3 {
  --ubm-tilt: 1deg;
  grid-area: 5 / 1 / 7 / 3;
}

.ubm-home-showcase__card.is-card-4 {
  --ubm-tilt: -1deg;
  grid-area: 1 / 4 / 3 / 6;
}

.ubm-home-showcase__card.is-card-5 {
  --ubm-tilt: 1.5deg;
  grid-area: 5 / 3 / 7 / 5;
}

.ubm-home-benefits {
  margin-top: -3rem;
}

.ubm-home-benefit,
.ubm-home-conversion__copy,
.ubm-home-step {
  border-color: rgba(181, 111, 57, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 246, 235, 0.84)),
    var(--ubm-bg-card);
  box-shadow: var(--ubm-card-shadow);
}

.ubm-home-benefit {
  position: relative;
  overflow: hidden;
}

.ubm-home-benefit::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #d85f87, #e1ad4f, #3e927b);
}

.ubm-home-benefit h2,
.ubm-home-section-head h2,
.ubm-home-conversion__copy h2,
.ubm-home-final-cta h2,
.ubm-home-step h3 {
  color: #29180e;
}

.ubm-home-benefit p,
.ubm-home-conversion__copy p:not(.ubm-section-heading__eyebrow),
.ubm-home-step p {
  color: #67483a;
}

.ubm-home-section-head__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.ubm-home-model-search {
  position: relative;
  flex: 1 1 220px;
  min-width: min(100%, 220px);
}

.ubm-home-model-search::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--ubm-model-muted, var(--ubm-text-muted));
  transform: translateY(-58%);
  opacity: 0.72;
  pointer-events: none;
}

.ubm-home-model-search::after {
  content: "";
  position: absolute;
  left: 1.43rem;
  top: calc(50% + 0.24rem);
  width: 0.42rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  color: var(--ubm-model-muted, var(--ubm-text-muted));
  transform: rotate(42deg);
  opacity: 0.72;
  pointer-events: none;
}

.ubm-home-model-search input {
  width: 100%;
  min-height: 42px;
  padding: 0.72rem 0.9rem 0.72rem 2.35rem;
  border: 1px solid rgba(181, 111, 57, 0.18);
  border-radius: 999px;
  background: color-mix(in srgb, var(--ubm-bg-card) 88%, transparent);
  color: var(--ubm-text-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 28px rgba(122, 71, 38, 0.08);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ubm-home-model-search input::placeholder {
  color: var(--ubm-text-muted);
}

.ubm-home-model-search input:focus {
  border-color: color-mix(in srgb, var(--ubm-gold) 58%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ubm-gold) 16%, transparent), 0 14px 30px rgba(122, 71, 38, 0.1);
}

[data-ubm-model-card][hidden] {
  display: none !important;
}

.ubm-home-model-grid__empty {
  margin: 1.2rem 0 0;
  padding: 1rem 1.2rem;
  border: 1px dashed rgba(181, 111, 57, 0.24);
  border-radius: 18px;
  background: color-mix(in srgb, var(--ubm-bg-card) 84%, transparent);
  color: var(--ubm-text-secondary);
  text-align: center;
}

.ubm-home-model-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.15rem;
}

.ubm-home-model-card {
  min-height: 430px;
  border-color: rgba(181, 111, 57, 0.16);
  background: #fffdf8;
  box-shadow: 0 18px 44px rgba(122, 71, 38, 0.14);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.ubm-home-model-card:nth-child(3n + 1) {
  --ubm-card-accent: #d85f87;
}

.ubm-home-model-card:nth-child(3n + 2) {
  --ubm-card-accent: #e1ad4f;
}

.ubm-home-model-card:nth-child(3n + 3) {
  --ubm-card-accent: #3e927b;
}

.ubm-home-model-card__media img {
  filter: saturate(1.04) contrast(1.03) brightness(1.02);
}

.ubm-home-model-card__placeholder {
  background: linear-gradient(160deg, #ffe2cf, #fff8ef);
  color: #b84f75;
}

.ubm-home-model-card__veil {
  background:
    linear-gradient(180deg, rgba(18, 10, 6, 0.02) 0%, rgba(18, 10, 6, 0.15) 44%, rgba(18, 10, 6, 0.82) 100%),
    linear-gradient(130deg, color-mix(in srgb, var(--ubm-card-accent, #d85f87) 26%, transparent), transparent 42%);
}

.ubm-home-model-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: inline-flex;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.86);
  color: var(--ubm-card-accent, #b84f75);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ubm-home-model-card__body {
  align-items: flex-end;
}

.ubm-home-model-card__body strong {
  color: #fffaf3;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.ubm-home-model-card__body small {
  color: rgba(255, 250, 243, 0.82);
}

.ubm-home-model-card__body em {
  border-color: rgba(255, 250, 243, 0.34);
  background: rgba(255, 250, 243, 0.9);
  color: #29180e;
}

.ubm-home-model-card:hover {
  transform: translateY(-8px);
  border-color: var(--ubm-card-accent, #d85f87);
  box-shadow: 0 28px 64px rgba(122, 71, 38, 0.22);
}

.ubm-home-conversion {
  padding-top: 3rem;
}

.ubm-home-step span {
  color: #b84f75;
}

.ubm-home-final-cta {
  background:
    linear-gradient(90deg, rgba(255, 247, 236, 0.95), rgba(255, 226, 210, 0.78)),
    linear-gradient(135deg, rgba(216, 95, 135, 0.18) 0%, transparent 42%),
    linear-gradient(180deg, rgba(62, 146, 123, 0.1), transparent);
}

@media (max-width: 1100px) {
  .ubm-home-hero {
    grid-template-columns: 1fr;
  }

  .ubm-home-showcase {
    grid-template-rows: repeat(4, 72px);
    min-height: 340px;
  }

  .ubm-home-showcase__card.is-card-1 {
    grid-area: 1 / 1 / 5 / 4;
  }

  .ubm-home-showcase__card.is-card-2 {
    grid-area: 1 / 4 / 4 / 7;
  }

  .ubm-home-showcase__card.is-card-3 {
    grid-area: 4 / 4 / 5 / 5;
  }

  .ubm-home-showcase__card.is-card-4 {
    grid-area: 4 / 5 / 5 / 6;
  }

  .ubm-home-showcase__card.is-card-5 {
    grid-area: 4 / 6 / 5 / 7;
  }
}

@media (max-width: 700px) {
  .ubm-home-hero {
    min-height: auto;
    padding: 3rem 1rem 2.75rem;
  }

  .ubm-home-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
  }

  .ubm-home-showcase {
    display: flex;
    min-height: 0;
    margin-inline: -1rem;
    padding: 0.25rem 1rem 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .ubm-home-showcase__card {
    flex: 0 0 68%;
    height: 300px;
    scroll-snap-align: start;
  }

  .ubm-home-benefits {
    margin-top: 0;
  }

  .ubm-home-section-head__actions,
  .ubm-home-section-head__actions .btn {
    width: 100%;
  }

  .ubm-home-model-search {
    flex-basis: 100%;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ubm-home-showcase__card,
  .ubm-home-showcase__card:hover,
  .ubm-home-showcase__card img,
  .ubm-home-model-card,
  .ubm-home-model-card:hover {
    transform: none;
    transition: none;
  }
}

/* ============================================================
   23. PRICING READABILITY RESET
   ============================================================ */
.ubm-pricing.ubm-pricing-premium {
  --ubm-pricing-bg: #fff7ec;
  --ubm-pricing-bg-soft: #ffe8d6;
  --ubm-pricing-panel: #fffdf8;
  --ubm-pricing-panel-strong: #fff3e5;
  --ubm-pricing-heading: #28160d;
  --ubm-pricing-body: #614437;
  --ubm-pricing-muted: #8f6957;
  --ubm-pricing-border: rgba(181, 111, 57, 0.2);
  --ubm-pricing-accent: #d85f87;
  --ubm-pricing-gold: #e1ad4f;
  --ubm-pricing-shadow: 0 22px 56px rgba(122, 71, 38, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 224, 183, 0.76) 0%, rgba(255, 250, 243, 0) 32%),
    linear-gradient(180deg, var(--ubm-pricing-bg) 0%, #fffaf3 100%) !important;
  color: var(--ubm-pricing-body) !important;
  padding-block: 0;
}

[data-theme="dark"] .ubm-pricing.ubm-pricing-premium {
  --ubm-pricing-bg: #1a100c;
  --ubm-pricing-bg-soft: #2a1a12;
  --ubm-pricing-panel: #241812;
  --ubm-pricing-panel-strong: #312016;
  --ubm-pricing-heading: #fff4df;
  --ubm-pricing-body: #e5cdb5;
  --ubm-pricing-muted: #b6967c;
  --ubm-pricing-border: rgba(225, 173, 79, 0.22);
  --ubm-pricing-accent: #f08aaa;
  --ubm-pricing-gold: #f0c66b;
  --ubm-pricing-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  background:
    linear-gradient(135deg, rgba(225, 173, 79, 0.08) 0%, rgba(26, 16, 12, 0) 36%),
    linear-gradient(180deg, var(--ubm-pricing-bg) 0%, #130b08 100%) !important;
  color: var(--ubm-pricing-body) !important;
}

.ubm-pricing .ubm-luxe-hero__grain {
  opacity: 0.08;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .ubm-pricing .ubm-luxe-hero__grain {
  opacity: 0.14;
  mix-blend-mode: overlay;
}

.ubm-pricing-hero {
  min-height: auto;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.97), rgba(255, 232, 214, 0.78)),
    linear-gradient(160deg, var(--ubm-pricing-bg) 0%, var(--ubm-pricing-bg-soft) 100%) !important;
}

[data-theme="dark"] .ubm-pricing-hero {
  background:
    linear-gradient(90deg, rgba(26, 16, 12, 0.94), rgba(42, 26, 18, 0.86)),
    linear-gradient(160deg, #1a100c 0%, #2a1a12 100%) !important;
}

.ubm-pricing-hero h1 {
  max-width: 820px;
  color: var(--ubm-pricing-heading) !important;
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.ubm-pricing-hero h1::after {
  background: linear-gradient(90deg, var(--ubm-pricing-accent), var(--ubm-pricing-gold), transparent);
}

.ubm-pricing-hero p,
.ubm-pricing .ubm-section-heading > p {
  color: var(--ubm-pricing-body) !important;
}

.ubm-pricing .ubm-section-heading h2,
.ubm-pricing-model__head h3 a {
  color: var(--ubm-pricing-heading) !important;
}

.ubm-pricing .ubm-section-heading__eyebrow,
.ubm-pricing-model__kicker {
  color: var(--ubm-pricing-accent);
}

.ubm-pricing-hero__actions {
  margin-top: 2rem;
}

.ubm-pricing-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.ubm-pricing-hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--ubm-pricing-border);
  background: color-mix(in srgb, var(--ubm-pricing-panel) 82%, transparent);
  color: var(--ubm-pricing-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.ubm-pricing .btn-outline {
  border-color: var(--ubm-pricing-border);
  background: color-mix(in srgb, var(--ubm-pricing-panel) 68%, transparent);
  color: var(--ubm-pricing-heading);
}

.ubm-pricing .btn-outline:hover {
  background: color-mix(in srgb, var(--ubm-pricing-panel-strong) 86%, transparent);
  color: var(--ubm-pricing-accent);
}

.ubm-pricing-models-wrap {
  padding: clamp(3.5rem, 7vw, 5rem) 0 6rem;
  scroll-margin-top: calc(var(--ubm-banner-h) + 92px);
}

.ubm-pricing-models {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.ubm-pricing-model {
  padding: 1.35rem;
  border-radius: var(--ubm-radius);
  border: 1px solid var(--ubm-pricing-border);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--ubm-pricing-panel) 94%, transparent), color-mix(in srgb, var(--ubm-pricing-panel-strong) 86%, transparent));
  box-shadow: var(--ubm-pricing-shadow);
}

.ubm-pricing-model__head {
  align-items: center;
  margin-bottom: 1.2rem;
}

.ubm-pricing-model__identity {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-width: 0;
}

.ubm-pricing-model__thumb {
  position: relative;
  overflow: hidden;
  flex: 0 0 118px;
  width: 118px;
  height: 132px;
  border-radius: var(--ubm-radius);
  border: 1px solid color-mix(in srgb, var(--ubm-pricing-accent) 28%, transparent);
  background: var(--ubm-pricing-panel-strong);
  box-shadow: 0 14px 32px rgba(122, 71, 38, 0.16);
}

[data-theme="dark"] .ubm-pricing-model__thumb {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.ubm-pricing-model__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 10, 6, 0.42));
  pointer-events: none;
}

.ubm-pricing-model__thumb img,
.ubm-pricing-model__thumb span {
  display: block;
  width: 100%;
  height: 100%;
}

.ubm-pricing-model__thumb img {
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.ubm-pricing-model__thumb span {
  display: grid;
  place-items: center;
  color: var(--ubm-pricing-accent);
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
}

.ubm-pricing-model__thumb:hover img {
  transform: scale(1.07);
  filter: saturate(1.06) brightness(1.03);
}

.ubm-pricing-model__head p {
  color: var(--ubm-pricing-muted) !important;
}

.ubm-pricing-model__tiers {
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
}

.ubm-pricing-model__tier {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  border-radius: var(--ubm-radius);
  border: 1px solid var(--ubm-pricing-border);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--ubm-pricing-panel) 96%, transparent), color-mix(in srgb, var(--ubm-pricing-panel-strong) 88%, transparent));
  color: var(--ubm-pricing-heading);
}

.ubm-pricing-model__tier::before {
  background: linear-gradient(120deg, transparent, rgba(216, 95, 135, 0.12), transparent);
}

.ubm-pricing-model__tier:hover {
  border-color: var(--ubm-pricing-accent);
  box-shadow: 0 16px 36px rgba(122, 71, 38, 0.16);
}

[data-theme="dark"] .ubm-pricing-model__tier:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
}

.ubm-pricing-model__tier-label {
  color: var(--ubm-pricing-muted);
}

.ubm-pricing-model__tier-price {
  color: var(--ubm-pricing-gold);
}

.ubm-pricing-model__tier-badge {
  border-color: color-mix(in srgb, var(--ubm-pricing-accent) 35%, transparent);
  background: color-mix(in srgb, var(--ubm-pricing-accent) 12%, transparent);
  color: var(--ubm-pricing-accent);
}

.ubm-pricing-model__tier-cta {
  color: var(--ubm-pricing-heading);
}

@media (max-width: 700px) {
  .ubm-pricing-hero {
    padding: 3rem 0 2.5rem;
  }

  .ubm-pricing-hero h1 {
    font-size: 2.75rem;
  }

  .ubm-pricing-hero__actions .btn {
    width: 100%;
  }

  .ubm-pricing-model__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ubm-pricing-model__thumb {
    flex-basis: 86px;
    width: 86px;
    height: 100px;
  }
}

/* ============================================================
   24. LIQUID FLOW MOTION
   ============================================================ */
:root {
  --ubm-liquid-primary: #ff6b9a;
  --ubm-liquid-secondary: #37d6c0;
  --ubm-liquid-third: #ffd166;
  --ubm-liquid-opacity: 0.64;
}

.ubm-luxe-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ubm-liquid-flow {
  --ubm-flow-x: 0px;
  --ubm-flow-y: 0px;
  position: absolute;
  inset: -18% -10%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: var(--ubm-liquid-opacity);
  transform: translate3d(var(--ubm-flow-x), var(--ubm-flow-y), 0);
  transition: transform 0.35s ease-out;
}

[data-theme="dark"] .ubm-liquid-flow {
  opacity: var(--ubm-liquid-opacity);
  mix-blend-mode: screen;
}

.ubm-liquid-flow__layer,
.ubm-liquid-flow__spark {
  position: absolute;
  left: -15%;
  width: 130%;
  pointer-events: none;
  will-change: transform;
}

.ubm-liquid-flow__layer {
  height: 38%;
  filter: blur(18px) saturate(1.2);
  clip-path: polygon(
    0 42%, 8% 34%, 18% 40%, 29% 26%, 41% 34%, 53% 24%,
    64% 36%, 76% 28%, 88% 40%, 100% 32%, 100% 72%,
    90% 63%, 79% 76%, 68% 66%, 57% 78%, 45% 68%, 32% 80%,
    20% 66%, 9% 74%, 0 64%
  );
}

.ubm-liquid-flow__layer.is-one {
  top: 8%;
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--ubm-liquid-primary) 72%, transparent) 21%, color-mix(in srgb, var(--ubm-liquid-third) 64%, transparent) 52%, transparent 88%);
  animation: ubm-liquid-current 17s ease-in-out infinite;
}

.ubm-liquid-flow__layer.is-two {
  top: 35%;
  height: 34%;
  background: linear-gradient(95deg, transparent 5%, color-mix(in srgb, var(--ubm-liquid-secondary) 62%, transparent) 28%, color-mix(in srgb, var(--ubm-liquid-primary) 42%, transparent) 62%, transparent 92%);
  animation: ubm-liquid-current-reverse 21s ease-in-out infinite;
}

.ubm-liquid-flow__layer.is-three {
  top: 58%;
  height: 30%;
  background: linear-gradient(90deg, transparent 4%, color-mix(in srgb, var(--ubm-liquid-third) 42%, transparent) 30%, color-mix(in srgb, var(--ubm-liquid-secondary) 44%, transparent) 70%, transparent 96%);
  animation: ubm-liquid-current 24s ease-in-out infinite;
}

.ubm-liquid-flow__spark {
  top: 18%;
  height: 54%;
  background: linear-gradient(105deg, transparent 10%, rgba(255, 255, 255, 0.18) 46%, transparent 62%);
  filter: blur(12px);
  transform: translateX(-20%) skewX(-10deg);
  animation: ubm-liquid-spark 8s ease-in-out infinite;
}

.ubm-home-hero__content,
.ubm-home-showcase,
.ubm-pricing-hero__inner {
  position: relative;
  z-index: 3;
}

.ubm-home-model-card,
.ubm-pricing-model {
  position: relative;
  overflow: hidden;
}

.ubm-home-model-card::before,
.ubm-pricing-model::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, color-mix(in srgb, var(--ubm-liquid-secondary) 22%, transparent) 38%, color-mix(in srgb, var(--ubm-liquid-primary) 22%, transparent) 52%, transparent 72%);
  transform: translateX(-135%) skewX(-13deg);
}

.ubm-home-model-card > *,
.ubm-pricing-model > * {
  position: relative;
  z-index: 3;
}

.ubm-home-model-card:hover::before,
.ubm-pricing-model:hover::before {
  animation: ubm-liquid-sheen 1.05s ease both;
}

.ubm-featured-model-plan {
  border: 1px solid var(--ubm-border);
  border-radius: var(--ubm-radius);
  background: color-mix(in srgb, var(--ubm-bg-card) 90%, transparent);
  box-shadow: var(--ubm-card-shadow);
  text-align: center;
}

/* Fluid override: replace ribbon-like geometry with soft moving liquid fields. */
.ubm-liquid-flow {
  inset: -28% -18%;
  overflow: visible;
  opacity: min(var(--ubm-liquid-opacity), 0.72);
  transform: translate3d(var(--ubm-flow-x), var(--ubm-flow-y), 0) rotate(var(--ubm-flow-tilt, 0deg));
  transition: opacity 0.35s ease;
}

[data-theme="dark"] .ubm-liquid-flow {
  opacity: min(var(--ubm-liquid-opacity), 0.5);
}

.ubm-liquid-flow::before,
.ubm-liquid-flow::after {
  content: "";
  position: absolute;
  inset: 12% 4%;
  border-radius: 45% 55% 54% 46% / 58% 42% 58% 42%;
  pointer-events: none;
  filter: blur(38px) saturate(1.18);
  mix-blend-mode: multiply;
  background:
    radial-gradient(circle at 14% 35%, color-mix(in srgb, var(--ubm-liquid-primary) 44%, transparent) 0 18%, transparent 34%),
    radial-gradient(circle at 46% 28%, color-mix(in srgb, var(--ubm-liquid-third) 46%, transparent) 0 22%, transparent 43%),
    radial-gradient(circle at 82% 44%, color-mix(in srgb, var(--ubm-liquid-secondary) 38%, transparent) 0 20%, transparent 42%);
  animation: ubm-liquid-morph 18s ease-in-out infinite;
}

.ubm-liquid-flow::after {
  inset: 28% -2% 5% 8%;
  opacity: 0.74;
  filter: blur(42px) saturate(1.28);
  background:
    radial-gradient(circle at 24% 62%, color-mix(in srgb, var(--ubm-liquid-secondary) 42%, transparent) 0 20%, transparent 40%),
    radial-gradient(circle at 56% 46%, color-mix(in srgb, var(--ubm-liquid-primary) 30%, transparent) 0 18%, transparent 38%),
    radial-gradient(circle at 78% 68%, color-mix(in srgb, var(--ubm-liquid-third) 42%, transparent) 0 20%, transparent 42%);
  animation: ubm-liquid-morph-alt 22s ease-in-out infinite;
}

[data-theme="dark"] .ubm-liquid-flow::before,
[data-theme="dark"] .ubm-liquid-flow::after {
  mix-blend-mode: screen;
  filter: blur(44px) saturate(1.05);
}

.ubm-liquid-flow__layer {
  clip-path: none;
  height: clamp(260px, 44vw, 520px);
  border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
  filter: blur(34px) saturate(1.18);
  opacity: 0.82;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .ubm-liquid-flow__layer {
  mix-blend-mode: screen;
  opacity: 0.58;
}

.ubm-liquid-flow__layer.is-one {
  top: 0;
  left: -10%;
  width: 58%;
  background:
    radial-gradient(circle at 36% 36%, color-mix(in srgb, var(--ubm-liquid-primary) 56%, transparent), transparent 62%),
    radial-gradient(circle at 66% 68%, color-mix(in srgb, var(--ubm-liquid-third) 34%, transparent), transparent 64%);
  animation: ubm-liquid-orbit-one 19s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.ubm-liquid-flow__layer.is-two {
  top: 18%;
  left: 26%;
  width: 54%;
  height: clamp(240px, 38vw, 480px);
  background:
    radial-gradient(circle at 44% 42%, color-mix(in srgb, var(--ubm-liquid-third) 58%, transparent), transparent 62%),
    radial-gradient(circle at 66% 58%, color-mix(in srgb, var(--ubm-liquid-primary) 28%, transparent), transparent 64%);
  animation: ubm-liquid-orbit-two 23s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.ubm-liquid-flow__layer.is-three {
  top: 34%;
  left: 58%;
  width: 52%;
  height: clamp(220px, 34vw, 440px);
  background:
    radial-gradient(circle at 42% 42%, color-mix(in srgb, var(--ubm-liquid-secondary) 54%, transparent), transparent 62%),
    radial-gradient(circle at 72% 70%, color-mix(in srgb, var(--ubm-liquid-third) 28%, transparent), transparent 66%);
  animation: ubm-liquid-orbit-three 27s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}

.ubm-liquid-flow__spark {
  top: 14%;
  left: -12%;
  width: 128%;
  height: 62%;
  border-radius: 999px;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.22) 43%, rgba(255, 255, 255, 0.06) 53%, transparent 76%);
  filter: blur(24px);
  opacity: 0;
  animation: ubm-liquid-glint 9s ease-in-out infinite;
}

@keyframes ubm-liquid-morph {
  0%, 100% {
    transform: translate3d(-2%, -1%, 0) rotate(-2deg) scale(1);
    border-radius: 45% 55% 54% 46% / 58% 42% 58% 42%;
  }
  38% {
    transform: translate3d(4%, 4%, 0) rotate(3deg) scale(1.06);
    border-radius: 57% 43% 46% 54% / 44% 58% 42% 56%;
  }
  68% {
    transform: translate3d(1%, -3%, 0) rotate(-4deg) scale(0.98);
    border-radius: 42% 58% 61% 39% / 54% 46% 62% 38%;
  }
}

@keyframes ubm-liquid-morph-alt {
  0%, 100% {
    transform: translate3d(2%, 4%, 0) rotate(4deg) scale(1.02);
    border-radius: 58% 42% 43% 57% / 44% 60% 40% 56%;
  }
  44% {
    transform: translate3d(-4%, -2%, 0) rotate(-3deg) scale(1.08);
    border-radius: 42% 58% 56% 44% / 58% 44% 56% 42%;
  }
  76% {
    transform: translate3d(4%, -4%, 0) rotate(2deg) scale(0.98);
    border-radius: 54% 46% 40% 60% / 48% 52% 44% 56%;
  }
}

@keyframes ubm-liquid-orbit-one {
  0%, 100% {
    transform: translate3d(-5%, 4%, 0) rotate(-8deg) scale(1);
    border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
  }
  45% {
    transform: translate3d(18%, -8%, 0) rotate(9deg) scale(1.12);
    border-radius: 60% 40% 42% 58% / 52% 58% 42% 48%;
  }
  74% {
    transform: translate3d(9%, 10%, 0) rotate(-4deg) scale(0.96);
    border-radius: 48% 52% 64% 36% / 62% 38% 52% 48%;
  }
}

@keyframes ubm-liquid-orbit-two {
  0%, 100% {
    transform: translate3d(4%, -4%, 0) rotate(7deg) scale(1);
    border-radius: 56% 44% 47% 53% / 42% 56% 44% 58%;
  }
  42% {
    transform: translate3d(-16%, 8%, 0) rotate(-10deg) scale(1.08);
    border-radius: 44% 56% 58% 42% / 58% 44% 56% 42%;
  }
  72% {
    transform: translate3d(8%, 12%, 0) rotate(2deg) scale(0.98);
    border-radius: 62% 38% 44% 56% / 50% 62% 38% 50%;
  }
}

@keyframes ubm-liquid-orbit-three {
  0%, 100% {
    transform: translate3d(3%, 8%, 0) rotate(-5deg) scale(0.98);
    border-radius: 48% 52% 58% 42% / 58% 44% 56% 42%;
  }
  36% {
    transform: translate3d(-14%, -8%, 0) rotate(8deg) scale(1.12);
    border-radius: 58% 42% 44% 56% / 42% 58% 44% 56%;
  }
  78% {
    transform: translate3d(-5%, 12%, 0) rotate(-2deg) scale(1.02);
    border-radius: 42% 58% 62% 38% / 54% 46% 60% 40%;
  }
}

@keyframes ubm-liquid-glint {
  0%, 100% {
    opacity: 0;
    transform: translate3d(-24%, 7%, 0) rotate(-8deg);
  }
  36%, 58% {
    opacity: 0.72;
  }
  76% {
    opacity: 0;
    transform: translate3d(28%, -6%, 0) rotate(-8deg);
  }
}

[data-theme="dark"] body.home {
  background: #130f17;
}

[data-theme="dark"] body.home .ubm-banner {
  background: linear-gradient(90deg, #7c4460, #5f374d);
  color: #fff6df;
}

[data-theme="dark"] body.home .ubm-nav {
  background: rgba(16, 12, 19, 0.94);
  border-bottom-color: rgba(236, 198, 112, 0.18);
}

[data-theme="dark"] body.home .ubm-nav.scrolled {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
}

[data-theme="dark"] body.home .ubm-nav__logo,
[data-theme="dark"] body.home .ubm-nav__links a,
[data-theme="dark"] body.home .ubm-theme-toggle {
  color: #fff4df;
}

[data-theme="dark"] body.home .ubm-nav__wordmark-accent {
  color: #f0c66b;
}

[data-theme="dark"] body.home .ubm-nav__hamburger span {
  background: #fff4df;
}

[data-theme="dark"] body.home .ubm-nav__links a:hover {
  color: #ff8fb0;
}

[data-theme="dark"] .ubm-home {
  --ubm-gold: #f0c66b;
  --ubm-rose-gold: #ff8fb0;
  --ubm-gold-hover: #ffd983;
  --ubm-gold-border: rgba(240, 198, 107, 0.28);
  --ubm-gold-border-hover: rgba(255, 143, 176, 0.62);
  --ubm-emerald: #60d0bb;
  --ubm-bg: #130f17;
  --ubm-bg-secondary: #1d1520;
  --ubm-bg-card: #211821;
  --ubm-bg-card-hover: #2a1e2a;
  --ubm-text-primary: #fff4df;
  --ubm-text-secondary: #ead8c8;
  --ubm-text-muted: #bfa69a;
  --ubm-border: rgba(240, 198, 107, 0.18);
  --ubm-card-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 143, 176, 0.16), transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(96, 208, 187, 0.12), transparent 34%),
    linear-gradient(180deg, #130f17 0%, #21151b 45%, #120d13 100%);
}

[data-theme="dark"] .ubm-home .ubm-section-heading__eyebrow {
  color: #ff8fb0;
}

[data-theme="dark"] .ubm-home-hero {
  background:
    radial-gradient(circle at 72% 20%, rgba(240, 198, 107, 0.14), transparent 35%),
    radial-gradient(circle at 18% 40%, rgba(255, 143, 176, 0.12), transparent 34%),
    linear-gradient(160deg, #1a1118 0%, #24151c 100%);
}

[data-theme="dark"] .ubm-home-hero__media {
  opacity: 0.2;
  filter: saturate(0.94) contrast(1.08) brightness(0.62);
}

[data-theme="dark"] .ubm-home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(19, 15, 23, 0.94), rgba(19, 15, 23, 0.74) 48%, rgba(35, 20, 27, 0.55)),
    linear-gradient(180deg, rgba(19, 15, 23, 0.08), rgba(19, 15, 23, 0.68));
}

[data-theme="dark"] .ubm-home .ubm-luxe-hero__grain {
  opacity: 0.12;
  mix-blend-mode: overlay;
}

[data-theme="dark"] .ubm-home-hero h1,
[data-theme="dark"] .ubm-home-benefit h2,
[data-theme="dark"] .ubm-home-section-head h2,
[data-theme="dark"] .ubm-home-conversion__copy h2,
[data-theme="dark"] .ubm-home-final-cta h2,
[data-theme="dark"] .ubm-home-step h3 {
  color: #fff4df;
}

[data-theme="dark"] .ubm-home-hero p:not(.ubm-section-heading__eyebrow),
[data-theme="dark"] .ubm-home-benefit p,
[data-theme="dark"] .ubm-home-conversion__copy p:not(.ubm-section-heading__eyebrow),
[data-theme="dark"] .ubm-home-step p {
  color: #ead8c8;
}

[data-theme="dark"] .ubm-home-hero__proof span {
  border-color: rgba(240, 198, 107, 0.2);
  background: rgba(28, 19, 22, 0.74);
  color: #ead8c8;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .ubm-home .btn-outline {
  border-color: rgba(240, 198, 107, 0.38);
  background: rgba(33, 24, 33, 0.72);
  color: #fff4df;
}

[data-theme="dark"] .ubm-home .btn-outline:hover {
  background: rgba(255, 143, 176, 0.14);
  color: #ffb2c8;
}

[data-theme="dark"] .ubm-home-benefit,
[data-theme="dark"] .ubm-home-conversion__copy,
[data-theme="dark"] .ubm-home-step {
  border-color: rgba(240, 198, 107, 0.16);
  background:
    linear-gradient(180deg, rgba(39, 28, 36, 0.9), rgba(26, 19, 27, 0.9)),
    var(--ubm-bg-card);
  box-shadow: var(--ubm-card-shadow);
}

[data-theme="dark"] .ubm-home-model-card {
  border-color: rgba(240, 198, 107, 0.16);
  background: #211821;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .ubm-home-model-card:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .ubm-home-model-card__body em {
  background: rgba(255, 244, 223, 0.92);
  color: #24160f;
}

[data-theme="dark"] .ubm-home-final-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 143, 176, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(28, 20, 29, 0.98), rgba(35, 22, 28, 0.92));
}

[data-theme="dark"] .ubm-pricing-hero__proof span {
  background: rgba(44, 30, 24, 0.76);
  color: #e9d6bf;
}

@keyframes ubm-liquid-current {
  0%, 100% {
    transform: translate3d(-4%, 0, 0) scaleY(1);
  }
  45% {
    transform: translate3d(7%, -7%, 0) scaleY(1.14);
  }
  72% {
    transform: translate3d(2%, 5%, 0) scaleY(0.94);
  }
}

@keyframes ubm-liquid-current-reverse {
  0%, 100% {
    transform: translate3d(5%, 3%, 0) scaleY(0.96);
  }
  48% {
    transform: translate3d(-8%, -5%, 0) scaleY(1.16);
  }
  78% {
    transform: translate3d(-2%, 7%, 0) scaleY(1);
  }
}

@keyframes ubm-liquid-spark {
  0%, 100% {
    opacity: 0;
    transform: translateX(-34%) skewX(-10deg);
  }
  38%, 62% {
    opacity: 0.78;
  }
  72% {
    opacity: 0;
    transform: translateX(34%) skewX(-10deg);
  }
}

@keyframes ubm-liquid-sheen {
  from {
    transform: translateX(-135%) skewX(-13deg);
  }
  to {
    transform: translateX(135%) skewX(-13deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ubm-liquid-flow,
  .ubm-liquid-flow__layer,
  .ubm-liquid-flow__spark,
  .ubm-home-model-card:hover::before,
  .ubm-pricing-model:hover::before {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   25. PERFORMANCE + MODEL PAGE THEME PASS
   ============================================================ */
.ubm-liquid-flow {
  contain: layout paint;
  opacity: min(var(--ubm-liquid-opacity), 0.58);
}

[data-theme="dark"] .ubm-liquid-flow {
  opacity: min(var(--ubm-liquid-opacity), 0.42);
}

.ubm-liquid-flow::before,
.ubm-liquid-flow::after {
  filter: blur(24px) saturate(1.08);
  animation: ubm-liquid-lite-drift 24s ease-in-out infinite;
  will-change: transform, opacity;
}

.ubm-liquid-flow::after {
  animation-duration: 29s;
  animation-direction: reverse;
}

.ubm-liquid-flow__layer {
  filter: blur(22px) saturate(1.08);
  opacity: 0.56;
  will-change: transform;
}

.ubm-liquid-flow__layer.is-one {
  animation: ubm-liquid-lite-one 28s ease-in-out infinite;
}

.ubm-liquid-flow__layer.is-two {
  animation: ubm-liquid-lite-two 32s ease-in-out infinite;
}

.ubm-liquid-flow__layer.is-three {
  animation: ubm-liquid-lite-three 36s ease-in-out infinite;
}

.ubm-liquid-flow__spark {
  filter: blur(14px);
  animation-duration: 13s;
}

.ubm-home-benefits,
.ubm-home-models,
.ubm-home-teasers,
.ubm-home-conversion,
.ubm-home-final-cta,
.ubm-pricing-models-wrap,
.ubm-model-subscriptions,
.ubm-model-story,
.ubm-model-gallery {
  content-visibility: auto;
  contain-intrinsic-size: 1px 780px;
}

.ubm-home-model-card,
.ubm-pricing-model,
.ubm-model-subscription-card,
.ubm-model-gallery__item,
.ubm-model-story__copy,
.ubm-model-story__teaser {
  contain: layout paint;
}

.ubm-model-page {
  --ubm-model-bg: #fff8ef;
  --ubm-model-bg-soft: #ffe9d8;
  --ubm-model-panel: #fffdf8;
  --ubm-model-panel-strong: #fff3e5;
  --ubm-model-heading: #26170f;
  --ubm-model-body: #67483a;
  --ubm-model-muted: #8f6957;
  --ubm-model-accent: #d85f87;
  --ubm-model-gold: #e1ad4f;
  --ubm-model-border: rgba(181, 111, 57, 0.2);
  --ubm-model-shadow: 0 22px 56px rgba(122, 71, 38, 0.14);
  background:
    radial-gradient(circle at 15% 0%, rgba(216, 95, 135, 0.16), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(62, 146, 123, 0.13), transparent 36%),
    linear-gradient(180deg, var(--ubm-model-bg) 0%, #fffaf3 100%);
  color: var(--ubm-model-body);
}

[data-theme="dark"] .ubm-model-page {
  --ubm-model-bg: #130f17;
  --ubm-model-bg-soft: #21151b;
  --ubm-model-panel: #211821;
  --ubm-model-panel-strong: #2a1e2a;
  --ubm-model-heading: #fff4df;
  --ubm-model-body: #ead8c8;
  --ubm-model-muted: #bfa69a;
  --ubm-model-accent: #ff8fb0;
  --ubm-model-gold: #f0c66b;
  --ubm-model-border: rgba(240, 198, 107, 0.18);
  --ubm-model-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 143, 176, 0.16), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(96, 208, 187, 0.11), transparent 36%),
    linear-gradient(180deg, #130f17 0%, #1d131a 44%, #120d13 100%);
  color: var(--ubm-model-body);
}

.ubm-model-hero-cinematic {
  min-height: clamp(560px, 72svh, 760px);
  background:
    radial-gradient(circle at 74% 18%, rgba(62, 146, 123, 0.16), transparent 34%),
    linear-gradient(160deg, var(--ubm-model-bg) 0%, var(--ubm-model-bg-soft) 100%);
}

.ubm-model-hero-cinematic__media {
  opacity: 0.22;
  filter: saturate(1.02) contrast(1.02) brightness(1.02);
  transform: scale(1.01);
}

.ubm-model-hero-cinematic__overlay {
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.97) 0%, rgba(255, 246, 235, 0.82) 46%, rgba(255, 233, 216, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.16) 0%, rgba(255, 233, 216, 0.42) 100%);
}

[data-theme="dark"] .ubm-model-hero-cinematic {
  background:
    radial-gradient(circle at 72% 20%, rgba(240, 198, 107, 0.12), transparent 35%),
    radial-gradient(circle at 16% 38%, rgba(255, 143, 176, 0.11), transparent 34%),
    linear-gradient(160deg, #1a1118 0%, #24151c 100%);
}

[data-theme="dark"] .ubm-model-hero-cinematic__media {
  opacity: 0.28;
  filter: saturate(0.95) contrast(1.06) brightness(0.64);
}

[data-theme="dark"] .ubm-model-hero-cinematic__overlay {
  background:
    linear-gradient(90deg, rgba(19, 15, 23, 0.94) 0%, rgba(19, 15, 23, 0.74) 48%, rgba(35, 20, 27, 0.56) 100%),
    linear-gradient(180deg, rgba(19, 15, 23, 0.08) 0%, rgba(19, 15, 23, 0.68) 100%);
}

.ubm-model-hero-cinematic__eyebrow,
.ubm-model-page .ubm-section-heading__eyebrow {
  color: var(--ubm-model-accent);
}

.ubm-model-hero-cinematic h1,
.ubm-model-page .ubm-section-heading h2,
.ubm-model-story__copy h2,
.ubm-model-story__teaser-head,
.ubm-model-subscription-card__title,
.ubm-model-subscription-card__cta,
.ubm-model-sticky-cta span {
  color: var(--ubm-model-heading);
}

.ubm-model-hero-cinematic h1 {
  text-shadow: none;
}

[data-theme="dark"] .ubm-model-hero-cinematic h1 {
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.ubm-model-hero-cinematic h1::after {
  background: linear-gradient(90deg, var(--ubm-model-accent), var(--ubm-model-gold), transparent);
}

.ubm-model-hero-cinematic__tagline,
.ubm-model-page .ubm-section-heading p,
.ubm-prose,
.ubm-prose p,
.ubm-model-subscription-card__copy {
  color: var(--ubm-model-body);
}

.ubm-model-hero__status span {
  border-color: var(--ubm-model-border);
  background: color-mix(in srgb, var(--ubm-model-panel) 82%, transparent);
  color: var(--ubm-model-muted);
}

[data-theme="dark"] .ubm-model-hero__status span {
  background: rgba(34, 23, 27, 0.76);
  color: #ead8c8;
}

.ubm-model-page .btn-outline {
  border-color: var(--ubm-model-border);
  background: color-mix(in srgb, var(--ubm-model-panel) 68%, transparent);
  color: var(--ubm-model-heading);
}

.ubm-model-page .btn-outline:hover {
  background: color-mix(in srgb, var(--ubm-model-panel-strong) 88%, transparent);
  color: var(--ubm-model-accent);
}

.ubm-model-subscription-card,
.ubm-model-story__copy,
.ubm-model-story__teaser {
  border-color: var(--ubm-model-border);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--ubm-model-panel) 94%, transparent), color-mix(in srgb, var(--ubm-model-panel-strong) 86%, transparent));
  box-shadow: var(--ubm-model-shadow);
}

.ubm-model-subscription-card {
  min-height: 232px;
  border-radius: var(--ubm-radius);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ubm-model-subscription-card:hover {
  border-color: var(--ubm-model-accent);
  box-shadow: var(--ubm-model-shadow);
}

.ubm-model-subscription-card__badge {
  background: color-mix(in srgb, var(--ubm-model-accent) 13%, var(--ubm-model-panel));
  color: var(--ubm-model-accent);
}

.ubm-model-subscription-card__price {
  color: var(--ubm-model-gold);
}

.ubm-model-story__video-frame {
  border-color: var(--ubm-model-border);
  background: #120d13;
}

.ubm-model-gallery__item {
  border-color: var(--ubm-model-border);
  background: var(--ubm-model-panel);
  box-shadow: var(--ubm-model-shadow);
}

.ubm-model-gallery__media img,
.ubm-model-gallery__media video {
  transition: transform 0.28s ease;
}

.ubm-model-gallery__item.is-locked .ubm-model-gallery__media img,
.ubm-model-gallery__item.is-locked .ubm-model-gallery__media video {
  filter: blur(10px) brightness(0.58) saturate(0.88);
  transform: scale(1.05);
}

.ubm-model-gallery__lock-badge,
.ubm-model-gallery__lock-icon {
  background: rgba(18, 12, 14, 0.78);
}

.ubm-model-sticky-cta {
  border-color: var(--ubm-model-border);
  background: color-mix(in srgb, var(--ubm-model-panel) 94%, transparent);
  box-shadow: var(--ubm-model-shadow);
  backdrop-filter: none;
}

[data-theme="dark"] .ubm-model-sticky-cta {
  background: rgba(22, 15, 20, 0.94);
}

@media (max-width: 760px) {
  .ubm-liquid-flow::after,
  .ubm-liquid-flow__layer.is-three,
  .ubm-liquid-flow__spark {
    display: none;
  }

  .ubm-liquid-flow::before,
  .ubm-liquid-flow__layer {
    filter: blur(18px) saturate(1.04);
  }

  .ubm-model-hero-cinematic {
    min-height: auto;
    padding-top: 2rem;
  }
}

@keyframes ubm-liquid-lite-drift {
  0%, 100% {
    transform: translate3d(-2%, -1%, 0) rotate(-2deg) scale(1);
  }
  50% {
    transform: translate3d(3%, 2%, 0) rotate(2deg) scale(1.05);
  }
}

@keyframes ubm-liquid-lite-one {
  0%, 100% {
    transform: translate3d(-5%, 4%, 0) rotate(-8deg) scale(1);
  }
  50% {
    transform: translate3d(14%, -6%, 0) rotate(6deg) scale(1.08);
  }
}

@keyframes ubm-liquid-lite-two {
  0%, 100% {
    transform: translate3d(4%, -4%, 0) rotate(7deg) scale(1);
  }
  50% {
    transform: translate3d(-12%, 7%, 0) rotate(-7deg) scale(1.06);
  }
}

@keyframes ubm-liquid-lite-three {
  0%, 100% {
    transform: translate3d(3%, 8%, 0) rotate(-5deg) scale(0.98);
  }
  50% {
    transform: translate3d(-10%, -6%, 0) rotate(6deg) scale(1.08);
  }
}

@media (max-width: 768px), (pointer: coarse) {
  .ubm-liquid-flow {
    opacity: min(var(--ubm-liquid-opacity), 0.38);
  }

  .ubm-liquid-flow::after,
  .ubm-liquid-flow__spark {
    display: none;
  }

  .ubm-liquid-flow::before,
  .ubm-liquid-flow__layer {
    filter: blur(18px) saturate(1.02);
  }
}

/* ============================================================
   26. PORTRAIT-FIRST MODEL MEDIA
   ============================================================ */
.ubm-model-story__video-frame,
.ubm-model-gallery__item {
  aspect-ratio: 9 / 16;
}

.ubm-model-story__video-frame {
  width: min(100%, 440px);
  max-height: 72vh;
  margin-inline: auto;
}

.ubm-model-story__video-frame video,
.ubm-model-story__video-frame img,
.ubm-model-gallery__media img,
.ubm-model-gallery__media video {
  object-fit: cover;
  object-position: center top;
}

.ubm-model-gallery__item {
  min-height: 420px;
}

@media (max-width: 760px) {
  .ubm-model-story__video-frame {
    width: min(100%, 360px);
    max-height: none;
  }

  .ubm-model-gallery__item {
    min-height: 0;
  }
}

/* ============================================================
   27. SECTION DENSITY AND RHYTHM PASS
   ============================================================ */
.ubm-luxe-page,
.ubm-model-page,
.ubm-pricing-page {
  --ubm-section-tight: clamp(2.5rem, 5vw, 4rem);
  --ubm-section-compact: clamp(1.7rem, 3.4vw, 2.75rem);
}

.ubm-model-page {
  padding-bottom: var(--ubm-section-tight);
}

.ubm-model-hero-cinematic {
  min-height: clamp(460px, 62svh, 640px);
  display: flex;
  align-items: center;
}

.ubm-model-hero-cinematic__content {
  padding: clamp(4.25rem, 8vw, 7rem) 0 clamp(2.25rem, 4.6vw, 3.35rem);
}

.ubm-model-subscriptions {
  padding: var(--ubm-section-tight) 0 var(--ubm-section-compact);
}

.ubm-model-story,
.ubm-luxe-split {
  padding: 0 0 var(--ubm-section-compact);
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

.ubm-model-gallery {
  padding: var(--ubm-section-compact) 0 var(--ubm-section-tight);
}

.ubm-model-page .ubm-section-heading {
  margin-bottom: clamp(1.15rem, 2vw, 1.75rem);
}

.ubm-model-subscriptions__grid {
  gap: clamp(0.75rem, 1.4vw, 1rem);
}

.ubm-model-subscription-card {
  min-height: 198px;
  padding: clamp(1rem, 1.6vw, 1.25rem);
}

.ubm-model-gallery__grid {
  margin-top: 1.35rem;
  gap: 0.85rem;
}

.ubm-model-gallery__item {
  min-height: 320px;
  aspect-ratio: 9 / 12;
}

.ubm-model-story__copy,
.ubm-model-story__teaser {
  padding: clamp(1.1rem, 2vw, 1.35rem);
}

.ubm-model-story__video-frame {
  max-height: 62vh;
}

.ubm-model-subscriptions,
.ubm-model-gallery,
.ubm-pricing-models-wrap {
  position: relative;
}

.ubm-model-subscriptions::before,
.ubm-model-gallery::before,
.ubm-pricing-models-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--ubm-accent) 28%, transparent), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.ubm-pricing-hero {
  padding: clamp(3rem, 6vw, 4.75rem) 0 clamp(2.25rem, 4vw, 3.25rem);
}

.ubm-pricing-models-wrap {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3.25rem, 5vw, 4.5rem);
}

.ubm-pricing-models {
  margin-top: 1.35rem;
  gap: 0.85rem;
}

.ubm-pricing-model {
  padding: clamp(1rem, 1.6vw, 1.2rem);
}

.ubm-pricing-model__head {
  margin-bottom: 0.85rem;
}

.ubm-pricing-model__tier {
  min-height: 112px;
  padding: 0.85rem;
}

.ubm-home-conversion {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(3rem, 5vw, 4rem);
}

.ubm-home-final-cta {
  padding: clamp(3.25rem, 6vw, 4.25rem) 0;
}

.ubm-home-model-grid {
  gap: 0.9rem;
}

.ubm-home-model-card {
  min-height: 400px;
}

@media (max-width: 900px) {
  .ubm-model-hero-cinematic {
    min-height: clamp(420px, 58svh, 560px);
  }

  .ubm-model-story,
  .ubm-luxe-split {
    padding-bottom: var(--ubm-section-tight);
  }

  .ubm-model-story__video-frame {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .ubm-luxe-page,
  .ubm-model-page,
  .ubm-pricing-page {
    --ubm-section-tight: 2.5rem;
    --ubm-section-compact: 1.6rem;
  }

  .ubm-model-hero-cinematic {
    min-height: auto;
    padding-top: 1rem;
  }

  .ubm-model-hero-cinematic__content {
    padding: 3.5rem 0 2rem;
  }

  .ubm-model-subscriptions {
    padding-top: 2.1rem;
  }

  .ubm-model-subscription-card {
    min-height: 0;
  }

  .ubm-model-gallery__item {
    aspect-ratio: 9 / 14;
    min-height: 0;
  }

  .ubm-pricing-hero {
    padding: 2.6rem 0 2rem;
  }

  .ubm-pricing-models-wrap {
    padding: 2.1rem 0 3rem;
  }

  .ubm-home-conversion,
  .ubm-home-final-cta {
    padding: 2.75rem 0;
  }
}

/* ============================================================
   28. COMPACT CONTENT FILLERS
   ============================================================ */
.ubm-model-story,
.ubm-luxe-split {
  align-items: start;
}

.ubm-model-story__copy,
.ubm-model-story__teaser {
  align-self: start;
}

.ubm-model-story__quickfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.ubm-model-story__quickfacts span {
  min-width: 0;
  padding: 0.82rem;
  border: 1px solid var(--ubm-model-border);
  border-radius: calc(var(--ubm-radius) - 6px);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--ubm-model-panel-strong) 76%, transparent), color-mix(in srgb, var(--ubm-model-panel) 86%, transparent));
}

.ubm-model-story__quickfacts strong,
.ubm-model-story__quickfacts em {
  display: block;
}

.ubm-model-story__quickfacts strong {
  overflow-wrap: anywhere;
  color: var(--ubm-model-heading);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.05;
}

.ubm-model-story__quickfacts em {
  margin-top: 0.28rem;
  color: var(--ubm-model-muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ubm-model-story__note {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--ubm-model-accent);
  border-radius: 0 calc(var(--ubm-radius) - 8px) calc(var(--ubm-radius) - 8px) 0;
  background: color-mix(in srgb, var(--ubm-model-panel-strong) 70%, transparent);
  color: var(--ubm-model-body);
  font-size: 0.95rem;
}

.ubm-pricing-hero {
  min-height: auto;
  padding: clamp(2.65rem, 5vw, 4rem) 0 clamp(1.85rem, 3.2vw, 2.65rem);
}

.ubm-pricing .ubm-section-heading {
  margin-bottom: 1rem;
}

.ubm-pricing .ubm-section-heading h2 {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
}

.ubm-pricing-models-wrap {
  padding-top: clamp(1.8rem, 3.6vw, 2.7rem);
}

.ubm-pricing-models {
  margin-top: 1rem;
}

@media (max-width: 760px) {
  .js .ubm-luxe-reveal,
  .js .ubm-luxe-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ubm-model-story__quickfacts {
    grid-template-columns: 1fr;
  }

  .ubm-model-story__note {
    font-size: 0.9rem;
  }

  .ubm-pricing .ubm-section-heading h2 {
    font-size: clamp(1.9rem, 10vw, 2.45rem);
  }
}

/* ============================================================
   29. CHECKOUT CONVERSION AND READABILITY PASS
   ============================================================ */
.woocommerce-checkout #main,
.woocommerce-checkout .site-main {
  background:
    radial-gradient(circle at 12% 5%, color-mix(in srgb, var(--ubm-gold) 13%, transparent), transparent 28rem),
    linear-gradient(180deg, var(--ubm-bg) 0%, var(--ubm-bg-secondary) 100%);
}

.woocommerce-checkout .woocommerce {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  color: var(--ubm-text-secondary);
}

.ubm-checkout-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: stretch;
  margin-bottom: 1rem;
  padding: clamp(1.25rem, 2.8vw, 2rem);
  border: 1px solid var(--ubm-border);
  border-radius: var(--ubm-radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ubm-bg-card) 94%, transparent), color-mix(in srgb, var(--ubm-bg-card-hover) 88%, transparent)),
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--ubm-gold) 22%, transparent), transparent 16rem);
  box-shadow: var(--ubm-card-shadow);
}

.ubm-checkout-hero h1 {
  max-width: 760px;
  margin-top: 0.1rem;
  color: var(--ubm-text-primary);
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.ubm-checkout-hero__copy p:not(.ubm-section-heading__eyebrow) {
  max-width: 660px;
  margin: 1rem 0 0;
  color: var(--ubm-text-secondary);
}

.ubm-checkout-hero__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-height: 170px;
  padding: 1.1rem;
  border: 1px solid var(--ubm-border);
  border-radius: calc(var(--ubm-radius) - 2px);
  background: color-mix(in srgb, var(--ubm-bg-card) 80%, transparent);
}

.ubm-checkout-hero__summary span,
.ubm-checkout-hero__summary em {
  color: var(--ubm-text-muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ubm-checkout-hero__summary strong {
  color: var(--ubm-text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.ubm-checkout-hero__proof {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ubm-checkout-hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.78rem;
  border: 1px solid var(--ubm-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--ubm-bg-card) 76%, transparent);
  color: var(--ubm-text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
}

.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem 1rem 3rem;
  border: 1px solid var(--ubm-border);
  border-top: 1px solid var(--ubm-border);
  border-radius: var(--ubm-radius);
  background: color-mix(in srgb, var(--ubm-bg-card) 88%, transparent);
  color: var(--ubm-text-secondary);
  box-shadow: var(--ubm-card-shadow);
}

.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-error::before {
  top: 1rem;
  color: var(--ubm-gold);
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.72fr);
  gap: 1rem;
  align-items: start;
}

.ubm-checkout-customer-shell,
.ubm-checkout-review-shell {
  min-width: 0;
  border: 1px solid var(--ubm-border);
  border-radius: var(--ubm-radius);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--ubm-bg-card) 94%, transparent), color-mix(in srgb, var(--ubm-bg-card-hover) 82%, transparent));
  box-shadow: var(--ubm-card-shadow);
}

.ubm-checkout-customer-shell {
  padding: clamp(1.1rem, 2vw, 1.4rem);
}

.ubm-checkout-review-shell {
  position: sticky;
  top: calc(var(--ubm-banner-h) + 88px);
  padding: clamp(1rem, 1.8vw, 1.25rem);
}

.ubm-checkout-panel-head {
  margin-bottom: 1rem;
}

.ubm-checkout-panel-head span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--ubm-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ubm-checkout-panel-head h2,
.woocommerce-checkout h3 {
  color: var(--ubm-text-primary);
}

.ubm-checkout-panel-head h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.ubm-checkout-panel-head p {
  margin: 0.35rem 0 0;
  color: var(--ubm-text-secondary);
}

.woocommerce-checkout #customer_details {
  width: 100%;
}

.woocommerce-checkout #customer_details::before,
.woocommerce-checkout #customer_details::after {
  display: none;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout #customer_details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 1rem;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
  margin: 0 0 0.8rem;
  color: var(--ubm-text-primary);
  font-size: 1.15rem;
}

.woocommerce-checkout .woocommerce form .form-row,
.woocommerce-checkout form.checkout .form-row {
  margin: 0 0 0.85rem;
  padding: 0;
}

.woocommerce-checkout form .form-row label {
  margin-bottom: 0.3rem;
  color: var(--ubm-text-primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.woocommerce-checkout form .form-row .required {
  color: var(--ubm-gold);
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 46px;
  border: 1px solid var(--ubm-input-border);
  border-radius: calc(var(--ubm-radius) - 4px);
  background: var(--ubm-input-bg);
  color: var(--ubm-text-primary);
  box-shadow: none;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select {
  padding: 0.68rem 0.78rem;
}

.woocommerce-checkout form .form-row textarea {
  min-height: 96px;
}

.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row textarea:focus,
.woocommerce-checkout form .form-row select:focus {
  border-color: var(--ubm-gold-border-hover);
  outline: 2px solid color-mix(in srgb, var(--ubm-gold) 22%, transparent);
  outline-offset: 1px;
}

.woocommerce-checkout table.shop_table {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--ubm-border);
  border-radius: calc(var(--ubm-radius) - 4px);
  background: color-mix(in srgb, var(--ubm-bg-card) 88%, transparent);
  color: var(--ubm-text-secondary);
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  padding: 0.82rem 0.85rem;
  border-color: var(--ubm-border);
  color: var(--ubm-text-secondary);
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table tfoot td {
  color: var(--ubm-text-primary);
}

.woocommerce-checkout .woocommerce-Price-amount,
.woocommerce-checkout table.shop_table tfoot .order-total td {
  color: var(--ubm-text-primary);
  font-weight: 900;
}

.woocommerce-checkout #payment {
  margin-top: 1rem;
  border: 1px solid var(--ubm-border);
  border-radius: calc(var(--ubm-radius) - 4px);
  background: color-mix(in srgb, var(--ubm-bg-card-hover) 84%, transparent);
  color: var(--ubm-text-secondary);
}

.woocommerce-checkout #payment div.payment_box,
.woocommerce-checkout #payment div.form-row {
  background: transparent;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout #payment .woocommerce-info {
  box-shadow: none;
}

.woocommerce-checkout #payment .place-order {
  padding: 1rem;
}

.woocommerce-checkout #payment #place_order,
.woocommerce-checkout .button.alt {
  min-height: 48px;
  border: 0;
  border-radius: calc(var(--ubm-radius) - 4px);
  background: linear-gradient(180deg, #ffe890 0%, var(--ubm-gold) 100%);
  color: #170d08;
  font-weight: 900;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--ubm-gold) 30%, transparent);
}

.woocommerce-checkout #payment #place_order:hover,
.woocommerce-checkout .button.alt:hover {
  background: linear-gradient(180deg, #fff0bd 0%, var(--ubm-gold-hover) 100%);
  color: #170d08;
}

.ubm-checkout-secure-note {
  margin: 1rem 0 0;
  padding: 0.82rem 0.9rem;
  border-left: 3px solid var(--ubm-gold);
  border-radius: 0 calc(var(--ubm-radius) - 6px) calc(var(--ubm-radius) - 6px) 0;
  background: color-mix(in srgb, var(--ubm-bg-card) 78%, transparent);
  color: var(--ubm-text-secondary);
  font-size: 0.9rem;
}

.ubm-model-hero-cinematic {
  min-height: clamp(360px, 46svh, 500px);
  align-items: flex-start;
}

.ubm-model-hero-cinematic__content {
  padding: clamp(1.35rem, 3.2vw, 2.85rem) 0 clamp(1.75rem, 3vw, 2.5rem);
}

.ubm-model-gallery__item::after {
  background:
    linear-gradient(180deg, rgba(11, 8, 9, 0.16) 0%, rgba(11, 8, 9, 0.7) 58%, rgba(11, 8, 9, 0.94) 100%);
}

.ubm-model-gallery__caption {
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.72rem;
  align-items: center;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--ubm-radius) - 4px);
  background: rgba(16, 10, 12, 0.8);
  color: #fff8ef;
}

.ubm-model-gallery__caption span {
  color: #ffd46f;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
}

.ubm-model-gallery__caption strong {
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.ubm-model-gallery__lock {
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 212, 111, 0.18), transparent 9rem),
    linear-gradient(180deg, rgba(14, 8, 11, 0.18), rgba(14, 8, 11, 0.68));
  color: #fff8ef;
  text-align: center;
}

.ubm-model-gallery__lock-icon {
  border-color: #ffd46f;
  background: rgba(14, 8, 11, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.ubm-model-gallery__lock-icon::before {
  border-color: #ffd46f;
}

.ubm-model-gallery__lock-badge {
  border-color: rgba(255, 212, 111, 0.75);
  background: #fff7e8;
  color: #22120b;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

@media (max-width: 980px) {
  .ubm-checkout-hero,
  .woocommerce-checkout form.checkout,
  .woocommerce-checkout #customer_details {
    grid-template-columns: 1fr;
  }

  .ubm-checkout-review-shell {
    position: static;
  }
}

@media (max-width: 760px) {
  .woocommerce-checkout .woocommerce {
    width: min(100% - 1rem, 1220px);
    padding-top: 1.2rem;
  }

  .ubm-checkout-hero {
    padding: 1rem;
  }

  .ubm-checkout-hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .ubm-checkout-hero__summary {
    min-height: 0;
  }

  .ubm-checkout-customer-shell,
  .ubm-checkout-review-shell {
    padding: 1rem;
  }

  .woocommerce-checkout form .form-row-first,
  .woocommerce-checkout form .form-row-last {
    float: none;
    width: 100%;
  }

  .ubm-model-hero-cinematic {
    min-height: auto;
    padding-top: 0;
  }

  .ubm-model-hero-cinematic__content {
    padding: 1.35rem 0 1.65rem;
  }
}

/* ============================================================
   30. MODEL HERO IMAGE VISIBILITY
   ============================================================ */
.ubm-model-hero-cinematic__media {
  opacity: 0.48;
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
  object-position: 62% 14%;
}

.ubm-model-hero-cinematic__overlay {
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.94) 0%, rgba(255, 246, 235, 0.58) 38%, rgba(255, 233, 216, 0.18) 72%, rgba(255, 233, 216, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.02) 0%, rgba(255, 233, 216, 0.18) 100%);
}

[data-theme="dark"] .ubm-model-hero-cinematic__media {
  opacity: 0.48;
  filter: saturate(1) contrast(1.06) brightness(0.82);
}

[data-theme="dark"] .ubm-model-hero-cinematic__overlay {
  background:
    linear-gradient(90deg, rgba(19, 15, 23, 0.9) 0%, rgba(19, 15, 23, 0.6) 42%, rgba(35, 20, 27, 0.32) 76%, rgba(35, 20, 27, 0.18) 100%),
    linear-gradient(180deg, rgba(19, 15, 23, 0.04) 0%, rgba(19, 15, 23, 0.5) 100%);
}
