:root {
  --bg: #0a090b;
  --bg-2: #121014;
  --paper: #17141a;
  --ink: #f3ece6;
  --muted: #b7a4a8;
  --faint: rgba(243, 236, 230, 0.55);
  --blush: #e29aa4;
  --wine: #8e3946;
  --gold: #c9ae8a;
  --line: rgba(243, 236, 230, 0.1);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "PingFang SC", "Noto Sans SC", system-ui, sans-serif;
  --radius: 14px;
  --header-h: 64px;
  --rail-h: 0px;
  --pad: clamp(18px, 3vw, 36px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); color: var(--ink); }
body.mx {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }

.mx-rail { display: none; }

.mx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 0 var(--pad);
  background: rgba(10, 9, 11, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.mx-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.mx-brand img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}
.mx-brand span { font-size: 16px; letter-spacing: -0.01em; }
.mx-brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.mx-18 {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 6px;
  margin-left: 4px;
  margin-right: auto;
  border: 1px solid rgba(226, 154, 164, 0.45);
  border-radius: 4px;
  color: var(--blush);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.mx-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--faint);
  margin-left: auto;
}
.mx-nav a:hover,
.mx-nav a.is-on { color: var(--ink); }
.mx-nav .is-soon small {
  margin-left: 5px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.mx-lang {
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 0 4px;
  flex-shrink: 0;
}
.mx-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.mx-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.mx-btn,
.mx-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.mx-btn { background: var(--ink); color: #141014; }
.mx-btn:hover { transform: translateY(-1px); background: #fff; }
.mx-btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.mx-btn-ghost:hover { border-color: var(--blush); color: var(--blush); }
.mx-header .mx-btn { height: 36px; padding: 0 14px; font-size: 13px; }

.mx-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) 1.15fr;
  gap: 0;
  height: min(820px, calc(100svh - var(--header-h)));
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}
.mx-split-copy {
  padding: clamp(28px, 5vw, 64px) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mx-split-still {
  position: relative;
  min-height: 420px;
  margin: 12px 12px 12px 0;
  overflow: hidden;
  border-radius: 4px;
}
.mx-split-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.mx-split-still figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.mx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 14px;
}
.mx-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.mx-split h1,
.mx-page h1,
.mx-article h1 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 14px;
}
.mx-split h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  max-width: 12ch;
}
.mx-split .mx-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--blush);
  margin: -6px 0 16px;
  font-weight: 500;
}
.mx-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 22px;
}
.mx-zh-line {
  color: var(--faint);
  font-size: 14px;
  line-height: 1.7;
  max-width: 46ch;
  margin: -12px 0 22px;
}
.mx-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.mx-composer {
  margin: 8px 0 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 10px 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}
.mx-composer textarea {
  width: 100%;
  border: 0;
  background: transparent;
  resize: none;
  outline: none;
  min-height: 64px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.mx-composer textarea::placeholder { color: var(--faint); }
.mx-composer .mx-btn { height: 40px; }
.mx-composer.is-hidden,
.mx-access.is-hidden,
[data-needs-access].is-hidden,
[data-guest-only].is-hidden { display: none !important; }

.mx-access {
  margin: 8px 0 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.mx-access h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.mx-access form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.mx-access input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #100e12;
  padding: 0 14px;
  outline: none;
}
.mx-access input:focus { border-color: var(--gold); }
.mx-access .mx-btn { height: 44px; min-width: 96px; }
.mx-access .or {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 14px 0;
}
.mx-access .or::before,
.mx-access .or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.mx-access .msg {
  font-size: 13px;
  margin: 10px 0 0;
  color: var(--gold);
  min-height: 1.2em;
}
.mx-access .msg.is-err { color: #e08b8b; }

@media (max-width: 960px) {
  .mx-access form { grid-template-columns: 1fr; }
}

.mx-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.mx-meta b { color: var(--ink); font-weight: 600; }

.mx-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}
.mx-strip div {
  padding: 18px var(--pad) 18px 20px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.mx-strip div:last-child { border-right: 0; }
.mx-strip b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.mx-section {
  width: min(1180px, calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: 72px 0;
}
.mx-section h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.08;
}
.mx-section .mx-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 62ch;
  margin: 0 0 32px;
}
.mx-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
}
.mx-head-row .mx-intro { margin: 8px 0 0; }
.mx-head-row a { color: var(--gold); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

.mx-film {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 10px;
}
.mx-film figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #1a1518;
}
.mx-film figure:first-child { grid-row: 1 / 3; }
.mx-film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mx-film figure:hover img { transform: scale(1.04); }
.mx-film figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.mx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mx-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
}
.mx-card img { width: 100%; height: 180px; object-fit: cover; }
.mx-card .body { padding: 18px 18px 20px; }
.mx-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; }
.mx-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.mx-card .meta { display: block; color: var(--gold); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }

.mx-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mx-duo article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}
.mx-duo h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
}
.mx-duo ul { margin: 0; padding: 0; list-style: none; }
.mx-duo li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.mx-duo li:first-child { border-top: 0; }
.mx-duo.featured { border-color: rgba(226, 154, 164, 0.35); }
.mx-duo .tag {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mx-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: step;
}
.mx-steps article {
  padding: 22px;
  border-top: 1px solid var(--gold);
  background: transparent;
}
.mx-steps article::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 11px;
  margin-bottom: 12px;
}
.mx-steps h3 { margin: 0 0 8px; font-size: 22px; font-family: var(--serif); font-weight: 500; }
.mx-steps p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.mx-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.mx-faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.mx-faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
}
.mx-faq summary::-webkit-details-marker { display: none; }
.mx-faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.mx-cta-band {
  width: min(1180px, calc(100% - 2 * var(--pad)));
  margin: 0 auto 72px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--paper);
}
.mx-cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 8px;
  font-weight: 500;
}
.mx-cta-band p { color: var(--muted); margin: 0; }

.mx-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 40px var(--pad) 56px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.mx-footer strong { color: var(--ink); display: block; margin-bottom: 8px; font-size: 14px; }
.mx-footer p { margin: 0; max-width: 42ch; }
.mx-footer nav, .mx-footer .col { display: flex; flex-direction: column; gap: 8px; }
.mx-footer a:hover { color: var(--ink); }

.mx-page {
  width: min(860px, calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: 48px 0 96px;
}
.mx-page h1 { font-size: clamp(36px, 5vw, 58px); }
.mx-page h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 32px 0 10px;
}
.mx-page p, .mx-page li { color: var(--muted); line-height: 1.75; font-size: 16px; }
.mx-page a.inline { color: var(--blush); font-weight: 600; }

.mx-article {
  width: min(720px, calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: 40px 0 88px;
}
.mx-article .mx-kicker { margin-bottom: 10px; }
.mx-article h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 12px; }
.mx-article .byline {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 0 0 28px;
}
.mx-article p, .mx-article li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.mx-article h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 32px 0 10px;
  color: var(--ink);
}
.mx-article a { color: var(--blush); font-weight: 600; }
.mx-article figure { margin: 28px 0; }
.mx-article figure img { width: 100%; border-radius: 8px; }
.mx-article figcaption { color: var(--faint); font-size: 13px; margin-top: 8px; }
.mx-related {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.mx-related h2 { font-size: 22px; }
.mx-related a { display: block; margin: 8px 0; }

.mx-soon {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 48px 20px;
}
.mx-soon img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mx-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 11, 0.72);
}
.mx-soon-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(18, 16, 20, 0.88);
  backdrop-filter: blur(12px);
  text-align: center;
}
.mx-soon-card .tag {
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
}
.mx-soon-card h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  margin: 0 0 12px;
}
.mx-soon-card p { color: var(--muted); line-height: 1.7; margin: 0 0 24px; }
.mx-soon-card .mx-actions { justify-content: center; }
.mx-notice {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--gold);
  font-size: 13px;
}

.mx-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.mx-compare th, .mx-compare td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.mx-compare th {
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mx-zh { color: var(--faint); font-size: 15px; line-height: 1.8; max-width: 62ch; }

@media (max-width: 960px) {
  .mx-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 9, 11, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--pad);
    gap: 18px;
    font-size: 20px;
  }
  .mx-nav.is-open { display: flex !important; }
  .mx-nav:not(.is-open) { display: none !important; }
  .mx-burger { display: flex; flex-shrink: 0; }
  .mx-header .mx-btn { display: none; }
  .mx-split {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .mx-split-still {
    margin: 0;
    min-height: 0;
    height: 240px;
    border-radius: 0;
    order: -1;
  }
  .mx-split-still figcaption { font-size: 10px; }
  .mx-split h1 { max-width: none; font-size: clamp(28px, 8.4vw, 38px); overflow-wrap: anywhere; }
  .mx-composer { grid-template-columns: 1fr; }
  .mx-strip, .mx-grid, .mx-film, .mx-steps, .mx-duo, .mx-faq, .mx-footer, .mx-cta-band {
    grid-template-columns: 1fr;
  }
  .mx-film { grid-template-rows: none; }
  .mx-film figure:first-child { grid-row: auto; min-height: 240px; }
  .mx-cta-band { flex-direction: column; align-items: flex-start; padding: 24px; margin-bottom: 48px; }
  .mx-section { padding: 48px 0; }
}
