/**
 * YLAUXI marketing site — self-contained (no ylux.css dependency)
 */
:root {
  --ylux-bg: #FAFAF8;
  --ylux-bg2: #FFFFFF;
  --ylux-bg-subtle: #F4F2EE;
  --ylux-text: #0A0A0A;
  --ylux-text-s: #5C5854;
  --ylux-text-m: #9A9590;
  --ylux-border: transparent;
  --ylux-border-s: transparent;
  --ylux-border-accent: transparent;
  --ylux-border-subtle: transparent;
  --ylux-border-strong: transparent;
  --mkt-stack-gap: clamp(12px, 2vw, 18px);
  --ylux-accent: #B89A6A;
  --ylux-accent-d: #9A7F52;
  --ylux-accent-f: rgba(184, 154, 106, 0.1);
  --ylux-cta: #0A0A0A;
  --ylux-shadow: 0 24px 48px rgba(10, 10, 10, 0.06);
  --ylux-font-display: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  --ylux-font-editorial: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --ylux-font-ui: 'Sofia Sans Semi Condensed', system-ui, sans-serif;
  --ylux-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ylux-radius: 2px;
  --mkt-max: 1080px;
  --mkt-gutter: clamp(16px, 4.5vw, 48px);
  --mkt-cappuccino: #D4C4B0;
}

html.mkt-root {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html.mkt-root *,
html.mkt-root *::before,
html.mkt-root *::after {
  box-sizing: border-box;
}
.ylauxi-logo { display: block; object-fit: contain; width: auto; height: auto; }
.ylauxi-logo--xs { max-width: 100px; max-height: 22px; }
.ylauxi-logo--sm { max-width: 120px; max-height: 24px; }
.ylauxi-logo--nav { max-width: 152px; max-height: 34px; }
.ylauxi-logo--md { max-width: 148px; max-height: 36px; }
.ylauxi-logo--lg { max-width: 180px; max-height: 44px; }
.ylauxi-logo--icon { width: 40px; height: 40px; max-width: 40px; max-height: 40px; object-fit: contain; }
body.mkt.mkt-menu-open {
  overflow: hidden;
}
body.mkt {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--ylux-bg);
  color: var(--ylux-text);
  font-family: var(--ylux-font-ui);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  -webkit-tap-highlight-color: transparent;
}
body.mkt a:any-link {
  color: var(--ylux-text);
  text-decoration: none;
}
body.mkt a:visited {
  color: var(--ylux-text);
}
.mkt-nav,
.mkt-main,
.mkt-foot { position: relative; z-index: 1; }

.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px var(--mkt-gutter);
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: none;
}
.mkt-nav .mkt-nav-links {
  grid-column: 1 / -1;
  justify-self: center;
}
.mkt-nav-brand { display: flex; align-items: center; text-decoration: none; }
.mkt-nav-brand .ylauxi-logo { margin: 0; }
.mkt-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  flex-wrap: wrap;
  justify-content: center;
}
.mkt-nav-links a {
  font-family: var(--ylux-font-display);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-text-s);
  text-decoration: none;
  transition: color 0.2s var(--ylux-ease);
}
.mkt-nav-links a:hover,
.mkt-nav-links a.is-on { color: var(--ylux-text); }
.mkt-nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.mkt-link {
  font-family: var(--ylux-font-display);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ylux-ease), border-color 0.35s var(--ylux-ease), transform 0.15s var(--ylux-ease);
}
.mkt-link:hover { color: var(--ylux-accent); border-bottom-color: var(--ylux-accent); }
.mkt-link:active { transform: scale(0.98); }
.mkt-link--muted { color: var(--ylux-text-m); }
.mkt-link--muted:hover { color: var(--ylux-text); }

.mkt-main { display: block; min-width: 0; }
.mkt-wrap {
  width: min(var(--mkt-max), 100%);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--mkt-gutter);
}
.mkt-wrap--narrow { max-width: 640px; }
.mkt-prose--narrow { max-width: 36em; }
.mkt-page-body {
  padding: clamp(56px, 8vw, 88px) 0 clamp(64px, 9vw, 104px);
  text-align: center;
}
.mkt-sec--intro {
  padding-top: clamp(40px, 6vw, 64px);
}
.mkt-page-intro { text-align: center; margin-bottom: clamp(32px, 5vw, 48px); }
.mkt-page-intro .mkt-sec-h { margin-bottom: 14px; }
.mkt-page-intro .mkt-prose { margin: 0 auto; }
.mkt-sec--flush { border-top: none; padding-top: 0; }
.mkt-sec-cta { text-align: center; margin-top: 22px; margin-bottom: 0; }
.mkt-cat-link { text-decoration: none; color: inherit; transition: background 0.2s var(--ylux-ease); }
.mkt-cat-link:hover { background: var(--ylux-accent-f); }
.mkt-role-card { margin-bottom: 36px; padding-bottom: 0; border-bottom: none; }
.mkt-role-title { font-family: var(--ylux-font-editorial); font-size: 1.1rem; letter-spacing: 0.06em; font-weight: 400; margin-bottom: 6px; }
.mkt-role-dept { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ylux-text-m); margin-bottom: 10px; }
.mkt-comm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.mkt-comm-cell {
  padding: 18px 20px;
  border: none;
  background: transparent;
}
.mkt-comm-val {
  font-family: var(--ylux-font-editorial);
  font-size: 1.35rem;
  color: var(--ylux-accent);
  margin-bottom: 6px;
}
.mkt-comm-lbl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ylux-text-m); line-height: 1.5; }
.mkt-region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mkt-region-card {
  padding: 20px 22px;
  border: none;
  background: transparent;
}
.mkt-region-name {
  font-family: var(--ylux-font-editorial);
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 6px;
}
.mkt-region-meta { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ylux-text-m); margin-bottom: 10px; }
.mkt-region-markets { font-size: 11px; line-height: 1.65; margin-bottom: 8px; }
.mkt-region-earn { font-size: 10px; letter-spacing: 0.06em; color: var(--ylux-accent-d); }
.mkt-duty-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mkt-duty-list li {
  font-size: 12px;
  line-height: 1.75;
  color: var(--ylux-text-s);
  padding: 8px 0;
  border-bottom: none;
}
.mkt-submit { border: none; background: none; cursor: pointer; padding: 0; font: inherit; }
.mkt-submit.mkt-btn--primary { width: 100%; }
.mkt-submit.is-loading { opacity: 0.55; pointer-events: none; }
.mkt-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.mkt-contact-block {
  padding: 20px 22px;
  border: none;
  background: transparent;
  text-align: center;
}
.mkt-contact-form { margin-top: 8px; }
.mkt-error-sec {
  text-align: center;
  padding: 72px 0 96px;
  position: relative;
  background-image: url('/static/brand-assets/ylauxi/ylauxi-logo.png');
  background-size: 480px 480px;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 1;
}
.mkt-error-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.92), rgba(255,255,255,0.88));
  pointer-events: none;
  z-index: 0;
}
.mkt-error-sec > * {
  position: relative;
  z-index: 1;
}
.mkt-error-brand { margin-bottom: 28px; }
.mkt-error-head {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.35;
  margin: 16px 0 20px;
}
.mkt-error-msg { max-width: 420px; margin: 0 auto 28px; }
.mkt-error-foot { margin-top: 28px; font-size: .68rem; color: var(--ylux-text-m); }
.mkt-nav-toggle {
  display: none;
  font-family: var(--ylux-font-display);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-text);
  background: none;
  border: none;
  padding: 10px 4px;
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
}
.mkt-nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--ylux-bg);
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.18);
  padding: 8px var(--mkt-gutter) 16px;
  text-align: center;
}
.mkt-nav-drawer[hidden] { display: none !important; }
.mkt-nav-drawer a {
  font-family: var(--ylux-font-display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text-s);
  text-decoration: none;
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.mkt-nav-drawer a:hover { color: var(--ylux-text); }

/* Hero — centered editorial + cinematic product band */
.mkt-hero-editorial {
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  overflow: hidden;
}
.mkt-hero-intro {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.mkt-hero-eyebrow {
  font-family: var(--ylux-font-display);
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ylux-accent-d);
  margin: 0 0 24px;
}
.mkt-hero-headline {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(2.15rem, 5.2vw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.12;
  color: var(--ylux-text);
  margin: 0 auto 24px;
  max-width: 11em;
}
.mkt-hero-lead {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ylux-text-s);
  margin: 0 auto 16px;
  max-width: 28em;
}
.mkt-hero-pov {
  font-family: var(--ylux-font-editorial);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--ylux-text-m);
  margin: 0 auto 10px;
  max-width: 28em;
}
.mkt-hero-proof {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-accent-d);
  margin: 0 auto 32px;
}
.mkt-prose--emotional {
  max-width: 28em;
  font-size: 14px;
  line-height: 1.8;
}
.mkt-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.mkt-hero-cinema {
  margin-bottom: clamp(36px, 5vw, 52px);
}
.mkt-hero-cinema-frame {
  position: relative;
  padding: clamp(12px, 2vw, 20px);
  opacity: 1;
  transform: none;
}
html.mkt-js.mkt-animate:not(.mkt-fallback) .mkt-hero-cinema-frame:not(.is-visible) {
  opacity: 1;
  transform: translateY(12px);
  transition: opacity 1s var(--ylux-ease), transform 1.1s var(--ylux-ease);
}
html.mkt-js .mkt-hero-cinema-frame.is-visible {
  opacity: 1;
  transform: none;
}
html.mkt-js.mkt-fallback .mkt-hero-cinema-frame,
html.mkt-js.mkt-boot .mkt-hero-cinema-frame {
  opacity: 1;
  transform: none;
}
.mkt-hero-tier-hint {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin: 28px auto 0;
  padding-bottom: clamp(32px, 5vw, 48px);
}
.mkt-hero-tier-sep {
  margin: 0 10px;
  color: var(--ylux-text-m);
}
.mkt-hero-cinema-frame::before,
.mkt-hero-cinema-frame::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  border-color: var(--ylux-accent);
  border-style: solid;
  opacity: 0.55;
}
.mkt-hero-cinema-frame::before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.mkt-hero-cinema-frame::after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}
.mkt-hero-preview { width: 100%; }
.mkt-hero-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  background: var(--ylux-bg2);
  box-shadow: 0 48px 96px rgba(10, 10, 10, 0.1), 0 8px 24px rgba(10, 10, 10, 0.04);
}
.mkt-hero-vid {
  opacity: 1;
  transition: opacity 0.85s var(--ylux-ease);
}
html.mkt-js.mkt-animate:not(.mkt-fallback) .mkt-hero-frame .mkt-hero-vid:not(.is-ready) {
  opacity: 0;
}
html.mkt-js.mkt-animate:not(.mkt-fallback) .mkt-hero-frame .mkt-hero-vid.is-ready {
  opacity: 1;
}
.mkt-hero-sig-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid rgba(184, 154, 106, 0.22);
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.22);
}
.mkt-hero-sig-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 22px clamp(14px, 2vw, 24px) 24px;
  background: none;
  border: none;
  border-right: 0.5px solid rgba(10, 10, 10, 0.06);
  border-left: 2px solid transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: background 0.35s var(--ylux-ease), border-color 0.35s var(--ylux-ease);
}
.mkt-hero-sig-item:last-child { border-right: none; }
.mkt-hero-sig-item:hover { background: rgba(184, 154, 106, 0.04); }
.mkt-hero-sig-item.is-active {
  background: rgba(184, 154, 106, 0.07);
  border-left-color: var(--ylux-accent);
}
.mkt-hero-sig-roman {
  font-family: var(--ylux-font-editorial);
  font-size: 11px;
  color: var(--ylux-accent);
  margin-bottom: 10px;
}
.mkt-hero-sig-title {
  font-family: var(--ylux-font-display);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text);
  margin-bottom: 8px;
}
.mkt-hero-sig-body {
  font-size: 12px;
  line-height: 1.65;
  color: var(--ylux-text-m);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.45s var(--ylux-ease), opacity 0.35s var(--ylux-ease), margin-top 0.35s var(--ylux-ease);
}
.mkt-hero-sig-item.is-active .mkt-hero-sig-body {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}
.mkt-hero-media {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  background: transparent;
}
.mkt-hero-ui {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 320px;
  text-align: left;
  font-size: 11px;
}
.mkt-hero-ui-sb {
  padding: 22px 18px;
  border-right: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg-subtle);
}
.mkt-hero-ui-mark {
  font-family: var(--ylux-font-display);
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ylux-text);
  margin-bottom: 28px;
}
.mkt-hero-ui-nav {
  font-family: var(--ylux-font-display);
  font-size: 0.46rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  padding: 9px 0;
}
.mkt-hero-ui-nav.is-on { color: var(--ylux-accent); }
.mkt-hero-ui-main { padding: 22px 26px 26px; }
.mkt-hero-ui-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--ylux-border);
}
.mkt-hero-ui-bar-lbl {
  font-family: var(--ylux-font-editorial);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--ylux-text);
}
.mkt-hero-ui-bar-meta {
  font-size: 0.46rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}
.mkt-hero-ui-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.mkt-hero-ui-metric {
  padding: 16px 14px;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg);
}
.mkt-hero-ui-metric-n {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ylux-accent);
  margin-bottom: 6px;
}
.mkt-hero-ui-metric-l {
  font-size: 0.44rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}
.mkt-hero-ui-panel {
  padding: 16px 18px;
  border: 0.5px solid rgba(184, 154, 106, 0.22);
  background: var(--ylux-bg);
}
.mkt-hero-ui-panel-h {
  font-family: var(--ylux-font-display);
  font-size: 0.46rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 8px;
}
.mkt-hero-ui-panel-p {
  font-family: var(--ylux-font-editorial);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--ylux-text-s);
  line-height: 1.5;
}

.mkt-sec {
  padding: clamp(72px, 12vw, 140px) 0;
  border-top: none;
}
.mkt-sec--arrival {
  border-top: none;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(64px, 9vw, 100px);
}
.mkt-arrival-cta {
  text-align: center;
  margin: 0;
}
.mkt-reveal {
  opacity: 1;
  transform: none;
}
html.mkt-js.mkt-animate:not(.mkt-fallback) .mkt-reveal:not(.is-visible) {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity 0.65s var(--ylux-ease), transform 0.65s var(--ylux-ease);
}
html.mkt-js .mkt-reveal.is-visible,
html.mkt-js.mkt-fallback .mkt-reveal,
html.mkt-js.mkt-boot .mkt-reveal,
html.mkt-js.mkt-boot .mkt-hero-line {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.mkt-js .mkt-reveal { opacity: 1; transform: none; transition: none; }
  html.mkt-js .mkt-hero-cinema-frame { opacity: 1; transform: none; transition: none; }
  .mkt-hero-frame .mkt-hero-vid:not(.is-ready) { opacity: 0; visibility: hidden; }
  .mkt-hero-sig-body { max-height: none; opacity: 1; }
}
.mkt-sec:first-of-type { border-top: none; }
.mkt-sec-lbl {
  font-family: var(--ylux-font-display);
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ylux-accent-d);
  margin-bottom: 22px;
  text-align: center;
}
.mkt-sec-h {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  line-height: 1.28;
  text-align: center;
}
.mkt-prose {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ylux-text-s);
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mkt-prose--center { margin-left: auto; margin-right: auto; text-align: center; }

.mkt-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg2);
  margin-top: 28px;
}
.mkt-cat-cell {
  padding: 18px 20px;
  border-right: 0.5px solid var(--ylux-border);
  border-bottom: 0.5px solid var(--ylux-border);
}
.mkt-cat-roman {
  font-family: var(--ylux-font-editorial);
  font-size: 11px;
  color: var(--ylux-accent);
  display: block;
  margin-bottom: 6px;
}
.mkt-cat-name {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ylux-text);
}

/* Agent category accordion (homepage) */
.mkt-cat-acc {
  margin-top: 28px;
  border-top: 0.5px solid rgba(184, 154, 106, 0.22);
  text-align: left;
}
.mkt-cat-acc-item {
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.06);
}
.mkt-cat-acc-btn {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: color 0.2s var(--ylux-ease);
}
.mkt-cat-acc-btn:hover { color: var(--ylux-text); }
.mkt-cat-acc-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}
.mkt-cat-acc-meta .mkt-cat-roman {
  margin: 0;
  flex-shrink: 0;
}
.mkt-cat-acc-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.mkt-cat-acc-title {
  font-family: var(--ylux-font-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text);
}
.mkt-cat-acc-teaser {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ylux-text-m);
  font-style: italic;
  font-family: var(--ylux-font-editorial);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mkt-cat-acc-item.is-open .mkt-cat-acc-teaser { display: none; }
.mkt-cat-acc-count {
  font-family: var(--ylux-font-editorial);
  font-size: 11px;
  color: var(--ylux-accent-d);
  flex-shrink: 0;
}
.mkt-cat-acc-count::after {
  content: ' agents';
  font-family: var(--ylux-font-display);
  font-size: 0.44rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mkt-cat-acc-chevron {
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--ylux-accent);
  border-bottom: 1px solid var(--ylux-accent);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ylux-ease);
  flex-shrink: 0;
  margin-right: 4px;
}
.mkt-cat-acc-item.is-open .mkt-cat-acc-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.mkt-cat-acc-item.is-open .mkt-cat-acc-title { color: var(--ylux-accent-d); }
.mkt-cat-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--ylux-ease);
  padding: 0;
  overflow: hidden;
}
.mkt-cat-acc-item.is-open .mkt-cat-acc-panel {
  grid-template-rows: 1fr;
  padding-bottom: 8px;
}
.mkt-cat-acc-panel-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 0 0 28px;
}
.mkt-cat-acc-agent {
  display: grid;
  grid-template-columns: minmax(140px, 1.1fr) 1.4fr;
  gap: 12px 20px;
  padding: 10px 0;
  border-top: 0.5px solid rgba(10, 10, 10, 0.05);
  font-size: 12px;
}
.mkt-cat-acc-agent-name {
  color: var(--ylux-text);
  line-height: 1.4;
}
.mkt-cat-acc-agent-name .gen {
  opacity: 0.45;
  margin-left: 4px;
  font-size: 10px;
}
.mkt-cat-acc-agent-desc {
  color: var(--ylux-text-m);
  line-height: 1.5;
}

/* Signature features grid */
.mkt-sec--signatures { text-align: center; }
.mkt-sig-intro {
  font-size: 13px;
  color: var(--ylux-text-m);
  margin: -8px auto 28px;
  max-width: 28em;
}
.mkt-sig-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(184, 154, 106, 0.24);
  border: 0.5px solid rgba(184, 154, 106, 0.24);
  margin-top: 8px;
}
.mkt-sig-grid--featured {
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.mkt-sig-more {
  text-align: center;
  margin: 22px 0 0;
}
.mkt-tier-spotlight {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.mkt-tier-spotlight-card {
  padding: 40px 36px;
  border: 0.5px solid rgba(184, 154, 106, 0.35);
  background: var(--ylux-bg2);
  box-shadow: inset 0 1px 0 rgba(184, 154, 106, 0.35);
}
.mkt-tier-spotlight-eyebrow {
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 12px;
}
.mkt-tier-spotlight-name {
  font-family: var(--ylux-font-editorial);
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.mkt-tier-spotlight-price { margin-bottom: 12px; }
.mkt-tier-spotlight-desc {
  font-size: 12px;
  line-height: 1.65;
  color: var(--ylux-text-s);
  margin: 0 0 20px;
  font-style: italic;
  font-family: var(--ylux-font-editorial);
}
.mkt-sig-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 24px;
  background: var(--ylux-bg2);
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition: background 0.25s var(--ylux-ease);
}
.mkt-sig-card:hover { background: rgba(184, 154, 106, 0.07); }
.mkt-sig-card-name {
  font-family: var(--ylux-font-display);
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ylux-accent-d);
}
.mkt-sig-card-line {
  font-family: var(--ylux-font-editorial);
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--ylux-text-s);
}

.mkt-sig-list { margin-top: 28px; }
.mkt-sig-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--ylux-border);
  align-items: baseline;
}
.mkt-sig-row:last-child { border-bottom: none; }
.mkt-sig-name {
  font-family: var(--ylux-font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-text);
  text-decoration: none;
}
.mkt-sig-name:hover { color: var(--ylux-accent); }
.mkt-sig-line { font-size: 13px; color: var(--ylux-text-s); }

.mkt-tier-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg2);
  margin-top: 28px;
  align-items: stretch;
}
.mkt-tier-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 22px;
  border-right: 0.5px solid var(--ylux-border);
  text-align: center;
  height: 100%;
}
.mkt-tier-card .mkt-link {
  margin-top: auto;
  padding-top: 18px;
}
.mkt-tier-card:last-child { border-right: none; }
.mkt-tier-eyebrow {
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin-bottom: 10px;
}
.mkt-tier-name {
  font-family: var(--ylux-font-editorial);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.mkt-tier-price {
  margin-bottom: 10px;
  line-height: 1.1;
}
.mkt-tier-price-amt {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.65rem, 2.8vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--ylux-text);
}
.mkt-tier-price-unit {
  display: block;
  margin-top: 4px;
  font-size: 0.46rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}
.mkt-tier-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.mkt-tier-facts li {
  font-size: 0.46rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  padding: 3px 0;
}
.mkt-tier-card.is-featured {
  background: var(--ylux-bg2);
  box-shadow: inset 0 1px 0 rgba(184, 154, 106, 0.35);
}
.mkt-tier-desc {
  font-size: 12px;
  color: var(--ylux-text-s);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}
.mkt-form,
.mkt-duty-list,
.mkt-faq-item,
.mkt-agent-item { text-align: center; }
.mkt-callout {
  padding: 36px 32px;
  background: transparent;
  border: none;
  margin-top: 28px;
  text-align: center;
}
.mkt-callout h3 {
  font-family: var(--ylux-font-editorial);
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  font-weight: 400;
  margin-bottom: 12px;
}

.mkt-page-h {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mkt-page-sub {
  font-size: 13px;
  color: var(--ylux-text-m);
  max-width: 36em;
  margin-bottom: 40px;
}

.mkt-agent-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ylux-text-s);
  padding: 16px 20px;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg2);
  margin-bottom: 32px;
}
.mkt-agent-sec { margin-bottom: 36px; }
.mkt-agent-sec-h {
  font-family: var(--ylux-font-display);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--ylux-border);
  margin-bottom: 14px;
}
.mkt-agent-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px 20px;
  padding: 11px 0;
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.05);
  font-size: 12px;
}
.mkt-agent-item:last-child { border-bottom: none; }
.mkt-agent-name { color: var(--ylux-text); }
.mkt-agent-name .gen { opacity: 0.45; margin-left: 4px; font-size: 10px; }
.mkt-agent-desc { color: var(--ylux-text-m); line-height: 1.5; }

.mkt-faq-toc { margin-bottom: 32px; flex-wrap: wrap; }
.mkt-faq-cat { margin-bottom: 36px; scroll-margin-top: 88px; }
.mkt-faq-cat-h {
  font-family: var(--ylux-font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin-bottom: 14px;
}
.mkt-faq-item { border-top: none; }
.mkt-faq-item:last-child { border-bottom: none; }
.mkt-faq-q {
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--ylux-font-ui);
  font-size: 13px;
  color: var(--ylux-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.mkt-faq-q::after { content: '+'; color: var(--ylux-accent); font-family: var(--ylux-font-editorial); }
.mkt-faq-item.is-open .mkt-faq-q::after { content: '−'; }
.mkt-faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 13px;
  color: var(--ylux-text-s);
  line-height: 1.7;
  max-width: 36em;
  margin: 0 auto;
  text-align: center;
}
.mkt-faq-item.is-open .mkt-faq-a { display: block; }

.mkt-form { max-width: 480px; }
.mkt-field { margin-bottom: 18px; }
.mkt-field label {
  display: block;
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin-bottom: 6px;
}
.mkt-field input:not([type="checkbox"]):not([type="radio"]),
.mkt-field textarea,
.mkt-field select {
  width: 100%;
  padding: 11px 0;
  border: none;
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.12);
  border-radius: 0;
  background: transparent;
  font-family: var(--ylux-font-ui);
  font-size: 13px;
  color: var(--ylux-text);
  text-align: center;
}
.mkt-field input[type="checkbox"],
.mkt-field input[type="radio"] {
  width: auto;
  margin: 0;
  padding: 0;
  border: none;
  accent-color: var(--ylux-accent);
}
.mkt-check-row {
  margin-bottom: 14px;
  text-align: left;
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
}
.mkt-form-sec--legal {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 0.5px solid rgba(10, 10, 10, 0.08);
}
.mkt-check-row label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px !important;
  line-height: 1.55 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  color: var(--ylux-text-m) !important;
  text-align: left !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  max-width: none;
}
.mkt-check-row label span { flex: 1; min-width: 0; }
.mkt-check-row label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.mkt-check-row .mkt-link {
  color: var(--ylux-accent-d);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mkt-field textarea { min-height: 88px; resize: vertical; }
.mkt-field-opt {
  font-size: 0.42rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ylux-text-s);
  opacity: 0.7;
}
.mkt-field-note {
  font-size: 10px;
  line-height: 1.55;
  color: var(--ylux-text-s);
  margin: 6px 0 0;
}
.mkt-wrap--form { max-width: 720px; }
.mkt-form--wide { max-width: 100%; }
.mkt-form-sec {
  border: none;
  margin: 0 0 36px;
  padding: 0;
}
.mkt-form-sec-lbl {
  display: block;
  width: 100%;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.28);
}
.mkt-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mkt-form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
  border-top: 0.5px solid var(--ylux-border);
}
.mkt-form-submit-note {
  font-family: var(--ylux-font-editorial);
  font-size: 12px;
  font-style: italic;
  line-height: 1.65;
  color: var(--ylux-text-s);
  max-width: 26em;
  margin: 0;
}
.mkt-apply-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 28px;
  border: 0.5px solid rgba(184, 154, 106, 0.22);
}
.mkt-apply-step {
  padding: 18px 16px;
  border-right: 0.5px solid rgba(184, 154, 106, 0.14);
  text-align: center;
}
.mkt-apply-step:last-child { border-right: none; }
.mkt-apply-step-n {
  display: block;
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--ylux-accent);
  margin-bottom: 8px;
}
.mkt-apply-step-t {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: 14px;
  color: var(--ylux-text);
  margin-bottom: 6px;
}
.mkt-apply-step-d {
  display: block;
  font-size: 10px;
  line-height: 1.55;
  color: var(--ylux-text-s);
}
.mkt-apply-note {
  margin-bottom: 32px;
  font-size: 12px;
}
.mkt-apply-cross {
  margin: -12px 0 28px;
  font-size: 12px;
  text-align: center;
}
.mkt-apply-confirm {
  text-align: center;
  padding: 48px 0 24px;
}
.mkt-apply-confirm-mark {
  font-family: var(--ylux-font-editorial);
  font-size: 2.5rem;
  color: var(--ylux-accent);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.mkt-apply-confirm-h {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.mkt-apply-confirm-p {
  max-width: 30em;
  margin: 0 auto 20px;
}

.mkt-wrap--guide { max-width: 680px; }
.mkt-guide-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.22);
}
.mkt-guide-toc-lbl {
  width: 100%;
  text-align: center;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 4px;
}
.mkt-guide-step {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.14);
}
.mkt-guide-step:last-child { border-bottom: none; margin-bottom: 0; }
.mkt-guide-step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.mkt-guide-step-num {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ylux-accent);
  flex-shrink: 0;
}
.mkt-guide-step-title { margin: 0; }
.mkt-guide-note {
  font-size: 11px;
  line-height: 1.65;
  color: var(--ylux-text-s);
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 2px solid rgba(184, 154, 106, 0.45);
  background: rgba(184, 154, 106, 0.04);
}
.mkt-guide-timeline {
  display: grid;
  gap: 0;
  border: 0.5px solid rgba(184, 154, 106, 0.22);
  margin: 16px 0;
}
.mkt-guide-week {
  padding: 14px 16px;
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.12);
}
.mkt-guide-week:last-child { border-bottom: none; }
.mkt-guide-week-lbl {
  display: block;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 6px;
}
.mkt-guide-week-p { margin: 0; font-size: 12px; }
.mkt-guide-close { margin-top: 20px; font-style: italic; }
.mkt-msg { font-size: 11px; margin-top: 14px; display: none; }
.mkt-msg.ok { display: block; color: var(--ylux-accent-d); }
.mkt-msg.err { display: block; color: var(--ylux-text); }

.mkt-foot {
  padding: 52px var(--mkt-gutter) 60px;
  border-top: none;
  background: transparent;
  margin-top: 0;
}
.mkt-foot-inner {
  width: min(var(--mkt-max), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px 48px;
  text-align: left;
}
.mkt-foot-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 0 1 220px;
}
.mkt-foot-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 28px 40px;
  flex: 1 1 420px;
  max-width: 720px;
}
.mkt-foot-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.mkt-foot-col-lbl {
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-text);
  margin-bottom: 4px;
}
.mkt-foot-col a {
  font-size: 0.48rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  text-decoration: none;
}
.mkt-foot-col a:hover { color: var(--ylux-text); }
.mkt-foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.mkt-foot-nav a {
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  text-decoration: none;
}
.mkt-foot-nav a:hover { color: var(--ylux-text); }
.mkt-foot-note {
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}

/* Tier comparison sheet (shared with /tiers) */
.mkt-sheet {
  background: var(--ylux-bg2);
  border: 0.5px solid var(--ylux-border);
  margin-top: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.mkt-sheet-hint {
  display: none;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  text-align: center;
  margin-top: 10px;
}
.mkt-sheet .row { display: grid; grid-template-columns: 200px repeat(5, minmax(88px, 1fr)); border-bottom: 0.5px solid var(--ylux-border); min-width: 960px; }
.mkt-sheet .row:last-child { border-bottom: none; }
.mkt-sheet .lbl { padding: 12px 20px; border-right: 0.5px solid var(--ylux-border); font-size: 10px; color: var(--ylux-text-s); display: flex; align-items: center; }
.mkt-sheet .col { padding: 12px 14px; border-right: 0.5px solid var(--ylux-border); text-align: center; font-size: 10px; }
.mkt-sheet .col:last-child { border-right: none; }
.mkt-sheet .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ylux-accent); display: inline-block; }
.mkt-sheet .dot-off { width: 6px; height: 6px; border-radius: 50%; background: var(--ylux-accent); display: inline-block; }
.mkt-sheet .dash { width: 10px; height: 1px; background: var(--ylux-border); display: inline-block; }
.mkt-sheet .sec .lbl { color: var(--ylux-accent); font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; }
.mkt-sheet .tier-name { font-family: var(--ylux-font-editorial); font-size: 1.25rem; display: block; margin-bottom: 6px; }
.mkt-sheet .tier-price { font-family: var(--ylux-font-editorial); font-size: 1rem; display: block; }
.mkt-sheet-head .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 228px;
  padding: 22px 16px;
  text-align: left;
}
.mkt-sheet-tier-top { flex: 1; width: 100%; }
.mkt-sheet-tier-eyebrow {
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  display: block;
}
.mkt-sheet-tier-mo { font-size: 10px; color: var(--ylux-text-m); }
.mkt-sheet-tier-note {
  font-size: 8px;
  letter-spacing: 0.04em;
  color: var(--ylux-text-m);
  display: block;
  margin: 6px 0 10px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--ylux-border);
}
.mkt-sheet-head .col.is-featured .mkt-sheet-tier-note { border-bottom-color: rgba(184, 154, 106, 0.35); }
.mkt-sheet-sub { font-size: 8px; color: var(--ylux-text-m); }
.mkt-sheet-strip { background: var(--ylux-bg); }
.mkt-sheet-strip .col strong { font-family: var(--ylux-font-editorial); font-size: 1.5rem; font-weight: 400; }
.mkt-sheet-value { background: var(--ylux-bg2); }
.mkt-sheet-value .col {
  text-align: left;
  font-size: 9px;
  line-height: 1.6;
  font-style: italic;
  font-family: var(--ylux-font-editorial);
  color: var(--ylux-text-s);
  padding: 14px 12px;
}
.mkt-sheet-value .col:nth-child(5) { color: var(--ylux-text); font-style: normal; font-family: inherit; }
.mkt-sheet-note { background: var(--ylux-bg); }
.mkt-sheet-note .lbl { color: var(--ylux-accent); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; }
.mkt-sheet .row > .col:nth-child(5) {
  box-shadow: inset 1px 0 0 rgba(184, 154, 106, 0.3), inset -1px 0 0 rgba(184, 154, 106, 0.3);
}
.mkt-sheet-head .col.is-featured .mkt-sheet-tier-eyebrow,
.mkt-sheet-head .col.is-featured .tier-name { color: var(--ylux-accent); }
.mkt-sheet-tier-desc {
  font-size: 10px;
  color: var(--ylux-text-s);
  line-height: 1.55;
  margin: 8px 0 0;
  font-style: italic;
  font-family: var(--ylux-font-editorial);
}
.mkt-sheet-tier-cta {
  font-size: 9px;
  margin-top: 16px;
  flex-shrink: 0;
  align-self: flex-start;
}
.mkt-sheet [id^="tier-"],
.mkt-sheet [id^="sig-"],
.mkt-agent-sec[id] { scroll-margin-top: 88px; }

.mkt-enterprise {
  margin-top: 24px;
  border: 0.5px solid rgba(184, 154, 106, 0.35);
  background: var(--ylux-bg2);
}
.mkt-enterprise-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.28);
  background: var(--ylux-bg);
}
.mkt-enterprise-eyebrow {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  display: block;
  margin-bottom: 6px;
}
.mkt-enterprise-name {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  display: block;
}
.mkt-enterprise-price-wrap { text-align: right; }
.mkt-enterprise-price {
  font-family: var(--ylux-font-editorial);
  font-size: 1.35rem;
  color: var(--ylux-accent);
  display: block;
}
.mkt-enterprise-price-note {
  font-size: 9px;
  color: var(--ylux-text-m);
  display: block;
  margin-top: 4px;
  max-width: 280px;
  margin-left: auto;
}
.mkt-enterprise-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.28);
}
.mkt-enterprise-col {
  padding: 22px 24px;
  border-right: 0.5px solid rgba(184, 154, 106, 0.2);
}
.mkt-enterprise-col:last-child { border-right: none; }
.mkt-enterprise-col-lbl {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  display: block;
  margin-bottom: 12px;
}
.mkt-enterprise-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mkt-enterprise-list li,
.mkt-enterprise-list p {
  font-size: 10px;
  color: var(--ylux-text-s);
  line-height: 1.6;
  padding: 5px 0;
  border-bottom: 0.5px solid var(--ylux-border);
  margin: 0;
}
.mkt-enterprise-list li:last-child,
.mkt-enterprise-list p:last-child { border-bottom: none; }
.mkt-enterprise-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
}
.mkt-enterprise-cta-text {
  font-family: var(--ylux-font-editorial);
  font-style: italic;
  font-size: 13px;
  color: var(--ylux-text-s);
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}
.mkt-enterprise-cta-btn { flex-shrink: 0; }

/* Add-on catalog (tiers page) */
.mkt-sec--addons {
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 0.5px solid rgba(184, 154, 106, 0.22);
}
.mkt-sec--enterprise {
  margin-top: 0;
  padding-top: clamp(32px, 5vw, 48px);
}
.mkt-sec--enterprise .mkt-enterprise { margin-top: 0; }
.mkt-addons {
  background: var(--ylux-bg2);
  border: 0.5px solid var(--ylux-border);
  margin-top: 8px;
}
.mkt-addons-lead {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 300px);
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
  border-bottom: 0.5px solid var(--ylux-border);
  align-items: start;
}
.mkt-addons-intro {
  font-family: var(--ylux-font-editorial);
  font-style: italic;
  font-size: 13px;
  color: var(--ylux-text-s);
  line-height: 1.7;
  margin: 0;
}
.mkt-addons-rule {
  background: var(--ylux-bg);
  padding: 18px 20px;
  border-left: 2px solid var(--ylux-accent);
}
.mkt-addons-rule-title {
  display: block;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 8px;
}
.mkt-addons-rule-body {
  font-size: 10px;
  color: var(--ylux-text);
  line-height: 1.65;
  margin: 0;
}
.mkt-addons-cat {
  border-top: 0.5px solid rgba(184, 154, 106, 0.22);
}
.mkt-addons-cat:first-of-type { border-top: none; }
.mkt-addons-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px clamp(20px, 3vw, 28px);
  background: rgba(184, 154, 106, 0.04);
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.12);
}
.mkt-addons-cat-num {
  font-family: var(--ylux-font-editorial);
  font-size: 11px;
  color: var(--ylux-accent);
  min-width: 20px;
}
.mkt-addons-cat-title {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
}
.mkt-addons-cat-intro {
  font-size: 10px;
  color: var(--ylux-text-s);
  line-height: 1.65;
  margin: 0;
  padding: 16px clamp(20px, 3vw, 28px);
  border-bottom: 0.5px solid var(--ylux-border);
}
.mkt-addons-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr minmax(140px, 168px);
  border-bottom: 0.5px solid var(--ylux-border);
}
.mkt-addons-row:hover { background: rgba(184, 154, 106, 0.02); }
.mkt-addons-name {
  padding: 12px clamp(20px, 3vw, 28px);
  font-size: 10px;
  font-weight: 400;
  color: var(--ylux-text);
  border-right: 0.5px solid var(--ylux-border);
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.mkt-addons-desc {
  padding: 12px 16px;
  font-size: 10px;
  color: var(--ylux-text-s);
  line-height: 1.6;
  border-right: 0.5px solid var(--ylux-border);
  display: flex;
  align-items: center;
}
.mkt-addons-price {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.mkt-addons-price-val {
  font-family: var(--ylux-font-editorial);
  font-size: 15px;
  color: var(--ylux-text);
  white-space: nowrap;
}
.mkt-addons-price-unit {
  font-size: 10px;
  color: var(--ylux-text-m);
}
.mkt-addons-price-note {
  font-size: 8px;
  color: var(--ylux-text-m);
  margin-top: 3px;
  text-align: right;
}
.mkt-addons-credits {
  padding: 16px clamp(20px, 3vw, 28px) 20px;
  border-bottom: 0.5px solid var(--ylux-border);
}
.mkt-addons-credit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ylux-border);
}
.mkt-addons-credit-cell {
  background: var(--ylux-bg2);
  padding: 14px 16px;
}
.mkt-addons-credit-cell.is-featured { background: var(--ylux-bg); }
.mkt-addons-credit-size {
  display: block;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 6px;
}
.mkt-addons-credit-amt {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.mkt-addons-credit-price {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: 1.05rem;
  color: var(--ylux-accent);
  margin-bottom: 4px;
}
.mkt-addons-credit-per {
  display: block;
  font-size: 9px;
  color: var(--ylux-text-m);
}
.mkt-addons-credit-note {
  font-size: 9px;
  color: var(--ylux-text-m);
  line-height: 1.6;
  margin: 12px 0 0;
}
.mkt-addons-integrity {
  display: grid;
  grid-template-columns: minmax(120px, 150px) 1fr;
  gap: 20px;
  margin: 16px clamp(20px, 3vw, 28px) 20px;
  padding: 20px 24px;
  border: 0.5px solid rgba(184, 154, 106, 0.35);
  background: var(--ylux-bg);
}
.mkt-addons-integrity-lbl {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
}
.mkt-addons-integrity-body {
  font-size: 10px;
  color: var(--ylux-text);
  line-height: 1.7;
  margin: 0;
}
.mkt-addons { scroll-margin-top: 88px; }

/* Interactive demo */
.mkt-demo-page {
  padding-bottom: clamp(56px, 8vw, 88px);
}
.mkt-demo-intro {
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 0 clamp(28px, 4vw, 40px);
}
.mkt-demo-title {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.mkt-demo-shell-wrap {
  max-width: 100%;
}
.mkt-demo-shell {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: min(72vh, 640px);
  border: 0.5px solid rgba(184, 154, 106, 0.28);
  background: var(--ylux-bg2);
  box-shadow: 0 32px 64px rgba(10, 10, 10, 0.06);
}
.mkt-demo-sb {
  padding: 24px 18px;
  border-right: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg-subtle);
  display: flex;
  flex-direction: column;
}
.mkt-demo-sb-mark {
  font-family: var(--ylux-font-display);
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ylux-text);
  margin-bottom: 28px;
}
.mkt-demo-sb-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mkt-demo-nav {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 0;
  font-family: var(--ylux-font-display);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  cursor: pointer;
  transition: color 0.2s var(--ylux-ease);
}
.mkt-demo-nav:hover { color: var(--ylux-text); }
.mkt-demo-nav.is-on { color: var(--ylux-accent); }
.mkt-demo-sb-note {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin: 20px 0 0;
}
.mkt-demo-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mkt-demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 0.5px solid var(--ylux-border);
}
.mkt-demo-bar-lbl {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.mkt-demo-bar-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin-top: 4px;
}
.mkt-demo-badge {
  font-size: 0.44rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent-d);
  padding: 6px 10px;
  border: 0.5px solid rgba(184, 154, 106, 0.35);
}
.mkt-demo-views {
  flex: 1;
  padding: 22px 24px 28px;
  overflow: auto;
  position: relative;
}
.mkt-demo-view[hidden] { display: none !important; }
.mkt-demo-view {
  transition: opacity 0.15s var(--ylux-ease);
}
.mkt-demo-view.is-fading,
.mkt-demo-view.is-entering {
  opacity: 0;
}
.mkt-demo-skeleton {
  position: absolute;
  inset: 22px 24px 28px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s var(--ylux-ease);
}
.mkt-demo-skeleton.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.mkt-demo-skeleton-bar,
.mkt-demo-skeleton-panel,
.mkt-demo-skeleton-metrics span,
.mkt-demo-skeleton-chips span {
  background: var(--ylux-bg-subtle);
  animation: mkt-pulse 1.4s ease-in-out infinite;
  border-radius: 2px;
}
@keyframes mkt-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.mkt-demo-skeleton-bar {
  height: 14px;
  width: 40%;
  margin-bottom: 20px;
}
.mkt-demo-skeleton-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mkt-demo-skeleton-metrics span { height: 72px; }
.mkt-demo-skeleton-panel {
  height: 88px;
  margin-bottom: 16px;
}
.mkt-demo-skeleton-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mkt-demo-skeleton-chips span {
  height: 28px;
  width: 100px;
}
.mkt-demo-metrics,
.mkt-demo-pulse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mkt-demo-metric,
.mkt-demo-pulse-cell {
  padding: 16px 14px;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg);
}
.mkt-demo-metric-n,
.mkt-demo-pulse-n {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--ylux-accent);
  margin-bottom: 6px;
}
.mkt-demo-metric-l,
.mkt-demo-pulse-l {
  display: block;
  font-size: 0.44rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}
.mkt-demo-metric-d,
.mkt-demo-pulse-d {
  display: block;
  font-size: 10px;
  color: var(--ylux-text-s);
  margin-top: 6px;
}
.mkt-demo-panel {
  padding: 18px 20px;
  border: 0.5px solid rgba(184, 154, 106, 0.22);
  background: var(--ylux-bg);
  margin-bottom: 18px;
}
.mkt-demo-panel-h {
  font-family: var(--ylux-font-display);
  font-size: 0.46rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 8px;
}
.mkt-demo-panel-p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ylux-text-s);
  margin: 0;
}
.mkt-demo-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mkt-demo-brand-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.mkt-demo-brand-chip.is-on {
  border-color: rgba(184, 154, 106, 0.45);
  background: rgba(184, 154, 106, 0.06);
}
.mkt-demo-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-color, var(--ylux-accent));
  flex-shrink: 0;
}
.mkt-demo-brand-name {
  font-size: 11px;
  letter-spacing: 0.06em;
}
.mkt-demo-brand-meta {
  font-size: 9px;
  color: var(--ylux-text-m);
  letter-spacing: 0.04em;
}
.mkt-demo-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mkt-demo-brand-card {
  padding: 18px 18px 20px;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg);
}
.mkt-demo-brand-card-h {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.mkt-demo-brand-card-name {
  font-family: var(--ylux-font-editorial);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.mkt-demo-brand-card-entity {
  font-size: 10px;
  color: var(--ylux-text-m);
  margin-top: 4px;
}
.mkt-demo-brand-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.mkt-demo-stat-n {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: 0.95rem;
  color: var(--ylux-accent);
}
.mkt-demo-stat-l {
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin-top: 4px;
}
.mkt-demo-select-brand { font-size: inherit; }
.mkt-demo-concierge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mkt-demo-field-lbl {
  display: block;
  font-size: 0.44rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin-bottom: 8px;
}
.mkt-demo-prompt {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg);
  font-family: var(--ylux-font-ui);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ylux-text);
  resize: vertical;
  min-height: 88px;
}
.mkt-demo-prompt-row { margin: 12px 0 14px; }
.mkt-demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mkt-demo-chip {
  padding: 8px 12px;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg);
  font-family: var(--ylux-font-display);
  font-size: 0.44rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ylux-text-s);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.mkt-demo-chip:hover {
  border-color: rgba(184, 154, 106, 0.4);
  background: rgba(184, 154, 106, 0.06);
}
.mkt-demo-concierge-out {
  padding: 16px 18px;
  border: 0.5px solid rgba(184, 154, 106, 0.22);
  background: var(--ylux-bg);
  min-height: 200px;
}
.mkt-demo-response p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ylux-text-s);
  margin: 0;
}
.mkt-demo-response-placeholder { color: var(--ylux-text-m) !important; }
.mkt-demo-agents-note {
  font-size: 12px;
  color: var(--ylux-text-m);
  margin: 0 0 16px;
}
.mkt-demo-agent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.06);
}
.mkt-demo-agent-name {
  display: block;
  font-size: 13px;
  color: var(--ylux-text);
}
.mkt-demo-agent-sched {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin-top: 3px;
}
.mkt-demo-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.mkt-demo-toggle-track {
  display: block;
  width: 36px;
  height: 20px;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg-subtle);
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.mkt-demo-toggle.is-on .mkt-demo-toggle-track {
  background: rgba(184, 154, 106, 0.2);
  border-color: rgba(184, 154, 106, 0.45);
}
.mkt-demo-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: var(--ylux-text-m);
  transition: transform 0.2s var(--ylux-ease), background 0.2s;
}
.mkt-demo-toggle.is-on .mkt-demo-toggle-thumb {
  transform: translateX(16px);
  background: var(--ylux-accent);
}
.mkt-demo-agent-count {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ylux-accent-d);
  margin: 16px 0 0;
}
.mkt-demo-foot-cta {
  text-align: center;
  margin-top: 32px;
}
.mkt-demo-foot-sep {
  margin: 0 14px;
  color: var(--ylux-text-m);
  font-size: 10px;
}

/* Desktop nav: inline links between brand and CTA */
@media (min-width: 901px) {
  .mkt-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px var(--mkt-gutter);
  }
  .mkt-nav .mkt-nav-links {
    grid-column: auto;
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .mkt-nav-links { display: none; }
  .mkt-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mkt-nav-cta .mkt-link { display: inline-flex; }

  /* Mobile: centered editorial rhythm */
  .mkt-page-body,
  .mkt-page-body .mkt-sec,
  .mkt-hero-intro {
    text-align: center;
  }
  .mkt-hero-sig-item {
    align-items: center;
    text-align: center;
  }
  .mkt-sig-card {
    align-items: center;
    text-align: center;
  }
  .mkt-cat-acc {
    text-align: center;
  }
  .mkt-cat-acc-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 20px 16px;
  }
  .mkt-cat-acc-meta {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
  }
  .mkt-cat-acc-count { display: block; }
  .mkt-cat-acc-teaser { -webkit-line-clamp: 3; }
  .mkt-cat-acc-chevron {
    margin: 2px 0 0;
    position: static;
    transform: rotate(45deg);
  }
  .mkt-cat-acc-item.is-open .mkt-cat-acc-chevron {
    transform: rotate(-135deg);
    margin-top: 6px;
  }
  .mkt-cat-acc-panel {
    padding: 0 0 12px;
    text-align: center;
  }
  .mkt-cat-acc-agent {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
    padding: 12px 8px;
  }
  .mkt-tier-card {
    text-align: center;
    align-items: center;
  }
  .mkt-callout,
  .mkt-callout .mkt-prose {
    text-align: center;
  }
  .mkt-story-open,
  .mkt-story-act,
  .mkt-story-close,
  .mkt-act-cat { text-align: center; }
  .mkt-act-cat-name { text-align: center; }

  .mkt-hero-sig-rail {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }
  .mkt-hero-sig-item:nth-child(2) { border-right: none; }
  .mkt-hero-sig-item:nth-child(1),
  .mkt-hero-sig-item:nth-child(2) {
    border-bottom: 0.5px solid rgba(10, 10, 10, 0.06);
  }
  .mkt-demo-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    box-shadow: 0 16px 40px rgba(10, 10, 10, 0.05);
  }
  .mkt-demo-sb {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-right: none;
    border-bottom: 0.5px solid var(--ylux-border);
  }
  .mkt-demo-sb-mark {
    margin: 0;
    padding: 14px var(--mkt-gutter) 0;
  }
  .mkt-demo-sb-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 8px var(--mkt-gutter) 10px;
    scrollbar-width: none;
  }
  .mkt-demo-sb-nav::-webkit-scrollbar { display: none; }
  .mkt-demo-nav {
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 14px;
    min-height: 44px;
  }
  .mkt-demo-sb-note {
    margin: 0;
    padding: 0 var(--mkt-gutter) 12px;
    font-size: 8px;
  }
  .mkt-demo-bar {
    flex-wrap: wrap;
    padding: 14px var(--mkt-gutter);
    gap: 10px;
  }
  .mkt-demo-badge { flex-shrink: 0; }
  .mkt-demo-views {
    padding: 16px var(--mkt-gutter) 20px;
  }
  .mkt-demo-metrics,
  .mkt-demo-pulse-grid { grid-template-columns: 1fr 1fr; }
  .mkt-demo-brand-grid { grid-template-columns: 1fr; }
  .mkt-demo-brand-card-stats { grid-template-columns: 1fr; gap: 12px; }
  .mkt-demo-concierge { grid-template-columns: 1fr; }
  .mkt-demo-brand-chip { flex: 1 1 100%; }
  .mkt-tier-row { grid-template-columns: repeat(3, 1fr); }
  .mkt-tier-card:nth-child(3) { border-right: none; }
  .mkt-tier-card:nth-child(1),
  .mkt-tier-card:nth-child(2),
  .mkt-tier-card:nth-child(3) { border-bottom: 0.5px solid var(--ylux-border); }
  .mkt-enterprise-body { grid-template-columns: 1fr; }
  .mkt-enterprise-col { border-right: none; border-bottom: 0.5px solid rgba(184, 154, 106, 0.2); }
  .mkt-enterprise-col:last-child { border-bottom: none; }
  .mkt-enterprise-head { flex-direction: column; align-items: flex-start; }
  .mkt-addons-lead { grid-template-columns: 1fr; }
  .mkt-addons-row { grid-template-columns: 1fr; }
  .mkt-addons-name,
  .mkt-addons-desc { border-right: none; }
  .mkt-addons-desc { border-bottom: 0.5px solid var(--ylux-border); }
  .mkt-addons-price { align-items: flex-start; padding-top: 8px; }
  .mkt-addons-credit-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-addons-integrity { grid-template-columns: 1fr; }
  .mkt-enterprise-price-wrap { text-align: left; }
  .mkt-enterprise-price-note { margin-left: 0; }
  .mkt-sig-grid,
  .mkt-sig-grid--featured { grid-template-columns: 1fr; max-width: none; }
  .mkt-sig-row { grid-template-columns: 1fr; gap: 4px; }
  .mkt-cat-acc-agent { grid-template-columns: 1fr; gap: 4px; }
  .mkt-agent-item { grid-template-columns: 1fr; }
  .mkt-agent-caps { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .mkt-contact-grid { grid-template-columns: 1fr; }
  .mkt-field-row { grid-template-columns: 1fr; gap: 0; }
  .mkt-apply-process { grid-template-columns: 1fr; }
  .mkt-apply-step { border-right: none; border-bottom: 0.5px solid rgba(184, 154, 106, 0.14); }
  .mkt-apply-step:last-child { border-bottom: none; }
  .mkt-form-submit { flex-direction: column; align-items: flex-start; }
  .mkt-comm-grid { grid-template-columns: 1fr; }
  .mkt-region-grid { grid-template-columns: 1fr; }
  .mkt-foot-inner { flex-direction: column; gap: 20px; }
  .mkt-foot-cols { grid-template-columns: 1fr; width: 100%; max-width: none; }
  .mkt-foot-nav { justify-content: center; }
  .mkt-sheet-hint { display: block; }
  .mkt-page-body { padding-top: clamp(40px, 6vw, 56px); }
  .mkt-sec { padding: clamp(40px, 6vw, 56px) 0; }
}

@media (max-width: 600px) {
  :root { --mkt-gutter: 16px; }
  .mkt-hero-editorial {
    padding: 36px 0 32px;
  }
  .mkt-hero-intro { margin-bottom: 28px; }
  .mkt-hero-eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.44rem;
    margin-bottom: 16px;
    padding: 0 4px;
  }
  .mkt-hero-headline {
    font-size: clamp(1.45rem, 7.5vw, 1.85rem);
    max-width: none;
    line-height: 1.22;
    margin-bottom: 14px;
    padding: 0 2px;
  }
  .mkt-hero-lead {
    font-size: 13px;
    margin-bottom: 22px;
    padding: 0 2px;
  }
  .mkt-hero-actions {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0 8px;
  }
  .mkt-hero-actions .mkt-link {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
    padding-bottom: 0;
    border-bottom-width: 0.5px;
  }
  .mkt-hero-cinema { margin-bottom: 28px; }
  .mkt-hero-cinema-frame {
    padding: 6px;
    margin: 0 calc(-1 * var(--mkt-gutter));
    width: calc(100% + var(--mkt-gutter) * 2);
    max-width: none;
  }
  .mkt-hero-cinema-frame::before,
  .mkt-hero-cinema-frame::after {
    width: 16px;
    height: 16px;
  }
  .mkt-hero-frame { box-shadow: 0 20px 40px rgba(10, 10, 10, 0.06); }
  .mkt-hero-sig-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: unset;
    margin-left: calc(-1 * var(--mkt-gutter));
    margin-right: calc(-1 * var(--mkt-gutter));
    padding: 0 var(--mkt-gutter);
  }
  .mkt-hero-sig-rail::-webkit-scrollbar { display: none; }
  .mkt-hero-sig-item {
    flex: 0 0 78%;
    scroll-snap-align: center;
    border-right: 0.5px solid rgba(10, 10, 10, 0.06);
    border-bottom: none;
    padding: 20px 18px 22px;
    min-height: 0;
    align-items: flex-start;
    text-align: left;
  }
  .mkt-hero-sig-item:last-child { border-right: none; }
  .mkt-hero-sig-body { max-width: none; margin: 0; }
  .mkt-hero-sig-item.is-active .mkt-hero-sig-body { max-height: 140px; }
  .mkt-cat-grid { grid-template-columns: 1fr; }
  .mkt-cat-cell { border-right: none; }
  .mkt-sig-card { padding: 20px 18px; }
  .mkt-sig-card-line { max-width: 20em; }
  .mkt-prose--narrow { margin-left: auto; margin-right: auto; }
  .mkt-callout { padding: 24px 18px; margin-top: 20px; }
  .mkt-demo-intro { padding-top: 32px; padding-bottom: 20px; }
  .mkt-demo-title { font-size: clamp(1.35rem, 6vw, 1.65rem); }
  .mkt-demo-metrics,
  .mkt-demo-pulse-grid { grid-template-columns: 1fr; }
  .mkt-demo-foot-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 var(--mkt-gutter);
  }
  .mkt-demo-foot-sep { display: none; }
  .mkt-tier-row { grid-template-columns: 1fr; }
  .mkt-tier-card {
    border-right: none;
    border-bottom: 0.5px solid var(--ylux-border);
    padding: 24px 18px;
  }
  .mkt-tier-desc { min-height: 0; }
  .mkt-tier-price-amt { font-size: 1.75rem; }
  .mkt-hero-ui { grid-template-columns: 1fr; min-height: 0; }
  .mkt-hero-ui-sb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    border-right: none;
    border-bottom: 0.5px solid var(--ylux-border);
    padding: 16px;
  }
  .mkt-hero-ui-mark { width: 100%; margin-bottom: 8px; }
  .mkt-hero-ui-nav { padding: 4px 0; }
  .mkt-hero-ui-metrics { grid-template-columns: 1fr; }
  .mkt-form { max-width: 100%; }
  .mkt-field input,
  .mkt-field textarea,
  .mkt-field select { font-size: 16px; }
  .mkt-sec-h { font-size: clamp(1.2rem, 5.5vw, 1.5rem); letter-spacing: 0.03em; }
  .mkt-brand-ladder { flex-direction: column; align-items: stretch; }
  .mkt-brand-step { min-width: 0; }
  .mkt-toggle-tiers { flex-wrap: wrap; justify-content: center; }
  .mkt-toggle-tier { flex: 1 1 40%; min-width: 120px; }
  .mkt-tier-ladder { max-width: 100%; }
}

/* ── Luxury tech hero ── */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 28px;
  font-family: var(--ylux-font-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--ylux-radius);
  transition: background 0.25s var(--ylux-ease), color 0.25s var(--ylux-ease), border-color 0.25s var(--ylux-ease), transform 0.15s var(--ylux-ease), box-shadow 0.25s var(--ylux-ease);
}
.mkt-btn--primary {
  color: #fff;
  background: var(--ylux-cta);
  border: 0.5px solid var(--ylux-cta);
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.18);
}
.mkt-btn--primary:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.22);
}
.mkt-btn--ghost {
  color: var(--ylux-text);
  background: rgba(255, 255, 255, 0.6);
  border: 0.5px solid rgba(10, 10, 10, 0.12);
  backdrop-filter: blur(8px);
}
.mkt-btn--ghost:hover {
  border-color: var(--ylux-accent);
  color: var(--ylux-accent-d);
}
.mkt-link--accent {
  color: var(--ylux-accent-d);
}
.mkt-link--accent:hover { color: var(--ylux-text); border-bottom-color: var(--ylux-accent); }

.mkt-hero-luxe {
  position: relative;
  padding-bottom: 0;
  text-align: left;
  background: var(--ylux-bg);
}
.mkt-hero-luxe-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(108px, 14vw, 156px) var(--mkt-gutter) clamp(56px, 8vw, 88px);
  max-width: 1180px;
}
.mkt-hero-kicker {
  margin: 0 0 20px;
  font-family: var(--ylux-font-display);
  font-size: 0.52rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ylux-accent-d);
}
.mkt-hero-luxe-headline {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  max-width: 9.5em;
  color: var(--ylux-text);
}
#mkt-hero .mkt-hero-luxe-headline {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#mkt-hero .mkt-hero-subline {
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mkt-hero-subline {
  margin: 0 0 32px;
  max-width: 26ch;
  font-size: 0.8rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--ylux-text-s);
}
.mkt-hero-luxe-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
}
.mkt-hero-cta-sep {
  margin: 0 14px;
  color: var(--ylux-text-m);
  font-size: 0.75rem;
}
.mkt-hero-bridge {
  padding: clamp(40px, 6vw, 64px) var(--mkt-gutter) clamp(48px, 7vw, 72px);
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.06);
}
.mkt-hero-bridge-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px 32px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mkt-hero-bridge-text {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: var(--ylux-text-m);
  max-width: 42em;
}
.mkt-hero-bridge-inner .mkt-link {
  margin: 0 auto;
}
.mkt-hero-luxe-device {
  position: relative;
  padding: 12px;
  border-radius: 14px;
  background: var(--mkt-cappuccino);
  border: none;
  box-shadow: 0 28px 56px rgba(120, 95, 65, 0.16);
}
.mkt-hero-device-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 6px 14px;
  background: var(--mkt-cappuccino);
  border-bottom: none;
}
.mkt-hero-device-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(90, 72, 52, 0.22);
}
.mkt-hero-device-dot:first-child { background: var(--ylux-accent-d); }
.mkt-hero-device-title {
  margin-left: auto;
  font-family: var(--ylux-font-display);
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(90, 72, 52, 0.72);
}
.mkt-hero-device-screen {
  padding: 0 4px 10px;
  background: var(--mkt-cappuccino);
}
.mkt-hero-device-screen .mkt-hero-frame {
  border-radius: 10px;
  box-shadow: none;
  background: var(--ylux-bg2);
}
.mkt-hero-luxe-device .mkt-hero-vid-footnote {
  color: var(--ylux-text-s);
  padding: 12px 10px 4px;
  text-align: left;
}
.mkt-hero-luxe-device .mkt-hero-vid-asterisk {
  color: var(--ylux-accent-d);
}
.mkt-hero-poster-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 2;
  pointer-events: none;
  background: var(--ylux-bg2);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s var(--ylux-ease), visibility 0.45s;
}
.mkt-hero-frame .mkt-hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  display: block;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  transition: opacity 0.45s var(--ylux-ease), visibility 0.45s;
}
.mkt-hero-frame .mkt-hero-vid.is-ready {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.mkt-hero-frame:has(.mkt-hero-vid.is-ready) .mkt-hero-poster-layer,
.mkt-hero-frame.mkt-hero-vid-playing .mkt-hero-poster-layer {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
@media (max-width: 960px) {
  .mkt-hero-luxe { text-align: center; }
  .mkt-hero-luxe-grid {
    grid-template-columns: 1fr;
    padding-top: clamp(84px, 16vw, 120px);
  }
  .mkt-hero-luxe-headline,
  .mkt-hero-subline { max-width: none; margin-left: auto; margin-right: auto; }
  .mkt-hero-luxe-ctas { justify-content: center; text-align: center; }
}

/* ── Story homepage — problem-first narrative scroll ── */
.mkt-story { display: block; }

.mkt-story-open {
  padding: 0;
  text-align: center;
}

.mkt-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(88px, 12vw, 148px) var(--mkt-gutter) clamp(48px, 7vw, 80px);
  box-sizing: border-box;
  min-height: min(82vh, 720px);
  text-align: left;
}
.mkt-hero-split-copy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mkt-hero-split-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.mkt-hero-split .mkt-story-problem {
  max-width: 11em;
  text-align: left;
  margin: 0;
}
.mkt-hero-split .mkt-hero-cinema-frame {
  width: 100%;
  margin: 0;
}
.mkt-hero-vid-footnote {
  font-size: 9px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--ylux-text-m);
  margin: 0;
  padding: 0 2px;
  max-width: 36em;
}
.mkt-hero-vid-asterisk {
  color: var(--ylux-accent-d);
  margin-right: 0.35em;
}
@media (max-width: 960px) {
  .mkt-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
    padding-top: clamp(76px, 14vw, 112px);
    padding-bottom: clamp(32px, 6vw, 48px);
  }
  .mkt-hero-split-copy {
    justify-content: center;
  }
  .mkt-hero-split .mkt-story-problem {
    max-width: 16em;
    text-align: center;
  }
  .mkt-hero-vid-footnote {
    text-align: center;
    margin: 0 auto;
  }
}

.mkt-story-beat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: min(88vh, 760px);
  padding: clamp(56px, 10vw, 120px) var(--mkt-gutter);
  box-sizing: border-box;
}
.mkt-story-beat--headline {
  padding-top: clamp(80px, 12vw, 148px);
}
.mkt-story-beat--cinema {
  min-height: auto;
  justify-content: flex-start;
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(24px, 4vw, 40px);
}
.mkt-story-beat--context {
  max-width: 34em;
}
.mkt-story-beat--solution {
  max-width: 28em;
  padding-bottom: clamp(64px, 10vw, 120px);
}
.mkt-story-problem {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 14em;
  color: var(--ylux-text);
}
.mkt-story-context {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--ylux-text-s);
  margin: 0;
  text-align: center;
}
.mkt-story-solution {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  line-height: 1.45;
  color: var(--ylux-text);
  margin: 0 auto 32px;
}
.mkt-story-actions { margin: 0; }

.mkt-story-act {
  padding: clamp(80px, 14vw, 160px) 0;
  border-top: none;
  text-align: center;
}
.mkt-story-act--ivory { background: var(--ylux-bg-subtle); }
.mkt-story-act--muse {
  background: var(--ylux-bg);
}
.mkt-story-act--enterprise {
  background: var(--ylux-bg2);
  border-top-color: rgba(184, 154, 106, 0.28);
}
.mkt-wrap--narrow-story { max-width: 520px; }

.mkt-act-num {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ylux-accent);
  margin-bottom: 20px;
}
.mkt-act-stat {
  margin-bottom: 16px;
  line-height: 1;
}
.mkt-act-stat-n {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ylux-text);
  display: block;
}
.mkt-act-stat-l {
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ylux-accent-d);
  display: block;
  margin-top: 8px;
}
.mkt-act-h {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin: 0 auto 18px;
  max-width: 18em;
}
.mkt-act-h--editorial {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.3;
  max-width: 16em;
  font-style: italic;
}
.mkt-act-p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ylux-text-s);
  margin: 0 auto 36px;
  max-width: 30em;
}
.mkt-act-foot { margin: 28px 0 0; }

.mkt-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 24px;
  text-align: left;
}
.mkt-portfolio-card {
  background: var(--ylux-bg2);
  border: 0.5px solid rgba(184, 154, 106, 0.18);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 96px;
}
.mkt-portfolio-name {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-text);
}
.mkt-portfolio-line {
  font-size: 12px;
  line-height: 1.65;
  color: var(--ylux-text-s);
}
.mkt-act-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 10px;
}
.mkt-portfolio-grid--modules {
  margin-top: 28px;
}
.mkt-act-foot--note {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--ylux-text-s);
  font-style: italic;
  max-width: 42em;
  margin-left: auto;
  margin-right: auto;
}
.mkt-sig-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.mkt-sig-chip {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 0.5px solid rgba(184, 154, 106, 0.25);
  color: var(--ylux-text-m);
}
@media (max-width: 720px) {
  .mkt-portfolio-grid { grid-template-columns: 1fr; }
}

.mkt-act-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(184, 154, 106, 0.2);
  border: 0.5px solid rgba(184, 154, 106, 0.22);
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.mkt-act-cat {
  background: var(--ylux-bg2);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 88px;
}
.mkt-act-cat-roman {
  font-family: var(--ylux-font-editorial);
  font-size: 10px;
  color: var(--ylux-accent);
}
.mkt-act-cat-name {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ylux-text);
  line-height: 1.45;
  flex: 1;
}
.mkt-act-cat-count {
  font-family: var(--ylux-font-editorial);
  font-size: 1.1rem;
  color: var(--ylux-accent-d);
}
.mkt-act-cat-count::after {
  content: ' agents';
  font-family: var(--ylux-font-display);
  font-size: 0.38rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.mkt-brand-ladder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  border: 0.5px solid rgba(184, 154, 106, 0.25);
  background: var(--ylux-bg2);
}
.mkt-brand-step {
  flex: 1 1 140px;
  min-width: 130px;
  padding: 28px 18px 24px;
  text-decoration: none;
  color: inherit;
  border-right: 0.5px solid var(--ylux-border);
  transition: background 0.3s var(--ylux-ease);
}
.mkt-brand-step:last-child { border-right: none; }
.mkt-brand-step:hover { background: rgba(184, 154, 106, 0.05); }
.mkt-brand-step.is-featured {
  background: var(--ylux-accent-f);
  box-shadow: inset 0 1px 0 rgba(184, 154, 106, 0.4);
}
.mkt-brand-step-brands {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.5rem, 3vw, 2rem);
  display: block;
  margin-bottom: 8px;
  color: var(--ylux-text);
}
.mkt-brand-step-tier {
  font-size: 0.46rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  display: block;
  margin-bottom: 6px;
}
.mkt-brand-step-price {
  font-family: var(--ylux-font-editorial);
  font-size: 1rem;
  color: var(--ylux-accent-d);
}
.mkt-brand-step-price span {
  font-size: 0.42rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}

.mkt-replace-list {
  list-style: none;
  margin: 0 auto 32px;
  padding: 0;
  max-width: 28em;
  text-align: center;
}
.mkt-replace-item {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  line-height: 1.45;
  color: var(--ylux-text-s);
  padding: 10px 0;
  border-bottom: none;
  opacity: 1;
  transform: none;
}
html.mkt-js .mkt-replace-item {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s var(--ylux-ease), transform 0.5s var(--ylux-ease);
}
html.mkt-js .mkt-replace-item.is-visible {
  opacity: 1;
  transform: none;
}
.mkt-replace-item:last-child { border-bottom: none; }
.mkt-replace-math {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  color: var(--ylux-text);
  margin: 0;
}

.mkt-toggle-showcase {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 24px 32px;
  border: 0.5px solid rgba(184, 154, 106, 0.28);
  background: var(--ylux-bg2);
}
.mkt-toggle-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
}
.mkt-toggle-tier {
  font: inherit;
  cursor: pointer;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg);
  padding: 10px 12px;
  text-align: center;
  min-width: 88px;
  transition: border-color 0.25s, background 0.25s, transform 0.15s;
}
.mkt-toggle-tier:active { transform: scale(0.97); }
.mkt-toggle-tier.is-on {
  border-color: var(--ylux-accent);
  background: rgba(184, 154, 106, 0.08);
}
.mkt-toggle-tier-name {
  display: block;
  font-size: 0.44rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text);
  margin-bottom: 4px;
}
.mkt-toggle-tier-cap {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: 0.85rem;
  color: var(--ylux-accent-d);
}
.mkt-toggle-meta {
  margin-bottom: 16px;
  line-height: 1.2;
}
.mkt-toggle-count {
  font-family: var(--ylux-font-editorial);
  font-size: 1.75rem;
  color: var(--ylux-text);
  display: block;
}
.mkt-toggle-of {
  font-size: 0.44rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}
.mkt-toggle-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 4px;
}
.mkt-toggle-dot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.06);
  transition: background 0.2s var(--ylux-ease), transform 0.2s var(--ylux-ease);
}
.mkt-toggle-dot.is-on {
  background: var(--ylux-accent);
  transform: scale(1.05);
}

.mkt-tier-ladder {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid rgba(184, 154, 106, 0.22);
}
.mkt-tier-rung {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  border-bottom: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg2);
  text-align: left;
  transition: background 0.25s var(--ylux-ease);
}
.mkt-tier-rung:last-child { border-bottom: none; }
.mkt-tier-rung:hover { background: rgba(184, 154, 106, 0.04); }
.mkt-tier-rung.is-featured {
  background: var(--ylux-accent-f);
  box-shadow: inset 3px 0 0 var(--ylux-accent);
}
.mkt-tier-rung--enterprise {
  background: var(--ylux-bg-subtle);
}
.mkt-tier-rung-eyebrow {
  grid-column: 1 / -1;
  font-size: 0.42rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}
.mkt-tier-rung-name {
  font-family: var(--ylux-font-editorial);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.mkt-tier-rung-price {
  font-family: var(--ylux-font-editorial);
  font-size: 1.1rem;
  color: var(--ylux-accent-d);
  text-align: right;
  align-self: center;
}
.mkt-tier-rung-price span {
  font-size: 0.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}
.mkt-tier-rung-fact {
  grid-column: 1 / -1;
  font-size: 0.44rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-accent);
}

.mkt-enterprise-price-line {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--ylux-accent);
  margin: 8px 0 0;
}

.mkt-story-close {
  padding: clamp(80px, 12vw, 140px) 0 clamp(100px, 14vw, 160px);
  text-align: center;
  border-top: 0.5px solid rgba(184, 154, 106, 0.35);
  background: var(--ylux-bg-subtle);
}
.mkt-close-h {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 auto 16px;
  max-width: 14em;
}
.mkt-close-p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ylux-text-s);
  margin: 0 auto 28px;
  max-width: 26em;
}
.mkt-close-actions { margin: 0; }
.mkt-close-sep {
  margin: 0 14px;
  color: var(--ylux-text-m);
}

@media (max-width: 900px) {
  .mkt-act-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-brand-ladder { flex-direction: column; }
  .mkt-brand-step {
    border-right: none;
    border-bottom: 0.5px solid var(--ylux-border);
    text-align: center;
  }
  .mkt-brand-step:last-child { border-bottom: none; }
  .mkt-replace-list { text-align: center; }
  .mkt-tier-rung { text-align: left; }
}

.mkt-main:focus { outline: none; }

.mkt-hero-reveal {
  opacity: 1;
  transform: none;
}
html.mkt-js.mkt-animate:not(.mkt-fallback) .mkt-hero-reveal:not(.is-visible) {
  opacity: 1;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ylux-ease), transform 0.7s var(--ylux-ease);
  transition-delay: var(--mkt-hero-delay, 0s);
}
html.mkt-js .mkt-hero-reveal.is-visible,
html.mkt-js.mkt-fallback .mkt-hero-reveal,
html.mkt-js.mkt-boot .mkt-hero-reveal {
  opacity: 1;
  transform: none;
}
.mkt-hero-vid-desc {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Visible caption lives in .mkt-hero-vid-footnote (hero split layout) */

.mkt-proof {
  padding: clamp(48px, 8vw, 72px) 0;
  border-top: 0.5px solid rgba(184, 154, 106, 0.2);
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.2);
  background: var(--ylux-bg2);
  text-align: center;
}
.mkt-proof-trusted {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin: 0 auto 28px;
  max-width: 36em;
}
.mkt-proof-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  margin-bottom: 32px;
}
.mkt-proof-metric-v {
  display: block;
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  margin-bottom: 6px;
}
.mkt-proof-metric-l {
  display: block;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}
.mkt-proof-quote {
  margin: 0 auto 24px;
  max-width: 32em;
  padding: 0;
  border: none;
}
.mkt-proof-quote-text {
  font-family: var(--ylux-font-editorial);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: var(--ylux-text);
  margin: 0 0 12px;
}
.mkt-proof-quote-by { font-size: 10px; color: var(--ylux-text-m); }
.mkt-proof-quote-name { display: block; letter-spacing: 0.08em; text-transform: uppercase; }
.mkt-proof-marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.mkt-proof-mark {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 0.5px solid rgba(184, 154, 106, 0.35);
  color: var(--ylux-accent);
}

.mkt-sovereign-spot {
  padding: clamp(56px, 9vw, 96px) 0;
  background: var(--ylux-bg-subtle);
  border-top: 0.5px solid rgba(184, 154, 106, 0.35);
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.35);
  text-align: center;
}
.mkt-sovereign-spot-inner {
  max-width: 28em;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  border: 0.5px solid rgba(184, 154, 106, 0.4);
  background: var(--ylux-bg2);
}
.mkt-sovereign-spot-eyebrow {
  display: block;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 12px;
}
.mkt-sovereign-spot-h {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.2;
}
.mkt-sovereign-spot-p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ylux-text-s);
  margin: 0 0 20px;
}
.mkt-sovereign-spot-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.mkt-sovereign-spot-price {
  font-family: var(--ylux-font-editorial);
  font-size: 1.5rem;
  color: var(--ylux-accent);
}
.mkt-sovereign-spot-price span { font-size: 10px; color: var(--ylux-text-m); }
.mkt-sovereign-spot-facts {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
}
.mkt-sovereign-spot-cta { margin: 0; }

.mkt-tiers-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--ylux-border);
}
.mkt-tiers-toc-link {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  text-decoration: none;
  transition: color 0.2s var(--ylux-ease);
}
.mkt-tiers-toc-link:hover { color: var(--ylux-accent); }

.mkt-tier-mobile { display: none; margin-bottom: 20px; }
.mkt-tier-mobile-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}
.mkt-tier-mobile-tab {
  font-family: var(--ylux-font-ui);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg2);
  color: var(--ylux-text-m);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.mkt-tier-mobile-tab.is-on {
  border-color: rgba(184, 154, 106, 0.5);
  color: var(--ylux-accent);
  background: var(--ylux-bg);
}
.mkt-tier-mobile-card {
  border: 0.5px solid var(--ylux-border);
  background: var(--ylux-bg2);
  padding: 28px 24px;
  text-align: center;
}
.mkt-tier-mobile-card.is-featured { border-color: rgba(184, 154, 106, 0.45); }
.mkt-tier-mobile-eyebrow {
  display: block;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin-bottom: 8px;
}
.mkt-tier-mobile-name {
  font-family: var(--ylux-font-editorial);
  font-size: 1.75rem;
  margin: 0 0 8px;
  font-weight: 400;
}
.mkt-tier-mobile-price {
  font-family: var(--ylux-font-editorial);
  font-size: 1.35rem;
  color: var(--ylux-accent);
  margin: 0 0 8px;
}
.mkt-tier-mobile-price span { font-size: 10px; color: var(--ylux-text-m); }
.mkt-tier-mobile-note {
  font-size: 9px;
  color: var(--ylux-text-m);
  margin: 0 0 16px;
}
.mkt-tier-mobile-desc {
  font-family: var(--ylux-font-editorial);
  font-style: italic;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ylux-text-s);
  margin: 0 0 20px;
}
.mkt-tier-mobile-facts {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ylux-accent);
}
.mkt-tier-mobile-facts p { margin: 0; padding: 4px 0; }
.mkt-tier-mobile-cta { display: inline-block; }

.mkt-enterprise-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.28);
}
.mkt-enterprise-trust-col {
  padding: 20px 22px;
  border-right: 0.5px solid rgba(184, 154, 106, 0.2);
}
.mkt-enterprise-trust-col:last-child { border-right: none; }
.mkt-enterprise-trust-lbl {
  display: block;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 10px;
}
.mkt-enterprise-trust-p {
  font-size: 10px;
  line-height: 1.65;
  color: var(--ylux-text-s);
  margin: 0;
}
.mkt-enterprise-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.mkt-demo-guide {
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 0.5px solid rgba(184, 154, 106, 0.35);
  background: var(--ylux-bg2);
}
.mkt-demo-guide-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.mkt-demo-guide-title {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
}
.mkt-demo-guide-close {
  font-family: var(--ylux-font-ui);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  background: none;
  color: var(--ylux-text-m);
  cursor: pointer;
  padding: 4px 0;
}
.mkt-demo-guide-close:hover { color: var(--ylux-text); }
.mkt-demo-guide-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.mkt-demo-guide-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}
.mkt-demo-guide-num {
  font-family: var(--ylux-font-editorial);
  font-size: 11px;
  color: var(--ylux-accent);
}
.mkt-demo-guide-step-title {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mkt-demo-guide-step-body {
  font-size: 10px;
  line-height: 1.6;
  color: var(--ylux-text-s);
  margin: 0;
}

.mkt-legal-h {
  font-family: var(--ylux-font-editorial);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 28px 0 10px;
}
.mkt-legal-h:first-child { margin-top: 0; }

.mkt-legal-h3 {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin: 22px 0 8px;
  font-weight: 400;
}
.mkt-legal-table-wrap {
  overflow-x: auto;
  margin: 12px 0 20px;
  border: 0.5px solid rgba(184, 154, 106, 0.22);
}
.mkt-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  line-height: 1.55;
}
.mkt-legal-table th,
.mkt-legal-table td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 0.5px solid rgba(184, 154, 106, 0.14);
}
.mkt-legal-table th {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  font-weight: 400;
  background: rgba(184, 154, 106, 0.06);
}
.mkt-legal-table tr:last-child td { border-bottom: none; }
.mkt-legal-table td:first-child {
  font-family: var(--ylux-font-mono, ui-monospace, monospace);
  font-size: 10px;
  color: var(--ylux-text);
  white-space: nowrap;
}
.mkt-stack { margin: 12px 0 0; }
.mkt-stack-line {
  margin: 0;
  padding: var(--mkt-stack-gap) 0;
  border-bottom: none;
}
.mkt-stack-line:last-child { border-bottom: none; }

.mkt-legal-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.mkt-legal-list li {
  font-size: 11px;
  line-height: 1.65;
  color: var(--ylux-text-s);
  padding: var(--mkt-stack-gap) 0;
  border-bottom: none;
  text-align: center;
}
.mkt-legal-list li:last-child { border-bottom: none; }
.mkt-legal-list-lbl {
  display: inline-block;
  min-width: 4.5em;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-accent);
}
.mkt-sec-cta-sep {
  margin: 0 10px;
  color: var(--ylux-text-s);
  opacity: 0.5;
}

.mkt-legal-dl {
  margin: 12px 0 0;
  padding: 0;
}
.mkt-legal-dl dt {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin: 18px 0 6px;
  font-weight: 400;
}
.mkt-legal-dl dt:first-child { margin-top: 0; }
.mkt-legal-dl dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  color: var(--ylux-text-s);
}
/* No bullet markers anywhere on marketing site */
body.mkt ul,
body.mkt ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
body.mkt li::marker {
  content: none;
}
.mkt-legal-list--bullets,
.mkt-legal-list--bullets li {
  list-style: none;
  padding-left: 0;
}
.mkt-legal-list--bullets li {
  border-bottom: none;
  padding: var(--mkt-stack-gap) 0;
  text-align: center;
}
.mkt-legal-list--bullets li:last-child { border-bottom: none; }
.mkt-legal-formula {
  font-family: var(--ylux-font-mono, ui-monospace, monospace);
  font-size: 10px;
  color: var(--ylux-text-s);
  padding: 10px 12px;
  border: 0.5px solid rgba(184, 154, 106, 0.22);
  background: rgba(184, 154, 106, 0.04);
}

.mkt-agent-sec-count {
  font-size: 0.55em;
  letter-spacing: 0.12em;
  color: var(--ylux-accent);
  margin-left: 10px;
}
.mkt-agent-list {
  display: grid;
  gap: 0;
  border-top: 0.5px solid var(--ylux-border);
}
.mkt-agent-sec .mkt-agent-item {
  border-bottom: 0.5px solid var(--ylux-border);
  padding: 14px 0;
}

.mkt-submit.is-loading { opacity: 0.55; pointer-events: none; }
.mkt-submit.is-success { color: var(--ylux-accent); }

.mkt-start-tiers {
  display: grid;
  gap: 0;
  margin-bottom: 12px;
}
.mkt-start-tier {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  cursor: pointer;
  transition: background 0.2s var(--ylux-ease);
}
.mkt-start-tier input { position: absolute; opacity: 0; pointer-events: none; }
.mkt-start-tier:has(input:checked) { background: rgba(184, 154, 106, 0.06); }
.mkt-start-tier-name {
  font-family: var(--ylux-font-editorial);
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.mkt-start-tier-price {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ylux-text-s);
}
.mkt-start-tier-fact {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ylux-text-m);
}

.mkt-muse-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border: 0.5px solid var(--mkt-border, rgba(26,21,16,0.12));
}
.mkt-muse-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.mkt-muse-table thead tr {
  border-bottom: 0.5px solid var(--mkt-border, rgba(26,21,16,0.12));
  background: var(--mkt-ivory, #faf8f5);
}
.mkt-muse-table th {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mkt-text-m, rgba(26,21,16,0.45));
  padding: 10px 20px;
  font-weight: 500;
  text-align: left;
}
.mkt-muse-table tbody tr {
  border-bottom: 0.5px solid var(--mkt-border, rgba(26,21,16,0.08));
  transition: background 0.12s;
}
.mkt-muse-table tbody tr:last-child { border-bottom: none; }
.mkt-muse-table tbody tr:hover { background: rgba(26,21,16,0.02); }
.mkt-muse-table td {
  padding: 10px 20px;
  text-align: left;
  color: var(--mkt-text, #1a1510);
}
.mkt-muse-table td:first-child {
  font-family: var(--mkt-serif, Georgia, serif);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.mkt-muse-table tbody tr:last-child td {
  background: var(--mkt-ivory, #faf8f5);
}
.mkt-muse-table tbody tr:last-child td:first-child {
  color: var(--mkt-cap, #b89a6a);
}

.mkt-demo-guide { padding-bottom: 24px; }
.mkt-demo-guide-steps {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.mkt-demo-guide-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}
.mkt-demo-guide-num {
  font-family: var(--ylux-font-editorial);
  font-size: 1.1rem;
  color: var(--ylux-accent-d);
}
.mkt-demo-guide-title {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mkt-demo-guide-body { margin: 0; font-size: 12px; }

.mkt-faq-q:focus-visible {
  outline: 2px solid var(--ylux-accent);
  outline-offset: 2px;
}

.mkt-careers .mkt-role-card,
.mkt-careers .mkt-comm-grid,
.mkt-careers .mkt-region-card,
.mkt-career-opening {
  transition: border-color 0.25s var(--ylux-ease);
}

/* Careers — three openings layout */
.mkt-careers-hero {
  max-width: 34em;
  margin: 0 auto 40px;
  text-align: center;
}
.mkt-careers-hero-p {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.75;
  color: var(--ylux-text);
  margin: 0 0 14px;
}
.mkt-careers-hero-p:last-child { margin-bottom: 0; }
.mkt-careers-how {
  max-width: 36em;
  margin: 0 auto clamp(48px, 7vw, 72px);
  text-align: center;
}
.mkt-careers-how .mkt-sec-lbl { margin-bottom: 24px; }
.mkt-careers-how-p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--ylux-text-s);
  margin: 0 0 20px;
  text-align: left;
}
.mkt-careers-how-p:last-child { margin-bottom: 0; }
.mkt-careers-open,
.mkt-careers-empty,
.mkt-careers-contact {
  max-width: 40em;
  margin: 0 auto;
  text-align: center;
}
.mkt-careers-open { margin-bottom: clamp(40px, 6vw, 64px); }
.mkt-careers-open .mkt-sec-lbl,
.mkt-careers-empty .mkt-sec-lbl,
.mkt-careers-contact .mkt-sec-lbl { margin-bottom: 16px; }
.mkt-careers-open-note {
  font-size: 11px;
  line-height: 1.65;
  color: var(--ylux-text-m);
  margin: 0 auto 40px;
  max-width: 28em;
}
.mkt-careers-empty-line,
.mkt-careers-empty-general {
  font-size: 12px;
  line-height: 1.75;
  margin: 0 auto 16px;
  max-width: 32em;
}
.mkt-careers-empty-general { margin-bottom: 0; }
.mkt-careers-empty { margin-bottom: clamp(40px, 6vw, 64px); }
.mkt-careers-contact .mkt-prose { font-size: 12px; }
.mkt-careers-values {
  text-align: center;
  max-width: 36em;
  margin: 0 auto 20px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ylux-text-s);
}
.mkt-career-opening {
  margin-bottom: clamp(48px, 7vw, 72px);
  padding-bottom: clamp(40px, 6vw, 56px);
  scroll-margin-top: 88px;
  text-align: left;
}
.mkt-career-opening:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
.mkt-career-opening-head {
  text-align: center;
  margin-bottom: 20px;
}
.mkt-career-opening-title {
  font-family: var(--ylux-font-editorial);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  line-height: 1.25;
}
.mkt-career-opening-dept-loc {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-text-m);
  margin: 0;
}
.mkt-career-compensation {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ylux-text);
  text-align: center;
  margin: 0 auto 24px;
  max-width: 32em;
}
.mkt-career-opening-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 0 0 24px;
  padding: 0;
}
.mkt-career-meta-item dt {
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin-bottom: 4px;
}
.mkt-career-meta-item dd {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ylux-text);
  margin: 0;
}
.mkt-career-summary {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--ylux-text);
}
.mkt-career-summary:last-of-type { margin-bottom: 20px; }
.mkt-career-apply {
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
}
.mkt-career-apply-instructions {
  font-size: 11px;
  line-height: 1.7;
  color: var(--ylux-text-s);
  margin: 0;
  max-width: 34em;
  margin-left: auto;
  margin-right: auto;
}
.mkt-career-block { margin-bottom: 24px; }
.mkt-career-block-lbl {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  margin: 0 0 12px;
}
.mkt-career-comm { margin: 20px 0; }
.mkt-career-comm-note { font-size: 11px; margin-bottom: 28px; }
.mkt-career-regions { margin-bottom: 24px; }
.mkt-career-regions-intro { font-size: 11px; margin-bottom: 16px; }
.mkt-career-outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mkt-career-outcomes li,
.mkt-career-outcomes p {
  font-size: 11px;
  line-height: 1.65;
  color: var(--ylux-text-s);
  padding: 10px 0;
  border-bottom: 0.5px solid var(--ylux-border);
  margin: 0;
}
.mkt-career-outcomes li:last-child,
.mkt-career-outcomes p:last-child { border-bottom: none; }
.mkt-duty-list p.mkt-stack-line { font-size: 12px; }
.mkt-career-outcome-period {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ylux-accent);
  min-width: 72px;
  margin-right: 8px;
}
.mkt-career-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-bottom: 8px;
}
.mkt-duty-list--muted li { color: var(--ylux-text-m); }
@media (max-width: 768px) {
  .mkt-career-opening-meta { grid-template-columns: 1fr; }
  .mkt-career-req-grid { grid-template-columns: 1fr; }
  .mkt-career-apply { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .mkt-sheet { display: none; }
  .mkt-sheet-hint { display: none !important; }
  .mkt-tier-mobile { display: block; }
  .mkt-enterprise-trust { grid-template-columns: 1fr; }
  .mkt-enterprise-trust-col {
    border-right: none;
    border-bottom: 0.5px solid rgba(184, 154, 106, 0.2);
  }
  .mkt-enterprise-trust-col:last-child { border-bottom: none; }
  .mkt-enterprise-cta-actions { align-items: flex-start; }
  .mkt-demo-guide-steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-hero-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Luxury: centered content, no decorative borders ── */
body.mkt .mkt-main { text-align: center; }

body.mkt .mkt-wrap--narrow,
body.mkt .mkt-wrap--guide,
body.mkt .mkt-wrap--form,
body.mkt .mkt-wrap--narrow-story {
  margin-left: auto;
  margin-right: auto;
}

body.mkt .mkt-legal-h,
body.mkt .mkt-legal-h3,
body.mkt .mkt-agent-sec-h,
body.mkt .mkt-faq-cat-h,
body.mkt .mkt-page-h,
body.mkt .mkt-page-sub,
body.mkt .mkt-agent-caps,
body.mkt .mkt-guide-step-head,
body.mkt .mkt-enterprise-col-lbl,
body.mkt .mkt-career-block-lbl {
  text-align: center;
}

body.mkt .mkt-agent-caps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

body.mkt .mkt-agent-list { border-top: none; }
body.mkt .mkt-agent-item {
  border-bottom: none;
  padding: 16px 0;
  text-align: center;
}
body.mkt .mkt-agent-sec { text-align: center; }

body.mkt .mkt-cat-acc,
body.mkt .mkt-cat-acc-item { border: none; text-align: center; }
body.mkt .mkt-cat-acc-btn {
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}
body.mkt .mkt-cat-acc-meta { justify-content: center; }

body.mkt .mkt-cat-grid {
  border: none;
  gap: 20px;
  background: transparent;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
body.mkt .mkt-cat-cell { border: none; text-align: center; }

body.mkt .mkt-act-cat-grid {
  border: none;
  gap: 16px;
  background: transparent;
  text-align: center;
}
body.mkt .mkt-act-cat {
  align-items: center;
  text-align: center;
}

body.mkt .mkt-brand-ladder {
  border: none;
  gap: 12px;
  background: transparent;
}
body.mkt .mkt-brand-step {
  border: none;
  text-align: center;
}
body.mkt .mkt-brand-step.is-featured {
  box-shadow: none;
  background: rgba(184, 154, 106, 0.06);
}

body.mkt .mkt-toggle-showcase {
  border: none;
  background: transparent;
  padding: 0;
}
body.mkt .mkt-toggle-tier {
  border: none;
  background: transparent;
}
body.mkt .mkt-toggle-tier.is-on {
  background: rgba(184, 154, 106, 0.08);
}

body.mkt .mkt-tier-ladder,
body.mkt .mkt-tier-rung { border: none; text-align: center; }
body.mkt .mkt-tier-rung.is-featured { box-shadow: none; }

body.mkt .mkt-sig-grid {
  border: none;
  gap: 28px;
  background: transparent;
}
body.mkt .mkt-sig-card {
  align-items: center;
  text-align: center;
}
body.mkt .mkt-sig-row { border: none; }

body.mkt .mkt-tier-spotlight-card {
  border: none;
  box-shadow: none;
  background: transparent;
}

body.mkt .mkt-proof {
  border: none;
  background: transparent;
  text-align: center;
}
body.mkt .mkt-proof-mark { border: none; padding: 0; }
body.mkt .mkt-sovereign-spot {
  border: none;
  background: transparent;
}

body.mkt .mkt-hero-cinema-frame::before,
body.mkt .mkt-hero-cinema-frame::after { display: none; }

body.mkt .mkt-hero-sig-rail {
  border: none;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
body.mkt .mkt-hero-sig-item {
  border: none;
  align-items: center;
  text-align: center;
}
body.mkt .mkt-hero-sig-item.is-active {
  border: none;
  background: rgba(184, 154, 106, 0.06);
}

body.mkt .mkt-sheet {
  border: none;
  background: transparent;
}
body.mkt .mkt-sheet .row,
body.mkt .mkt-sheet .lbl,
body.mkt .mkt-sheet .col {
  border: none;
}
body.mkt .mkt-sheet .row { padding: 10px 0; }
body.mkt .mkt-sheet .lbl,
body.mkt .mkt-sheet-value .col { text-align: center; justify-content: center; }
body.mkt .mkt-sheet .dash { background: rgba(154, 149, 144, 0.35); }
body.mkt .mkt-sheet-tier-note { border: none; }

body.mkt .mkt-enterprise {
  border: none;
  background: transparent;
}
body.mkt .mkt-enterprise-head {
  border: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
body.mkt .mkt-enterprise-price-wrap { text-align: center; }
body.mkt .mkt-enterprise-price-note { margin-left: auto; margin-right: auto; }
body.mkt .mkt-enterprise-body {
  border: none;
  gap: 32px;
}
body.mkt .mkt-enterprise-col {
  border: none;
  text-align: center;
  padding: 0 12px;
}
body.mkt .mkt-enterprise-list p,
body.mkt .mkt-enterprise-list li { border: none; text-align: center; }
body.mkt .mkt-enterprise-trust { border: none; gap: 24px; }
body.mkt .mkt-enterprise-trust-col { border: none; text-align: center; }
body.mkt .mkt-enterprise-cta {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body.mkt .mkt-enterprise-cta-text { margin: 0 auto; }

body.mkt .mkt-addons,
body.mkt .mkt-addons-cat,
body.mkt .mkt-addon-row,
body.mkt .mkt-addon-item { border: none; }
body.mkt .mkt-addons-cat-h,
body.mkt .mkt-addon-item { text-align: center; }

body.mkt .mkt-sec--addons { border-top: none; }

body.mkt .mkt-guide-toc,
body.mkt .mkt-guide-step,
body.mkt .mkt-guide-week,
body.mkt .mkt-faq-toc { border: none; }
body.mkt .mkt-guide-step-head { justify-content: center; }
body.mkt .mkt-guide-note { text-align: center; }

body.mkt .mkt-apply-steps { border: none; gap: 24px; }
body.mkt .mkt-apply-step { border: none; text-align: center; }

body.mkt .mkt-legal-table-wrap { border: none; }
body.mkt .mkt-legal-table th,
body.mkt .mkt-legal-table td {
  border: none;
  text-align: center;
  padding: 10px 8px;
}
body.mkt .mkt-legal-formula { border: none; background: transparent; }

body.mkt .mkt-tier-mobile-card { border: none; text-align: center; }
body.mkt .mkt-demo-guide { border: none; background: transparent; text-align: center; }
body.mkt .mkt-demo-intro { text-align: center; }

body.mkt .mkt-demo-shell,
body.mkt .mkt-demo-shell * { text-align: left; }

body.mkt .mkt-form { margin-left: auto; margin-right: auto; }
body.mkt .mkt-field label:not(.mkt-check-row label) { text-align: center; }

body.mkt .mkt-replace-math { text-align: center; max-width: 32em; margin: 0 auto; }

body.mkt .mkt-faq-q {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
body.mkt .mkt-faq-q::after { margin-top: 2px; }

body.mkt .mkt-career-outcomes p,
body.mkt .mkt-duty-list p { text-align: center; border: none; }

body.mkt .mkt-story-act--enterprise { border-top: none; }

body.mkt .mkt-close-h,
body.mkt .mkt-close-p,
body.mkt .mkt-close-actions { text-align: center; }

body.mkt .mkt-page-body :where([class*="mkt-"]) {
  border-color: transparent;
}
body.mkt .mkt-field input:not([type="checkbox"]):not([type="radio"]),
body.mkt .mkt-field textarea,
body.mkt .mkt-field select {
  border-bottom-color: rgba(10, 10, 10, 0.12);
}

@media (max-width: 768px) {
  body.mkt .mkt-enterprise-trust-col { border: none; }
  body.mkt .mkt-enterprise-cta-actions { align-items: center; }
  body.mkt .mkt-tier-rung { text-align: center; }
  body.mkt .mkt-replace-list { text-align: center; }
  body.mkt .mkt-apply-step { border: none; }
  body.mkt .mkt-enterprise-col { border: none; }
}

.mkt-foot-entity {
  font-size: 10px;
  color: var(--ylux-text-m);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.mkt-demo-disclaimer {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ylux-text-m);
}
.mkt-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  padding: 10px 20px;
  background: rgba(250, 250, 248, 0.97);
  border-top: 0.5px solid rgba(10, 10, 10, 0.1);
  backdrop-filter: blur(10px);
}
.mkt-cookie-banner[hidden] { display: none !important; }
.mkt-cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.mkt-cookie-banner-title { display: none; }
.mkt-cookie-banner-desc {
  flex: 1;
  font-size: 10px;
  line-height: 1.5;
  color: var(--ylux-text-s);
  margin: 0;
}
.mkt-cookie-banner-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.mkt-cookie-btn { font-size: 9px; padding: 6px 12px; letter-spacing: 0.08em; }

