.momso-home {
  --graphite: #0e1012;
  --stone: #e7e6e2;
  --forest: #1e3a34;
  --steel: #b5b88d;
  --aram: #d9b86a;
  --yeoul: #63b7af;
  --sorok: #a88ddb;
  --momso-safe-top: var(--safe-top, max(env(safe-area-inset-top, 0px), 16px));
  --momso-safe-right: var(--safe-right, max(env(safe-area-inset-right, 0px), 16px));
  --momso-safe-bottom: var(--safe-bottom, max(env(safe-area-inset-bottom, 0px), 20px));
  --momso-safe-left: var(--safe-left, max(env(safe-area-inset-left, 0px), 16px));
  --page-gutter: clamp(20px, 4vw, 64px);
  --max-width: 1480px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.75, 0.25, 1);
}

.momso-home, .momso-home * { box-sizing: border-box; }

.momso-home {
  scroll-behavior: smooth;
  background: var(--graphite);
}

.momso-home {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo",
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.momso-home :lang(ja) { font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif; }
.momso-home :lang(zh-Hant) { font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif; }

.momso-home .reading-column { width: min(100%,680px); margin-right: auto; margin-left: auto; font-size: 19px; line-height: 30.8px; }
.momso-home .wide-column { width: min(100%,960px); margin-right: auto; margin-left: auto; }

.momso-home button, .momso-home a { -webkit-tap-highlight-color: transparent; }
.momso-home button { font: inherit; }
.momso-home a { color: inherit; text-decoration: none; }

.momso-home .skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.momso-home .skip-link:focus { transform: translateY(0); }

.momso-home .site-shell {
  --mood-bg: #fbf0d5;
  --mood-ink: #201a12;
  --mood-muted: #6e6353;
  --mood-accent: var(--aram);
  --mood-accent-rgb: 217, 184, 106;
  --mood-deep: #6d4b0d;
  --mood-panel: rgba(255, 251, 239, 0.62);
  --mood-panel-strong: rgba(255, 251, 239, 0.82);
  --mood-line-color: rgba(81, 62, 24, 0.18);
  --mood-shadow: rgba(85, 55, 9, 0.16);
  position: relative;
  min-height: 100svh;
  color: var(--mood-ink);
  background: var(--mood-bg);
  transition: color 900ms var(--ease-soft), background 900ms var(--ease-soft);
}

.momso-home .site-shell[data-mood="evening"] {
  --mood-bg: #0d3942;
  --mood-ink: #f2fbf8;
  --mood-muted: #b8d2cf;
  --mood-accent: var(--yeoul);
  --mood-accent-rgb: 99, 183, 175;
  --mood-deep: #061f26;
  --mood-panel: rgba(7, 38, 46, 0.58);
  --mood-panel-strong: rgba(6, 31, 38, 0.82);
  --mood-line-color: rgba(132, 224, 214, 0.2);
  --mood-shadow: rgba(0, 6, 10, 0.38);
}

.momso-home .site-shell[data-mood="dawn"] {
  --mood-bg: #11142f;
  --mood-ink: #f6f2ff;
  --mood-muted: #c7c0de;
  --mood-accent: var(--sorok);
  --mood-accent-rgb: 168, 141, 219;
  --mood-deep: #090b21;
  --mood-panel: rgba(20, 20, 55, 0.58);
  --mood-panel-strong: rgba(10, 11, 34, 0.84);
  --mood-line-color: rgba(185, 162, 237, 0.2);
  --mood-shadow: rgba(0, 2, 13, 0.44);
}

.momso-home .site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: min(100%, calc(var(--max-width) + (var(--page-gutter) * 2)));
  min-height: calc(76px + var(--momso-safe-top));
  padding: var(--momso-safe-top) var(--page-gutter) 0;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 48px;
  transform: translateX(-50%);
}

.momso-home .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.momso-home .brand-symbol {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--mood-line-color);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(255,255,255,.24), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 12px 28px var(--mood-shadow);
}
.momso-home .brand-symbol span { position: absolute; font-size: 17px; font-weight: 500; line-height: 1; }
.momso-home .brand-symbol span:first-child { transform: translate(-4px,-4px); }
.momso-home .brand-symbol span:last-child { transform: translate(5px,5px); }
.momso-home .brand-name { font-size: 18px; }

.momso-home .desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
  color: var(--mood-muted);
  font-size: 14px;
  font-weight: 580;
}

.momso-home .desktop-nav a { position: relative; padding: 12px 0; transition: color 200ms ease; }
.momso-home .desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--mood-accent);
  content: "";
  transform: scaleX(0);
  transition: transform 260ms var(--ease-out);
}
.momso-home .desktop-nav a:hover, .momso-home .desktop-nav a:focus-visible { color: var(--mood-ink); }
.momso-home .desktop-nav a:hover::after, .momso-home .desktop-nav a:focus-visible::after { transform: scaleX(1); }

.momso-home .header-actions { position: relative; display: flex; align-items: center; gap: 10px; }
.momso-home .language-button, .momso-home .menu-button {
  display: inline-flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mood-line-color);
  border-radius: 14px;
  color: var(--mood-ink);
  background: transparent;
  cursor: pointer;
}
.momso-home .language-button { gap: 7px; padding: 0 14px; font-size: 12px; font-weight: 720; letter-spacing: .06em; }
.momso-home .language-button svg { width: 10px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.momso-home .language-menu { position: absolute; top: 50px; left: 0; display: grid; width: 218px; padding: 8px; border: 1px solid var(--mood-line-color); border-radius: 18px; opacity: 0; background: var(--mood-panel-strong); box-shadow: 0 20px 55px var(--mood-shadow); backdrop-filter: blur(24px); pointer-events: none; transform: translateY(-7px) scale(.98); transform-origin: top left; transition: opacity 160ms ease,transform 220ms var(--ease-out); }
.momso-home .header-actions[data-language="open"] .language-menu { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.momso-home .language-menu button { display: flex; min-height: 42px; padding: 0 11px; align-items: center; justify-content: space-between; border: 0; border-radius: 11px; color: var(--mood-muted); background: transparent; font-size: 12px; text-align: left; }
.momso-home .language-menu button[aria-current="page"] { color: var(--mood-ink); background: rgba(var(--mood-accent-rgb),.13); }
.momso-home .language-menu button:disabled { opacity: .48; }
.momso-home .language-menu small { font-size: 8px; font-weight: 680; letter-spacing: .04em; }
.momso-home .header-cta {
  display: inline-flex;
  height: 42px;
  padding: 0 18px;
  align-items: center;
  border: 1px solid rgba(var(--mood-accent-rgb),.6);
  border-radius: 14px;
  color: var(--mood-deep);
  background: var(--mood-accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.52), 0 9px 24px rgba(var(--mood-accent-rgb),.19);
  font-size: 13px;
  font-weight: 760;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease;
}
.momso-home .header-cta:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.62), 0 14px 30px rgba(var(--mood-accent-rgb),.26); }
.momso-home .header-cta:active { transform: translateY(1px) scale(.985); }
.momso-home .menu-button, .momso-home .mobile-nav { display: none; }

.momso-home .hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  overflow: hidden;
  align-items: center;
  padding: clamp(112px,13vh,160px) var(--page-gutter) clamp(84px,10vh,120px);
  isolation: isolate;
}
.momso-home .hero::before {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    radial-gradient(circle at 70% 43%, rgba(var(--mood-accent-rgb),.25), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(var(--mood-accent-rgb),.12), transparent 35%),
    linear-gradient(150deg, color-mix(in srgb,var(--mood-bg) 92%,white 8%), var(--mood-bg) 56%, color-mix(in srgb,var(--mood-bg) 82%,var(--mood-deep) 18%));
  content: "";
  transition: background 900ms var(--ease-soft);
}
.momso-home .hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
  content: "";
}
.momso-home .hero-aurora {
  position: absolute;
  z-index: -2;
  top: -35%;
  left: 48%;
  width: 70vw;
  height: 75vw;
  max-width: 1100px;
  max-height: 1100px;
  border-radius: 50%;
  opacity: .34;
  background: conic-gradient(from 210deg,transparent 0deg,rgba(var(--mood-accent-rgb),.55) 70deg,transparent 148deg,rgba(255,255,255,.26) 240deg,transparent 310deg);
  filter: blur(90px);
  animation: momso-aurora-turn 24s linear infinite;
}
.momso-home .hero-grid {
  display: grid;
  width: min(100%,var(--max-width));
  margin: 0 auto;
  grid-template-columns: minmax(0,.92fr) minmax(480px,1.08fr);
  align-items: center;
  gap: clamp(52px,7vw,118px);
}
.momso-home .hero-copy { position: relative; z-index: 3; padding-top: 20px; }
.momso-home .eyebrow { display: inline-flex; align-items: center; gap: 11px; color: var(--mood-muted); font-size: 11px; font-weight: 730; letter-spacing: .16em; }
.momso-home .eyebrow-orbit { position: relative; width: 19px; height: 19px; border: 1px solid rgba(var(--mood-accent-rgb),.66); border-radius: 50%; }
.momso-home .eyebrow-orbit::after { position: absolute; top: 2px; left: 8px; width: 3px; height: 3px; border-radius: 50%; background: var(--mood-accent); box-shadow: 0 0 9px var(--mood-accent); content: ""; }
.momso-home .hero h1 { margin: clamp(26px,4vh,48px) 0 0; font-size: clamp(54px,6.3vw,104px); font-weight: 460; letter-spacing: -.075em; line-height: .98; }
.momso-home .hero h1 span, .momso-home .hero h1 strong { display: block; }
.momso-home .hero h1 strong { margin-top: .14em; color: var(--mood-accent); font-weight: 760; text-shadow: 0 0 38px rgba(var(--mood-accent-rgb),.22); }
.momso-home .hero-description { max-width: 530px; margin: clamp(26px,4vh,42px) 0 0; color: var(--mood-muted); font-size: clamp(16px,1.3vw,19px); font-weight: 440; letter-spacing: -.02em; line-height: 1.72; }
.momso-home .hero-actions { display: flex; align-items: center; gap: 12px; margin-top: clamp(28px,4.5vh,48px); }
.momso-home .button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 720;
  transition: transform 180ms var(--ease-out), box-shadow 220ms ease, background 220ms ease;
}
.momso-home .button::before { position: absolute; inset: 0; background: linear-gradient(115deg,transparent 20%,rgba(255,255,255,.42) 49%,transparent 77%); content: ""; transform: translateX(-120%); transition: transform 650ms var(--ease-out); }
.momso-home .button:hover::before { transform: translateX(120%); }
.momso-home .button:active { transform: translateY(2px) scale(.975); transition-duration: 90ms; }
.momso-home .button-primary { color: var(--mood-deep); border-color: rgba(var(--mood-accent-rgb),.78); background: var(--mood-accent); box-shadow: inset 0 1px 0 rgba(255,255,255,.66),inset 0 -4px 12px rgba(62,39,0,.14),0 18px 42px rgba(var(--mood-accent-rgb),.22); }
.momso-home .button-primary:hover { transform: translateY(-3px); box-shadow: inset 0 1px 0 rgba(255,255,255,.72),inset 0 -4px 12px rgba(62,39,0,.14),0 24px 52px rgba(var(--mood-accent-rgb),.3); }
.momso-home .button svg { position: relative; width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.momso-home .button-quiet { color: var(--mood-ink); border-color: var(--mood-line-color); background: rgba(255,255,255,.05); box-shadow: inset 0 1px 0 rgba(255,255,255,.16); backdrop-filter: blur(14px); }
.momso-home .button-quiet:hover { border-color: rgba(var(--mood-accent-rgb),.44); background: rgba(var(--mood-accent-rgb),.09); transform: translateY(-3px); }

.momso-home .spirit-column { position: relative; display: grid; justify-items: center; }
.momso-home .spirit-stage { --pointer-x: 50%; --pointer-y: 28%; position: relative; display: grid; width: min(100%,700px); aspect-ratio: 1.06; place-items: center; isolation: isolate; }
.momso-home .spirit-stage::before {
  position: absolute;
  z-index: -1;
  inset: 5% 3% 10%;
  border: 1px solid var(--mood-line-color);
  border-radius: 46% 54% 48% 52% / 51% 40% 60% 49%;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y),rgba(255,255,255,.32),transparent 26%),linear-gradient(150deg,rgba(255,255,255,.16),rgba(var(--mood-accent-rgb),.07) 44%,rgba(0,0,0,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.26),inset 0 -22px 70px rgba(var(--mood-accent-rgb),.08),0 38px 100px var(--mood-shadow);
  backdrop-filter: blur(24px) saturate(118%);
  content: "";
  transform: rotate(-2deg);
  transition: border-color 900ms var(--ease-soft), background 120ms linear;
}
.momso-home .stage-glow { position: absolute; z-index: -1; width: 62%; height: 64%; border-radius: 50%; background: rgba(var(--mood-accent-rgb),.32); filter: blur(74px); animation: momso-breathe-glow 4.8s var(--ease-soft) infinite; }
.momso-home .stage-ring { position: absolute; z-index: -1; border: 1px solid rgba(var(--mood-accent-rgb),.24); border-radius: 50%; }
.momso-home .ring-one { width: 64%; height: 64%; animation: momso-ring-turn 24s linear infinite; }
.momso-home .ring-two { width: 78%; height: 78%; border-style: dashed; opacity: .66; animation: momso-ring-turn 36s linear infinite reverse; }
.momso-home .stage-plinth { position: absolute; bottom: 12%; width: 52%; height: 12%; border: 1px solid rgba(var(--mood-accent-rgb),.32); border-radius: 50%; background: radial-gradient(ellipse,rgba(var(--mood-accent-rgb),.24),transparent 68%); filter: blur(1px); transform: perspective(400px) rotateX(67deg); }
.momso-home .hero-spirit { position: relative; z-index: 2; width: 67%; height: 74%; object-fit: contain; filter: drop-shadow(0 22px 30px rgba(0,0,0,.19)) drop-shadow(0 0 24px rgba(var(--mood-accent-rgb),.42)); animation: momso-spirit-breathe 4.8s var(--ease-soft) infinite; transition: opacity 300ms ease,filter 900ms var(--ease-soft); }
.momso-home .stage-reflection { position: absolute; z-index: 1; bottom: 9%; width: 35%; height: 7%; border-radius: 50%; opacity: .72; background: rgba(var(--mood-accent-rgb),.32); filter: blur(22px); }
.momso-home .stage-caption { position: absolute; z-index: 4; right: 5%; bottom: 12%; display: grid; min-width: 112px; margin: 0; padding: 13px 16px; border: 1px solid var(--mood-line-color); border-radius: 16px; background: var(--mood-panel); box-shadow: inset 0 1px 0 rgba(255,255,255,.2),0 14px 38px var(--mood-shadow); backdrop-filter: blur(18px); }
.momso-home .stage-caption span:first-child { font-size: 17px; font-weight: 780; letter-spacing: -.03em; }
.momso-home .stage-caption span:last-child { margin-top: 3px; color: var(--mood-muted); font-size: 11px; }

.momso-home .mood-console { position: relative; z-index: 6; width: min(92%,610px); margin-top: -5%; padding: 17px; border: 1px solid var(--mood-line-color); border-radius: 26px; background: var(--mood-panel-strong); box-shadow: inset 0 1px 0 rgba(255,255,255,.28),0 26px 60px var(--mood-shadow); backdrop-filter: blur(24px) saturate(124%); }
.momso-home .mood-console-topline { display: flex; min-height: 22px; padding: 0 4px 9px; align-items: center; justify-content: space-between; color: var(--mood-muted); font-size: 10px; font-weight: 650; letter-spacing: .05em; }
.momso-home .mood-console-topline button { padding: 0; border: 0; color: var(--mood-accent); background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.momso-home .mood-tabs { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.momso-home .mood-tab { display: flex; min-width: 0; min-height: 64px; padding: 10px 11px; align-items: center; gap: 10px; border: 1px solid transparent; border-radius: 17px; color: var(--mood-muted); background: transparent; cursor: pointer; transition: color 180ms ease,border-color 180ms ease,background 180ms ease,transform 120ms var(--ease-out); }
.momso-home .mood-tab:hover { color: var(--mood-ink); background: rgba(var(--mood-accent-rgb),.08); }
.momso-home .mood-tab:active { transform: scale(.975); }
.momso-home .mood-tab[data-selected="true"] { color: var(--mood-ink); border-color: rgba(var(--mood-accent-rgb),.38); background: linear-gradient(145deg,rgba(var(--mood-accent-rgb),.22),rgba(var(--mood-accent-rgb),.08)); box-shadow: inset 0 1px 0 rgba(255,255,255,.22),0 8px 22px rgba(var(--mood-accent-rgb),.1); }
.momso-home .mood-dot { flex: 0 0 auto; width: 10px; height: 10px; border: 1px solid currentColor; border-radius: 50%; }
.momso-home .mood-tab[data-selected="true"] .mood-dot { border-color: var(--mood-accent); background: var(--mood-accent); box-shadow: 0 0 12px rgba(var(--mood-accent-rgb),.65); }
.momso-home .mood-tab-copy { display: grid; min-width: 0; text-align: left; }
.momso-home .mood-tab-copy strong { font-size: 12px; font-weight: 760; }
.momso-home .mood-tab-copy small { margin-top: 2px; opacity: .72; font-size: 9px; letter-spacing: -.02em; white-space: nowrap; }
.momso-home .mood-line { margin: 12px 5px 1px; color: var(--mood-muted); font-size: 12px; letter-spacing: -.02em; }

.momso-home .scroll-cue { position: absolute; bottom: max(var(--momso-safe-bottom),24px); left: var(--page-gutter); display: flex; align-items: center; gap: 10px; color: var(--mood-muted); }
.momso-home .scroll-cue span { position: relative; display: inline-block; width: 20px; height: 31px; border: 1px solid var(--mood-line-color); border-radius: 12px; }
.momso-home .scroll-cue span::after { position: absolute; top: 6px; left: 8px; width: 2px; height: 6px; border-radius: 2px; background: var(--mood-accent); content: ""; animation: momso-scroll-dot 2s ease-in-out infinite; }
.momso-home .scroll-cue small { font-size: 10px; font-weight: 620; letter-spacing: .08em; }
.momso-home .first-slice-marker { min-height: 38vh; padding: 12vh var(--page-gutter); color: #e7e6e2; background: #0e1012; text-align: center; }
.momso-home .first-slice-marker p { margin: 0; color: #90938f; font-size: 14px; }
.momso-home .first-slice-marker h2 { margin: 18px 0 0; font-size: clamp(36px,6vw,76px); font-weight: 520; letter-spacing: -.065em; }

.momso-home .section-frame { width: min(100%, var(--max-width)); margin: 0 auto; }
.momso-home .section-pad { padding: clamp(104px,13vw,190px) var(--page-gutter); }
.momso-home .section-index { margin: 0; color: currentColor; opacity: .52; font-size: 11px; font-weight: 760; letter-spacing: .17em; }
.momso-home .section-heading h2 { margin: 20px 0 0; font-size: clamp(42px,5.3vw,78px); font-weight: 520; letter-spacing: -.068em; line-height: 1.06; }
.momso-home .section-heading > p, .momso-home .split-heading > p { color: inherit; opacity: .64; font-size: clamp(16px,1.25vw,19px); line-height: 1.75; }
.momso-home .split-heading { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); align-items: end; gap: clamp(40px,8vw,130px); }
.momso-home .split-heading > p { max-width: 480px; margin: 0 0 2px; }
.momso-home .centered-heading { max-width: 850px; margin: 0 auto; text-align: center; }
.momso-home .centered-heading > p:last-child { max-width: 650px; margin: 24px auto 0; }

.momso-home .opening-story {
  position: relative;
  display: grid;
  min-height: max(760px,100svh);
  overflow: hidden;
  padding: 16vh var(--page-gutter) 12vh;
  place-items: end start;
  color: #f0efeb;
  background: #080a0d;
  isolation: isolate;
}
.momso-home .opening-poster, .momso-home .opening-video, .momso-home .opening-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.momso-home .opening-poster { z-index: -4; background: #080a0d url("/assets/spirits/master_scene_4x5.png") 62% 54%/cover no-repeat; transform: scale(1.02); }
.momso-home .opening-video { z-index: -3; object-fit: cover; opacity: .74; }
.momso-home .opening-shade {
  z-index: -2;
  background:
    linear-gradient(90deg,rgba(5,7,9,.92) 0%,rgba(5,7,9,.7) 38%,rgba(5,7,9,.1) 75%),
    linear-gradient(0deg,rgba(5,7,9,.82) 0%,transparent 52%,rgba(5,7,9,.22) 100%);
}
.momso-home .opening-copy { position: relative; z-index: 2; }
.momso-home .opening-copy h2 { max-width: 930px; margin: 25px 0 0; font-size: clamp(48px,6.4vw,96px); font-weight: 430; letter-spacing: -.075em; line-height: 1.04; }
.momso-home .opening-copy h2 strong { display: block; margin-top: .12em; color: #d9b86a; font-weight: 660; }
.momso-home .opening-copy > p:not(.section-index) { max-width: 590px; margin: 35px 0 0; color: rgba(240,239,235,.68); font-size: clamp(16px,1.25vw,19px); line-height: 1.8; }
.momso-home .opening-note { display: flex; max-width: 590px; margin-top: 38px; padding-top: 19px; align-items: flex-start; gap: 13px; border-top: 1px solid rgba(255,255,255,.17); }
.momso-home .opening-note span { color: #d9b86a; }
.momso-home .opening-note p { margin: 0; color: rgba(240,239,235,.56); font-size: 12px; line-height: 1.7; }

.momso-home .app-story { color: #171612; background: #e7e6e2; }
.momso-home .feature-showcase { margin-top: clamp(60px,8vw,112px); }
.momso-home .feature-tabs { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid rgba(14,16,18,.2); border-bottom: 1px solid rgba(14,16,18,.2); }
.momso-home .feature-tab { display: grid; min-height: 104px; padding: 23px 18px; align-content: space-between; border: 0; border-right: 1px solid rgba(14,16,18,.15); color: #77766e; background: transparent; text-align: left; cursor: pointer; transition: color 220ms ease,background 220ms ease; }
.momso-home .feature-tab:last-child { border-right: 0; }
.momso-home .feature-tab span { font-size: 10px; letter-spacing: .12em; }
.momso-home .feature-tab strong { font-size: 15px; }
.momso-home .feature-tab:hover { color: #0e1012; background: rgba(255,255,255,.32); }
.momso-home .feature-tab[data-selected="true"] { color: #0e1012; background: #f6f4ed; box-shadow: inset 0 -3px 0 #1e3a34; }
.momso-home .feature-panel { display: grid; min-height: 720px; overflow: hidden; grid-template-columns: minmax(0,.8fr) minmax(460px,1.2fr); border-bottom: 1px solid rgba(14,16,18,.18); background: #f4f2ea; }
.momso-home .feature-copy { display: flex; padding: clamp(48px,7vw,98px); flex-direction: column; justify-content: center; }
.momso-home .feature-copy > p:first-child { margin: 0; color: #1e3a34; font-size: 12px; font-weight: 760; letter-spacing: .08em; }
.momso-home .feature-copy h3 { max-width: 560px; margin: 25px 0 0; font-size: clamp(38px,4.2vw,66px); font-weight: 530; letter-spacing: -.067em; line-height: 1.08; }
.momso-home .feature-divider { width: 42px; height: 1px; margin: 37px 0; background: #1e3a34; }
.momso-home .feature-copy > p:last-of-type { max-width: 520px; margin: 0; color: #66645c; font-size: 17px; line-height: 1.82; }
.momso-home .text-link { display: inline-flex; width: fit-content; margin-top: 35px; padding-bottom: 5px; gap: 12px; border-bottom: 1px solid rgba(14,16,18,.42); font-size: 13px; font-weight: 720; }
.momso-home .text-link span { color: #1e3a34; }
.momso-home .device-scene { position: relative; display: grid; min-height: 720px; overflow: hidden; place-items: end center; background: #112c2b; isolation: isolate; }
.momso-home .device-scene::before { position: absolute; z-index: -2; inset: 0; opacity: .48; background: radial-gradient(circle at 50% 28%,#63b7af 0%,transparent 37%),linear-gradient(145deg,#203f3b,#08191d); content: ""; }
.momso-home .device-scene::after { position: absolute; z-index: -1; inset: 0; opacity: .13; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.72' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); content: ""; }
.momso-home .device-halo { position: absolute; top: 11%; width: 62%; aspect-ratio: 1; border-radius: 50%; background: rgba(99,183,175,.27); filter: blur(68px); }
.momso-home .phone-frame { position: relative; width: min(54%,390px); height: 82%; margin-bottom: -8%; overflow: hidden; border: 7px solid #070d10; border-radius: 54px 54px 0 0; background: #070d10; box-shadow: 0 50px 110px rgba(0,0,0,.54),inset 0 0 0 1px rgba(255,255,255,.16); }
.momso-home .phone-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; animation: momso-screen-arrive 480ms var(--ease-out) both; }
.momso-home .phone-speaker { position: absolute; z-index: 2; top: 13px; left: 50%; width: 28%; height: 22px; border-radius: 20px; background: #070d10; transform: translateX(-50%); }
.momso-home .device-caption { position: absolute; right: 21px; bottom: 19px; color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .1em; writing-mode: vertical-rl; }

.momso-home .content-ledger { display: grid; margin-top: clamp(90px,11vw,150px); grid-template-columns: .9fr 1fr 1fr; border-top: 1px solid rgba(14,16,18,.23); border-bottom: 1px solid rgba(14,16,18,.23); }
.momso-home .ledger-intro, .momso-home .ledger-group { min-height: 330px; padding: clamp(32px,4vw,60px); }
.momso-home .ledger-intro { border-right: 1px solid rgba(14,16,18,.18); }
.momso-home .ledger-intro h3 { margin: 24px 0 0; font-size: clamp(28px,3vw,44px); font-weight: 570; letter-spacing: -.055em; line-height: 1.15; }
.momso-home .ledger-intro > p:not(.section-index) { margin: 24px 0 0; color: #737168; font-size: 14px; line-height: 1.7; }
.momso-home .ledger-intro time { display: inline-block; margin-top: 35px; padding: 8px 12px; border: 1px solid rgba(14,16,18,.18); border-radius: 100px; color: #5d5b54; font-size: 10px; font-weight: 680; }
.momso-home .ledger-group { border-right: 1px solid rgba(14,16,18,.18); background: #f3f1e9; }
.momso-home .ledger-group:last-child { border-right: 0; }
.momso-home .ledger-group > p { margin: 0; color: #1e3a34; font-size: 13px; font-weight: 780; }
.momso-home .ledger-group dl { display: grid; margin: 43px 0 0; gap: 22px; }
.momso-home .ledger-group dl div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.momso-home .ledger-group dt { color: #6e6c64; font-size: 13px; }
.momso-home .ledger-group dd { margin: 0; font-size: clamp(38px,4.3vw,66px); font-weight: 540; letter-spacing: -.07em; }
.momso-home .ledger-group dd small { margin-left: 4px; color: #6e6c64; font-size: 12px; font-weight: 580; }
.momso-home .ledger-group.collaborator { background: #1e3a34; color: #f0efe9; }
.momso-home .ledger-group.collaborator > p { color: #8bd1ca; }
.momso-home .ledger-group.collaborator dt, .momso-home .ledger-group.collaborator dd small { color: rgba(240,239,233,.6); }

.momso-home .spirits-section { color: #e7e6e2; background: #0e1012; }
.momso-home .spirit-cards { display: grid; margin-top: clamp(66px,8vw,114px); grid-template-columns: repeat(3,1fr); gap: 16px; }
.momso-home .spirit-card { --card-color: 217,184,106; position: relative; min-height: 660px; overflow: hidden; border: 1px solid rgba(var(--card-color),.24); border-radius: 34px; background: linear-gradient(160deg,rgba(var(--card-color),.12),rgba(255,255,255,.025) 38%,rgba(0,0,0,.16)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.momso-home .spirit-card[data-spirit="evening"] { --card-color: 99,183,175; }
.momso-home .spirit-card[data-spirit="dawn"] { --card-color: 168,141,219; }
.momso-home .spirit-card-topline { display: flex; padding: 27px 29px 0; justify-content: space-between; color: rgba(231,230,226,.56); font-size: 10px; font-weight: 680; letter-spacing: .05em; }
.momso-home .spirit-card-visual { position: relative; display: grid; height: 430px; place-items: center; }
.momso-home .spirit-card-visual::before { position: absolute; width: 65%; aspect-ratio: 1; border-radius: 50%; background: rgba(var(--card-color),.18); filter: blur(50px); content: ""; }
.momso-home .card-orbit { position: absolute; width: 70%; aspect-ratio: 1; border: 1px solid rgba(var(--card-color),.19); border-radius: 50%; }
.momso-home .card-orbit::after { position: absolute; inset: 11%; border: 1px dashed rgba(var(--card-color),.16); border-radius: 50%; content: ""; }
.momso-home .spirit-card img { position: relative; width: 82%; height: 82%; object-fit: contain; filter: drop-shadow(0 22px 30px rgba(0,0,0,.28)) drop-shadow(0 0 20px rgba(var(--card-color),.28)); transition: transform 600ms var(--ease-out); }
.momso-home .spirit-card:hover img { transform: translateY(-9px) scale(1.02); }
.momso-home .spirit-card-copy { padding: 0 31px 34px; }
.momso-home .spirit-card-copy p { margin: 0; color: rgba(var(--card-color),.82); font-size: 9px; font-weight: 760; letter-spacing: .17em; }
.momso-home .spirit-card-copy h3 { margin: 9px 0 0; font-size: 42px; font-weight: 560; letter-spacing: -.06em; }
.momso-home .spirit-card-copy span { display: block; margin-top: 17px; color: rgba(231,230,226,.57); font-size: 14px; line-height: 1.65; }

.momso-home .people-section { color: #171612; background: #d7dacd; }
.momso-home .people-tabs { display: grid; margin-top: clamp(58px,7vw,100px); grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(14,16,18,.22); border-bottom: 1px solid rgba(14,16,18,.22); }
.momso-home .people-tab { display: flex; min-height: 98px; padding: 22px 28px; align-items: center; justify-content: space-between; border: 0; border-right: 1px solid rgba(14,16,18,.18); color: #69685f; background: transparent; cursor: pointer; }
.momso-home .people-tab:last-child { border-right: 0; }
.momso-home .people-tab strong { font-size: 16px; }
.momso-home .people-tab span { font-size: 10px; }
.momso-home .people-tab[data-selected="true"] { color: #f2f1eb; background: #1e3a34; }
.momso-home .people-panel { margin-top: 48px; }
.momso-home .people-context { display: flex; min-height: 100px; padding: 0 0 38px; align-items: flex-start; border-bottom: 1px solid rgba(14,16,18,.2); }
.momso-home .people-context p { max-width: 760px; margin: 0; color: #5f5f57; font-size: 16px; line-height: 1.75; }
.momso-home .people-grid { display: grid; grid-template-columns: repeat(2,1fr); }
.momso-home .person-card { position: relative; min-height: 310px; overflow: hidden; padding: 40px; border-right: 1px solid rgba(14,16,18,.18); border-bottom: 1px solid rgba(14,16,18,.18); isolation: isolate; }
.momso-home .person-card:nth-child(even) { border-right: 0; }
.momso-home .person-sequence { color: rgba(14,16,18,.35); font-size: 10px; letter-spacing: .13em; }
.momso-home .authority-mark { display: inline-flex; margin: 44px 0 0; padding: 7px 10px; border: 1px solid rgba(14,16,18,.2); border-radius: 100px; color: #4d4e48; font-size: 9px; font-weight: 720; letter-spacing: .1em; }
.momso-home .person-card h3 { position: relative; z-index: 2; display: flex; margin: 17px 0 0; flex-wrap: wrap; gap: 7px; align-items: baseline; font-size: clamp(16px,1.45vw,22px); font-weight: 650; letter-spacing: -.035em; }
.momso-home .virtual-disclosure { color: #0e1012; font-size: inherit; font-weight: 780; text-decoration: underline; text-decoration-color: #1e3a34; text-decoration-thickness: 3px; text-underline-offset: 5px; }
.momso-home .portrait-reserved { position: absolute; z-index: -1; right: -7%; bottom: -48%; width: 48%; aspect-ratio: 1; border: 1px solid rgba(14,16,18,.11); border-radius: 50%; background: linear-gradient(145deg,rgba(255,255,255,.2),transparent); }

.momso-home .commerce-section { color: #f1f0ea; background: #0b2928; }
.momso-home .commerce-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.momso-home .commerce-card { min-height: 760px; padding: clamp(36px,5vw,72px); border: 1px solid rgba(255,255,255,.14); border-radius: 40px; box-shadow: inset 0 1px 0 rgba(255,255,255,.11),0 40px 90px rgba(0,0,0,.22); }
.momso-home .brand-shop-card { background: linear-gradient(150deg,rgba(99,183,175,.16),rgba(5,19,20,.32)); }
.momso-home .commerce-card h2 { margin: 28px 0 0; font-size: clamp(42px,5vw,72px); font-weight: 520; letter-spacing: -.07em; line-height: 1.07; }
.momso-home .commerce-card > p:not(.section-index) { max-width: 590px; margin: 31px 0 0; color: rgba(241,240,234,.62); font-size: 16px; line-height: 1.8; }
.momso-home .outbound-steps { display: grid; margin: 46px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.momso-home .outbound-steps li { display: flex; min-height: 67px; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.11); color: rgba(241,240,234,.78); font-size: 13px; }
.momso-home .outbound-steps span { display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid rgba(99,183,175,.46); border-radius: 50%; color: #8bd1ca; font-size: 9px; }
.momso-home .mediator-disclosure { margin-top: 34px; padding: 22px 24px; border: 1px solid rgba(99,183,175,.34); border-radius: 18px; color: #d5ebe7; background: rgba(99,183,175,.08); font-size: 13px; font-weight: 620; line-height: 1.75; }
.momso-home .blocked-button { width: 100%; min-height: 58px; margin-top: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; color: rgba(241,240,234,.43); background: rgba(255,255,255,.05); cursor: not-allowed; }
.momso-home .membership-card { position: relative; overflow: hidden; background: linear-gradient(155deg,#2c2348,#11142f); }
.momso-home .membership-card::after { position: absolute; top: -20%; right: -24%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: rgba(168,141,219,.2); filter: blur(65px); content: ""; }
.momso-home .membership-orb { position: relative; z-index: 1; display: grid; width: 170px; aspect-ratio: 1; margin: 34px 0 0 auto; place-content: center; border: 1px solid rgba(168,141,219,.4); border-radius: 50%; background: radial-gradient(circle at 36% 28%,rgba(255,255,255,.3),rgba(168,141,219,.18) 28%,rgba(17,20,47,.3) 70%); box-shadow: inset 0 1px 0 rgba(255,255,255,.3),0 0 60px rgba(168,141,219,.24); }
.momso-home .membership-orb span { font-size: 48px; font-weight: 620; letter-spacing: -.08em; }
.momso-home .membership-orb small { font-size: 10px; text-align: center; }
.momso-home .membership-card h2 { position: relative; z-index: 1; margin-top: 38px; font-size: clamp(38px,4.4vw,60px); }
.momso-home .membership-card > p:not(.section-index) { position: relative; z-index: 1; }
.momso-home .membership-price { position: relative; z-index: 1; display: grid; margin: 43px 0 0; }
.momso-home .membership-price div { display: flex; min-height: 62px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); }
.momso-home .membership-price dt { color: rgba(241,240,234,.54); font-size: 12px; }
.momso-home .membership-price dd { margin: 0; font-size: 14px; font-weight: 680; }
.momso-home .membership-note { position: relative; z-index: 1; color: rgba(241,240,234,.45); font-size: 10px; }

.momso-home .download-section { color: #211c15; background: #fbf0d5; }
.momso-home .download-heading { display: grid; grid-template-columns: 1fr minmax(260px,460px); align-items: end; gap: 40px; }
.momso-home .download-heading h2 { max-width: 850px; margin: 24px 0 0; font-size: clamp(48px,6vw,88px); font-weight: 520; letter-spacing: -.075em; line-height: 1.04; }
.momso-home .download-heading img { width: 100%; height: 250px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 20px 30px rgba(87,61,8,.13)); }
.momso-home .download-grid { display: grid; margin-top: 62px; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(49,39,21,.2); border-bottom: 1px solid rgba(49,39,21,.2); }
.momso-home .download-card { display: flex; min-height: 370px; padding: 38px; flex-direction: column; border-right: 1px solid rgba(49,39,21,.18); }
.momso-home .download-card:last-child { border-right: 0; }
.momso-home .download-number { color: #9d8451; font-size: 10px; letter-spacing: .15em; }
.momso-home .download-card h3 { margin: 60px 0 0; font-size: clamp(30px,3.2vw,48px); font-weight: 570; letter-spacing: -.06em; }
.momso-home .download-card p { max-width: 320px; margin: 22px 0 0; color: #756a59; font-size: 14px; line-height: 1.7; }
.momso-home .download-card button { min-height: 50px; margin-top: auto; border: 1px solid rgba(49,39,21,.16); border-radius: 15px; color: #948773; background: rgba(255,255,255,.28); cursor: not-allowed; }

.momso-home .site-footer { padding: clamp(85px,10vw,140px) var(--page-gutter) 40px; color: #e7e6e2; background: #0e1012; }
.momso-home .footer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; }
.momso-home .footer-brand > p { margin: 0; color: #63b7af; font-size: 11px; font-weight: 760; letter-spacing: .16em; }
.momso-home .footer-brand h2 { max-width: 600px; margin: 24px 0 0; font-size: clamp(42px,5vw,70px); font-weight: 500; letter-spacing: -.07em; line-height: 1.08; }
.momso-home .footer-brand > span { display: block; margin-top: 26px; color: rgba(231,230,226,.47); font-size: 14px; }
.momso-home .footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 35px; }
.momso-home .footer-links div { display: grid; align-content: start; gap: 15px; }
.momso-home .footer-links strong { margin-bottom: 8px; color: #b5b88d; font-size: 11px; }
.momso-home .footer-links a { color: rgba(231,230,226,.56); font-size: 13px; }
.momso-home .footer-links a:hover { color: #fff; }
.momso-home .business-strip { display: grid; margin-top: 90px; padding-top: 28px; grid-template-columns: 1.1fr 1.4fr auto; gap: 28px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(231,230,226,.42); font-size: 10px; line-height: 1.7; }
.momso-home .business-strip p { display: flex; margin: 0; flex-wrap: wrap; gap: 8px 14px; }
.momso-home .business-strip strong { color: rgba(231,230,226,.68); }
.momso-home .business-strip a { text-decoration: underline; text-underline-offset: 3px; }
.momso-home .business-pending { color: #d9b86a; }

@keyframes momso-screen-arrive { from { opacity: .6; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (min-width:1024px) and (max-width:1439px) {
  .momso-home .reading-column { width: min(100%,640px); font-size: 18px; line-height: 29.2px; }
  .momso-home .wide-column { width: min(100%,840px); }
}

@media (min-width:768px) and (max-width:1023px) {
  .momso-home .reading-column { width: min(100%,600px); font-size: 17px; line-height: 27.5px; }
  .momso-home .wide-column { width: min(100%,680px); }
}

@media (max-width:767px) {
  .momso-home .reading-column { width: 100%; font-size: 16px; line-height: 23.36px; }
  .momso-home .wide-column { width: 100%; }
}

.momso-home :focus-visible { outline: 3px solid var(--mood-accent); outline-offset: 4px; }

@keyframes momso-spirit-breathe { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.012); } }
@keyframes momso-breathe-glow { 0%,100% { opacity: .7; transform: scale(.96); } 50% { opacity: 1; transform: scale(1.04); } }
@keyframes momso-ring-turn { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes momso-aurora-turn { from { transform: rotate(0) scale(1); } 50% { transform: rotate(180deg) scale(1.08); } to { transform: rotate(360deg) scale(1); } }
@keyframes momso-scroll-dot { 0%,100% { opacity: .35; transform: translateY(0); } 50% { opacity: 1; transform: translateY(9px); } }

@media (max-width:1120px) {
  .momso-home .site-header { column-gap: 24px; }
  .momso-home .desktop-nav { gap: 20px; }
  .momso-home .hero-grid { grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); gap: 36px; }
  .momso-home .hero h1 { font-size: clamp(52px,7vw,76px); }
  .momso-home .feature-panel { grid-template-columns: .9fr 1.1fr; }
  .momso-home .feature-copy { padding: 54px; }
  .momso-home .content-ledger { grid-template-columns: 1fr 1fr; }
  .momso-home .ledger-intro { grid-column: 1 / -1; min-height: auto; border-right: 0; border-bottom: 1px solid rgba(14,16,18,.18); }
  .momso-home .commerce-grid { grid-template-columns: 1fr 1fr; }
  .momso-home .commerce-card { padding: 48px; }
  .momso-home .business-strip { grid-template-columns: 1fr 1fr; }
  .momso-home .business-pending { grid-column: 1 / -1; }
}

@media (max-width:900px) {
  .momso-home { --page-gutter: clamp(20px,5vw,44px); }
  .momso-home .site-header { grid-template-columns: auto 1fr auto; }
  .momso-home .desktop-nav, .momso-home .header-cta { display: none; }
  .momso-home .header-actions { grid-column: 3; }
  .momso-home .menu-button { position: relative; display: inline-flex; width: 42px; flex-direction: column; gap: 5px; }
  .momso-home .menu-button span { width: 16px; height: 1px; background: currentColor; transition: transform 240ms var(--ease-out); }
  .momso-home .site-shell[data-menu="open"] .menu-button span:first-child { transform: translateY(3px) rotate(45deg); }
  .momso-home .site-shell[data-menu="open"] .menu-button span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .momso-home .mobile-nav { position: absolute; top: calc(var(--momso-safe-top) + 58px); right: var(--page-gutter); display: grid; width: min(280px,calc(100vw - (var(--page-gutter) * 2))); padding: 12px; border: 1px solid var(--mood-line-color); border-radius: 22px; opacity: 0; background: var(--mood-panel-strong); box-shadow: 0 20px 60px var(--mood-shadow); backdrop-filter: blur(24px); pointer-events: none; transform: translateY(-10px) scale(.98); transform-origin: top right; transition: opacity 180ms ease,transform 240ms var(--ease-out); }
  .momso-home .site-shell[data-menu="open"] .mobile-nav { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .momso-home .mobile-nav a { padding: 13px 14px; border-radius: 13px; font-size: 14px; font-weight: 650; }
  .momso-home .mobile-nav a:hover, .momso-home .mobile-nav a:focus-visible { background: rgba(var(--mood-accent-rgb),.12); }
  .momso-home .hero { min-height: auto; padding-top: calc(var(--momso-safe-top) + 116px); padding-bottom: 96px; }
  .momso-home .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .momso-home .hero-copy { padding-top: 10px; }
  .momso-home .hero h1 { max-width: 700px; font-size: clamp(58px,12vw,88px); }
  .momso-home .hero-description { max-width: 620px; }
  .momso-home .spirit-stage { width: min(100%,640px); }
  .momso-home .mood-console { max-width: 600px; }
  .momso-home .scroll-cue { display: none; }
  .momso-home .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .momso-home .split-heading > p { max-width: 650px; }
  .momso-home .opening-story { min-height: 840px; }
  .momso-home .opening-shade { background: linear-gradient(90deg,rgba(5,7,9,.92),rgba(5,7,9,.35)),linear-gradient(0deg,rgba(5,7,9,.82),transparent 55%); }
  .momso-home .feature-tabs { overflow-x: auto; grid-template-columns: repeat(5,minmax(145px,1fr)); scrollbar-width: none; }
  .momso-home .feature-tabs::-webkit-scrollbar { display: none; }
  .momso-home .feature-panel { grid-template-columns: 1fr; }
  .momso-home .feature-copy { min-height: 480px; }
  .momso-home .device-scene { min-height: 690px; }
  .momso-home .phone-frame { width: min(52%,390px); }
  .momso-home .spirit-cards { grid-template-columns: 1fr; }
  .momso-home .spirit-card { display: grid; min-height: 470px; grid-template-columns: 1.1fr .9fr; align-items: center; }
  .momso-home .spirit-card-topline { position: absolute; top: 0; right: 0; left: 0; }
  .momso-home .spirit-card-visual { height: 450px; }
  .momso-home .spirit-card-copy { padding: 70px 42px 42px 10px; }
  .momso-home .people-grid { grid-template-columns: 1fr; }
  .momso-home .person-card, .momso-home .person-card:nth-child(even) { border-right: 0; }
  .momso-home .commerce-grid { grid-template-columns: 1fr; }
  .momso-home .commerce-card { min-height: auto; }
  .momso-home .download-heading { grid-template-columns: 1fr; }
  .momso-home .download-heading img { width: min(100%,500px); margin: 0 auto; }
  .momso-home .download-grid { grid-template-columns: 1fr; }
  .momso-home .download-card { min-height: 280px; border-right: 0; border-bottom: 1px solid rgba(49,39,21,.18); }
  .momso-home .download-card:last-child { border-bottom: 0; }
  .momso-home .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width:620px) {
  .momso-home { --page-gutter: max(var(--momso-safe-left),20px); }
  .momso-home .site-header { min-height: calc(66px + var(--momso-safe-top)); }
  .momso-home .brand-name { font-size: 17px; }
  .momso-home .language-button { display: none; }
  .momso-home .hero { padding-top: calc(var(--momso-safe-top) + 100px); padding-right: var(--momso-safe-right); padding-bottom: calc(var(--momso-safe-bottom) + 68px); padding-left: var(--momso-safe-left); }
  .momso-home .hero::before { background: radial-gradient(circle at 52% 49%,rgba(var(--mood-accent-rgb),.22),transparent 30%),radial-gradient(circle at 5% 92%,rgba(var(--mood-accent-rgb),.1),transparent 34%),linear-gradient(165deg,color-mix(in srgb,var(--mood-bg) 92%,white 8%),var(--mood-bg) 58%,color-mix(in srgb,var(--mood-bg) 82%,var(--mood-deep) 18%)); }
  .momso-home .hero-grid { gap: 22px; }
  .momso-home .eyebrow { font-size: 9px; }
  .momso-home .hero h1 { margin-top: 22px; font-size: clamp(45px,14.5vw,66px); line-height: 1.02; }
  .momso-home .hero-description { margin-top: 22px; font-size: 16px; line-height: 1.66; }
  .momso-home .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 27px; }
  .momso-home .button { min-height: 54px; }
  .momso-home .button-quiet { display: none; }
  .momso-home .spirit-column { margin: 2px -5px 0; }
  .momso-home .spirit-stage { width: 100%; aspect-ratio: .98; }
  .momso-home .spirit-stage::before { inset: 4% 0 9%; }
  .momso-home .hero-spirit { width: 70%; height: 75%; }
  .momso-home .stage-caption { right: 4%; bottom: 11%; min-width: 96px; padding: 11px 13px; }
  .momso-home .stage-caption span:first-child { font-size: 15px; }
  .momso-home .mood-console { width: 100%; margin-top: -8%; padding: 12px; border-radius: 22px; }
  .momso-home .mood-tab { min-height: 61px; padding: 9px 8px; gap: 7px; border-radius: 14px; }
  .momso-home .mood-dot { width: 8px; height: 8px; }
  .momso-home .mood-tab-copy strong { font-size: 11px; }
  .momso-home .mood-tab-copy small { font-size: 8px; }
  .momso-home .mood-line { min-height: 34px; line-height: 1.45; }
  .momso-home .first-slice-marker { padding-right: var(--momso-safe-right); padding-left: var(--momso-safe-left); }
  .momso-home .section-pad { padding-top: 92px; padding-right: var(--momso-safe-right); padding-bottom: 92px; padding-left: var(--momso-safe-left); }
  .momso-home .section-heading h2 { font-size: 43px; }
  .momso-home .opening-story { min-height: 800px; padding: 120px var(--momso-safe-right) 72px var(--momso-safe-left); }
  .momso-home .opening-poster { background-position: 57% 50%; }
  .momso-home .opening-video { display: none; }
  .momso-home .opening-shade { background: linear-gradient(0deg,rgba(5,7,9,.94) 0%,rgba(5,7,9,.53) 69%,rgba(5,7,9,.26)); }
  .momso-home .opening-copy { align-self: end; }
  .momso-home .opening-copy h2 { font-size: 46px; line-height: 1.08; }
  .momso-home .opening-copy > p:not(.section-index) { margin-top: 26px; font-size: 16px; }
  .momso-home .feature-tabs { margin-right: calc(var(--momso-safe-right) * -1); margin-left: calc(var(--momso-safe-left) * -1); padding: 0 var(--momso-safe-right); border-bottom: 1px solid rgba(14,16,18,.2); }
  .momso-home .feature-tab { min-height: 90px; }
  .momso-home .feature-panel { margin-right: calc(var(--momso-safe-right) * -1); margin-left: calc(var(--momso-safe-left) * -1); }
  .momso-home .feature-copy { min-height: 460px; padding: 42px var(--momso-safe-right); }
  .momso-home .feature-copy h3 { font-size: 42px; }
  .momso-home .feature-copy > p:last-of-type { font-size: 16px; }
  .momso-home .device-scene { min-height: 610px; }
  .momso-home .phone-frame { width: min(72%,360px); height: 86%; border-width: 6px; border-radius: 42px 42px 0 0; }
  .momso-home .content-ledger { margin-top: 80px; grid-template-columns: 1fr; }
  .momso-home .ledger-intro { grid-column: auto; padding: 34px 0; }
  .momso-home .ledger-group { min-height: 270px; padding: 36px 0; border-right: 0; border-bottom: 1px solid rgba(14,16,18,.18); }
  .momso-home .ledger-group.collaborator { margin-right: calc(var(--momso-safe-right) * -1); margin-left: calc(var(--momso-safe-left) * -1); padding-right: var(--momso-safe-right); padding-left: var(--momso-safe-left); }
  .momso-home .ledger-group dd { font-size: 56px; }
  .momso-home .spirit-cards { gap: 12px; }
  .momso-home .spirit-card { display: block; min-height: 590px; border-radius: 28px; }
  .momso-home .spirit-card-visual { height: 390px; padding-top: 35px; }
  .momso-home .spirit-card img { width: 86%; height: 86%; }
  .momso-home .spirit-card-copy { padding: 0 27px 30px; }
  .momso-home .people-tabs { overflow-x: auto; grid-template-columns: repeat(3,minmax(170px,1fr)); scrollbar-width: none; }
  .momso-home .people-tabs::-webkit-scrollbar { display: none; }
  .momso-home .people-tab { min-height: 82px; padding: 18px; }
  .momso-home .person-card { min-height: 270px; padding: 30px 0; }
  .momso-home .person-card h3 { font-size: 17px; line-height: 1.65; }
  .momso-home .authority-mark { margin-top: 38px; }
  .momso-home .portrait-reserved { right: -16%; }
  .momso-home .commerce-card { padding: 34px 24px; border-radius: 30px; }
  .momso-home .commerce-card h2 { font-size: 43px; }
  .momso-home .membership-orb { width: 135px; }
  .momso-home .download-heading h2 { font-size: 49px; }
  .momso-home .download-heading img { height: 190px; }
  .momso-home .download-card { padding: 34px 0; }
  .momso-home .download-card h3 { margin-top: 40px; }
  .momso-home .site-footer { padding-right: var(--momso-safe-right); padding-left: var(--momso-safe-left); }
  .momso-home .footer-links { grid-template-columns: 1fr 1fr; }
  .momso-home .business-strip { grid-template-columns: 1fr; }
  .momso-home .business-pending { grid-column: auto; }
}

@media (prefers-reduced-motion:reduce) {
  .momso-home { scroll-behavior: auto; }
  .momso-home, .momso-home *, .momso-home *::before, .momso-home *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .momso-home .hero-spirit { opacity: 1; transform: none; }
  .momso-home .opening-video { display: none; }
}

