@font-face {
  font-family: Geist;
  src: url("/assets/fonts/geist-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Geist;
  src: url("/assets/fonts/geist-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Geist;
  src: url("/assets/fonts/geist-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Geist;
  src: url("/assets/fonts/geist-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #08090d;
  --panel: #14161d;
  --ink: #f5f2eb;
  --muted: #9a9891;
  --brand-pink: #e7226c;
  --brand-mid: #a4197c;
  --brand-deep: #590e8e;
  --brand-gradient: linear-gradient(135deg, var(--brand-pink), var(--brand-mid) 52%, var(--brand-deep));
  --tube-line: linear-gradient(90deg, #9d175f, #e44f91 48%, #7a237f);
  --tube-glow: 0 0 3px rgba(228,79,145,.6), 0 -2px 9px rgba(164,25,124,.35);
  --brand-soft: rgba(231,34,108,.13);
  --blue: #ee79ad;
  --gold: #ef8eba;
  --radius: 24px;
  --radius-sm: 14px;
  --font-display: "SF Pro Rounded", ui-rounded, "Hiragino Maru Gothic ProN", Geist, system-ui, sans-serif;
  --font-body: Geist, ui-sans-serif, system-ui, sans-serif;
  --space-1: .55rem;
  --space-2: .85rem;
  --space-3: 1.15rem;
  --line: rgba(255,255,255,.09);
}
* { box-sizing: border-box; }
::selection { background: #6f2dbd; color: #fff; }
::-moz-selection { background: #6f2dbd; color: #fff; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 520px at 8% -8%, rgba(231,34,108,.13), transparent 52%),
    radial-gradient(900px 460px at 92% 0%, rgba(89,14,142,.13), transparent 45%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: var(--ink);
  font: 16.5px/1.55 var(--font-body);
  letter-spacing: -.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  white-space: normal;
  background: #fff;
  color: #111;
  padding: .4rem .7rem;
}

.top {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: .95rem 1.5rem;
  border-bottom: 1px solid transparent;
  position: sticky;
  inset-block-start: 0;
  margin: 0;
  background: transparent;
  backdrop-filter: blur(0);
  z-index: 8;
  transition: background-color .24s ease, border-color .24s ease, backdrop-filter .24s ease;
}
.top.is-scrolled,
body.nav-open .top {
  border-bottom-color: var(--line);
  background: rgba(8,9,13,.86);
  backdrop-filter: blur(18px) saturate(1.15);
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex: 1 1 0;
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 1.05rem;
}
.logo img, .logo video { width: 30px; height: 30px; border-radius: 9px; object-fit: cover; }
.top-nav { display: flex; justify-content: center; gap: 1.7rem; flex: 0 0 auto; }
.top-nav a { position: relative; color: var(--muted); font-size: .9rem; font-weight: 500; }
.top-nav a.on { color: var(--ink); }
.top-nav a.on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.52rem;
  height: 1px;
  border-radius: 999px;
  background: var(--tube-line);
  box-shadow: var(--tube-glow);
}
.top-nav a.on::before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -.5rem;
  height: 22px;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(231,34,108,.34) 0,
    rgba(164,25,124,.17) 38%,
    transparent 72%
  );
  filter: blur(4px);
  opacity: .8;
  pointer-events: none;
}
.top-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .7rem;
  flex: 1 1 0;
  min-width: 0;
}
.menu-btn {
  display: none;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1rem;
  font: inherit;
  cursor: pointer;
}
.btn {
  background: var(--ink);
  color: #111;
  min-height: 46px;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; opacity: .92; }
.top .mac-btn { background:var(--brand-gradient); color:#fff; box-shadow:0 10px 30px rgba(164,25,124,.25); }
.brand-btn { background: var(--brand-gradient); color: #fff; box-shadow: 0 12px 34px rgba(164,25,124,.28); }
.mac-btn { display:inline-flex; align-items:center; gap:.62rem; }
.apple-mark {
  display: inline-block;
  flex: 0 0 1.1em;
  width: 1.1em;
  height: 1.1em;
  min-width: 1.1em;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: transparent;
  font-size: 1em;
  line-height: 0;
  vertical-align: -0.14em;
  background-color: #fff;
  -webkit-mask: url('/assets/apple-mark.png') center / contain no-repeat;
  mask: url('/assets/apple-mark.png') center / contain no-repeat;
}
.mac-btn .apple-mark,
.brand-btn .apple-mark,
.store-icon .apple-mark {
  background-color: #fff;
}
.store-icon .apple-mark {
  width: 1.15em;
  height: 1.15em;
  min-width: 1.15em;
  font-size: 1.55rem;
  vertical-align: 0;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.is-main .wrap { max-width: 1180px; }

.pills { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.2rem 0 0; }
.pill {
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: .38rem .85rem;
}

.hero-stage {
  position: relative;
  margin: 1.8rem 0 2.8rem;
}
.hero-stage .hero-main {
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.hero-stage .float {
  position: absolute;
  width: min(280px, 32%);
  right: -1.5%;
  bottom: -10%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}

.rail {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  margin: 0 0 2.2rem;
  color: var(--muted);
  font-size: .84rem;
  letter-spacing: .01em;
}
.rail span { color: var(--gold); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 0 2.8rem;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
}
.stat strong { display: block; font-size: 1.15rem; letter-spacing: -.03em; }
.stat span { color: var(--muted); font-size: .88rem; }

.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin: 1.4rem 0 2.4rem;
}
.bento a {
  color: inherit;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bento a:hover { text-decoration: none; outline: 1px solid rgba(139,180,255,.4); }
.bento img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.bento .wide { grid-column: 1; grid-row: 1 / span 2; }
.bento .wide img { aspect-ratio: 3/4; min-height: 100%; }
.bento div { padding: 1rem 1.05rem 1.15rem; }
.bento h3 { margin: 0 0 .3rem; }
.bento p { margin: 0; color: var(--muted); font-size: .9rem; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.4rem 0;
}
.tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.05rem 1.05rem 1.15rem;
}
.tile h3 { margin: 0 0 .3rem; font-size: 1rem; }
.tile p { margin: 0; color: var(--muted); font-size: .88rem; }

.cta {
  margin-top: 3.4rem;
  padding: 2.1rem 1.7rem;
  border-radius: 24px;
  background:
    radial-gradient(600px 180px at 10% 0%, rgba(228,195,138,.12), transparent 50%),
    linear-gradient(180deg, #1c1e27, #12141a);
  border: 1px solid var(--line);
}
.wrap { max-width: 1100px; margin: 0 auto; padding: 2.6rem 1.5rem 5.5rem; }
.wrap-guide {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2.8rem;
}
/* Content is first in the DOM (mobile-first). Pin the nav to the left on desktop. */
.wrap-guide > .side {
  grid-column: 1;
  grid-row: 1;
}
.wrap-guide > .doc {
  grid-column: 2;
  grid-row: 1;
}

.side {
  font-size: .9rem;
  align-self: start;
  position: sticky;
  top: 4.4rem;
  padding-right: .2rem;
}
.side a { display: block; color: var(--muted); padding: .34rem .2rem .34rem .75rem; border-radius: 0; }
.side a.on {
  color: var(--ink);
  font-weight: 650;
  box-shadow:
    inset 1px 0 0 rgba(255, 214, 236, .7),
    inset 2px 0 0 var(--brand-pink);
}
.side a:hover { color: var(--ink); text-decoration: none; }
.side-kicker { text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; color: #ef73a7; margin: 0 0 .5rem; }
.side-home { padding-left: .15rem !important; margin-bottom: .35rem; }
.side-acc { border-bottom: 1px solid var(--line); }
.side-acc > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .7rem 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 650;
}
.side-acc > summary::-webkit-details-marker { display: none; }
.side-acc > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .15s ease;
  flex-shrink: 0;
}
.side-acc[open] > summary::after { transform: rotate(-135deg); }
.side-acc[open] > summary { color: #f18eb8; }

.doc h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.4rem);
  letter-spacing: -.038em;
  line-height: 1.04;
  margin: 0 0 .85rem;
}
.doc h1,.doc h2,.doc h3 {
  font-family: var(--font-display);
  font-weight: 600;
}
.doc h2 { font-size: 1.5rem; line-height:1.12; letter-spacing: -.028em; margin-top: 2.7rem; }
.doc h3 { font-size: 1.12rem; margin: 0 0 .4rem; letter-spacing:-.02em; }
.doc p.lead { font-size: 1.18rem; line-height: 1.5; color: #cfcbc0; max-width: 38rem; }
.doc p, .doc li { color: #d6d3ca; line-height:1.62; }
.doc ol { padding-left: 1.2rem; }
.doc ol li { margin: .55rem 0; }
.kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-family: var(--font-display);
  color: #f07baa;
  font-weight: 600;
  margin: 0 0 .7rem;
}

.hero-actions { display: flex; align-items:center; gap: .85rem; flex-wrap: wrap; margin: 1.5rem 0 1.85rem; }
.shot {
  margin: 1.4rem 0 1.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.shot > img, .shot > video, .shot > iframe, .shot > .mf-video-frame { display: block; width: 100%; }
.shot iframe, iframe.media-embed { aspect-ratio: 16 / 9; height: auto; border: 0; background: #000; }
.shot video, .shot .mf-media-video { height: auto; background: transparent; }
.shot figcaption:empty { display: none; }
.shot figcaption { padding: .75rem 1rem; color: var(--muted); font-size: .85rem; background: var(--panel); }

.mf-video-frame { position: relative; display: block; width: 100%; overflow: hidden; }
.mf-video-frame > .mf-video-fallback,
.mf-video-frame > .mf-media-video { display: block; width: 100%; }
.mf-video-frame > .mf-video-fallback {
  position: relative;
  z-index: 0;
  height: auto;
  vertical-align: top;
  transition: opacity .28s ease;
}
.mf-video-frame > .mf-media-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  background: transparent;
  transition: opacity .28s ease;
}
.mf-video-frame.is-ready > .mf-media-video,
.mf-video-frame > .mf-media-video.is-ready { opacity: 1; }
/* Keep the poster painted under the video. Hiding it caused blank-frame blinks
   when playback paused, resumed, or briefly lost a decoded frame. */
.mf-video-frame.is-ready > .mf-video-fallback {
  pointer-events: none;
}
.mf-sound-toggle {
  position: absolute;
  right: .7rem;
  bottom: .7rem;
  z-index: 3;
  margin: 0;
  padding: .42rem .78rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(12,13,18,.82);
  color: #fff;
  font: 700 .72rem/1 inherit;
  letter-spacing: .02em;
  cursor: pointer;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, background .18s ease, border-color .18s ease;
}
.mf-video-frame.is-ready > .mf-sound-toggle,
body.mf-editing .mf-sound-toggle {
  opacity: 1;
  pointer-events: auto;
}
.mf-sound-toggle:hover { border-color: rgba(239,90,154,.55); background: rgba(20,8,16,.9); }
.mf-sound-toggle.is-on {
  border-color: rgba(231,34,108,.65);
  background: rgba(231,34,108,.28);
  color: #ffd0e2;
}

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.15rem; margin: 1.6rem 0; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
}
a.card { color: inherit; }
a.card:hover { text-decoration: none; outline: 1px solid rgba(255,255,255,.16); transform:translateY(-2px); }
.card { transition:transform .2s ease, border-color .2s ease, background .2s ease; }
.card img, .card video, .card iframe, .card .mf-video-frame { aspect-ratio: 16/10; object-fit: cover; width: 100%; display: block; border: 0; }
.card .mf-video-frame > .mf-video-fallback,
.card .mf-video-frame > .mf-media-video { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.15rem 1.2rem 1.3rem; }
.card p { margin: 0; color: var(--muted); font-size: .94rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; margin: 1.7rem 0; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; }
.step span { color: #ef79aa; font-size: .76rem; font-weight: 700; letter-spacing: .08em; }

.row { display: grid; grid-template-columns: 1fr 1.15fr; gap: 1.7rem; align-items: center; margin: 2.6rem 0; }
.row.reverse { grid-template-columns: 1.15fr 1fr; }
.row .shot { margin: 0; }

.cta p:last-child { margin-bottom: 0; }

.pager {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.pager a { color: var(--ink); }
.pager span { display: block; color: var(--muted); font-size: .78rem; }
.pager-next { text-align: right; }

.foot {
  border-top: 1px solid var(--line);
  padding: 2.6rem 1.5rem;
  color: var(--muted);
  font-size: .9rem;
  text-align: left;
}
.foot a { color: var(--muted); }
.foot a:hover { color: var(--ink); }
.foot-inner { width:min(1180px,100%); margin:0 auto; display:grid; grid-template-columns:minmax(260px,1.4fr) minmax(260px,1fr) auto; gap:clamp(2rem,6vw,5rem); align-items:start; }
.foot-brand p { max-width:31rem; margin:.75rem 0 0; }
.foot-logo { display:inline-flex; align-items:center; gap:.7rem; color:var(--ink)!important; font-family:var(--font-display); font-size:1.05rem; }
.foot-logo:hover { text-decoration:none; }
.foot-logo img { width:34px; height:34px; border-radius:10px; }
.foot-copyright { font-size:.78rem; color:#77756f; }
.foot-links { display:grid; grid-template-columns:repeat(2,minmax(90px,1fr)); gap:.55rem 1.5rem; }
.foot-social { display:flex; gap:.55rem; }
.foot-social a { display:grid; place-items:center; width:38px; height:38px; border:1px solid var(--line); border-radius:50%; background:rgba(255,255,255,.025); transition:transform .2s ease,border-color .2s ease,color .2s ease; }
.foot-social a:hover { transform:translateY(-2px); border-color:rgba(239,90,154,.38); color:#ef8ab5; }
.foot-social svg { width:16px; height:16px; fill:currentColor; }
.doc table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.doc th, .doc td { border-bottom: 1px solid var(--line); padding: .55rem .4rem; text-align: left; vertical-align: top; }
.doc th { color: var(--muted); font-weight: 600; }

body.is-legal .doc {
  max-width: 42rem;
}
body.is-legal .doc h1 { font-size: clamp(1.8rem, 3vw, 2.35rem); }
body.is-legal .doc h2 { font-size: 1.12rem; margin-top: 1.9rem; }
body.is-legal .legal-meta { color: var(--muted); font-size: .88rem; margin: 0 0 1.2rem; }
body.is-legal .doc table { font-size: .88rem; }
.guide-map h2 { margin-top: 0; }
.guide-map > p { max-width: 36rem; }
.guide-map { margin-top:clamp(4rem,8vw,7rem); padding-top:clamp(3rem,6vw,5rem); border-top:1px solid var(--line); }
.guide-map-heading { display:grid; grid-template-columns:minmax(0,1fr) minmax(260px,.55fr); gap:2rem; align-items:end; margin-bottom:1.4rem; }
.guide-map-heading h2 { margin:.2rem 0 .55rem; }
.guide-map-heading p { margin:0; color:var(--muted); }
.guide-search { position:relative; display:block; }
.guide-search > span { display:block; margin-bottom:.45rem; color:var(--muted); font-size:.76rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; }
.guide-search input { width:100%; min-height:48px; padding:.75rem 2.7rem .75rem 1rem; border:1px solid var(--line); border-radius:13px; outline:0; background:#111219; color:var(--ink); font:inherit; transition:border-color .2s ease,box-shadow .2s ease,background .2s ease; }
.guide-search input:focus { border-color:rgba(239,90,154,.68); background:#15151d; box-shadow:0 0 0 4px rgba(231,34,108,.1),0 12px 35px rgba(0,0,0,.22); }
.guide-search i { position:absolute; right:1rem; bottom:16px; width:14px; height:14px; border:1.5px solid var(--muted); border-radius:50%; pointer-events:none; }
.guide-search i::after { content:""; position:absolute; width:6px; height:1.5px; right:-4px; bottom:-2px; background:var(--muted); transform:rotate(45deg); border-radius:9px; }
.guide-search-status { min-height:1.3rem; margin:0 0 .65rem; color:#ef8ab5; font-size:.82rem; }
.map-acc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: .75rem 0;
  overflow: hidden;
}
.map-acc > summary {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 12px;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: .7rem;
  transition:background .22s ease,padding .22s ease;
}
.map-acc > summary:hover { background:rgba(255,255,255,.025); padding-left:.9rem; }
.map-acc > summary::-webkit-details-marker { display: none; }
.map-acc > summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .15s ease;
}
.map-acc > summary img,
.map-acc > summary video,
.map-acc > summary iframe,
.map-acc > summary .mf-video-frame {
  width: 120px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  border: 0;
}
.map-acc > summary .mf-video-frame > .mf-video-fallback,
.map-acc > summary .mf-video-frame > .mf-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.map-acc > summary strong { display: block; font-size: 1.05rem; }
.map-acc > summary em { display: block; font-style: normal; color: var(--muted); font-size: .9rem; margin-top: .15rem; }
.map-acc[open] { outline: 1px solid rgba(255,255,255,.16); background:linear-gradient(135deg,rgba(255,255,255,.04),rgba(255,255,255,.02)),var(--panel); }
.map-acc[open] > summary::after { transform: rotate(-135deg); }
.map-acc ul {
  margin: 0;
  padding: 0 1rem 1rem 1.05rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .2rem .8rem;
}
.map-acc li { margin: 0; }
.map-acc a { color: var(--muted); }
.map-acc a:hover { color: var(--ink); }
.map-acc[hidden] { display:none; }

.guide-start { display:grid; grid-template-columns:minmax(240px,.7fr) minmax(0,1.3fr); gap:clamp(2rem,6vw,5rem); align-items:start; margin:clamp(2.5rem,6vw,5rem) 0; padding:clamp(1.5rem,4vw,2.6rem); border:1px solid var(--line); border-radius:24px; background:radial-gradient(circle at 0 0,rgba(231,34,108,.12),transparent 38%),linear-gradient(145deg,#15151d,#101117); box-shadow:0 30px 80px rgba(0,0,0,.24); }
.guide-start h2 { margin:.2rem 0 .75rem; font-size:clamp(1.8rem,3vw,2.55rem); }
.guide-start > div > p:not(.kicker) { color:var(--muted); }
.guide-start > div > .btn { margin-top:1.1rem; }
.guide-start-steps { display:grid; gap:.45rem; margin:0; padding:0; list-style:none; counter-reset:none; }
.doc ol.guide-start-steps { padding-left:0; margin:0; list-style:none; }
.doc ol.guide-start-steps > li { margin:0; padding:0; list-style:none; }
.guide-start-steps a { display:grid; grid-template-columns:38px minmax(90px,.55fr) minmax(0,1fr); gap:.8rem; align-items:center; padding:.78rem .9rem; border:1px solid transparent; border-radius:12px; color:inherit; background:rgba(255,255,255,.025); transition:transform .2s ease,border-color .2s ease,background .2s ease; }
.guide-start-steps a:hover,.guide-start-steps a:focus-visible { text-decoration:none; transform:translateX(6px); border-color:rgba(239,90,154,.28); background:rgba(231,34,108,.07); }
.guide-start-steps span { color:#ef7bab; font:700 .68rem/1 ui-monospace,SFMono-Regular,monospace; }
.guide-start-steps strong { font-size:.94rem; }
.guide-start-steps small { color:var(--muted); font-size:.8rem; }
.guide-popular { margin:clamp(4rem,8vw,7rem) 0; }
.guide-section-heading { display:flex; justify-content:space-between; gap:2rem; align-items:end; margin-bottom:1.5rem; }
.guide-section-heading h2 { margin:.15rem 0 0; }
.guide-section-heading > p { max-width:32rem; margin:0; color:var(--muted); }
.guide-task-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.8rem; }
.guide-task-grid > a { position:relative; display:grid; grid-template-columns:42px minmax(0,1fr) 20px; gap:1rem; align-items:center; min-height:126px; padding:1.2rem; overflow:hidden; border:1px solid var(--line); border-radius:16px; color:inherit; background:linear-gradient(145deg,rgba(255,255,255,.025),rgba(255,255,255,.012)); transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease; }
.guide-task-grid > a::before { content:""; position:absolute; width:180px; height:180px; right:-110px; top:-120px; border-radius:50%; background:radial-gradient(circle,rgba(231,34,108,.18),transparent 68%); opacity:0; transform:scale(.7); transition:opacity .25s ease,transform .3s ease; }
.guide-task-grid > a:hover,.guide-task-grid > a:focus-visible { text-decoration:none; transform:translateY(-3px); border-color:rgba(239,90,154,.36); box-shadow:0 18px 42px rgba(0,0,0,.22); }
.guide-task-grid > a:hover::before,.guide-task-grid > a:focus-visible::before { opacity:1; transform:scale(1); }
.guide-task-icon { position:relative; z-index:1; display:grid; place-items:center; width:38px; height:38px; border:1px solid rgba(239,90,154,.28); border-radius:11px; color:#ef8ab5; font:700 .68rem/1 ui-monospace,SFMono-Regular,monospace; background:rgba(231,34,108,.07); }
.guide-task-grid h3 { margin:0 0 .35rem; font-size:1.08rem; }.guide-task-grid p { margin:0; color:var(--muted); font-size:.86rem; }.guide-task-grid b { color:var(--muted); transition:transform .2s ease,color .2s ease; }.guide-task-grid > a:hover b { color:#ef8ab5; transform:translateX(4px); }

.page-showcase .wrap { max-width:1180px; padding-top:0; }
.showcase-hero { max-width:820px; padding:clamp(3.5rem,7vw,6rem) 0; }
.showcase-hero h1 { margin:.35rem 0 1rem; }
.showcase-hero .lead a { color:#ef8ab5; }
.showcase-gallery { padding:clamp(4.5rem,8vw,7rem) 0 3rem; border-top:1px solid var(--line); }
.showcase-video-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.showcase-video-card { position:relative; overflow:hidden; margin:0; border:1px solid var(--line); border-radius:20px; background:#111218; transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease; }
.showcase-video-card:hover { transform:translateY(-4px); border-color:rgba(239,90,154,.34); box-shadow:0 24px 55px rgba(0,0,0,.3); }
.showcase-video-card > img,.showcase-video-card > video,.showcase-video-card > iframe,.showcase-video-card > .mf-video-frame,.showcase-video-card > .showcase-static-preview { display:block; width:100%; aspect-ratio:16/10; border:0; object-fit:cover; filter:brightness(.48) saturate(.72); transition:filter .25s ease,transform .35s ease; }
.showcase-video-card > .mf-video-frame > img,.showcase-video-card > .mf-video-frame > video { width:100%; height:100%; object-fit:cover; }
.showcase-video-card:hover > img,.showcase-video-card:hover > video,.showcase-video-card:hover > .mf-video-frame { filter:brightness(.7) saturate(.9); transform:scale(1.015); }
.showcase-video-card figcaption { display:flex; align-items:center; justify-content:space-between; gap:1rem; min-height:52px; padding:.85rem 1rem; border-top:1px solid var(--line); background:#111218; }
.showcase-video-card figcaption span { color:#ef8ab5; font:700 .66rem/1 ui-monospace,SFMono-Regular,monospace; }.showcase-video-card figcaption strong { font-size:.9rem; }
.showcase-video-card > [data-lottie-src] { display:block; width:100%; aspect-ratio:16/10; overflow:hidden; }
.showcase-video-card > [data-lottie-src] img { width:100%; height:100%; object-fit:cover; filter:brightness(.48) saturate(.72); }
.showcase-video-card > .showcase-lightbox-source { display:none; }
.showcase-video-card > .showcase-static-preview { height:auto; }
.showcase-play { position:absolute; inset:0 0 52px; display:grid; place-items:center; border:0; background:transparent; cursor:pointer; z-index:3; }
.showcase-play span { width:54px; height:54px; border:1px solid rgba(255,255,255,.45); border-radius:50%; background:rgba(8,8,12,.72); box-shadow:0 14px 35px rgba(0,0,0,.42); backdrop-filter:blur(12px); transition:transform .18s ease,background .18s ease; }
.showcase-play span::after { content:""; display:block; width:0; height:0; margin:17px 0 0 21px; border-top:10px solid transparent; border-bottom:10px solid transparent; border-left:15px solid #fff; }
.showcase-play:hover span,.showcase-play:focus-visible span { transform:scale(1.08); background:linear-gradient(135deg,#d91c68,#6b1595); }
.showcase-lightbox { position:fixed; inset:0; z-index:300; display:grid; place-items:center; padding:clamp(1rem,4vw,4rem); background:rgba(3,3,7,.9); backdrop-filter:blur(18px); }
.showcase-lightbox[hidden] { display:none; }
.showcase-lightbox-stage { width:min(1180px,100%); max-height:calc(100vh - 5rem); display:grid; place-items:center; }
.showcase-lightbox-stage > img,.showcase-lightbox-stage > video,.showcase-lightbox-stage > iframe,.showcase-lottie-player { display:block; width:100%; max-height:calc(100vh - 5rem); aspect-ratio:16/9; object-fit:contain; border:0; border-radius:18px; background:#08090d; box-shadow:0 30px 100px rgba(0,0,0,.65); }
.showcase-lightbox-close { position:fixed; top:1rem; right:1rem; z-index:2; width:44px; height:44px; border:1px solid rgba(255,255,255,.22); border-radius:50%; background:rgba(18,18,25,.85); color:#fff; font-size:1.8rem; cursor:pointer; }
body.showcase-viewer-open { overflow:hidden; }

.placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), transparent),
    repeating-linear-gradient(135deg, #14161c, #14161c 12px, #171922 12px, #171922 24px);
  display: grid;
  place-items: center;
  color: var(--muted);
  margin: 1.2rem 0;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 900px) {
  .wrap-guide, .row, .row.reverse, .steps, .stats, .bento, .mosaic { grid-template-columns: 1fr; }
  .wrap-guide {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 1.35rem;
  }
  .wrap-guide > .doc,
  .wrap-guide > .side {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .wrap-guide > .side {
    align-self: stretch;
    order: 2;
  }
  .wrap-guide > .doc {
    order: 1;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bento .wide { grid-column: auto; grid-row: auto; }
  .bento .wide img { aspect-ratio: 16/10; }
  .hero-stage .float { position: static; width: 100%; margin-top: .9rem; }
  .menu-btn { display: inline-flex; }
  .top { flex-wrap: wrap; }
  .top .mac-btn { display: none; }
  .logo, .top-end { flex: 1 1 auto; }
  .top-nav {
    display: none;
    width: 100%;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    padding: .2rem 0 .6rem;
  }
  body.nav-open .top-nav { display: flex; }
  body.nav-open .top-nav a { padding: .35rem 0; color: var(--ink); }
  .side {
    position: static;
    align-self: stretch;
    width: 100%;
    max-width: none;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .85rem 1rem 1rem;
    margin-bottom: 0;
  }
  .map-acc > summary { grid-template-columns: 72px minmax(0, 1fr) 12px; gap: .75rem; }
  .map-acc > summary img, .map-acc > summary video, .map-acc > summary iframe, .map-acc > summary .mf-video-frame { width: 72px; height: 48px; }
  .map-acc ul {
    grid-template-columns: 1fr;
    gap: .1rem;
    padding: 0 .85rem 1rem;
  }
  .guide-start {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 1.25rem 1.1rem 1.35rem;
    margin: 2rem 0 3rem;
  }
  .guide-start h2 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .guide-start > div > .btn { width: 100%; justify-content: center; }
  .guide-start-steps { gap: .4rem; }
  .guide-start-steps a {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-areas:
      "num title"
      "num desc";
    column-gap: .75rem;
    row-gap: .18rem;
    align-items: start;
    padding: .7rem .8rem;
  }
  .guide-start-steps span { grid-area: num; align-self: center; }
  .guide-start-steps strong { grid-area: title; }
  .guide-start-steps small { grid-area: desc; line-height: 1.35; }
  .guide-map-heading { grid-template-columns: 1fr; }
  .guide-task-grid { grid-template-columns: 1fr; }
  .showcase-video-grid { grid-template-columns: 1fr; }
  .guide-section-heading { align-items: flex-start; flex-direction: column; gap: .6rem; }
  .pager {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .pager > div,
  .pager-next { width: 100%; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .guide-start-steps a,.guide-task-grid > a,.map-acc > summary { transition:none; }
}

/* Homepage motion system built from real product frames. */
.is-home {
  --violet: #b96de0;
  --pink: var(--brand-pink);
  --cyan: #d98ed8;
  --soft-ink: #cbc8d2;
}
.is-home { overflow-x:clip; }
.is-home .wrap { max-width: 1280px; padding-top: 0; overflow:visible; }
.is-home .doc h1 {
  max-width: 9.4em;
  font-size: clamp(3.1rem, 6.8vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -.038em;
  font-weight: 600;
  text-wrap: balance;
}
.is-home .doc h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -.032em;
  font-weight: 600;
  text-wrap: balance;
}
.home-hero { --fluid-x:50%; --fluid-y:24%; width:100vw; margin-left:calc(50% - 50vw); padding:clamp(4rem,8vw,7rem) max(1rem,calc((100vw - 1280px)/2)) 1rem; position:relative; isolation:isolate; text-align:center; }
.home-hero > .kicker,.home-hero > h1,.home-hero .lead { margin-inline:auto; }
.home-hero .lead { max-width: 46rem !important; font-size: clamp(1.12rem, 1.9vw, 1.32rem) !important; font-weight: 400; }
.home-hero .hero-actions,.home-hero .trust-row { justify-content:center; }
.hero-fluid { position:absolute; inset:-4rem 0 20%; z-index:-2; overflow:hidden; pointer-events:none; background:linear-gradient(180deg,rgba(12,7,20,.92),rgba(8,9,13,.15) 78%,transparent); mask-image:linear-gradient(to bottom,#000 2%,#000 72%,transparent 100%); }
.hero-fluid::before { content:""; position:absolute; inset:-18%; opacity:.82; background:radial-gradient(circle 150px at var(--fluid-x) var(--fluid-y),rgba(255,202,234,.18),rgba(231,34,108,.2) 24%,rgba(164,25,124,.1) 48%,transparent 70%),radial-gradient(ellipse 55% 70% at 10% 15%,rgba(231,34,108,.12),transparent 66%),radial-gradient(ellipse 58% 72% at 92% 4%,rgba(89,14,142,.19),transparent 65%),radial-gradient(ellipse at 50% 18%,rgba(88,42,140,.16),transparent 60%); filter:blur(14px) saturate(125%); transition:opacity .3s ease; }
.hero-fluid::after { content:""; position:absolute; inset:0; opacity:.2; background:radial-gradient(circle 360px at var(--fluid-x) var(--fluid-y),transparent 20%,rgba(236,125,187,.13) 21%,transparent 22%,transparent 36%,rgba(151,72,190,.1) 37%,transparent 38%),repeating-linear-gradient(115deg,rgba(255,255,255,.018) 0 1px,transparent 1px 14px); mix-blend-mode:screen; filter:blur(.2px); }
.home-hero:hover .hero-fluid::before { opacity:1; }
.water-ring { position:absolute; width:64px; aspect-ratio:1; border:1px solid rgba(255,215,239,.66); border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.12),rgba(231,34,108,.08) 27%,transparent 58%); box-shadow:inset 0 0 18px rgba(255,255,255,.12),0 0 0 10px rgba(164,25,124,.055),0 0 52px rgba(231,34,108,.24); transform:translate(-50%,-50%) scale(.15); animation:water-ring 1.45s cubic-bezier(.1,.58,.16,1) forwards; }
.water-ring::before,.water-ring::after { content:""; position:absolute; inset:-1px; border:1px solid rgba(224,133,205,.46); border-radius:inherit; animation:water-ring-echo 1.45s .1s cubic-bezier(.1,.58,.16,1) forwards; }
.water-ring::after { animation-delay:.23s; border-color:rgba(132,83,197,.38); }
@keyframes water-ring { 38% { opacity:.88; } 100% { opacity:0; transform:translate(-50%,-50%) scale(9); filter:blur(1.4px); } }
@keyframes water-ring-echo { 0% { opacity:0; transform:scale(.72); } 15% { opacity:.75; } 100% { opacity:0; transform:scale(1.45); } }
.btn-primary {
  background: linear-gradient(120deg, #fff 0%, #f1dffa 56%, #e6c0ff 100%);
  color: #171019;
  box-shadow: 0 10px 32px rgba(208, 119, 255, .2);
}
.text-link { min-height:46px; color: var(--ink); display: inline-flex; gap: .55rem; align-items: center; padding: .7rem .35rem; font-family: var(--font-display); font-weight: 600; font-size: .95rem; line-height:1.2; }
.text-link span { color: var(--pink); }
.trust-row { display: flex; flex-wrap: wrap; gap: .9rem 1.6rem; color: var(--muted); font-size: .9rem; font-weight: 500; margin: 1.45rem 0 2.2rem; }
.trust-row span { display: inline-flex; gap: .48rem; align-items: center; }
.signal { width: 8px; height: 8px; border-radius: 50%; display: inline-block; box-shadow: 0 0 14px currentColor; }
.signal-free { color: var(--pink); background: currentColor; }
.signal-private { color: #6be2b0; background: currentColor; }
.signal-clean { color: var(--cyan); background: currentColor; }

.director-stage {
  --mx: 0;
  --my: 0;
  position: relative;
  isolation: isolate;
  width: min(1120px, 94vw);
  margin: 4rem auto 4.5rem;
  perspective: 1400px;
}
.stage-glow {
  position: absolute; inset: 8% 10% -8%; z-index: -1;
  background: radial-gradient(ellipse at 50% 50%, rgba(208,78,255,.26), rgba(70,108,255,.12) 45%, transparent 70%);
  filter: blur(60px);
  transform: translate(var(--glow-x, 0), var(--glow-y, 0));
}
.stage-editor {
  width: 100%; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 50px 120px rgba(0,0,0,.68), 0 0 0 1px rgba(255,255,255,.03) inset;
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform .18s ease-out;
  display: block;
}
.workbench-visual {
  --scene: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: clamp(220px, 32vw, 380px);
  max-height: clamp(260px, min(42vh, 38vw), 520px);
  position: sticky;
  top: 7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg,#15151c,#0b0c11 60%);
  box-shadow: 0 40px 90px rgba(0,0,0,.42);
  isolation: isolate;
}
.workbench-visual .visual-stage {
  position: absolute;
  inset: 10% 10% 14%;
  z-index: 2;
}
.workbench-visual .visual-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 70px #000;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
}
.workbench-visual .visual-stage img[hidden] {
  display: none !important;
}
.workbench-visual .visual-playhead {
  position: absolute;
  left: 25%;
  top: 8%;
  bottom: 6%;
  width: 2px;
  z-index: 6;
  background: #ff5252;
  box-shadow: 0 0 8px rgba(255,82,82,.55);
  transition: left .7s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.workbench-visual .visual-path {
  position: absolute;
  left: 19%;
  right: 19%;
  bottom: 7%;
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,.15);
  pointer-events: none;
}
.workbench-visual .visual-path span {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255,79,200,.12);
}
.workbench-visual .visual-path span:nth-child(1){left:8%}
.workbench-visual .visual-path span:nth-child(2){left:48%}
.workbench-visual .visual-path span:nth-child(3){left:88%}
.workbench-visual .visual-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom,#000,transparent);
  pointer-events: none;
}
.proof-strip { border-block: 0; padding: 1.1rem 0; display: grid; grid-template-columns: 1.25fr 1fr; gap: 2rem; align-items: center; }
.proof-strip p { margin: 0; font-size: .96rem; }.proof-strip div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .5rem 1rem; color: var(--muted); font-size: .78rem; }
.difference-section { padding:clamp(5.2rem,8vw,7.2rem) 0; }
.difference-heading { max-width:58rem; margin-bottom:2.4rem; }
.difference-heading .kicker { margin: 0 0 .5rem; }
.difference-heading h2,
.doc .difference-heading h2 { margin: 0; }
.difference-heading > p:last-child { max-width:45rem; margin:.9rem 0 0; color:var(--soft-ink); font-size:1.03rem; }
.difference-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; overflow:hidden; border:1px solid var(--line); border-radius:22px; background:var(--line); }
.difference-grid article { min-height:210px; display:flex; flex-direction:column; padding:1.5rem; background:#101117; }
.difference-grid article:nth-child(2),.difference-grid article:nth-child(4) { background:linear-gradient(145deg,rgba(231,34,108,.045),rgba(89,14,142,.035)),#101117; }
.difference-grid span { color:#ef7bab; font:700 .68rem/1 ui-monospace,SFMono-Regular,monospace; }
.difference-grid h3 { margin:2rem 0 .75rem; font-size:1.18rem; }
.difference-grid p { margin:0; color:var(--muted); font-size:.88rem; }
.story-section { padding: clamp(5.2rem, 8vw, 7.2rem) 0 3.4rem; }
.story-heading { max-width: 55rem; margin-bottom: 2.6rem; }
.story-heading > .kicker { margin: 0 0 .5rem; }
.story-heading > h2,
.doc .story-heading > h2 { margin: 0; }
.story-heading > p { max-width: 46rem; margin: .9rem 0 0; font-size: 1.13rem; color: var(--soft-ink); }
.motion-workbench { display: grid; grid-template-columns: minmax(280px,.8fr) minmax(0,1.5fr); gap: 4rem; align-items: start; }
.workbench-copy { display: grid; gap: 1.25rem; }
.motion-step { position: relative; padding: 1.25rem 1.3rem 1.3rem 3.7rem; border-left: 1px solid var(--line); opacity: .45; transition: opacity .35s ease, border-color .35s ease, transform .35s ease; cursor: pointer; }
.motion-step.is-active { opacity: 1; border-color: var(--pink); transform: translateX(8px); }
.motion-step > span { position: absolute; left: .9rem; top: 1.35rem; color: var(--pink); font: 650 .68rem/1 ui-monospace, SFMono-Regular, monospace; }
.motion-step h3 { margin: 0 0 .4rem; font-size: 1.15rem; }.motion-step p { margin: 0; color: var(--muted); font-size: .92rem; }
.workbench-visual .visual-stage .mf-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 70px #000;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
}
.workbench-visual .visual-stage .mf-video-frame[hidden] {
  display: none !important;
}
.workbench-visual .visual-stage .mf-video-frame > .mf-video-fallback,
.workbench-visual .visual-stage .mf-video-frame > .mf-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workbench-visual[data-scene="1"] .visual-edit,
.workbench-visual[data-scene="1"] .visual-edit.mf-video-frame {
  transform: perspective(900px) rotateY(-13deg) rotateX(6deg) translate(-4%,2%) scale(.92);
}
.workbench-visual[data-scene="2"] .visual-finish,
.workbench-visual[data-scene="2"] .visual-finish.mf-video-frame {
  transform: translateY(-2%) scale(1.02);
}
.workbench-visual[data-scene="1"] .visual-playhead { left: 52%; }
.workbench-visual[data-scene="2"] .visual-playhead { left: 78%; }
.workbench-visual[data-scene="0"] .visual-playhead { left: 25%; }

.feature-duo { display: grid; grid-template-columns: .9fr 1.2fr; gap: clamp(2rem,6vw,5rem); align-items: center; padding: clamp(2.4rem,4.5vw,3.8rem) 0; border-top: 0; }
.feature-duo.reverse { grid-template-columns: 1.2fr .9fr; }
@media (min-width: 901px) {
  .feature-duo.reverse .feature-copy { order: 2; }
  .feature-duo.reverse .media-card { order: 1; }
}
.feature-duo + .feature-duo { padding-top: clamp(1.8rem,3.5vw,2.8rem); }
.feature-copy { display: flex; flex-direction: column; gap: 1rem; min-width: 0; }
.feature-head { display: grid; gap: .45rem; }
.feature-head > .kicker { margin: 0; }
.feature-head > h2,
.doc .feature-head > h2 { margin: 0; }
.feature-body { display: grid; gap: .9rem; }
.feature-body > p,
.feature-body > ul { margin: 0; }
.feature-copy > p { color: var(--soft-ink); }
.feature-body > p { color: var(--soft-ink); }
.clean-list { list-style: none; padding: 0; margin: 0; }.clean-list li { position: relative; padding: .35rem 0 .35rem 1.5rem; }.clean-list li::before { content: ""; position: absolute; left: 0; top: .82rem; width: 8px; height: 2px; background: var(--pink); }
.media-card { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); padding: .85rem; background: rgba(18,12,22,.94); box-shadow: 0 34px 80px rgba(0,0,0,.42); transform: perspective(1000px) rotateX(var(--hover-y, 0deg)) rotateY(var(--hover-x, 0deg)); transition: transform .18s ease-out; }
.media-card img, .media-card video, .media-card iframe, .media-card .mf-video-frame { border-radius: 16px; width: 100%; display: block; border: 0; }
.media-card .mf-video-frame { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.media-card .mf-video-frame > .mf-video-fallback,
.media-card .mf-video-frame > .mf-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  border-radius: 0;
}
.media-card iframe { aspect-ratio: 16 / 9; }
.media-card figcaption { color: var(--muted); font-size: .78rem; padding: .65rem .35rem .1rem; }
.feature-showcase { padding:clamp(4.8rem,7.5vw,6.6rem) 0; border-top:0; }
.showcase-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.15rem; }
.showcase-grid article { overflow:hidden; border:0; border-radius:var(--radius); background:linear-gradient(145deg,#16171e,#111218); }
.showcase-grid article > img,
.showcase-grid article > video,
.showcase-grid article > iframe,
.showcase-grid article > .mf-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
  border-bottom: 0;
  display: block;
}
.showcase-grid article > .mf-video-frame {
  position: relative;
  overflow: hidden;
  object-fit: unset;
}
.showcase-grid article > .mf-video-frame > .mf-video-fallback,
.showcase-grid article > .mf-video-frame > .mf-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-grid article > div { padding:1.25rem; }.showcase-grid .kicker { margin-bottom:.55rem; }.showcase-grid h3 { margin:0 0 .55rem; font-size:clamp(1.2rem,2vw,1.55rem); }.showcase-grid article p:not(.kicker) { min-height:4.7em; margin:.25rem 0 .9rem; color:var(--muted); font-size:.9rem; }.showcase-grid article a { color:#ef8ab5; font-size:.84rem; }
.bonus-tool { display:flex; align-items:center; justify-content:space-between; gap:2rem; margin-top:1rem; padding:1.35rem 1.5rem; border:0; border-radius:20px; background:radial-gradient(circle at 8% 0,rgba(217,142,216,.1),transparent 38%), rgba(18,10,20,.94); }
.bonus-tool h3 { margin:.25rem 0 .35rem; font-size:clamp(1.25rem,2.2vw,1.65rem); }.bonus-tool p { margin:0; color:var(--muted); font-size:.9rem; }.bonus-tool .kicker { color:#ef8ab5; }.bonus-tool .btn { flex:0 0 auto; white-space:nowrap; }
.graphics-band { display: grid; grid-template-columns: .85fr 1.35fr; gap: 5rem; align-items: center; padding: clamp(4.2rem,7vw,6.4rem) clamp(1.2rem,4vw,3.5rem); margin: clamp(1.4rem,3vw,2.4rem) clamp(-3rem,-3vw,-1rem); border-radius: 34px; background: radial-gradient(circle at 78% 35%,rgba(188,74,255,.18),transparent 38%), #111218; border: 0; }
.graphics-stack { position: relative; min-height: 440px; perspective: 1100px; }
.graphics-stack > img,
.graphics-stack > video,
.graphics-stack > iframe,
.graphics-stack > .mf-video-frame {
  position: absolute;
  width: 66%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px #000;
  transition: transform .35s ease;
  overflow: hidden;
}
.graphics-stack > .mf-video-frame > .mf-video-fallback,
.graphics-stack > .mf-video-frame > .mf-media-video {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.graphics-stack > :nth-child(1){left:0;top:10%;transform:rotate(-5deg) translateZ(-30px)}
.graphics-stack > :nth-child(2){right:0;top:0;transform:rotate(5deg) translateZ(10px)}
.graphics-stack > :nth-child(3){left:18%;bottom:0;transform:rotate(1deg) translateZ(40px)}
.graphics-stack:hover > :nth-child(1){transform:translate(-4%,-4%) rotate(-8deg)}
.graphics-stack:hover > :nth-child(2){transform:translate(5%,-5%) rotate(8deg)}
.graphics-stack:hover > :nth-child(3){transform:translateY(4%) rotate(-1deg)}
.local-section { display: grid; grid-template-columns: .7fr 1.3fr; gap:clamp(2.5rem,6vw,5rem); align-items: center; padding:clamp(4.8rem,7.5vw,6.6rem) 0; border-top:0; }
.local-mark { width: min(260px,70vw); aspect-ratio: 1; border-radius: 50%; margin:auto; position:relative; background: radial-gradient(circle at 50% 55%,rgba(107,226,176,.2),transparent 45%),#10151a; border:1px solid rgba(107,226,176,.24); box-shadow: 0 0 80px rgba(107,226,176,.08); }
.local-mark span { position:absolute; width: 30%; height: 28%; left:35%; top:43%; border: 6px solid #86e5bc; border-radius: 8px; }.local-mark span::before { content:""; position:absolute; width:56%; aspect-ratio:1; border:6px solid #86e5bc; border-bottom:0; border-radius:50% 50% 0 0; left:16%; top:-70%; }
.local-mark i { position:absolute; width:7px;height:7px;border-radius:50%;background:#86e5bc;left:calc(50% - 3px);top:56%;box-shadow:0 0 14px #86e5bc; }
.local-facts { display:flex; flex-wrap:wrap; gap:.55rem; margin:1.2rem 0; }.local-facts span { border:1px solid rgba(107,226,176,.2); color:#a8d9c3; border-radius:999px; padding:.28rem .65rem; font-size:.78rem; }
.native-section { display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(2rem,6vw,5rem); align-items:center; padding:clamp(4.6rem,7vw,6.2rem) 0; border-top:0; }
.native-section > div:first-child > p:last-child { color:var(--soft-ink); max-width:38rem; }
.native-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; overflow:hidden; border:0; border-radius:20px; background:rgba(255,255,255,.04); }
.native-grid span { min-height:130px; display:flex; flex-direction:column; justify-content:flex-end; padding:1.1rem; background:radial-gradient(circle at 90% 5%,rgba(231,34,108,.08),transparent 40%),#111218; }
.native-grid strong { font-size:1rem; }.native-grid small { color:var(--muted); margin-top:.2rem; }
.native-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin: 0 0 2.25rem;
  padding: 1.35rem 1.5rem;
  border: 0;
  border-radius: 22px;
  color: var(--soft-ink);
  background:
    radial-gradient(circle at 0 0, rgba(217,142,216,.1), transparent 42%),
    rgba(18,9,20,.92);
}
.native-proof-copy {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  min-width: 0;
}
.native-proof-mark {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  min-width: 2.4rem;
  display: block;
  border: 0;
  border-radius: 0;
  background-color: var(--ink);
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  -webkit-mask: url('/assets/apple-mark.png') center / contain no-repeat;
  mask: url('/assets/apple-mark.png') center / contain no-repeat;
}
.native-proof-copy strong {
  display: block;
  margin: 0 0 .2rem;
  color: var(--ink);
  font-size: 1.12rem;
  letter-spacing: -.03em;
}
.native-proof-copy p {
  margin: 0 !important;
  max-width: 40rem;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--soft-ink) !important;
}
.native-proof-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .45rem;
}
.native-proof-badges span {
  white-space: nowrap;
  padding: .34rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  background: rgba(255,255,255,.02);
  font-size: .72rem;
}
.delivery-section { padding:clamp(4.6rem,7vw,6.2rem) 0; border-top:0; }
.delivery-section > h2 { max-width: none; text-wrap: wrap; }
.delivery-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  margin-top:1.35rem;
  align-items: stretch;
}
.delivery-grid article {
  display:flex;
  flex-direction:column;
  gap:.45rem;
  padding:1.35rem 1.3rem 1.4rem;
  border:0;
  border-radius:var(--radius);
  background:linear-gradient(145deg,#16141c,#111218);
}
.delivery-grid article h3 { margin: .15rem 0 0; }
.delivery-grid article p { margin:0; color:var(--muted); font-size:.9rem; }
.format { color:var(--pink); font:650 .68rem/1 ui-monospace,SFMono-Regular,monospace; letter-spacing:.1em; }
.home-pricing,.home-faq { padding:clamp(4.8rem,7.5vw,6.6rem) 0; border-top:0; }
.home-section-heading { max-width:58rem; margin-bottom:2rem; }
.home-section-heading .kicker { margin: 0 0 .5rem; }
.home-section-heading h2,
.doc .home-section-heading h2 { margin:0; }
.home-section-heading > p:last-child { max-width:45rem; margin:.9rem 0 0; color:var(--soft-ink); }
.home-pricing .pricing-grid { margin:0; }.home-pricing-note { margin:1.2rem 0 0!important; text-align:right; font-size:.88rem; }
.home-pricing .plan-limit { margin:-.65rem 0 1.25rem; color:var(--muted); font-size:.76rem; }
.home-faq { display:flex; flex-direction:column; align-items:center; }
.home-faq .home-section-heading,
.home-faq .faq-list,
.home-faq .home-pricing-note {
  width: min(100%, 720px);
  margin-inline: auto;
}
.home-faq .home-section-heading { max-width: 720px; text-align: center; }
.home-faq .home-section-heading h2 { margin-inline: auto; }
.home-faq .faq-list { max-width: 720px; }
.home-faq .home-pricing-note { max-width: 720px; text-align: center; }
.support-hero { max-width:58rem; padding:clamp(3rem,7vw,6rem) 0 2.5rem; }.support-hero h1 { margin:.65rem 0 1rem; }.support-hero .lead { max-width:42rem; }
.support-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin:1rem 0 clamp(4rem,7vw,6rem); }.support-grid article { min-height:260px; display:flex; flex-direction:column; padding:1.4rem; border:1px solid var(--line); border-radius:20px; background:linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.012)); }.support-grid h2 { margin:.35rem 0 .65rem; font-size:1.35rem; }.support-grid p { color:var(--muted); font-size:.9rem; }.support-grid a:last-child { margin-top:auto; }
.support-details { max-width:760px; margin-bottom:4rem; }.support-details h2 { margin-top:2.5rem; }.support-details li { margin:.45rem 0; color:var(--soft-ink); }
.final-cta { display:grid; grid-template-columns:64px minmax(0,1fr) auto; gap:1.25rem; align-items:center; margin:clamp(4rem,7vw,6rem) 0 2rem; padding:1.35rem; border:1px solid var(--line); border-radius:22px; background:radial-gradient(circle at 90% 0,rgba(231,34,108,.14),transparent 34%),#111218; }
.final-cta > img { width:64px; border-radius:16px; box-shadow:0 14px 32px rgba(89,14,142,.32); }
.final-cta h2 { max-width:none!important; margin:.25rem 0 .3rem; font-size:clamp(1.65rem,3.2vw,2.45rem)!important; }
.final-cta div > p:last-child { margin:0; color:var(--soft-ink); font-size:.92rem; }
.final-cta .hero-actions { margin:0; justify-content:flex-end; }
.editor-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.2rem;
  margin: clamp(3.5rem, 7vw, 6rem) 0 1.4rem;
  padding:clamp(1.5rem,3vw,2.2rem);
  border: 1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:
    radial-gradient(540px 240px at 88% 50%, rgba(168,85,247,.34), transparent 62%),
    radial-gradient(280px 170px at 76% 88%, rgba(231,34,108,.12), transparent 55%),
    #101117;
}
.cta-copy {
  display: flex;
  align-items: center;
  gap: 1.35rem 1.6rem;
  flex: 1;
  min-width: 0;
}
.doc .editor-cta h2 {
  margin: 0 0 .3rem;
  max-width: 13ch;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -.045em;
  color: #fff;
  text-wrap: balance;
}
.editor-cta .cta-copy { display:block; }
.editor-cta .cta-note {
  margin: 0 !important;
  max-width: 22.5rem;
  font-size: .92rem;
  font-weight: 450;
  letter-spacing: -.012em;
  line-height: 1.45;
  color: rgba(255,255,255,.62);
}
.cta-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: .9rem;
  margin: 0 !important;
  color: inherit;
}
.cta-download {
  background: #fff;
  color: #161018;
  padding: .78rem 1.35rem;
  font-weight: 650;
  box-shadow:
    0 0 0 1px rgba(196,132,255,.16),
    0 12px 36px rgba(164,25,124,.42),
    0 0 72px rgba(168,85,247,.38);
}
.cta-download:hover { opacity: 1; background: #f6f0ff; }
.editor-cta .text-link { color: rgba(255,255,255,.7); }
.editor-cta .text-link span { color: rgba(255,255,255,.92); }
.editor-cta .text-link:hover { color: #fff; text-decoration: none; }
.reveal { opacity:0; transform:translateY(32px); transition:opacity .8s ease,transform .8s cubic-bezier(.2,.75,.2,1); }.reveal.in-view { opacity:1;transform:none; }
.feature-index { margin:3.5rem 0 6rem; }
.feature-index a { color:inherit; display:grid; grid-template-columns:54px 1fr 30px; gap:1.35rem; align-items:center; padding:1.6rem .5rem; border-bottom:1px solid var(--line); transition:background .25s ease,padding .25s ease; }
.feature-index a:last-child { border-bottom:0; }
.feature-index a:hover { text-decoration:none; background:rgba(255,255,255,.025); padding-inline:1rem; }
.feature-index span { color:var(--pink,#d29ad0); font:650 .68rem/1 ui-monospace,SFMono-Regular,monospace; }
.feature-index h2 { margin:0 0 .3rem; font-size:1.32rem; letter-spacing:-.028em; }.feature-index p { margin:0;color:var(--muted);font-size:.94rem; }.feature-index b { color:var(--muted);font-weight:400;transition:transform .25s ease,color .25s ease; }.feature-index a:hover b { color:var(--ink);transform:translateX(5px); }
.feature-catalog { margin-top:clamp(4rem,8vw,7rem); }.feature-group { display:grid; grid-template-columns:minmax(220px,.65fr) minmax(0,1.6fr); gap:clamp(2rem,6vw,5rem); padding:clamp(3.5rem,7vw,6rem) 0; border-top:1px solid var(--line); }.feature-group-heading { position:sticky; top:7rem; align-self:start; }.feature-group-heading h2 { max-width:12ch; margin:.65rem 0 0; font-size:clamp(1.8rem,3.7vw,3rem); line-height:1.12; letter-spacing:-.03em; }.feature-group .feature-index { margin:0; }
.local-section.compact { padding-block:clamp(4.5rem,8vw,7rem); }

@media (max-width: 900px) {
  .is-home .wrap { overflow-x: clip; }
  .is-home .doc h1 { font-size: clamp(3.2rem,17vw,5.3rem); }
  .director-stage { width:100%; margin-top:2.5rem; }
  .proof-strip,.motion-workbench,.feature-duo,.feature-duo.reverse,.graphics-band,.local-section,.native-section,.delivery-grid,.feature-group { grid-template-columns:1fr; }
  .native-proof { flex-direction:column; align-items:flex-start; }
  .native-proof-badges { justify-content:flex-start; }
  .difference-grid { grid-template-columns:repeat(2,1fr); }
  .proof-strip div { justify-content:flex-start; }
  .story-section { overflow-x: clip; min-width: 0; }
  .motion-workbench { overflow-x: clip; max-width: 100%; min-width: 0; }
  .workbench-visual { position:relative;top:auto;order:-1;min-width:0;min-height:clamp(200px,56vw,320px);max-height:clamp(240px,58vw,380px); }
  .workbench-copy {
    display:flex; flex-flow:row nowrap; align-items:stretch; gap:.75rem;
    overflow-x:auto; overscroll-behavior-x:contain; scroll-snap-type:x mandatory;
    width:100%; min-width:0; max-width:100%; scrollbar-width:none;
    padding:0; margin:0; -webkit-overflow-scrolling:touch;
    scroll-padding-inline:6%;
  }
  .workbench-copy::before { content:''; flex:0 0 6%; flex-shrink:0; }
  .workbench-copy::after { content:''; flex:0 0 6%; flex-shrink:0; }
  .workbench-copy::-webkit-scrollbar { display:none; }
  .motion-step {
    flex:0 0 88%; width:88%; max-width:88%; min-width:0; box-sizing:border-box;
    opacity:1; scroll-snap-align:center; min-height:auto;
    padding:1.1rem 1rem 1.1rem 3.2rem; border:1px solid var(--line); border-radius:18px; background:#101117;
  }
  .motion-step.is-active { transform:none; border-color:rgba(231,34,108,.52); }
  .feature-duo.reverse .feature-copy,
  .feature-duo.reverse .media-card { order: unset; }
  /* Highlighted features: same stack on every block — head, media, body. */
  .feature-duo,
  .feature-duo.reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }
  .feature-duo > .feature-copy,
  .feature-duo.reverse > .feature-copy {
    display: contents;
  }
  .feature-duo .feature-head,
  .feature-duo.reverse .feature-head {
    order: 1;
    display: grid;
    gap: .4rem;
    width: 100%;
    min-width: 0;
  }
  .feature-duo .feature-head > .kicker,
  .feature-duo .feature-head > h2,
  .feature-duo.reverse .feature-head > .kicker,
  .feature-duo.reverse .feature-head > h2 {
    margin: 0;
  }
  .feature-duo > .media-card,
  .feature-duo.reverse > .media-card {
    order: 2;
    width: 100%;
    margin: 0;
  }
  .feature-duo .feature-body,
  .feature-duo.reverse .feature-body {
    order: 3;
    display: grid;
    gap: .85rem;
    width: 100%;
    min-width: 0;
  }
  .feature-duo .feature-body > p,
  .feature-duo .feature-body > ul,
  .feature-duo.reverse .feature-body > p,
  .feature-duo.reverse .feature-body > ul {
    margin: 0;
  }
  .graphics-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-inline: 0;
    padding: 1.5rem 1.1rem 1.75rem;
    overflow: visible;
  }
  .graphics-band > div:first-child {
    position: relative;
    z-index: 2;
    min-width: 0;
  }
  .graphics-stack {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: clamp(260px, 78vw, 360px);
    aspect-ratio: 5 / 4;
    max-width: 100%;
    margin-inline: auto;
    overflow: visible;
    isolation: auto;
    perspective: none;
    transform: none;
  }
  .graphics-stack > img,
  .graphics-stack > video,
  .graphics-stack > iframe,
  .graphics-stack > .mf-video-frame {
    position: absolute;
    display: block;
    width: 72%;
    height: auto;
    max-height: 68%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,.55);
  }
  /* Flat 2D stack — 3D translateZ + overflow was clipping the images on iOS. */
  .graphics-stack > :nth-child(1) { left: 0; top: 10%; right: auto; bottom: auto; transform: rotate(-4deg); }
  .graphics-stack > :nth-child(2) { right: 0; top: 2%; left: auto; bottom: auto; transform: rotate(4deg); }
  .graphics-stack > :nth-child(3) { left: 14%; top: 36%; right: auto; bottom: auto; transform: rotate(1deg); }
  .graphics-stack:hover > :nth-child(1),
  .graphics-stack:hover > :nth-child(2),
  .graphics-stack:hover > :nth-child(3) { transform: rotate(-4deg); }
  .graphics-stack:hover > :nth-child(2) { transform: rotate(4deg); }
  .graphics-stack:hover > :nth-child(3) { transform: rotate(1deg); }
  .local-section { padding-inline:0; }
  .editor-cta { flex-direction:column; align-items:flex-start; }.feature-group-heading { position:static; }.feature-group-heading h2 { max-width:18ch; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .stage-editor,.stage-glow,.media-card { transform:none !important; }
  .reveal { opacity:1;transform:none;transition:none; }
  .mf-video-frame > .mf-media-video { transition:none; }
  .hero-fluid::before,.water-ring { animation:none!important;transition:none!important; }
}

@media (hover:hover) and (pointer:fine) {
  body { cursor:url('/assets/cursor-brand.png') 2 2,auto; }
  a,button,summary,[role="button"] { cursor:url('/assets/cursor-brand-3.png') 13 2,pointer; }
  input,textarea,[contenteditable="true"] { cursor:text; }
}

/* MoreFrame brand system shared by product, guide, commerce, and legal pages. */
.is-main:not(.is-home) .wrap,
.page-guide .wrap { padding-top: clamp(3.4rem,7vw,6rem); }
.is-main:not(.is-home) .doc > h1,
.is-guide .doc > h1 {
  max-width: 17ch;
  font-size: clamp(2.55rem, 5.6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.is-main:not(.is-home) .doc > h1::after,
.is-guide .doc > h1::after,
.page-hero h1::after {
  content:"";
  display:block;
  width:72px;
  height:1px;
  margin-top:1.15rem;
  border-radius:99px;
  background:var(--tube-line);
  box-shadow:var(--tube-glow);
}
.page-hero { position:relative; padding:clamp(2.2rem,5vw,4rem); margin:-1rem 0 2rem; border:1px solid var(--line); border-radius:30px; overflow:hidden; background:radial-gradient(circle at 82% 5%,rgba(231,34,108,.18),transparent 32%),radial-gradient(circle at 98% 80%,rgba(89,14,142,.2),transparent 35%),#101117; }
.page-hero::before { content:""; position:absolute; inset:0; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size:42px 42px; mask-image:linear-gradient(110deg,#000,transparent 74%); }
.page-hero > * { position:relative; }
.page-hero h1 { max-width:14ch; font-size:clamp(2.9rem,6.5vw,5.4rem); line-height:1.02; letter-spacing:-.04em; margin:.4rem 0 1.15rem; }
.page-hero .lead { max-width:46rem; color:#d7d0d7; font-size:clamp(1.08rem,1.9vw,1.28rem); }
.compact-hero { text-align:center; }
.compact-hero h1,.compact-hero .lead { margin-inline:auto; }
.compact-hero h1::after { margin-inline:auto; }
.compact-hero .hero-actions { justify-content:center; }

.pricing-grid { display:grid; grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr); gap:1rem; margin:1.2rem 0; }
.price-card { position:relative; border:1px solid var(--line); border-radius:26px; padding:clamp(1.4rem,3vw,2.2rem); background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012)); }
.price-pro { border-color:rgba(231,34,108,.38); background:radial-gradient(circle at 100% 0,rgba(231,34,108,.15),transparent 35%),radial-gradient(circle at 0 100%,rgba(89,14,142,.16),transparent 38%),#121117; box-shadow:0 28px 80px rgba(0,0,0,.3); }
.plan-label { margin:0; color:#ef8ab5!important; font-size:.72rem; font-weight:750; letter-spacing:.13em; text-transform:uppercase; }
.price-card h2 { margin:.45rem 0 .15rem; font-size:clamp(2rem,4vw,3.5rem); line-height:1; }
.price-note { color:var(--muted)!important; margin:.55rem 0 1.3rem; }
.popular-chip,.edition-tag { display:inline-flex; border:1px solid rgba(231,34,108,.32); background:rgba(231,34,108,.12); color:#ff9fc5; border-radius:999px; padding:.25rem .65rem; font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.popular-chip { position:absolute; right:1.4rem; top:1.35rem; }
.price-options { display:grid; grid-template-columns:repeat(3,1fr); gap:.65rem; margin:1.35rem 0; }
.price-options > a { position:relative; min-height:132px; display:flex; flex-direction:column; justify-content:space-between; gap:.7rem; border:1px solid var(--line); border-radius:16px; padding:1rem; color:var(--ink); background:rgba(255,255,255,.018); transition:transform .18s ease,border-color .18s ease,background .18s ease; }
.price-options > a:hover { text-decoration:none; transform:translateY(-3px); border-color:rgba(231,34,108,.62); background:rgba(231,34,108,.075); }
.price-options > a:focus-visible { outline:3px solid rgba(231,34,108,.32); outline-offset:3px; }
.price-options > a span { display:flex; flex-direction:column; }
.price-options strong { color:var(--ink); font-size:1.35rem; letter-spacing:-.03em; }
.price-options small { color:var(--muted); font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; }
.price-options b { color:#f18ab5; font-size:.78rem; font-weight:650; }
.price-options em { position:absolute; right:.65rem; top:.65rem; border-radius:999px; padding:.18rem .45rem; background:rgba(231,34,108,.14); color:#f79bc0; font-size:.62rem; font-style:normal; font-weight:700; letter-spacing:.04em; }
.price-options .recommended-plan { border-color:rgba(231,34,108,.38); background:linear-gradient(145deg,rgba(231,34,108,.08),rgba(89,14,142,.06)); }
.selection-help { color:var(--muted)!important; font-size:.8rem; margin:0; }
.price-card .plan-limit { margin:-.65rem 0 1.25rem; color:var(--muted); font-size:.76rem; line-height:1.55; }
.check-list { list-style:none; padding:0!important; margin:1.35rem 0 1.6rem; }
.check-list li { position:relative; padding:.44rem 0 .44rem 1.55rem; }
.check-list li::before { content:""; position:absolute; left:0; top:.76rem; width:8px; height:8px; border-radius:50%; background:var(--brand-gradient); box-shadow:0 0 12px rgba(231,34,108,.42); }
.channel-note { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:.28rem 2rem; align-items:center; margin:1.2rem 0 0; padding:1.3rem 1.45rem; border:1px solid rgba(217,142,216,.2); border-radius:18px; background:radial-gradient(circle at 100% 0,rgba(89,14,142,.1),transparent 42%),rgba(255,255,255,.022); }
.channel-note strong { grid-column:1; font-size:1.02rem; }.channel-note span { grid-column:1; color:var(--muted); font-size:.88rem; line-height:1.55; }.channel-note a { grid-column:2; grid-row:1/3; white-space:nowrap; padding:.55rem .8rem; border:1px solid rgba(217,142,216,.2); border-radius:999px; }
.pricing-faq { display:grid; grid-template-columns:minmax(220px,.65fr) minmax(0,1.5fr); gap:clamp(2rem,6vw,5rem); margin:clamp(5rem,9vw,8rem) 0 2rem; padding-top:clamp(4rem,7vw,6rem); border-top:1px solid var(--line); }.pricing-faq-heading { align-self:start; }.pricing-faq-heading h2 { max-width:10ch; margin:.65rem 0 .8rem; font-size:clamp(2rem,4vw,3.4rem); line-height:1.06; letter-spacing:-.032em; }.pricing-faq-heading > p:last-child { max-width:28rem; color:var(--muted); }.pricing-faq .faq-list { max-width:none; }.pricing-faq-more { grid-column:2; margin:.9rem 0 0!important; }

.download-hero { display:grid; grid-template-columns:minmax(0,1fr) minmax(110px,210px); align-items:center; gap:3rem; }
.download-hero img { width:100%; border-radius:24%; filter:drop-shadow(0 26px 40px rgba(89,14,142,.48)); transform:rotate(3deg); }
.mac-spec { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.25rem; }
.mac-spec span { padding:.32rem .7rem; border:1px solid rgba(255,255,255,.12); border-radius:999px; color:#cfc8d1; font-size:.78rem; background:rgba(0,0,0,.18); }
.download-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:1rem; margin:1rem 0; }
.download-card { border:1px solid var(--line); border-radius:25px; padding:clamp(1.4rem,3vw,2.2rem); background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012)); }
.direct-card { border-color:rgba(231,34,108,.36); background:radial-gradient(circle at 90% 8%,rgba(231,34,108,.14),transparent 33%),#111117; }
.edition-tag.quiet { border-color:var(--line); background:rgba(255,255,255,.04); color:var(--muted); }
.store-icon { width:58px; height:58px; display:grid; place-items:center; margin:1.3rem 0 1rem; border-radius:17px; color:#fff; font-size:1.8rem; background:var(--brand-gradient); box-shadow:0 15px 35px rgba(164,25,124,.3); }
.download-card h2 { font-size:1.6rem; margin:.2rem 0 .45rem; }
.download-card > p { color:var(--muted); }
.download-state { border-left:2px solid var(--brand-pink); padding-left:.8rem; display:flex; flex-direction:column; font-size:.82rem; }
.download-state strong { color:var(--ink); }.download-state span { color:var(--muted); }
.not-found { padding: clamp(2.5rem,7vw,5.5rem) 0 3rem; max-width: 38rem; }
.not-found h1 { max-width: 11ch; margin: .4rem 0 1rem; }
.not-found .lead { margin: 0; }
.not-found-links { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.not-found-links a { color: var(--ink); padding: .55rem 1rem; border: 1px solid var(--line); border-radius: 999px; }
.not-found-links a:hover { text-decoration: none; border-color: rgba(231,34,108,.45); background: rgba(231,34,108,.08); }
.install-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin:1.2rem 0; overflow:hidden; border:1px solid var(--line); border-radius:20px; background:var(--line); }
.install-strip > div { background:#111218; padding:1.25rem; }.install-strip span { color:#ef7eac; font:700 .68rem/1 ui-monospace,SFMono-Regular,monospace; }.install-strip strong { display:block; margin:.45rem 0 .25rem; }.install-strip p { margin:0; color:var(--muted); font-size:.84rem; }

.page-guide .wrap { max-width:1180px; }
.page-guide .doc > h1 { max-width:15ch; }
.guide-hero-frame { display:grid; grid-template-columns:1.3fr .7fr; border:1px solid var(--line); border-radius:24px; overflow:hidden; margin:2rem 0; background:radial-gradient(circle at 100% 0,rgba(231,34,108,.13),transparent 50%),var(--panel); }
.guide-hero-frame img, .guide-hero-frame video, .guide-hero-frame iframe { width:100%; height:100%; min-height:280px; object-fit:cover; border:0; display:block; }
.guide-hero-frame span { display:flex; flex-direction:column; justify-content:flex-end; padding:1.4rem; color:var(--muted); }
.guide-hero-frame strong { color:var(--ink); font-size:1.25rem; margin-bottom:.35rem; }
.is-guide:not(.page-guide) .doc { max-width:760px; }
.is-guide:not(.page-guide) .doc > p:first-of-type { font-size:1.1rem; color:#d7d0d7; }
.is-guide:not(.page-guide) .doc h2 { position:relative; padding-top:.4rem; }
.is-guide:not(.page-guide) .doc h2::before { content:""; position:absolute; left:-1rem; top:.4rem; bottom:0; width:1px; border-radius:9px; background:linear-gradient(180deg,#9d175f,#e44f91 48%,#7a237f); box-shadow:0 0 3px rgba(228,79,145,.55),2px 0 9px rgba(164,25,124,.3); }

body.is-legal { background:radial-gradient(900px 420px at 50% -5%,rgba(164,25,124,.14),transparent 60%),var(--bg); }
body.is-legal .wrap { max-width:1040px; }
body.is-legal .doc { max-width:780px; margin-inline:auto; }
body.is-legal .doc::before { content:"MoreFrame · Legal"; display:inline-flex; margin-bottom:1rem; padding:.28rem .7rem; border:1px solid rgba(231,34,108,.28); border-radius:999px; background:rgba(231,34,108,.08); color:#ef87b2; font-size:.68rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase; }
body.is-legal .doc h1 { font-size:clamp(2.8rem,6vw,4.8rem); }
body.is-legal .legal-meta { border:1px solid var(--line); border-left:3px solid var(--brand-mid); border-radius:12px; padding:.85rem 1rem; background:rgba(255,255,255,.025); }
body.is-legal .doc h2 { margin-top:3rem; padding-top:1.2rem; border-top:1px solid var(--line); font-size:1.3rem; }
body.is-legal .doc a { color:#f087b3; text-decoration:underline; text-decoration-color:rgba(240,135,179,.3); text-underline-offset:.18em; }
body.is-legal .doc code { color:#f0a2c2; background:rgba(231,34,108,.08); border:1px solid rgba(231,34,108,.14); border-radius:5px; padding:.08em .3em; }
body.is-legal .doc table { display:block; overflow-x:auto; border:1px solid var(--line); border-radius:13px; padding:.25rem .7rem; background:rgba(255,255,255,.018); }

.page-faq .wrap { max-width:980px; }
.page-faq .doc > h1 { max-width:12ch; margin-bottom:.55rem; }
.faq-intro { max-width:42rem; margin:0 0 2.2rem!important; color:var(--soft-ink)!important; font-size:clamp(1.04rem,2vw,1.2rem); }
.faq-list { display:grid; gap:.7rem; }
.faq-list details { overflow:hidden; border:1px solid var(--line); border-radius:16px; background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012)); transition:border-color .2s ease,background .2s ease; }
.faq-list details[open] { background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012)),#101117; }
.faq-list summary { position:relative; list-style:none; padding:1.15rem 3.1rem 1.15rem 1.25rem; color:var(--ink); font-size:1.05rem; font-family:var(--font-display); font-weight:600; line-height:1.4; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:1.1rem; top:50%; width:1.7rem; height:1.7rem; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; color:#ef8ab5; font-size:1rem; font-weight:450; transform:translateY(-50%); transition:transform .2s ease,background .2s ease; }
.faq-list details[open] summary::after { content:"−"; background:rgba(231,34,108,.1); transform:translateY(-50%) rotate(180deg); }
.faq-list details > div { padding:0 3.4rem 1.15rem 1.15rem; }
.faq-list details p { max-width:68ch; margin:0!important; color:#c9c5c8!important; font-size:.95rem; line-height:1.72; }
.faq-list code { color:#f0a2c2; background:rgba(231,34,108,.08); border:1px solid rgba(231,34,108,.14); border-radius:5px; padding:.08em .3em; }
.faq-links { display:flex; flex-wrap:wrap; gap:.55rem; margin:1.5rem 0 0; }.faq-links a { padding:.4rem .75rem; border:1px solid var(--line); border-radius:999px; color:#efa0c0; font-size:.82rem; }

.foot { background:linear-gradient(180deg,rgba(89,14,142,.035),rgba(0,0,0,.16)); }
.foot::before { content:none; }

@media (max-width: 800px) {
  .pricing-grid,.download-grid,.download-hero,.guide-hero-frame,.channel-note,.install-strip,.support-grid,.pricing-faq { grid-template-columns:1fr; }
  .price-options { grid-template-columns:1fr; }
  .download-hero img { width:120px; grid-row:1; }
  .channel-note strong,.channel-note span,.channel-note a { grid-column:1; }.channel-note a { grid-row:auto; width:max-content; max-width:100%; white-space:normal; margin-top:.65rem; }
  .pricing-faq-heading h2 { max-width:16ch; }.pricing-faq-more { grid-column:1; }
  .guide-hero-frame img, .guide-hero-frame video, .guide-hero-frame iframe { min-height:190px; }
  .foot-inner { grid-template-columns:1fr; gap:1.6rem; }
  .foot-links { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .final-cta { grid-template-columns:56px minmax(0,1fr); align-items:center; padding:1.35rem; }
  .final-cta > img { width:56px; border-radius:14px; }
  .final-cta .hero-actions { grid-column:1/-1; justify-content:flex-start; }
  .cta-actions { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  html,body { font-size:16px; }
  .wrap { padding-inline:1rem; }
  .is-home .doc h1 { font-size:clamp(2.75rem,14vw,4rem); max-width:8.6em; }
  .home-hero { padding-top:3.6rem; }
  .director-stage { margin-top:2.7rem; margin-bottom:3.2rem; width:100%; }
  .story-heading { margin-bottom:2rem; }
  .motion-workbench { gap:1.25rem; }
  .motion-step { flex-basis:86%; width:86%; max-width:86%; }
  .workbench-copy::before,
  .workbench-copy::after { flex-basis:7%; }
  .motion-step > span { left:1rem; top:1.25rem; }
  .motion-step h3 { margin-top:.05rem; font-size:1.05rem; }
  .motion-step p { font-size:.86rem; line-height:1.55; }
  .workbench-visual { min-height:clamp(190px,52vw,280px);max-height:clamp(220px,56vw,340px);border-radius:18px; }
  .difference-grid,.native-grid { grid-template-columns:1fr; }
  .showcase-grid { grid-template-columns:1fr; }.showcase-grid article p:not(.kicker) { min-height:0; }.bonus-tool { align-items:flex-start; flex-direction:column; gap:1rem; }.bonus-tool .btn { width:100%; text-align:center; }
  .graphics-stack {
    min-height: clamp(240px, 86vw, 340px);
    aspect-ratio: 1 / 1;
  }
  .graphics-stack > img,
  .graphics-stack > video,
  .graphics-stack > iframe,
  .graphics-stack > .mf-video-frame { width: 76%; max-height: 64%; }
  .graphics-stack > :nth-child(3) { top: 34%; left: 12%; }
  .home-faq .faq-list { margin-left:auto; }.home-pricing-note { text-align:left; }
  .difference-grid article { min-height:210px; }
  .price-options > a { min-height:104px; }
  .cta-copy { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .final-cta .cta-note { max-width: none; }
  .final-cta { grid-template-columns:1fr; text-align:left; }
  .final-cta .hero-actions { grid-column:auto; }
}

.mf-page-body { display: contents; }
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
.mf-edit-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .7rem;
  padding: .55rem 1rem;
  background: #140814;
  border-bottom: 1px solid rgba(231,34,108,.45);
  color: #fff;
  font-size: .84rem;
}
/* Visitor preview should be pixel-identical to the public site. The editing
   toolbar remains available in Studio, but this preview-only row previously
   left a dark strip and divider above the real header. */
.mf-preview-bar { display: none; }
.mf-edit-return {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(20,20,28,.94);
  border: 1px solid rgba(231,34,108,.45);
  color: #fff;
  text-decoration: none;
  font-size: .84rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
}
.mf-edit-return:hover { text-decoration: none; border-color: rgba(231,34,108,.75); color: #fff; }
body.mf-live-preview .mf-edit-bar [data-mf-live-toggle][aria-pressed="true"] {
  border-color: rgba(231,34,108,.75);
  background: rgba(231,34,108,.18);
}
.mf-edit-bar strong { color: #ff8ab8; font-weight: 650; }
.mf-maintenance-pill {
  border: 1px solid rgba(231,34,108,.55);
  background: rgba(231,34,108,.18);
  color: #ffb3d0;
  border-radius: 999px;
  padding: .25rem .7rem;
  font-weight: 700;
  font-size: .72rem;
}
.mf-edit-title { color: var(--muted); max-width: 28ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mf-bar-btn {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem .8rem;
  font: inherit;
  cursor: pointer;
}
a.mf-bar-btn { color: #fff; }
.mf-bar-btn:hover, a.mf-bar-btn:hover { text-decoration: none; border-color: rgba(231,34,108,.5); }
.mf-bar-form { margin: 0 0 0 auto; }
.mf-page-jump { position:relative; width:min(340px, 34vw); margin-left:auto; color:var(--muted); }
.mf-page-search-wrap { position:relative; display:flex; align-items:center; }
.mf-page-search-wrap input {
  width:100%; min-width:0; height:34px; padding:.35rem 3.2rem .35rem 2rem;
  border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.06);
  color:#fff; font:inherit; outline:none;
}
.mf-page-search-wrap input:focus { border-color:rgba(239,90,154,.72); box-shadow:0 0 0 3px rgba(231,34,108,.13); background:rgba(255,255,255,.09); }
.mf-page-search-icon { position:absolute; left:.72rem; z-index:1; color:#ff82b4; font-size:1rem; pointer-events:none; }
.mf-page-search-wrap kbd { position:absolute; right:.55rem; padding:.08rem .35rem; border:1px solid rgba(255,255,255,.14); border-radius:5px; color:#a9a2ab; background:rgba(0,0,0,.18); font:600 .62rem/1.35 inherit; pointer-events:none; }
.mf-page-results {
  position:absolute; top:calc(100% + .45rem); right:0; width:min(430px, calc(100vw - 2rem)); max-height:min(430px, 65vh);
  overflow:auto; padding:.4rem; border:1px solid rgba(255,255,255,.16); border-radius:14px;
  background:rgba(20,20,28,.985); box-shadow:0 24px 70px rgba(0,0,0,.62); backdrop-filter:blur(20px); z-index:90;
}
.mf-page-results a { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.58rem .7rem; border-radius:9px; color:#eee9ef; text-decoration:none; }
.mf-page-results a:hover, .mf-page-results a.is-active { background:rgba(231,34,108,.16); color:#fff; }
.mf-page-results a[aria-current="page"] { box-shadow:inset 2px 0 #ef5a9a; }
.mf-page-results a span { display:flex; align-items:baseline; gap:.48rem; min-width:0; }
.mf-page-results small { flex:0 0 auto; color:#ed76aa; font-size:.66rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.mf-page-results code { max-width:42%; overflow:hidden; color:#85808a; font-size:.65rem; text-overflow:ellipsis; white-space:nowrap; }
.mf-page-empty { margin:.5rem; padding:1rem; text-align:center; color:var(--muted); }
body.mf-editing .top, body.mf-previewing .top { top: 0; }
body.mf-editing .hero-fluid { pointer-events: none; }
body.mf-editing [data-mf-origin] {
  outline: 2px dashed rgba(231,34,108,.7);
  outline-offset: 4px;
  cursor: pointer;
  position: relative;
}
body.mf-editing [data-mf-origin].mf-selected {
  outline: 3px solid #e7226c;
}
body.mf-editing .mf-video-frame > .mf-media-video {
  opacity: 1;
  transition: none;
}
body.mf-editing .mf-page-body h1,
body.mf-editing .mf-page-body h2,
body.mf-editing .mf-page-body h3,
body.mf-editing .mf-page-body h4,
body.mf-editing .mf-page-body p,
body.mf-editing .mf-page-body li,
body.mf-editing .mf-page-body figcaption,
body.mf-editing .mf-page-body .lead,
body.mf-editing .mf-page-body .kicker {
  cursor: text;
}
body.mf-editing .mf-text-editing {
  outline: 2px solid #ef8ab5;
  border-radius: 6px;
}
.mf-drawer {
  position: fixed;
  top: 76px;
  right: 20px;
  width: min(420px, 100vw);
  max-height: calc(100vh - 96px);
  background: linear-gradient(180deg, rgba(24,25,34,.985), rgba(13,14,20,.99));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  z-index: 80;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0,0,0,.62), 0 0 0 1px rgba(231,34,108,.08);
  resize: both;
  min-width: 340px;
  min-height: 300px;
}
.mf-drawer[data-active-panel="settings"] { width:min(860px,calc(100vw - 40px)); min-width:620px; }
.mf-drawer-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .8rem .85rem;
  border-bottom: 1px solid var(--line);
  background: rgba(25,26,36,.96);
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.mf-drawer-head:active { cursor: grabbing; }
.mf-drawer-head > div { flex: 1; min-width: 0; }
.mf-drawer-head h2 { margin: .08rem 0 0; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mf-drawer-eyebrow { display:block; color:#ff82b4; font-size:.64rem; line-height:1; letter-spacing:.12em; text-transform:uppercase; font-weight:700; }
.mf-drag-grip { width: 14px; height: 22px; opacity:.48; background-image:radial-gradient(circle, #fff 1.25px, transparent 1.5px); background-size:5px 5px; flex:0 0 auto; }
.mf-icon-btn { width:28px; height:28px; display:grid; place-items:center; padding:0; border:1px solid var(--line); border-radius:8px; background:rgba(255,255,255,.05); color:#fff; cursor:pointer; }
.mf-drawer-body { padding: 1rem 1.05rem; overflow:auto; max-height:calc(100vh - 155px); }
.mf-drawer-body label { display: block; margin: .7rem 0; color: var(--muted); font-size: .8rem; }
.mf-drawer-body input, .mf-drawer-body select, .mf-drawer-body textarea {
  width: 100%;
  margin-top: .3rem;
  background: #12131a;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .55rem .7rem;
  font: inherit;
}
.mf-drawer-body textarea { line-height: 1.45; }
.mf-drawer-body input:focus, .mf-drawer-body select:focus, .mf-drawer-body textarea:focus { outline:none; border-color:#ed3b7e; box-shadow:0 0 0 3px rgba(231,34,108,.14); }
.mf-hint, .mf-current { color: var(--muted); font-size: .86rem; }
.mf-section-intro { padding:.85rem; border:1px solid rgba(231,34,108,.22); border-radius:12px; background:rgba(231,34,108,.07); }
.mf-section-intro p { margin:.25rem 0 0; color:var(--muted); font-size:.82rem; line-height:1.45; }
.mf-field-group { border:0; border-top:1px solid var(--line); margin:1.15rem 0 0; padding:.85rem 0 0; }
.mf-field-group legend { color:#fff; font-size:.78rem; font-weight:700; padding-right:.5rem; }
.mf-field-note { display:block; margin-top:.3rem; color:var(--muted); font-size:.72rem; }
.mf-settings-tabs { position:sticky; top:-1rem; z-index:4; display:flex; gap:.35rem; margin:-1rem -1.05rem 1rem; padding:.8rem 1.05rem; overflow-x:auto; border-bottom:1px solid var(--line); background:rgba(15,16,23,.97); }
.mf-settings-tabs button { flex:0 0 auto; padding:.55rem .8rem; border:1px solid transparent; border-radius:9px; background:transparent; color:var(--muted); font:700 .76rem/1 inherit; cursor:pointer; }
.mf-settings-tabs button[aria-selected="true"] { color:#fff; border-color:rgba(239,90,154,.36); background:rgba(231,34,108,.14); }
.mf-field-columns { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.mf-upload-preview { margin:.8rem 0; padding:.7rem; border:1px solid var(--line); border-radius:12px; background:#0c0d12; }
.mf-upload-preview p { margin:0 0 .5rem; color:var(--muted); font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.mf-upload-preview img,.mf-upload-preview video,.mf-lottie-preview { display:block; width:100%; max-height:260px; aspect-ratio:16/9; object-fit:contain; border-radius:8px; background:#07080b; }
.mf-check { display: flex; align-items: center; gap: .45rem; color: var(--ink); }
.mf-check input { width: auto; }
.mf-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: .45rem;
  margin: .65rem 0 .85rem;
  max-height: 168px;
  overflow: auto;
  padding-right: .15rem;
}
.mf-slot-tile {
  display: flex;
  flex-direction: column;
  gap: .28rem;
  padding: .28rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  color: #fff;
  cursor: pointer;
  text-align: left;
}
.mf-slot-tile:hover, .mf-slot-tile.is-active { border-color: rgba(231,34,108,.5); box-shadow: 0 0 0 1px rgba(231,34,108,.18); }
.mf-slot-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 7px;
  overflow: hidden;
  background: #07080b;
}
.mf-slot-thumb img, .mf-slot-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mf-slot-label {
  display: block;
  font-size: .62rem;
  line-height: 1.25;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mf-slot-index {
  color: #ff9cc8;
  font-weight: 700;
}
.mf-local-picker { margin: .35rem 0 .2rem; }
.mf-source-switch {
  display: flex;
  gap: .35rem;
  margin: .45rem 0 .65rem;
  padding: .22rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
}
.mf-source-switch button {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: .45rem .65rem;
  background: transparent;
  color: var(--muted);
  font: 700 .72rem/1 inherit;
  cursor: pointer;
}
.mf-source-switch button[aria-selected="true"] {
  color: #fff;
  background: rgba(231,34,108,.18);
  box-shadow: inset 0 0 0 1px rgba(239,90,154,.28);
}
.mf-lib-search {
  margin-bottom: .55rem !important;
}
.mf-media-library {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: .45rem;
  max-height: 210px;
  overflow: auto;
  padding-right: .1rem;
}
.mf-lib-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .28rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  color: #fff;
  cursor: pointer;
  text-align: left;
}
.mf-lib-item:hover, .mf-lib-item.is-selected {
  border-color: rgba(231,34,108,.52);
  box-shadow: 0 0 0 1px rgba(231,34,108,.18);
}
.mf-lib-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 7px;
  overflow: hidden;
  background: #07080b;
}
.mf-lib-thumb img, .mf-lib-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mf-lib-thumb--file {
  display: grid;
  place-items: center;
  color: #ff9cc8;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mf-lib-name {
  display: block;
  font-size: .6rem;
  line-height: 1.25;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mf-library-empty { margin-top: .2rem; }
.mf-orphan-summary {
  margin: .35rem 0 .75rem;
  color: var(--soft-ink, var(--muted));
  font-size: .88rem;
}
.mf-orphan-list {
  list-style: none;
  margin: 0 0 .85rem;
  padding: 0;
  max-height: 240px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
}
.mf-orphan-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .55rem .75rem;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}
.mf-orphan-item:last-child { border-bottom: 0; }
.mf-orphan-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .74rem;
}
.mf-orphan-meta {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .72rem;
  white-space: nowrap;
}
.mf-orphan-actions {
  margin-top: 0;
  padding-top: 0;
}
.mf-fieldset {
  margin: 1rem 0 0;
  padding: .85rem .9rem .95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.mf-fieldset legend {
  padding: 0 .35rem;
  color: #ff82b4;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.mf-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem .75rem;
}
.mf-showcase-items { display: flex; flex-direction: column; gap: .55rem; margin-top: .35rem; }
.mf-showcase-gallery-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .25rem;
}
.mf-showcase-gallery-toolbar .mf-hint-tight { flex: 1; margin: .15rem 0 0; }
.mf-showcase-add { flex-shrink: 0; padding: .45rem .75rem; font-size: .78rem; white-space: nowrap; }
.mf-showcase-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  margin-left: .35rem;
  padding: 0 .35rem;
  border-radius: 999px;
  background: rgba(231,34,108,.18);
  color: #ff9ec8;
  font: 700 .62rem/1 ui-monospace, SFMono-Regular, monospace;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: middle;
}
.mf-showcase-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 28px;
  gap: .65rem .75rem;
  align-items: start;
  padding: .65rem .7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}
.mf-showcase-thumb {
  width: 72px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
  background: #0d0e14;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.mf-showcase-thumb:hover,
.mf-showcase-thumb:focus-visible {
  border-color: rgba(239,138,181,.55);
  transform: translateY(-1px);
  outline: none;
}
.mf-showcase-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mf-showcase-card-fields label { margin: 0 0 .45rem; }
.mf-showcase-card-fields label:last-child { margin-bottom: 0; }
.mf-showcase-card-fields input { font-size: .82rem; }
.mf-showcase-remove {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  color: #ffb3b3;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.mf-showcase-remove:hover:not(:disabled) { border-color: rgba(255,120,120,.45); background: rgba(255,80,80,.08); }
.mf-showcase-remove:disabled { opacity: .35; cursor: not-allowed; }
.mf-showcase-section { margin-top: .85rem; }
.mf-showcase-section:first-child { margin-top: 0; }
.mf-showcase-details {
  margin-top: .55rem;
  padding: .55rem .65rem;
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.015);
}
.mf-showcase-details summary {
  cursor: pointer;
  color: #ef8ab5;
  font-size: .8rem;
  font-weight: 600;
  list-style: none;
}
.mf-showcase-details summary::-webkit-details-marker { display: none; }
.mf-showcase-details[open] summary { margin-bottom: .55rem; }
.mf-showcase-actions { margin: 0 -1.05rem -1rem; }
.mf-showcase-form .mf-fieldset { margin-top: .85rem; }
.mf-showcase-form .mf-fieldset:first-of-type { margin-top: .85rem; }
.mf-optional { color: var(--muted); font-size: .72rem; font-weight: 400; }
.mf-hint-tight { margin: 0 0 .35rem; font-size: .78rem; }
@media (max-width: 720px) {
  .mf-field-row { grid-template-columns: 1fr; }
  .mf-showcase-gallery-toolbar { flex-direction: column; align-items: stretch; }
  .mf-showcase-add { width: 100%; }
}
.mf-slot-list { display: flex; flex-direction: column; gap: .4rem; margin: .8rem 0 1rem; }
.mf-slot-chip {
  text-align: left;
  background: rgba(255,255,255,.04);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .55rem .7rem;
  cursor: pointer;
}
.mf-slot-chip:hover { border-color: rgba(231,34,108,.45); }
.mf-form-error { color: #ffb3b3; font-size: .84rem; }
.mf-form-status { color:#9ee6bd; font-size:.84rem; }
.mf-drawer-actions { display: flex; gap: .5rem; margin-top: 1rem; }
.mf-sticky-actions { position:sticky; bottom:-1rem; margin:1.1rem -1.05rem -1rem; padding:.85rem 1.05rem; background:rgba(13,14,20,.96); border-top:1px solid var(--line); box-shadow:0 -12px 24px rgba(13,14,20,.82); }
body.mf-editing .mf-page-body [data-mf-inline-ready] { transition:outline-color .15s ease, background .15s ease; }
body.mf-editing .mf-page-body [data-mf-inline-ready]:hover { outline:1px dashed rgba(239,138,181,.5); outline-offset:4px; background:rgba(231,34,108,.035); }
@media (max-width: 720px) {
  .mf-bar-form { margin-left: 0; }
  .mf-page-jump { order:5; width:100%; margin-left:0; }
  .mf-page-results { left:0; right:auto; width:100%; }
  .mf-drawer { inset: auto 0 0 !important; width:100% !important; min-width:0; max-height:82vh; border-radius:18px 18px 0 0; resize:none; }
  .mf-drawer-body { max-height:calc(82vh - 62px); }
  .mf-field-columns { grid-template-columns:1fr; gap:0; }
}
