/* ============================================================
   mscopywrite.com — Design System
   Palette: Near-Black #0C0C0E + Warm Gold #C8963E + Cream #FFFCF6
   Fonts:   Spectral (editorial serif headings) + Raleway (elegant body)
   Nav:     MINIMAL EDITORIAL — cream bg, scroll bottom border, right drawer mobile
   Hero:    FULL-VIEWPORT DARK with large display type + watermark text
   Services: 2x3 BENTO GRID with large tiles
   Process: STAGGERED VERTICAL with huge step numbers
   Cases:   HORIZONTAL SCROLL with wide swipeable cards
   Testi:   PULL-QUOTE EDITORIAL (large + two stacked)
   Pricing: COMPARISON FEATURE TABLE
   FAQ:     GOLD-LEFT-MARKER accordion
   Footer:  TWO-COLUMN with wide brand column
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --msc-ink:      #0C0C0E;
  --msc-ink2:     #1E1C1A;
  --msc-gold:     #C8963E;
  --msc-gold2:    #A87C30;
  --msc-gold-l:   #F5E8D0;
  --msc-gold-ll:  #FAF3E8;
  --msc-cream:    #FFFCF6;
  --msc-parch:    #F5EDE0;
  --msc-parch2:   #EBE1D0;
  --msc-slate:    #5A5245;
  --msc-muted:    #9A9188;
  --msc-border:   rgba(12,12,14,.08);
  --msc-border2:  rgba(12,12,14,.05);
  --msc-ease:     all .22s ease;
  --msc-shadow:   0 2px 16px rgba(12,12,14,.06);
  --msc-shadow2:  0 16px 56px rgba(12,12,14,.14);
  --msc-r4:       4px;
  --msc-r8:       8px;
  --msc-r12:      12px;
  --msc-r20:      20px;
  --msc-wrap:     1100px;
  --msc-navh:     68px;
  --msc-fh:       'Spectral', Georgia, 'Times New Roman', serif;
  --msc-fb:       'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--msc-fb);
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--msc-slate);
  background: var(--msc-cream);
  overflow-x: hidden;
  padding-top: var(--msc-navh);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--msc-fh); color: var(--msc-ink); line-height: 1.1; }
h1 { font-size: clamp(2.875rem, 6.5vw, 5.5rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 600; letter-spacing: -.015em; }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { max-width: 68ch; word-wrap: break-word; }

/* ── EDITORIAL NAV ──────────────────────────────── */
.msc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--msc-navh);
  background: var(--msc-cream);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.msc-nav.msc-scrolled {
  border-bottom-color: var(--msc-border);
  box-shadow: 0 1px 18px rgba(12,12,14,.05);
}
.msc-nav-shell {
  max-width: var(--msc-wrap); margin: 0 auto;
  height: 100%; padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.msc-logo {
  font-family: var(--msc-fh); font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700; color: var(--msc-ink); letter-spacing: -.01em;
  flex-shrink: 0; font-style: italic;
}
.msc-logo span { color: var(--msc-gold); font-style: normal; }
.msc-nav-links {
  display: flex; align-items: center; gap: .25rem;
  flex: 1; justify-content: center;
}
.msc-nav-lk {
  font-family: var(--msc-fb); font-size: 1.0rem; font-weight: 600;
  color: var(--msc-slate); padding: .5rem .875rem;
  position: relative; transition: color .2s; white-space: nowrap;
}
.msc-nav-lk::after { content: ''; position: absolute; bottom: 2px; left: .875rem; right: .875rem; height: 1.5px; background: var(--msc-gold); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.msc-nav-lk:hover { color: var(--msc-ink); }
.msc-nav-lk:hover::after { transform: scaleX(1); }
.msc-nav-lk.msc-active { color: var(--msc-ink); }
.msc-nav-lk.msc-active::after { transform: scaleX(1); }
.msc-nav-end { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.msc-ham { display: none; background: none; border: none; color: var(--msc-ink); padding: .5rem; }

/* SLIDE-IN RIGHT DRAWER */
.msc-veil { position: fixed; inset: 0; background: rgba(12,12,14,.45); z-index: 899; display: none; }
.msc-veil.msc-veil-on { display: block; }
.msc-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 900;
  width: 280px; background: var(--msc-cream);
  padding: 1.75rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s ease;
}
.msc-drawer.msc-drawer-on { transform: none; }
.msc-dr-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.msc-dr-logo { font-family: var(--msc-fh); font-size: 1.25rem; font-weight: 700; color: var(--msc-ink); font-style: italic; }
.msc-dr-logo span { color: var(--msc-gold); font-style: normal; }
.msc-dr-cls { background: none; border: none; color: var(--msc-muted); }
.msc-dr-lk { display: block; font-family: var(--msc-fb); font-size: 1.125rem; font-weight: 600; color: var(--msc-ink); padding: .75rem 0; border-bottom: 1px solid var(--msc-border); transition: color .2s; }
.msc-dr-lk:hover { color: var(--msc-gold); }
.msc-dr-foot { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }

/* ── LAYOUT ──────────────────────────────────────── */
.msc-spine  { max-width: var(--msc-wrap); margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }
.msc-strip  { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.msc-strip-sm{ padding: clamp(2.5rem, 5vw, 4rem) 0; }
.msc-bg-cream  { background: var(--msc-cream); }
.msc-bg-parch  { background: var(--msc-parch); }
.msc-bg-parch2 { background: var(--msc-parch2); }
.msc-bg-dark   { background: var(--msc-ink); }

/* ── KICKER / EYEBROW ────────────────────────────── */
.msc-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--msc-fb); font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--msc-gold);
  margin-bottom: 1rem;
}
.msc-kicker::before { content: ''; width: 20px; height: 1.5px; background: var(--msc-gold); }

/* ── BUTTONS ──────────────────────────────────────── */
.msc-btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; background: var(--msc-gold); color: var(--msc-cream);
  font-family: var(--msc-fh); font-size: 1.0rem; font-weight: 600; font-style: italic;
  border: 2px solid var(--msc-gold); border-radius: var(--msc-r4);
  transition: var(--msc-ease); white-space: nowrap;
}
.msc-btn-gold:hover { background: var(--msc-gold2); border-color: var(--msc-gold2); }

.msc-btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; background: transparent; color: var(--msc-ink);
  font-family: var(--msc-fh); font-size: 1.0rem; font-weight: 600; font-style: italic;
  border: 2px solid var(--msc-ink); border-radius: var(--msc-r4);
  transition: var(--msc-ease); white-space: nowrap;
}
.msc-btn-outline:hover { background: var(--msc-ink); color: var(--msc-cream); }

.msc-btn-outline-lt {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; background: transparent; color: rgba(255,251,246,.8);
  font-family: var(--msc-fh); font-size: 1.0rem; font-weight: 600; font-style: italic;
  border: 2px solid rgba(255,251,246,.25); border-radius: var(--msc-r4);
  transition: var(--msc-ease); white-space: nowrap;
}
.msc-btn-outline-lt:hover { border-color: var(--msc-gold); color: var(--msc-gold); }

.msc-btn-sm { padding: .5625rem 1.5rem; font-size: .9375rem; }
.msc-text-link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--msc-fh); font-weight: 600; font-style: italic; color: var(--msc-gold); }
.msc-text-link:hover { gap: .65rem; }

/* ── HERO (DARK FULL-VIEWPORT) ───────────────────── */
.msc-stage { position: relative; background: var(--msc-ink); min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
/* Watermark decoration */
.msc-stage::before {
  content: 'COPY';
  position: absolute; bottom: -5%; right: -5%;
  font-family: var(--msc-fh); font-size: clamp(12rem, 25vw, 28rem);
  font-weight: 700; color: rgba(255,255,255,.03);
  line-height: 1; pointer-events: none; letter-spacing: -.04em;
  white-space: nowrap; z-index: 0;
}
.msc-stage-inner { position: relative; z-index: 1; padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 8vw, 8rem); }
.msc-stage-kicker { font-family: var(--msc-fb); font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--msc-gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: .5rem; }
.msc-stage-kicker::before { content: ''; width: 28px; height: 1.5px; background: var(--msc-gold); }
.msc-stage-h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 700; font-style: italic; color: var(--msc-cream); line-height: 1.03; letter-spacing: -.025em; max-width: 20ch; margin-bottom: 1.5rem; }
.msc-stage-sub { font-size: clamp(1.0rem, 2vw, 1.25rem); color: rgba(255,251,246,.6); max-width: 52ch; margin-bottom: 2.75rem; line-height: 1.8; font-family: var(--msc-fb); font-weight: 400; }
.msc-stage-acts { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.msc-stage-niches { display: flex; flex-wrap: wrap; gap: .5rem; }
.msc-niche-tag { font-family: var(--msc-fb); font-size: .75rem; font-weight: 600; color: rgba(255,251,246,.3); background: rgba(255,251,246,.06); border: 1px solid rgba(255,251,246,.09); border-radius: 100px; padding: .3rem .875rem; }

/* ── TICKER ───────────────────────────────────────── */
.msc-ticker-band { background: var(--msc-gold-ll); border-top: 1.5px solid var(--msc-gold-l); border-bottom: 1.5px solid var(--msc-gold-l); padding: .75rem 0; overflow: hidden; }
.msc-ticker-scroll { display: flex; gap: 1.5rem; width: max-content; animation: msc-drift 30s linear infinite; }
.msc-ticker-scroll:hover { animation-play-state: paused; }
@keyframes msc-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.msc-ticker-word { font-family: var(--msc-fh); font-size: .875rem; font-weight: 400; font-style: italic; color: var(--msc-slate); white-space: nowrap; }
.msc-ticker-dot  { color: var(--msc-gold); flex-shrink: 0; }

/* ── BENTO SERVICE GRID ──────────────────────────── */
.msc-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.msc-tile { background: var(--msc-cream); border: 1.5px solid var(--msc-border); border-radius: var(--msc-r12); padding: 2rem; display: flex; flex-direction: column; gap: .625rem; transition: var(--msc-ease); position: relative; overflow: hidden; }
.msc-tile::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--msc-gold); transition: height .35s ease; }
.msc-tile:hover { border-color: var(--msc-gold); box-shadow: var(--msc-shadow2); transform: translateY(-2px); }
.msc-tile:hover::before { height: 100%; }
.msc-tile-ico { width: 40px; height: 40px; border-radius: var(--msc-r8); background: var(--msc-gold-ll); color: var(--msc-gold); display: flex; align-items: center; justify-content: center; margin-bottom: .375rem; }
.msc-tile-name { font-family: var(--msc-fh); font-size: 1.125rem; font-weight: 600; color: var(--msc-ink); line-height: 1.3; }
.msc-tile-desc { font-size: .875rem; color: var(--msc-muted); line-height: 1.7; flex: 1; }
.msc-tile-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--msc-border); }
.msc-tile-from { font-family: var(--msc-fh); font-size: .9375rem; font-weight: 600; color: var(--msc-ink); }
.msc-tile-arr  { color: var(--msc-gold); transition: transform .2s; }
.msc-tile:hover .msc-tile-arr { transform: translate(3px, -3px); }

/* ── STAGGERED PROCESS ───────────────────────────── */
.msc-thread { display: flex; flex-direction: column; gap: 0; }
.msc-step { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--msc-border); position: relative; }
.msc-step:last-child { border-bottom: none; }
.msc-step:nth-child(even) { padding-left: 60px; }
.msc-step-n { font-family: var(--msc-fh); font-size: 4rem; font-weight: 700; color: var(--msc-gold-l); line-height: 1; padding-top: .25rem; letter-spacing: -.03em; }
.msc-step-ico { display: none; }
.msc-step-head { font-family: var(--msc-fh); font-size: 1.375rem; font-weight: 600; color: var(--msc-ink); margin-bottom: .625rem; }
.msc-step-body { font-size: .9375rem; color: var(--msc-muted); line-height: 1.82; max-width: 58ch; }

/* ── HORIZONTAL SCROLL CASES ─────────────────────── */
.msc-reel-wrap { overflow: hidden; padding: .5rem 0 1.5rem; }
.msc-reel { display: flex; gap: 1.25rem; overflow-x: auto; padding: 0 clamp(1rem, 3vw, 2rem) 1rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.msc-reel::-webkit-scrollbar { height: 4px; }
.msc-reel::-webkit-scrollbar-track { background: var(--msc-parch); }
.msc-reel::-webkit-scrollbar-thumb { background: var(--msc-gold); border-radius: 2px; }
.msc-frame { min-width: 360px; width: 380px; flex-shrink: 0; background: var(--msc-cream); border: 1.5px solid var(--msc-border); border-radius: var(--msc-r12); overflow: hidden; scroll-snap-align: start; display: flex; flex-direction: column; transition: var(--msc-ease); }
.msc-frame:hover { border-color: var(--msc-gold); box-shadow: var(--msc-shadow); }
.msc-frame-img { aspect-ratio: 16/9; background: var(--msc-parch); overflow: hidden; }
.msc-frame-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.msc-frame:hover .msc-frame-img img { transform: scale(1.03); }
.msc-frame-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.msc-frame-niche { font-family: var(--msc-fb); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--msc-gold); margin-bottom: .375rem; }
.msc-frame-client { font-family: var(--msc-fh); font-size: 1.125rem; font-weight: 600; color: var(--msc-ink); margin-bottom: .25rem; }
.msc-frame-proj { font-size: .875rem; color: var(--msc-muted); margin-bottom: .875rem; font-style: italic; }
.msc-frame-result { background: var(--msc-gold-ll); border-left: 3px solid var(--msc-gold); border-radius: var(--msc-r4); padding: .75rem 1rem; margin-top: auto; }
.msc-frame-stat { font-family: var(--msc-fh); font-size: 1.5rem; font-weight: 700; color: var(--msc-gold); line-height: 1; }
.msc-frame-stat-l { font-size: .8125rem; color: var(--msc-muted); margin-top: .2rem; }

/* ── PULL-QUOTE TESTIMONIALS ─────────────────────── */
.msc-voices-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: start; }
.msc-quote-big { background: var(--msc-ink); border-radius: var(--msc-r20); padding: 2.5rem; }
.msc-quote-mark { font-family: var(--msc-fh); font-size: 5rem; color: var(--msc-gold); line-height: .5; margin-bottom: 1.5rem; opacity: .6; }
.msc-quote-text { font-family: var(--msc-fh); font-size: clamp(1.125rem, 2vw, 1.5rem); font-style: italic; color: var(--msc-cream); line-height: 1.65; margin-bottom: 2rem; }
.msc-quote-nm { font-family: var(--msc-fb); font-weight: 700; color: var(--msc-gold); font-size: .9375rem; }
.msc-quote-role { font-size: .875rem; color: rgba(255,251,246,.4); margin-top: .2rem; }
.msc-voices-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.msc-quote-sm { background: var(--msc-parch); border: 1.5px solid var(--msc-border); border-radius: var(--msc-r12); padding: 1.5rem; }
.msc-qsm-stars { display: flex; gap: .2rem; color: var(--msc-gold); margin-bottom: .875rem; }
.msc-qsm-text { font-family: var(--msc-fh); font-size: .9375rem; font-style: italic; color: var(--msc-slate); line-height: 1.72; margin-bottom: 1rem; }
.msc-qsm-nm { font-family: var(--msc-fb); font-weight: 700; font-size: .875rem; color: var(--msc-ink); }
.msc-qsm-role { font-size: .8125rem; color: var(--msc-muted); }

/* ── COMPARISON TABLE PRICING ────────────────────── */
.msc-ledger-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.msc-ledger { width: 100%; border-collapse: collapse; font-family: var(--msc-fb); min-width: 640px; }
.msc-ledger thead tr { border-bottom: 2px solid var(--msc-border); }
.msc-ledger th.msc-feat-col { width: 32%; font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--msc-muted); padding: 1rem 1.25rem 1rem 0; text-align: left; }
.msc-ledger th.msc-pkg-col { width: 22.67%; padding: 1rem 1.25rem; text-align: center; }
.msc-pkg-head-name { font-family: var(--msc-fh); font-size: 1.25rem; font-weight: 600; color: var(--msc-ink); margin-bottom: .2rem; }
.msc-pkg-head-price { font-family: var(--msc-fh); font-size: 2rem; font-weight: 700; color: var(--msc-gold); line-height: 1; }
.msc-pkg-head-tag { font-family: var(--msc-fb); font-size: .8125rem; color: var(--msc-muted); margin-top: .3rem; }
.msc-ledger-pop th.msc-pkg-col { position: relative; }
.msc-pop-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--msc-gold); color: var(--msc-cream); font-family: var(--msc-fb); font-size: .75rem; font-weight: 700; padding: .2rem .75rem; border-radius: 100px 100px 0 0; white-space: nowrap; }
.msc-ledger tbody tr { border-bottom: 1px solid var(--msc-border); }
.msc-ledger tbody tr:hover { background: var(--msc-gold-ll); }
.msc-ledger td.msc-feat-td { padding: .875rem 1.25rem .875rem 0; font-size: .9375rem; color: var(--msc-slate); font-weight: 600; }
.msc-ledger td.msc-val-td { padding: .875rem 1.25rem; text-align: center; font-size: .9375rem; color: var(--msc-slate); }
.msc-val-yes { color: var(--msc-gold); }
.msc-val-no  { color: var(--msc-parch2); }
.msc-ledger tfoot td { padding: 1.5rem 1.25rem 0; text-align: center; }
.msc-ledger tfoot td:first-child { text-align: left; padding-left: 0; }

/* ── GOLD-MARKER FAQ ──────────────────────────────── */
.msc-asks-list { max-width: 780px; }
.msc-ask { border-bottom: 1.5px solid var(--msc-border); }
.msc-ask-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.375rem 0; display: flex; align-items: flex-start; gap: 1.125rem;
  cursor: pointer; transition: color .2s;
}
.msc-ask-btn:hover .msc-ask-q { color: var(--msc-gold); }
.msc-ask-marker { width: 6px; height: 6px; border-radius: 50%; background: var(--msc-gold); flex-shrink: 0; margin-top: .6rem; }
.msc-ask-q { font-family: var(--msc-fh); font-size: 1.0625rem; font-weight: 600; color: var(--msc-ink); flex: 1; line-height: 1.4; transition: color .2s; }
.msc-ask-tog { flex-shrink: 0; color: var(--msc-gold); transition: transform .25s; margin-top: .05rem; }
.msc-ask.msc-ask-open .msc-ask-tog { transform: rotate(45deg); }
.msc-ask-drop { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.msc-ask.msc-ask-open .msc-ask-drop { max-height: 400px; }
.msc-ask-ans { padding: 0 0 1.375rem 1.75rem; font-size: .9375rem; color: var(--msc-muted); line-height: 1.85; }

/* ── SERVICE DETAIL ────────────────────────────────── */
.msc-svc-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; padding: clamp(3rem, 6vw, 5rem) 0; }
.msc-svc-cover { border-radius: var(--msc-r12); overflow: hidden; aspect-ratio: 16/7; background: var(--msc-parch); margin-bottom: 2.5rem; }
.msc-svc-cover img { width: 100%; height: 100%; object-fit: cover; }
.msc-svc-body p { color: var(--msc-muted); margin-bottom: 1.125rem; line-height: 1.85; }
.msc-svc-inc { background: var(--msc-gold-ll); border-radius: var(--msc-r12); padding: 1.5rem; margin-top: 2rem; }
.msc-svc-inc-h { font-family: var(--msc-fb); font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--msc-gold); margin-bottom: 1rem; }
.msc-svc-inc li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9375rem; color: var(--msc-slate); margin-bottom: .5rem; }
.msc-svc-inc li svg { color: var(--msc-gold); flex-shrink: 0; margin-top: .15rem; }
.msc-svc-aside { position: sticky; top: calc(var(--msc-navh) + 1.5rem); }
.msc-svc-card { background: var(--msc-ink); border-radius: var(--msc-r20); padding: 2rem; }
.msc-svc-card-nm { font-family: var(--msc-fh); font-size: 1.0625rem; font-weight: 600; color: var(--msc-cream); font-style: italic; margin-bottom: 1rem; }
.msc-svc-pr-row { display: flex; align-items: baseline; gap: .125rem; margin-bottom: .5rem; }
.msc-svc-pr-from { font-size: .8125rem; color: rgba(255,251,246,.4); margin-right: .25rem; }
.msc-svc-pr-num { font-family: var(--msc-fh); font-size: 2.5rem; font-weight: 700; color: var(--msc-cream); line-height: 1; }
.msc-svc-pr-note { font-size: .8125rem; color: rgba(255,251,246,.4); margin-bottom: 1.25rem; }
.msc-svc-meta { background: rgba(255,251,246,.06); border-radius: var(--msc-r8); padding: .875rem 1rem; margin-bottom: .875rem; }
.msc-svc-ml { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--msc-gold); margin-bottom: .3rem; font-family: var(--msc-fb); }
.msc-svc-mv { font-size: .875rem; color: rgba(255,251,246,.6); line-height: 1.6; }

/* ── PAGE HEAD ────────────────────────────────────── */
.msc-phead { background: var(--msc-ink); padding: clamp(5rem, 10vw, 8rem) 0 clamp(2.5rem, 4vw, 3.5rem); text-align: center; position: relative; overflow: hidden; }
.msc-phead::before { content: ''; position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; border-radius: 50%; background: rgba(200,150,62,.05); pointer-events: none; }
.msc-phead h1 { color: var(--msc-cream); font-style: italic; position: relative; z-index: 1; }
.msc-phead-sub { color: rgba(255,251,246,.5); font-size: clamp(.9375rem, 1.8vw, 1.0625rem); margin: 1rem auto 0; max-width: 54ch; position: relative; z-index: 1; }

/* ── BUILDER ──────────────────────────────────────── */
.msc-builder { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.msc-bld-col { display: flex; flex-direction: column; gap: 3rem; }
.msc-step-lab { font-family: var(--msc-fb); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--msc-gold); margin-bottom: .5rem; }
.msc-step-ttl { font-family: var(--msc-fh); font-size: 1.375rem; font-weight: 600; color: var(--msc-ink); margin-bottom: 1rem; }
.msc-pkg-list { display: flex; flex-direction: column; gap: .75rem; }
.msc-pkg-row { border: 1.5px solid var(--msc-border); border-radius: var(--msc-r8); padding: 1.25rem 1.5rem; cursor: pointer; display: flex; gap: 1rem; align-items: flex-start; background: var(--msc-cream); transition: var(--msc-ease); }
.msc-pkg-row:hover { border-color: var(--msc-gold); }
.msc-pkg-row.msc-sel { border-color: var(--msc-gold); background: var(--msc-gold-ll); }
.msc-ring { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--msc-border); flex-shrink: 0; margin-top: .2rem; display: flex; align-items: center; justify-content: center; transition: var(--msc-ease); }
.msc-pkg-row.msc-sel .msc-ring { border-color: var(--msc-gold); background: var(--msc-gold); }
.msc-ring-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--msc-cream); opacity: 0; }
.msc-pkg-row.msc-sel .msc-ring-dot { opacity: 1; }
.msc-row-nm { font-family: var(--msc-fh); font-size: 1.0625rem; font-weight: 600; color: var(--msc-ink); margin-bottom: .2rem; }
.msc-row-tag { font-size: .8125rem; color: var(--msc-muted); font-style: italic; }
.msc-row-pr { font-family: var(--msc-fh); font-weight: 700; color: var(--msc-gold); white-space: nowrap; flex-shrink: 0; margin-top: .2rem; }
.msc-add-two { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.msc-add-chip { border: 1.5px solid var(--msc-border); border-radius: var(--msc-r8); padding: .875rem 1rem; cursor: pointer; display: flex; gap: .625rem; background: var(--msc-cream); transition: var(--msc-ease); }
.msc-add-chip:hover { border-color: var(--msc-gold); }
.msc-add-chip.msc-add-on { border-color: var(--msc-gold); background: var(--msc-gold-ll); }
.msc-sq { width: 18px; height: 18px; border-radius: 3px; border: 1.5px solid var(--msc-border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: var(--msc-ease); }
.msc-add-chip.msc-add-on .msc-sq { background: var(--msc-gold); border-color: var(--msc-gold); }
.msc-sq-tick { display: none; color: var(--msc-cream); }
.msc-add-chip.msc-add-on .msc-sq-tick { display: block; }
.msc-add-nm { font-family: var(--msc-fb); font-weight: 700; font-size: .9375rem; color: var(--msc-ink); margin-bottom: .2rem; }
.msc-add-pr { font-size: .8125rem; color: var(--msc-muted); }
.msc-hrs-row { display: flex; align-items: center; gap: 1rem; margin-top: .875rem; }
.msc-hrs-slider { flex: 1; accent-color: var(--msc-gold); }
.msc-hrs-val { font-family: var(--msc-fh); font-weight: 700; color: var(--msc-ink); min-width: 56px; font-size: 1.0625rem; }
.msc-sum-panel { background: var(--msc-ink); border-radius: var(--msc-r20); padding: 2rem; position: sticky; top: calc(var(--msc-navh) + 1rem); }
.msc-sum-title { font-family: var(--msc-fh); font-size: 1.125rem; font-weight: 600; font-style: italic; color: var(--msc-cream); margin-bottom: 1.25rem; }
.msc-sum-body  { min-height: 3rem; margin-bottom: 1.25rem; }
.msc-sum-line  { display: flex; justify-content: space-between; gap: 1rem; font-size: .875rem; margin-bottom: .5rem; }
.msc-sum-ln  { color: rgba(255,251,246,.55); }
.msc-sum-lv  { font-weight: 700; color: var(--msc-cream); white-space: nowrap; }
.msc-sum-nil { font-size: .875rem; color: rgba(255,251,246,.3); font-style: italic; }
.msc-sum-rule { border: none; border-top: 1px solid rgba(255,251,246,.1); margin: .875rem 0; }
.msc-sum-tot { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.msc-sum-tl  { font-size: .875rem; color: rgba(255,251,246,.5); }
.msc-sum-tv  { font-family: var(--msc-fh); font-size: 2.25rem; font-weight: 700; color: var(--msc-gold); }
.msc-sum-note { font-size: .75rem; color: rgba(255,251,246,.25); margin-top: .875rem; line-height: 1.6; }

/* ── CHECKOUT ─────────────────────────────────────── */
.msc-chk { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; padding: clamp(2.5rem, 5vw, 4rem) 0; }
.msc-chk-frm { background: var(--msc-cream); border: 1.5px solid var(--msc-border); border-radius: var(--msc-r20); padding: 2rem; }
.msc-chk-frm h3 { font-family: var(--msc-fh); font-size: 1.375rem; color: var(--msc-ink); margin-bottom: 1.5rem; font-style: italic; }
.msc-fld { margin-bottom: 1.125rem; }
.msc-fld label { display: block; font-size: .875rem; font-weight: 700; color: var(--msc-ink); margin-bottom: .375rem; font-family: var(--msc-fb); }
.msc-fld input, .msc-fld select, .msc-fld textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--msc-border); border-radius: var(--msc-r4); font-family: var(--msc-fb); font-size: .9375rem; color: var(--msc-ink); background: var(--msc-parch); transition: border-color .2s; -webkit-appearance: none; }
.msc-fld input:focus, .msc-fld select:focus { outline: none; border-color: var(--msc-gold); }
.msc-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.msc-tos-row { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--msc-muted); margin: 1.25rem 0; }
.msc-tos-row input { width: auto; margin-top: .2rem; }
.msc-tos-row a { color: var(--msc-gold); font-weight: 700; }
.msc-ord-box { background: var(--msc-ink); border-radius: var(--msc-r20); padding: 2rem; position: sticky; top: calc(var(--msc-navh) + 1rem); }
.msc-ord-h { font-family: var(--msc-fh); font-size: 1.0625rem; font-weight: 600; font-style: italic; color: var(--msc-cream); margin-bottom: 1.25rem; }
.msc-ord-ln { display: flex; justify-content: space-between; gap: 1rem; font-size: .9375rem; margin-bottom: .625rem; }
.msc-ord-n { color: rgba(255,251,246,.55); }
.msc-ord-v { font-weight: 700; color: var(--msc-cream); white-space: nowrap; }
.msc-ord-rule { border: none; border-top: 1px solid rgba(255,251,246,.1); margin: .875rem 0; }
.msc-ord-tot { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.msc-ord-tl { font-family: var(--msc-fh); font-style: italic; font-weight: 600; color: rgba(255,251,246,.6); }
.msc-ord-tv { font-family: var(--msc-fh); font-size: 2.25rem; font-weight: 700; color: var(--msc-gold); }
.msc-ord-next { background: rgba(255,251,246,.06); border-radius: var(--msc-r8); padding: .875rem 1rem; }
.msc-ord-next-l { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,251,246,.4); font-family: var(--msc-fb); margin-bottom: .375rem; }
.msc-ord-next-t { font-size: .875rem; color: rgba(255,251,246,.6); line-height: 1.65; }

/* ── CONFIRM ──────────────────────────────────────── */
.msc-confirm { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; }
.msc-confirm-box { max-width: 520px; text-align: center; }
.msc-ico-ok { width: 72px; height: 72px; border-radius: 50%; background: var(--msc-gold-ll); color: var(--msc-gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.msc-ico-no { width: 72px; height: 72px; border-radius: 50%; background: var(--msc-parch); color: var(--msc-muted); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.msc-confirm-box h1 { font-style: italic; margin-bottom: .75rem; }
.msc-confirm-box p  { color: var(--msc-muted); margin-bottom: 1.5rem; }
.msc-ok-steps { background: var(--msc-parch); border-radius: var(--msc-r12); padding: 1.5rem; text-align: left; margin-bottom: 1.75rem; }
.msc-ok-step { display: flex; gap: .875rem; margin-bottom: 1rem; }
.msc-ok-step:last-child { margin-bottom: 0; }
.msc-ok-n { width: 28px; height: 28px; border-radius: 50%; background: var(--msc-gold); color: var(--msc-cream); font-family: var(--msc-fh); font-size: .8125rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.msc-ok-step strong { display: block; color: var(--msc-ink); font-family: var(--msc-fh); margin-bottom: .2rem; }
.msc-ok-step p { font-size: .875rem; color: var(--msc-muted); margin: 0; }
.msc-confirm-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ──────────────────────────────────────── */
.msc-ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
.msc-ct-info h2 { font-style: italic; margin-bottom: 1rem; }
.msc-ct-info p  { color: var(--msc-muted); margin-bottom: 1.5rem; }
.msc-ct-detail  { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1.25rem; }
.msc-ct-ico { width: 38px; height: 38px; border-radius: var(--msc-r8); background: var(--msc-gold-ll); color: var(--msc-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.msc-ct-l { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--msc-gold); margin-bottom: .2rem; font-family: var(--msc-fb); }
.msc-ct-v { color: var(--msc-slate); font-size: .9375rem; }
.msc-ct-v a { color: var(--msc-ink); font-weight: 600; }
.msc-ct-frm { background: var(--msc-parch); border: 1.5px solid var(--msc-border); border-radius: var(--msc-r12); padding: 2rem; }
.msc-ct-frm h3 { font-style: italic; margin-bottom: 1.5rem; }
.msc-ct-ok { background: var(--msc-gold-ll); border: 1.5px solid var(--msc-gold); border-radius: var(--msc-r4); padding: .875rem 1rem; color: var(--msc-gold); font-size: .875rem; display: none; margin-bottom: 1rem; }

/* ── ABOUT ────────────────────────────────────────── */
.msc-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.msc-about-img  { border-radius: var(--msc-r20); overflow: hidden; aspect-ratio: 4/5; background: var(--msc-parch); }
.msc-about-img img { width: 100%; height: 100%; object-fit: cover; }
.msc-about-txt h2 { font-style: italic; margin-bottom: 1rem; }
.msc-about-txt p  { color: var(--msc-muted); margin-bottom: 1rem; }
.msc-val-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.msc-val { background: var(--msc-cream); border: 1.5px solid var(--msc-border); border-radius: var(--msc-r8); padding: 1.125rem; }
.msc-val h4 { font-family: var(--msc-fh); font-size: .9375rem; font-style: italic; color: var(--msc-ink); margin-bottom: .375rem; }
.msc-val p  { font-size: .875rem; color: var(--msc-muted); margin: 0; }

/* ── LEGAL ────────────────────────────────────────── */
.msc-legal { max-width: 820px; margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem); }
.msc-legal h1 { font-style: italic; text-align: center; }
.msc-legal-date { text-align: center; color: var(--msc-muted); font-size: .875rem; margin-bottom: 3rem; }
.msc-legal h2 { font-size: 1.25rem; margin: 2.5rem 0 .875rem; }
.msc-legal h3 { font-size: 1.0625rem; margin: 1.75rem 0 .625rem; }
.msc-legal p  { color: var(--msc-slate); margin-bottom: 1rem; line-height: 1.85; }
.msc-legal ul, .msc-legal ol { margin: .875rem 0 1rem 1.5rem; }
.msc-legal li { color: var(--msc-slate); margin-bottom: .5rem; line-height: 1.75; }
.msc-legal ul li { list-style: disc; }
.msc-legal ol li { list-style: decimal; }

/* ── FOOTER ───────────────────────────────────────── */
.msc-base { background: var(--msc-ink2); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; }
.msc-ft-layout { display: grid; grid-template-columns: 1.75fr 1fr 1fr 1.25fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,251,246,.08); margin-bottom: 2rem; }
.msc-ft-logo { font-family: var(--msc-fh); font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; font-style: italic; color: var(--msc-cream); margin-bottom: .875rem; }
.msc-ft-logo span { color: var(--msc-gold); font-style: normal; }
.msc-ft-tagline { font-family: var(--msc-fh); font-size: .9375rem; color: rgba(255,251,246,.35); line-height: 1.65; font-style: italic; max-width: 26ch; margin-bottom: 1.25rem; }
.msc-ft-soc { display: flex; gap: .5rem; margin-bottom: .875rem; }
.msc-ft-soc-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,251,246,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,251,246,.35); transition: var(--msc-ease); }
.msc-ft-soc-btn:hover { border-color: var(--msc-gold); color: var(--msc-gold); }
.msc-ft-disc { font-size: .75rem; color: rgba(255,251,246,.2); line-height: 1.65; }
.msc-ft-col-h { font-family: var(--msc-fb); font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,251,246,.35); margin-bottom: 1rem; }
.msc-ft-links { display: flex; flex-direction: column; gap: .5rem; }
.msc-ft-lk { font-size: .875rem; color: rgba(255,251,246,.45); transition: color .2s; }
.msc-ft-lk:hover { color: var(--msc-gold); }
.msc-ft-cn { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: rgba(255,251,246,.45); margin-bottom: .625rem; }
.msc-ft-cn svg { color: var(--msc-gold); flex-shrink: 0; margin-top: .2rem; }
.msc-ft-cn a { color: rgba(255,251,246,.65); transition: color .2s; }
.msc-ft-cn a:hover { color: var(--msc-gold); }
.msc-ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.msc-ft-copy { font-size: .8125rem; color: rgba(255,251,246,.2); }
.msc-ft-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.msc-ft-leg { font-size: .8125rem; color: rgba(255,251,246,.25); transition: color .2s; }
.msc-ft-leg:hover { color: var(--msc-gold); }

/* ── CHAT ─────────────────────────────────────────── */
.msc-chat-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 600; width: 52px; height: 52px; border-radius: 50%; background: var(--msc-gold); color: var(--msc-cream); border: none; box-shadow: 0 4px 20px rgba(200,150,62,.4); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.msc-chat-btn:hover { transform: scale(1.08); }
.msc-chat-box { position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 600; width: 320px; background: var(--msc-cream); border: 1.5px solid var(--msc-border); border-radius: var(--msc-r20); box-shadow: var(--msc-shadow2); overflow: hidden; display: none; flex-direction: column; }
.msc-chat-box.msc-chat-open { display: flex; }
.msc-chat-hdr { background: var(--msc-ink); padding: .875rem 1.125rem; display: flex; justify-content: space-between; align-items: center; }
.msc-chat-nm { font-family: var(--msc-fh); font-size: 1.0625rem; font-weight: 600; font-style: italic; color: var(--msc-cream); }
.msc-chat-st { font-size: .75rem; color: rgba(255,251,246,.4); }
.msc-chat-x { background: none; border: none; color: rgba(255,251,246,.5); cursor: pointer; }
.msc-chat-feed { padding: 1rem; min-height: 120px; max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: .625rem; }
.msc-chat-msg { max-width: 86%; padding: .5rem .875rem; border-radius: 10px; font-size: .875rem; line-height: 1.55; }
.msc-them { background: var(--msc-parch); color: var(--msc-slate); align-self: flex-start; border-bottom-left-radius: 3px; }
.msc-me   { background: var(--msc-gold); color: var(--msc-cream); align-self: flex-end; border-bottom-right-radius: 3px; }
.msc-chat-in { display: flex; gap: .5rem; padding: .75rem; border-top: 1px solid var(--msc-border); }
.msc-chat-txt { flex: 1; border: 1.5px solid var(--msc-border); border-radius: var(--msc-r8); padding: .5rem .75rem; font-family: var(--msc-fb); font-size: .875rem; background: var(--msc-parch); }
.msc-chat-txt:focus { outline: none; border-color: var(--msc-gold); }
.msc-chat-go { background: var(--msc-gold); color: var(--msc-cream); border: none; border-radius: var(--msc-r8); padding: .5rem .875rem; transition: background .2s; }
.msc-chat-go:hover { background: var(--msc-gold2); }

/* ── COOKIE ───────────────────────────────────────── */
.msc-cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: var(--msc-ink); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; transform: translateY(100%); transition: transform .4s ease; }
.msc-cookie.msc-ck-show { transform: none; }
.msc-ck-txt { font-size: .875rem; color: rgba(255,251,246,.6); max-width: 58ch; }
.msc-ck-txt a { color: var(--msc-gold); font-weight: 700; }
.msc-ck-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.msc-ck-yes { padding: .5rem 1.25rem; background: var(--msc-gold); color: var(--msc-cream); border: none; border-radius: var(--msc-r4); cursor: pointer; font-family: var(--msc-fb); font-size: .875rem; font-weight: 700; }
.msc-ck-no  { padding: .5rem 1.25rem; background: transparent; color: rgba(255,251,246,.45); border: 1px solid rgba(255,251,246,.18); border-radius: var(--msc-r4); cursor: pointer; font-family: var(--msc-fb); font-size: .875rem; transition: color .2s; }
.msc-ck-no:hover { color: rgba(255,251,246,.8); }

/* ── REVEAL ───────────────────────────────────────── */
.msc-reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.msc-visible { opacity: 1; transform: none; }

/* ── CTA BAND ─────────────────────────────────────── */
.msc-cta-dark { background: var(--msc-ink); padding: clamp(3.5rem, 7vw, 6rem) 0; text-align: center; }
.msc-cta-dark h2 { color: var(--msc-cream); font-style: italic; margin-bottom: 1rem; }
.msc-cta-dark p  { color: rgba(255,251,246,.5); font-size: 1.125rem; margin-bottom: 2rem; margin-left: auto; margin-right: auto; max-width: 50ch; }
.msc-cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── SEC HEAD ─────────────────────────────────────── */
.msc-sh { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.msc-sh h2 { font-style: italic; margin-bottom: .625rem; }
.msc-sh p  { color: var(--msc-muted); font-size: 1.0625rem; }
.msc-sh-center { text-align: center; }
.msc-sh-center p { margin-left: auto; margin-right: auto; }
.msc-sh-split { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .msc-bento { grid-template-columns: 1fr 1fr; }
  .msc-voices-layout { grid-template-columns: 1fr; }
  .msc-builder { grid-template-columns: 1fr; }
  .msc-sum-panel { position: static; }
  .msc-chk { grid-template-columns: 1fr; }
  .msc-ord-box { position: static; }
  .msc-about-grid { grid-template-columns: 1fr; }
  .msc-ct-grid { grid-template-columns: 1fr; }
  .msc-svc-layout { grid-template-columns: 1fr; }
  .msc-svc-aside { position: static; }
  .msc-ft-layout { grid-template-columns: 1fr 1fr; }
  .msc-step:nth-child(even) { padding-left: 0; }
}
@media (max-width: 640px) {
  .msc-nav-links { display: none; }
  .msc-ham { display: flex; }
  .msc-nav-end .msc-btn-gold { display: none; }
  .msc-bento { grid-template-columns: 1fr; }
  .msc-add-two { grid-template-columns: 1fr; }
  .msc-two-col { grid-template-columns: 1fr; }
  .msc-val-grid { grid-template-columns: 1fr; }
  .msc-ft-layout { grid-template-columns: 1fr; }
  .msc-ft-bottom { flex-direction: column; }
  .msc-chat-box { width: calc(100vw - 2rem); right: 1rem; }
  .msc-frame { min-width: 300px; width: 300px; }
  .msc-stage-niches { display: none; }
}
