/* ==========================================================================
   OVERPLATFORM GLOBAL DESIGN SYSTEM: RESONANT STARK DARK PREMIUM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-space: #060608;
  --bg-card: rgba(10, 10, 14, 0.7);
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glass-active: rgba(255, 255, 255, 0.12);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease-out-snappy: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-resonant: cubic-bezier(0.76, 0, 0.24, 1);

  --shadow-neon-blue: 0 0 30px rgba(0, 240, 255, 0.15);
  --shadow-neon-purple: 0 0 30px rgba(139, 92, 246, 0.15);
}

/* ==========================================================================
   GLOBAL RESET & SPACE BACKGROUND
   ========================================================================== */
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-space) !important;
  color: #f3f4f6 !important;
  font-family: var(--font-sans) !important;
  overflow: hidden !important; /* 전체 화면 SPA 경험을 위해 스크롤 바를 완전히 숨김 */
  width: 100vw;
  height: 100vh;
  position: relative;
}

/* 거대 우주 앰비언트 그라데이션 백그라운드 */
.space-ambient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.04) 0%, transparent 45%),
    #060608;
}

/* 마우스 커서를 따라 움직이는 동적 앰비언트 광원 */
.space-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.02) 0%, rgba(139, 92, 246, 0.01) 50%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: width 0.3s, height 0.3s;
}

/* ==========================================================================
   UNIFIED TOP BAR & SIDE RAIL (플로팅 제어 독)
   ========================================================================== */
.top-dock {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1400px;
  height: 54px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.top-dock .brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-decoration: none;
}

.top-dock .brand-mark svg {
  width: 22px;
  height: 22px;
  color: #00f0ff;
}

.top-dock .window-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-dock .window-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-out-snappy);
}

.top-dock .window-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: var(--border-glass-active);
}

.top-dock .window-btn[data-window-action="close"]:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

/* 사이드 레일 (사이드 바 네비게이션) */
.side-rail {
  position: absolute;
  top: 86px;
  left: 16px;
  width: 60px;
  height: calc(100% - 102px);
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.side-rail .nav-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}

.side-rail .nav-item {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-snappy);
  text-decoration: none;
}

.side-rail .nav-item svg {
  width: 20px;
  height: 20px;
}

.side-rail .nav-item:hover,
.side-rail .nav-item.active {
  background: rgba(255, 255, 255, 0.04);
  color: #00f0ff;
  border-color: var(--border-glass);
  box-shadow: var(--shadow-neon-blue);
}

/* ==========================================================================
   3. 거대 인터랙티브 노드 맵 캔버스 (The Global Canvas)
   ========================================================================== */
.mecosystem-global-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: hidden;
  cursor: grab;
}

.mecosystem-global-canvas:active {
  cursor: grabbing;
}

/* SVG 연결선 캔버스 */
.meco-svg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 11;
}

/* 움직이는 네온 전기 펄스 애니메이션 */
.meco-pulse {
  stroke-dasharray: 12, 180;
  animation: pulse-flow 5s linear infinite;
}

@keyframes pulse-flow {
  0% {
    stroke-dashoffset: 200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* 3-1. 중앙 코어 노드 (The OverAuth Core) */
.meco-core {
  position: absolute;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 10, 14, 0.9) 0%, rgba(5, 5, 8, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 15;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: transform 0.15s ease-out, border-color 0.3s;
}

.meco-core:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.15), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.meco-core .core-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.meco-core .core-glow-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 240, 255, 0.2);
  animation: rotate-ring 25s linear infinite;
  pointer-events: none;
}

@keyframes rotate-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.meco-core svg {
  width: 32px;
  height: 32px;
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
}

.meco-core span {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* 3-2. 위성 서비스 노드 (Satellite Nodes) */
.meco-node {
  position: absolute;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.15s ease-out,
    border-color 0.3s var(--ease-out-snappy),
    background 0.3s var(--ease-out-snappy),
    box-shadow 0.3s var(--ease-out-snappy);
}

.meco-node svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s var(--ease-out-snappy);
}

/* 호버 및 액티브 노드 상태 */
.meco-node:hover {
  background: rgba(10, 10, 14, 0.95);
  border-color: var(--theme-color) !important;
  box-shadow: 0 0 25px var(--theme-color);
}

.meco-node:hover svg {
  color: #ffffff !important;
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px var(--theme-color));
}

.meco-node.active {
  background: var(--theme-color) !important;
  border-color: #ffffff !important;
  box-shadow: 0 0 35px var(--theme-color), inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

.meco-node.active svg {
  color: #ffffff !important;
  transform: scale(1.1);
}

/* 노드 라벨 텍스트 */
.meco-node .node-label {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  pointer-events: none;
  transition: color 0.3s;
}

.meco-node:hover .node-label,
.meco-node.active .node-label {
  color: #ffffff;
}

/* ==========================================================================
   4. 실시간 SF 텔레메트리 툴팁 (Telemetry Hover Popups)
   ========================================================================== */
.meco-telemetry {
  position: absolute;
  width: 200px;
  background: rgba(10, 10, 14, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transform: translate(-50%, -100%) scale(0.95);
  transition: opacity 0.2s var(--ease-out-snappy), transform 0.2s var(--ease-out-snappy);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.meco-telemetry.visible {
  opacity: 1;
  transform: translate(-50%, -100%) scale(1);
}

.meco-telemetry .telemetry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.meco-telemetry .telemetry-header h4 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
}

.meco-telemetry .telemetry-header .status-pill {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
}

.meco-telemetry .telemetry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4px;
}

.meco-telemetry .telemetry-item {
  display: flex;
  flex-direction: column;
}

.meco-telemetry .telemetry-item span.label {
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

.meco-telemetry .telemetry-item span.val {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   5. 공명 디테일 보드 (The Resonant Detail Board - Content Viewport)
   ========================================================================== */
.meco-detail-board {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 420px;
  height: calc(100% - 118px);
  background: var(--bg-card);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  z-index: 90;
  transform: translateX(120%);
  opacity: 0;
  transition:
    transform 0.5s var(--ease-in-out-resonant),
    opacity 0.4s var(--ease-in-out-resonant);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.meco-detail-board.visible {
  transform: translateX(0);
  opacity: 1;
}

/* 보드 헤더 */
.meco-board-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.meco-board-header .board-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.meco-board-header .board-icon svg {
  width: 24px;
  height: 24px;
  color: var(--theme-color);
  filter: drop-shadow(0 0 6px var(--theme-color));
}

.meco-board-header .board-meta {
  flex: 1;
}

.meco-board-header .board-meta h3 {
  margin: 0 0 4px 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
}

.meco-board-header .board-meta p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.meco-board-header .board-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.meco-board-header .board-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* 보드 바디 (스크롤 영역) */
.meco-board-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meco-board-body::-webkit-scrollbar {
  width: 4px;
}
.meco-board-body::-webkit-scrollbar-track {
  background: transparent;
}
.meco-board-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.meco-board-body .board-intro h4 {
  margin: 0 0 8px 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}

.meco-board-body .board-intro p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* 하이라이트 배지들 */
.meco-board-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meco-board-highlights span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.75);
}

/* 세부 섹션 리스트 */
.meco-board-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.meco-board-section h5 {
  margin: 0 0 10px 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meco-board-section ul {
  margin: 0;
  padding: 0 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meco-board-section li {
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* 보드 풋터 (실행 버튼 영역) */
.meco-board-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 14, 0.4);
}

.meco-trigger-btn {
  width: 100%;
  height: 46px;
  border-radius: 10px;
  border: none;
  background: var(--theme-color);
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.25s var(--ease-out-snappy);
}

.meco-trigger-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 20px var(--theme-color);
  transform: translateY(-1px);
}

.meco-trigger-btn:active {
  transform: translateY(1px);
}

.meco-trigger-btn svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   6. PRISTINE SEPARATED LOGIN SCREEN (body.auth-locked)
   ========================================================================== */
body.auth-locked {
  overflow: auto !important; /* 로그인 페이지는 긴 화면 대응을 위해 스크롤 허용 */
}

body.auth-locked .top-dock,
body.auth-locked .side-rail,
body.auth-locked .mecosystem-global-canvas,
body.auth-locked .meco-detail-board {
  display: none !important; /* 로그인 시에는 메인 인터랙티브 요소들을 완벽하게 격리 숨김 */
}

.auth-screen {
  display: none;
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 200;
}

body.auth-locked .auth-screen {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 하이엔드 50:50 좌우 그리드 분할 */
}

@media (max-width: 968px) {
  body.auth-locked .auth-screen {
    grid-template-columns: 1fr;
  }
  .auth-visual {
    display: none !important;
  }
}

/* 좌측 로그인 카드 영역 */
.auth-card-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #060608;
  z-index: 10;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: transparent;
}

.auth-card .auth-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.auth-card .auth-logo svg {
  width: 28px;
  height: 28px;
  color: #00f0ff;
}

.auth-card .auth-logo span {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.auth-card h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.auth-card p.subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 32px 0;
}

/* 입력 필드 */
.auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.auth-form-group label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-input-wrapper {
  position: relative;
  width: 100%;
}

.auth-input-wrapper input {
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 0 16px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.25s var(--ease-out-snappy);
}

.auth-input-wrapper input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  border-color: #00f0ff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

/* 로그인 버튼 */
.auth-submit-btn {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: none;
  background: #ffffff;
  color: #060608;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  transition: all 0.25s var(--ease-out-snappy);
}

.auth-submit-btn:hover {
  background: #00f0ff;
  color: #060608;
  box-shadow: var(--shadow-neon-blue);
  transform: translateY(-1px);
}

.auth-submit-btn:active {
  transform: translateY(1px);
}

/* 소셜 로그인 버튼 */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-divider:not(:empty)::before {
  margin-right: 16px;
}

.auth-divider:not(:empty)::after {
  margin-left: 16px;
}

.auth-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-social-btn {
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.auth-social-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass-active);
  color: #ffffff;
}

/* 우측 3D 그래픽/시각 영역 */
.auth-visual {
  position: relative;
  background: radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 60%), #0b0b10;
  border-left: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.auth-visual .visual-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* ==========================================================================
   7. 릴리즈 게이트 검증용 숨김 엘리먼트 풀 (Hidden Link Pool)
   ========================================================================== */
.smoke-validation-hidden-pool {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  pointer-events: none;
  z-index: -9999;
}

/* ==========================================================================
   8. OVERHOUSE ROOT COMPLETION PASS
   ========================================================================== */
body.overhouse-public-home:not(.auth-locked) {
  --root-cyan: #4ce9ff;
  --root-lime: #dfff57;
  --root-panel: rgba(8, 11, 18, 0.72);
  --root-panel-strong: rgba(11, 15, 26, 0.9);
  --root-line: rgba(255, 255, 255, 0.1);
  --root-soft: rgba(248, 251, 255, 0.62);
  --sun-rgb: 255, 210, 154;
  --sun-secondary-rgb: 97, 226, 255;
  --sun-x: 18%;
  --sun-y: 20%;
  --sun-angle: 118deg;
  --sun-strength: 0.38;
  --sun-ray-opacity: 0.34;
  --sun-canvas-opacity: 0.68;
  --sun-core-alpha: 0.24;
  --sun-core-soft-alpha: 0.07;
  --sun-ray-alpha: 0.06;
  --sun-ray-soft-alpha: 0.03;
  --sun-secondary-ray-alpha: 0.02;
  --sun-after-alpha: 0.08;
  --sun-after-secondary-alpha: 0.035;
  --sun-panel-glow-alpha: 0.04;
  --sun-dot-glow-alpha: 0.32;
  --hero-brightness: 0.99;
  --hero-saturation: 1.03;
  --hero-contrast: 1.02;
  background:
    radial-gradient(circle at 16% 18%, rgba(76, 233, 255, 0.1), transparent 30%),
    radial-gradient(circle at 76% 70%, rgba(223, 255, 87, 0.075), transparent 31%),
    linear-gradient(135deg, #05070d 0%, #080b12 48%, #030409 100%) !important;
  overflow: hidden !important;
  text-rendering: optimizeLegibility;
}

body.overhouse-public-home:not(.auth-locked) .space-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 48% 54%, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 78%);
}

body.overhouse-public-home:not(.auth-locked) .top-dock {
  z-index: 130 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  background:
    linear-gradient(180deg, rgba(17, 23, 39, 0.92), rgba(6, 9, 18, 0.78)) !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
  mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a,
body.overhouse-public-home:not(.auth-locked) .dock-logout,
body.overhouse-public-home:not(.auth-locked) .dock-window-button {
  white-space: nowrap !important;
}

body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(76, 233, 255, 0.035), transparent 28%),
    radial-gradient(circle at 58% 54%, rgba(167, 124, 255, 0.035), transparent 36%);
}

body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas::before,
body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
  transition:
    background 1.2s ease,
    opacity 1.2s ease,
    filter 1.2s ease;
}

body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas::before {
  inset: -24%;
  opacity: var(--sun-canvas-opacity);
  background:
    radial-gradient(circle at var(--sun-x) var(--sun-y), rgba(var(--sun-rgb), var(--sun-core-alpha)), rgba(var(--sun-rgb), var(--sun-core-soft-alpha)) 18%, transparent 38%),
    linear-gradient(var(--sun-angle), transparent 0 25%, rgba(var(--sun-rgb), var(--sun-ray-alpha)) 39%, rgba(var(--sun-rgb), var(--sun-ray-soft-alpha)) 52%, transparent 69% 100%),
    linear-gradient(calc(var(--sun-angle) + 18deg), transparent 0 36%, rgba(var(--sun-secondary-rgb), var(--sun-secondary-ray-alpha)) 47%, transparent 64% 100%);
  filter: blur(15px) saturate(1.12);
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at 48% 46%, #000 0%, rgba(0, 0, 0, 0.86) 50%, transparent 84%);
  -webkit-mask-image: radial-gradient(ellipse at 48% 46%, #000 0%, rgba(0, 0, 0, 0.86) 50%, transparent 84%);
  animation: homeSunBreath 18s ease-in-out infinite;
}

body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas::after {
  inset: 0;
  opacity: var(--sun-canvas-soft-opacity, 0.42);
  background:
    radial-gradient(ellipse at calc(var(--sun-x) + 10%) calc(var(--sun-y) + 8%), rgba(var(--sun-rgb), var(--sun-after-alpha)), transparent 42%),
    radial-gradient(ellipse at 50% 72%, rgba(var(--sun-secondary-rgb), var(--sun-after-secondary-alpha)), transparent 45%);
  filter: blur(28px);
  mix-blend-mode: soft-light;
  animation: homeLightDrift 24s ease-in-out infinite;
}

body.overhouse-public-home:not(.auth-locked) .mecosystem-topology-mesh {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
  inset: 0;
  z-index: 12;
}

body.overhouse-public-home:not(.auth-locked) .meco-element {
  pointer-events: auto;
}

body.overhouse-public-home:not(.auth-locked) .global-brand-header {
  position: absolute;
  top: clamp(86px, 8vh, 126px);
  left: clamp(24px, 5vw, 86px);
  z-index: 24;
  width: min(520px, calc(100vw - 560px));
  min-width: 340px;
  pointer-events: none;
}

body.overhouse-public-home:not(.auth-locked) .brand-overline {
  margin: 0 0 12px;
  color: rgba(143, 243, 255, 0.9);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.overhouse-public-home:not(.auth-locked) .brand-title {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(46px, 5.2vw, 84px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

body.overhouse-public-home:not(.auth-locked) .glow-word {
  color: var(--root-cyan);
  text-shadow: 0 0 34px rgba(76, 233, 255, 0.36);
}

body.overhouse-public-home:not(.auth-locked) .brand-description {
  max-width: 44ch;
  margin: 18px 0 0;
  color: var(--root-soft);
  font-size: clamp(14px, 1.12vw, 17px);
  font-weight: 650;
  line-height: 1.65;
  letter-spacing: 0;
  word-break: keep-all;
}

body.overhouse-public-home:not(.auth-locked) .home-time-panel {
  width: fit-content;
  min-width: min(100%, 250px);
  margin-top: 18px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  border: 1px solid rgba(var(--sun-rgb), 0.22);
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 12%, rgba(var(--sun-rgb), 0.16), transparent 34%),
    linear-gradient(145deg, rgba(15, 21, 35, 0.74), rgba(5, 8, 16, 0.58));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 34px rgba(var(--sun-rgb), var(--sun-panel-glow-alpha));
  color: rgba(248, 251, 255, 0.84);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  pointer-events: auto;
}

body.overhouse-public-home:not(.auth-locked) .home-time-panel::before {
  content: "";
  width: 10px;
  height: 10px;
  grid-row: 1 / span 2;
  border-radius: 50%;
  background: rgb(var(--sun-rgb));
  box-shadow:
    0 0 16px rgba(var(--sun-rgb), 0.72),
    0 0 34px rgba(var(--sun-rgb), var(--sun-dot-glow-alpha));
}

body.overhouse-public-home:not(.auth-locked) .service-kind-legend {
  width: fit-content;
  max-width: 100%;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: auto;
}

body.overhouse-public-home:not(.auth-locked) .service-kind-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.38);
  color: rgba(248, 251, 255, 0.68);
  font-size: 11px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.overhouse-public-home:not(.auth-locked) .service-kind-legend i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #8ff3ff;
  box-shadow: 0 0 16px rgba(143, 243, 255, 0.45);
}

body.overhouse-public-home:not(.auth-locked) .service-kind-legend .is-program i {
  background: #ffc66d;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.48);
}

body.overhouse-public-home:not(.auth-locked) .home-time-period {
  color: rgba(var(--sun-rgb), 0.9);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.overhouse-public-home:not(.auth-locked) .home-time-value {
  color: #f8fbff;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

body.overhouse-public-home:not(.auth-locked) .home-time-date {
  grid-column: 2;
  color: rgba(248, 251, 255, 0.58);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

body.overhouse-public-home:not(.auth-locked) .meco-core {
  width: clamp(92px, 8.5vw, 122px);
  height: clamp(92px, 8.5vw, 122px);
  border-color: rgba(76, 233, 255, 0.18);
  background:
    radial-gradient(circle at 50% 40%, rgba(76, 233, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(15, 22, 36, 0.98), rgba(4, 7, 13, 0.96));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 26px 90px rgba(0, 0, 0, 0.58),
    0 0 58px rgba(76, 233, 255, 0.2);
}

body.overhouse-public-home:not(.auth-locked) .meco-core strong {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

body.overhouse-public-home:not(.auth-locked) .meco-core span {
  position: relative;
  z-index: 2;
  margin-top: 7px;
  color: rgba(248, 251, 255, 0.62);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.overhouse-public-home:not(.auth-locked) .core-radar-pulse,
body.overhouse-public-home:not(.auth-locked) .core-orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

body.overhouse-public-home:not(.auth-locked) .core-radar-pulse {
  inset: -18px;
  border: 1px solid rgba(76, 233, 255, 0.2);
  animation: rootCorePulse 2.8s ease-out infinite;
}

body.overhouse-public-home:not(.auth-locked) .core-orbit-ring {
  inset: -9px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  animation: rotate-ring 28s linear infinite;
}

body.overhouse-public-home:not(.auth-locked) .core-orbit-ring.o2 {
  inset: -22px;
  opacity: 0.44;
  animation-duration: 42s;
  animation-direction: reverse;
}

@keyframes rootCorePulse {
  0% { transform: scale(0.86); opacity: 0.62; }
  100% { transform: scale(1.28); opacity: 0; }
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  width: clamp(50px, 4.6vw, 66px);
  height: clamp(50px, 4.6vw, 66px);
  border-color: rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 50% 30%, rgba(var(--theme-rgb), 0.18), transparent 42%),
    rgba(7, 10, 18, 0.9);
}

body.overhouse-public-home:not(.auth-locked) .meco-node .node-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--theme-rgb), 0.18), transparent 64%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
  position: relative;
  z-index: 2;
  width: clamp(20px, 1.9vw, 26px);
  height: clamp(20px, 1.9vw, 26px);
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%);
  max-width: 92px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(5, 8, 15, 0.64);
  color: rgba(248, 251, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover .node-glow,
body.overhouse-public-home:not(.auth-locked) .meco-node.active .node-glow {
  opacity: 1;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-service-kind="program"] {
  border-color: rgba(245, 158, 11, 0.18);
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-service-kind="program"]::after,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-service-kind="web"]::after {
  content: attr(data-service-kind-label);
  position: absolute;
  right: -6px;
  top: -6px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 18px;
  padding: 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(4, 8, 15, 0.78);
  color: rgba(248, 251, 255, 0.68);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-service-kind="web"]::after {
  color: rgba(143, 243, 255, 0.9);
  border-color: rgba(76, 233, 255, 0.18);
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-service-kind="program"]::after {
  color: rgba(255, 207, 138, 0.94);
  border-color: rgba(245, 158, 11, 0.22);
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span,
body.overhouse-public-home:not(.auth-locked) .meco-node.active > span {
  color: #fff;
  border-color: rgba(var(--theme-rgb), 0.34);
  background: rgba(var(--theme-rgb), 0.14);
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  width: min(430px, calc(100vw - 32px));
  height: calc(100vh - 104px);
  right: 16px;
  bottom: 16px;
  z-index: 94;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--theme-rgb, 76, 233, 255), 0.13), transparent 36%),
    linear-gradient(180deg, rgba(14, 20, 34, 0.92), rgba(5, 8, 16, 0.86));
  box-shadow: 0 30px 96px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

body.overhouse-public-home:not(.auth-locked) .meco-board-drag-handle {
  display: none;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-header {
  flex: 0 0 auto;
  padding: 18px;
  align-items: center;
  gap: 13px;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

body.overhouse-public-home:not(.auth-locked) .meco-board-icon svg {
  width: 24px;
  height: 24px;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title {
  min-width: 0;
  flex: 1 1 auto;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title p {
  margin: 0;
  color: rgba(248, 251, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  word-break: keep-all;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-close {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 251, 255, 0.66);
  font-size: 20px;
  line-height: 1;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-close:hover,
body.overhouse-public-home:not(.auth-locked) .meco-board-close:focus-visible {
  color: #fff;
  border-color: rgba(76, 233, 255, 0.28);
  background: rgba(76, 233, 255, 0.11);
  outline: none;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
  min-height: 0;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow-y: auto;
  padding: 0 18px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid::-webkit-scrollbar {
  width: 5px;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc,
body.overhouse-public-home:not(.auth-locked) .meco-board-section {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc {
  padding: 16px;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc h4 {
  margin: 0 0 8px;
  color: #f8fbff;
  font-size: 16px;
  font-weight: 880;
  line-height: 1.25;
  letter-spacing: 0;
  word-break: keep-all;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc p {
  margin: 0;
  color: rgba(248, 251, 255, 0.62);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.58;
  word-break: keep-all;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-highlights {
  margin-top: 14px;
}

body.overhouse-public-home:not(.auth-locked) .meco-badge,
body.overhouse-public-home:not(.auth-locked) .meco-board-highlights span {
  border-color: rgba(var(--badge-rgb, 76, 233, 255), 0.28);
  background: rgba(var(--badge-rgb, 76, 233, 255), 0.1);
  color: rgba(248, 251, 255, 0.84);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-action-wrapper {
  margin-top: 14px;
}

body.overhouse-public-home:not(.auth-locked) .meco-trigger-button {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--theme-color, #4ce9ff), rgba(223, 255, 87, 0.78));
  color: #031018;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(var(--theme-rgb, 76, 233, 255), 0.18);
}

body.overhouse-public-home:not(.auth-locked) .meco-trigger-button:hover,
body.overhouse-public-home:not(.auth-locked) .meco-trigger-button:focus-visible {
  filter: brightness(1.06) saturate(1.05);
  outline: 2px solid rgba(255, 255, 255, 0.32);
  outline-offset: 2px;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-sections {
  display: grid;
  gap: 10px;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section {
  padding: 14px;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section h5 {
  margin: 0 0 10px;
  color: rgba(143, 243, 255, 0.84);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section li {
  position: relative;
  padding-left: 16px;
  color: rgba(248, 251, 255, 0.64);
  font-size: 12.5px;
  font-weight: 640;
  line-height: 1.5;
  word-break: keep-all;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-color, #4ce9ff);
  box-shadow: 0 0 12px rgba(var(--theme-rgb, 76, 233, 255), 0.5);
}

body.overhouse-public-home:not(.auth-locked) .floating-contact {
  z-index: 120;
  transition: right 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
}

@media (min-width: 761px) {
  body.overhouse-public-home:not(.auth-locked):has(.meco-detail-board.visible) .floating-contact:not(.is-open) {
    right: calc(16px + min(430px, calc(100vw - 32px)) + 14px);
  }
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-panel {
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(76, 233, 255, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(14, 20, 34, 0.97), rgba(5, 8, 16, 0.96));
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-trigger {
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  border-radius: 18px;
}

body.overhouse-public-home:not(.auth-locked) .contact-trigger-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

body.overhouse-public-home:not(.auth-locked) .support-modal-panel {
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 0%, rgba(76, 233, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(15, 21, 35, 0.98), rgba(5, 8, 16, 0.98));
}

@media (max-width: 1180px) {
  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    width: min(430px, calc(100vw - 500px));
    min-width: 300px;
  }
}

@media (max-width: 900px) {
  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    width: calc(100vw - 32px);
    min-width: 0;
    max-width: 440px;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    z-index: 132 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-window-controls {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    top: 70px;
    left: 14px;
    right: 14px;
    width: auto;
    max-width: 360px;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-overline {
    margin-bottom: 8px;
    font-size: 10px;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-description {
    max-width: 32ch;
    margin-top: 11px;
    font-size: 12.5px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    min-width: 0;
    margin-top: 13px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-value {
    font-size: 22px;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-date {
    max-width: 188px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core {
    width: 86px;
    height: 86px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core strong {
    font-size: 20px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core span {
    font-size: 9px;
  }

  body.overhouse-public-home:not(.auth-locked) .core-orbit-ring.o2 {
    inset: -16px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node {
    width: 48px;
    height: 48px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
    width: 20px;
    height: 20px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    top: calc(100% + 6px);
    max-width: 80px;
    padding: 4px 7px;
    font-size: 10px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    height: min(42vh, 320px);
    min-height: 236px;
    z-index: 118;
    border-radius: 20px;
    transform: translateY(calc(100% + 18px));
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
    transform: translateY(0);
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-drag-handle {
    height: 18px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-drag-handle span {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-header {
    padding: 0 14px 12px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-title h3 {
    font-size: 17px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-title p {
    font-size: 11.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
    gap: 10px;
    padding: 0 14px 14px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-desc,
  body.overhouse-public-home:not(.auth-locked) .meco-board-section {
    border-radius: 12px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-desc {
    padding: 13px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-desc h4 {
    font-size: 14.5px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-desc p,
  body.overhouse-public-home:not(.auth-locked) .meco-board-section li {
    font-size: 12px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-trigger-button {
    min-height: 40px;
    font-size: 13px;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact {
    right: 12px;
    bottom: 12px;
    z-index: 119;
  }

  body.overhouse-public-home:not(.auth-locked):has(.meco-detail-board.visible) .floating-contact:not(.is-open) {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }
}

@media (max-width: 430px) {
  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    top: 68px;
    max-width: calc(100vw - 28px);
  }

  body.overhouse-public-home:not(.auth-locked) .brand-description {
    max-width: 28ch;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    font-size: 9.5px;
  }
}

/* Center visual polish pass: keep the platform map compact and away from the detail surface. */
body.overhouse-public-home:not(.auth-locked) .meco-core {
  border-radius: 26px !important;
  overflow: visible !important;
}

body.overhouse-public-home:not(.auth-locked) .core-radar-pulse,
body.overhouse-public-home:not(.auth-locked) .core-orbit-ring {
  border-radius: 30px !important;
}

body.overhouse-public-home:not(.auth-locked) .core-orbit-ring {
  border-style: solid !important;
  opacity: 0.32 !important;
}

body.overhouse-public-home:not(.auth-locked) .core-orbit-ring.o2 {
  opacity: 0.2 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(18, 25, 40, 0.94), rgba(7, 10, 18, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(var(--theme-rgb), 0.18), transparent 54%) !important;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node .node-glow {
  inset: -10px !important;
  border-radius: 22px !important;
  opacity: 0.12 !important;
  background: radial-gradient(circle, rgba(var(--theme-rgb), 0.22), transparent 62%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover .node-glow,
body.overhouse-public-home:not(.auth-locked) .meco-node.active .node-glow {
  opacity: 0.46 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span {
  top: calc(100% + 7px) !important;
  border-radius: 10px !important;
  background: rgba(5, 9, 17, 0.74) !important;
}

@media (max-width: 980px) {
  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: auto !important;
    height: min(40vh, 340px) !important;
    min-height: 238px !important;
    border-radius: 20px !important;
    transform: translateY(calc(100% + 18px)) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
    transform: translateY(0) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node {
    width: clamp(44px, 7.8vw, 54px) !important;
    height: clamp(44px, 7.8vw, 54px) !important;
    border-radius: 15px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
    width: clamp(18px, 3.4vw, 22px) !important;
    height: clamp(18px, 3.4vw, 22px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(-2px) !important;
    transition: opacity 0.18s ease, transform 0.18s ease !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node.active > span {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
  }

  body.overhouse-public-home:not(.auth-locked):has(.meco-detail-board.visible) .meco-node > span {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(-2px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .core-radar-pulse {
    inset: -12px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .core-orbit-ring {
    inset: -8px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .core-orbit-ring.o2 {
    inset: -15px !important;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .meco-core {
    width: 68px !important;
    height: 68px !important;
    border-radius: 20px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core strong {
    font-size: 16px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core span {
    margin-top: 5px !important;
    font-size: 8px !important;
  }
}

/* Realistic product visual pass: generated platform render replaces flat diagram feel. */
body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
  position: absolute;
  left: calc(var(--meco-center-x, 50%) + clamp(18px, 3.2vw, 74px));
  top: calc(var(--meco-center-y, 50%) + clamp(12px, 3.2vh, 42px));
  width: clamp(640px, calc(var(--meco-radius, 220px) * 4.75), 1080px);
  aspect-ratio: 1;
  transform: translate(-48%, -50%);
  z-index: 8;
  pointer-events: none;
  opacity: 0.66;
  filter:
    saturate(0.9)
    contrast(1.02)
    drop-shadow(0 46px 110px rgba(0, 0, 0, 0.5));
  mix-blend-mode: lighten;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before,
body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before {
  background:
    radial-gradient(ellipse at 52% 54%, rgba(76, 233, 255, 0.16), transparent 35%),
    radial-gradient(ellipse at 68% 64%, rgba(223, 255, 87, 0.08), transparent 30%),
    radial-gradient(ellipse at 39% 43%, rgba(255, 255, 255, 0.05), transparent 24%);
  opacity: 0.76;
  mix-blend-mode: screen;
  animation: platformCircuitGlow 4.8s ease-in-out infinite alternate;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::after {
  background:
    linear-gradient(90deg, rgba(3, 6, 14, 0.54) 0%, transparent 16%, transparent 84%, rgba(3, 6, 14, 0.52) 100%),
    linear-gradient(180deg, rgba(3, 6, 14, 0.5) 0%, transparent 18%, transparent 72%, rgba(3, 6, 14, 0.58) 100%);
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

body.overhouse-public-home:not(.auth-locked) .platform-energy-lines,
body.overhouse-public-home:not(.auth-locked) .platform-light-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

body.overhouse-public-home:not(.auth-locked) .platform-energy-lines {
  opacity: 0.52;
  background:
    linear-gradient(36deg, transparent 0 43%, rgba(76, 233, 255, 0) 44%, rgba(76, 233, 255, 0.58) 46%, rgba(223, 255, 87, 0.22) 47%, transparent 50%),
    linear-gradient(126deg, transparent 0 45%, rgba(143, 243, 255, 0.46) 48%, transparent 51%),
    linear-gradient(90deg, transparent 0 47%, rgba(76, 233, 255, 0.34) 50%, transparent 53%),
    radial-gradient(circle at 50% 52%, rgba(223, 255, 87, 0.22), transparent 12%),
    radial-gradient(circle at 39% 39%, rgba(76, 233, 255, 0.18), transparent 10%),
    radial-gradient(circle at 64% 66%, rgba(143, 243, 255, 0.16), transparent 12%);
  background-size:
    190% 190%,
    220% 220%,
    180% 180%,
    100% 100%,
    100% 100%,
    100% 100%;
  background-position:
    0% 60%,
    100% 30%,
    50% 0%,
    50% 52%,
    39% 39%,
    64% 66%;
  mask-image: radial-gradient(ellipse at 52% 56%, #000 0%, #000 54%, rgba(0, 0, 0, 0.42) 67%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at 52% 56%, #000 0%, #000 54%, rgba(0, 0, 0, 0.42) 67%, transparent 82%);
  animation: platformWireRun 3.8s linear infinite;
}

body.overhouse-public-home:not(.auth-locked) .platform-light-sweep {
  opacity: 0.42;
  background:
    linear-gradient(114deg, transparent 0 42%, rgba(255, 255, 255, 0) 45%, rgba(143, 243, 255, 0.58) 48%, rgba(223, 255, 87, 0.24) 49%, transparent 53%),
    linear-gradient(22deg, transparent 0 46%, rgba(76, 233, 255, 0.28) 49%, transparent 52%);
  background-size: 230% 230%, 200% 200%;
  background-position: -120% 84%, 120% 20%;
  mask-image: radial-gradient(ellipse at 55% 58%, #000 0%, #000 50%, rgba(0, 0, 0, 0.32) 64%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 58%, #000 0%, #000 50%, rgba(0, 0, 0, 0.32) 64%, transparent 78%);
  animation: platformSignalSweep 4.6s ease-in-out infinite;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
  opacity: 0.25 !important;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 14px rgba(76, 233, 255, 0.18));
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path[id^="line-"] {
  stroke: rgba(143, 243, 255, 0.14) !important;
  stroke-width: 1 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-pulse {
  stroke-width: 1.35 !important;
  opacity: 0.38 !important;
  stroke-dasharray: 3 42 !important;
  animation: platformSignalPath 2.9s linear infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-core {
  z-index: 22 !important;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(11, 18, 30, 0.74), rgba(3, 7, 14, 0.68)) !important;
  backdrop-filter: blur(12px) saturate(1.12) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  z-index: 24 !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background:
    linear-gradient(180deg, rgba(13, 20, 34, 0.58), rgba(4, 8, 16, 0.5)),
    radial-gradient(circle at 50% 0%, rgba(var(--theme-rgb), 0.2), transparent 58%) !important;
  backdrop-filter: blur(10px) saturate(1.15) !important;
  animation: platformNodeGlow 5.8s ease-in-out infinite;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:nth-of-type(2n) {
  animation-delay: -1.7s;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:nth-of-type(3n) {
  animation-delay: -3.1s;
}

body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  background:
    linear-gradient(180deg, rgba(var(--theme-rgb), 0.2), rgba(4, 8, 16, 0.66)) !important;
}

@media (min-width: 981px) {
  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    transform: translate(-42%, -46%);
  }
}

@media (max-width: 980px) {
  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    left: var(--meco-center-x, 50%);
    top: calc(var(--meco-center-y, 50%) + 6px);
    width: clamp(430px, calc(var(--meco-radius, 86px) * 5.2), 620px);
    opacity: 0.48;
    filter:
      saturate(0.88)
      contrast(1.02)
      drop-shadow(0 30px 60px rgba(0, 0, 0, 0.38));
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    top: calc(var(--meco-center-y, 50%) + 4px);
    width: clamp(390px, 104vw, 540px);
    opacity: 0.32;
  }

  body.overhouse-public-home:not(.auth-locked):has(.meco-detail-board.visible) .platform-realistic-visual {
    width: clamp(360px, 96vw, 500px);
    opacity: 0.3;
  }
}

@keyframes platformCircuitGlow {
  0% {
    opacity: 0.58;
    filter: brightness(0.92);
  }
  100% {
    opacity: 0.84;
    filter: brightness(1.08);
  }
}

@keyframes platformWireRun {
  0% {
    background-position:
      0% 60%,
      100% 30%,
      50% 0%,
      50% 52%,
      39% 39%,
      64% 66%;
  }
  100% {
    background-position:
      190% -20%,
      -80% 120%,
      -130% 0%,
      50% 52%,
      39% 39%,
      64% 66%;
  }
}

@keyframes platformSignalSweep {
  0%, 14% {
    background-position: -120% 84%, 120% 20%;
    opacity: 0.24;
  }
  48% {
    opacity: 0.54;
  }
  100% {
    background-position: 116% -30%, -86% 84%;
    opacity: 0.24;
  }
}

@keyframes platformSignalPath {
  0% {
    stroke-dashoffset: 92;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes platformNodeGlow {
  0%, 100% {
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.5),
      0 0 0 rgba(var(--theme-rgb), 0);
    filter: brightness(1);
  }
  50% {
    box-shadow:
      0 10px 34px rgba(0, 0, 0, 0.52),
      0 0 24px rgba(var(--theme-rgb), 0.22);
    filter: brightness(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before,
  body.overhouse-public-home:not(.auth-locked) .platform-energy-lines,
  body.overhouse-public-home:not(.auth-locked) .platform-light-sweep,
  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-pulse,
  body.overhouse-public-home:not(.auth-locked) .meco-node {
    animation: none !important;
  }
}

/* Central ecosystem rebuild: generated visual is the structure, nodes are aligned hot spots. */
body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
  --meco-visual-size: clamp(620px, calc(var(--meco-radius, 220px) * 4.85), min(1500px, 58vw));
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
  left: var(--meco-center-x, 50%) !important;
  top: var(--meco-center-y, 50%) !important;
  width: var(--meco-visual-size) !important;
  transform: translate(-50%, -50%) !important;
  z-index: 7 !important;
  opacity: 0.84 !important;
  mix-blend-mode: normal !important;
  filter:
    saturate(0.96)
    contrast(1.01)
    drop-shadow(0 34px 86px rgba(0, 0, 0, 0.38)) !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before {
  display: none !important;
  animation: none !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::after {
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual img {
  filter: brightness(0.96) saturate(0.98);
}

body.overhouse-public-home:not(.auth-locked) .platform-energy-lines {
  display: none !important;
  animation: none !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-light-sweep {
  display: none !important;
  animation: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
  z-index: 9 !important;
  opacity: 0.08 !important;
  mix-blend-mode: screen !important;
  filter: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path[id^="line-"] {
  stroke: rgba(143, 243, 255, 0.1) !important;
  stroke-width: 1 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-pulse {
  opacity: 0.12 !important;
  stroke-width: 1.2 !important;
  stroke-dasharray: 2 48 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-core {
  width: clamp(62px, calc(var(--meco-radius, 220px) * 0.36), 92px) !important;
  height: clamp(62px, calc(var(--meco-radius, 220px) * 0.36), 92px) !important;
  z-index: 24 !important;
  border-radius: 20px !important;
  border-color: rgba(143, 243, 255, 0.22) !important;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(9, 18, 30, 0.68), rgba(3, 7, 14, 0.58)) !important;
  box-shadow:
    0 14px 42px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(76, 233, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(9px) saturate(1.18) !important;
  -webkit-backdrop-filter: blur(9px) saturate(1.18) !important;
}

body.overhouse-public-home:not(.auth-locked) .core-radar-pulse,
body.overhouse-public-home:not(.auth-locked) .core-orbit-ring {
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-core strong {
  font-size: clamp(14px, calc(var(--meco-radius, 220px) * 0.085), 21px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-core span {
  margin-top: 4px !important;
  font-size: clamp(7px, calc(var(--meco-radius, 220px) * 0.04), 9px) !important;
  letter-spacing: 0.06em !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  width: clamp(40px, calc(var(--meco-radius, 220px) * 0.25), 56px) !important;
  height: clamp(40px, calc(var(--meco-radius, 220px) * 0.25), 56px) !important;
  z-index: 25 !important;
  border-radius: 15px !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at 50% 80%, rgba(var(--theme-rgb), 0.18), transparent 56%),
    rgba(6, 13, 23, 0.42) !important;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.32),
    0 0 18px rgba(var(--theme-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
  backdrop-filter: blur(7px) saturate(1.24) !important;
  -webkit-backdrop-filter: blur(7px) saturate(1.24) !important;
  opacity: 0.82;
  animation: platformNodeGlow 6.2s ease-in-out infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(var(--theme-rgb), 0.46), rgba(255, 255, 255, 0.08), rgba(223, 255, 87, 0.16));
  opacity: 0.44;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

body.overhouse-public-home:not(.auth-locked) .meco-node .node-glow {
  inset: -14px !important;
  border-radius: 22px !important;
  background: radial-gradient(circle, rgba(var(--theme-rgb), 0.28), transparent 64%) !important;
  opacity: 0.12 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
  width: clamp(17px, calc(var(--meco-radius, 220px) * 0.1), 23px) !important;
  height: clamp(17px, calc(var(--meco-radius, 220px) * 0.1), 23px) !important;
  color: rgba(248, 251, 255, 0.82) !important;
  filter: drop-shadow(0 0 8px rgba(var(--theme-rgb), 0.34));
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span {
  top: calc(100% + 8px) !important;
  max-width: 88px !important;
  padding: 4px 7px !important;
  border-radius: 8px !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(3, 8, 15, 0.5) !important;
  color: rgba(248, 251, 255, 0.66) !important;
  font-size: 10px !important;
  opacity: 0;
  transform: translateX(-50%) translateY(-3px) !important;
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover,
body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.06) !important;
  border-color: rgba(var(--theme-rgb), 0.42) !important;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.38),
    0 0 30px rgba(var(--theme-rgb), 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover .node-glow,
body.overhouse-public-home:not(.auth-locked) .meco-node.active .node-glow {
  opacity: 0.42 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span,
body.overhouse-public-home:not(.auth-locked) .meco-node.active > span {
  color: #fff !important;
  opacity: 1;
  transform: translateX(-50%) translateY(0) !important;
  border-color: rgba(var(--theme-rgb), 0.34) !important;
  background: rgba(3, 8, 15, 0.74) !important;
}

@media (min-width: 1800px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
    --meco-visual-size: clamp(920px, calc(var(--meco-radius, 260px) * 4.9), 1540px);
  }
}

@media (max-width: 980px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
    --meco-visual-size: clamp(430px, calc(var(--meco-radius, 100px) * 5.55), 760px);
  }

  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    opacity: 0.74 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node {
    width: clamp(38px, calc(var(--meco-radius, 92px) * 0.36), 48px) !important;
    height: clamp(38px, calc(var(--meco-radius, 92px) * 0.36), 48px) !important;
    border-radius: 13px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(-2px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node.active > span {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
    --meco-visual-size: clamp(390px, calc(var(--meco-radius, 82px) * 5.45), 560px);
  }

  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    opacity: 0.64 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core {
    width: clamp(54px, calc(var(--meco-radius, 82px) * 0.68), 64px) !important;
    height: clamp(54px, calc(var(--meco-radius, 82px) * 0.68), 64px) !important;
    border-radius: 17px !important;
  }
}

/* Project explanation overlay: compact hover label and smooth side drawer. */
body.overhouse-public-home:not(.auth-locked) .meco-telemetry {
  width: auto !important;
  min-width: 132px;
  padding: 8px 10px !important;
  border-radius: 12px !important;
  background:
    linear-gradient(180deg, rgba(12, 19, 31, 0.84), rgba(4, 8, 15, 0.78)) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32) !important;
  backdrop-filter: blur(10px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.12) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-telemetry-body,
body.overhouse-public-home:not(.auth-locked) .meco-telemetry-row,
body.overhouse-public-home:not(.auth-locked) .telemetry-grid,
body.overhouse-public-home:not(.auth-locked) .telemetry-item {
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-telemetry-header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-telemetry-header h4 {
  margin: 0 !important;
  color: rgba(248, 251, 255, 0.92) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-telemetry-header span {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(76, 233, 255, 0.1);
  color: rgba(143, 243, 255, 0.84);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  position: absolute !important;
  box-sizing: border-box !important;
  top: clamp(82px, 9vh, 118px) !important;
  right: clamp(16px, 3vw, 44px) !important;
  bottom: auto !important;
  left: auto !important;
  width: clamp(440px, 42vw, 640px) !important;
  height: auto !important;
  max-height: calc(100vh - 132px) !important;
  min-height: 0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(calc(100% + 42px)) scale(0.985) !important;
  transition:
    transform 0.54s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.26s ease,
    box-shadow 0.28s ease !important;
  background:
    linear-gradient(180deg, rgba(12, 18, 30, 0.9), rgba(4, 8, 15, 0.82)) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(18px) saturate(1.14) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.14) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) scale(1) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-drag-handle,
body.overhouse-public-home:not(.auth-locked) .meco-board-sections,
body.overhouse-public-home:not(.auth-locked) .meco-board-section {
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-header {
  box-sizing: border-box !important;
  padding: 18px 18px 14px !important;
  gap: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.025);
}

body.overhouse-public-home:not(.auth-locked) .meco-board-icon {
  width: 44px !important;
  height: 44px !important;
  flex-basis: 44px !important;
  border-radius: 14px !important;
  background: rgba(var(--theme-rgb, 76, 233, 255), 0.12) !important;
  box-shadow: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title h3 {
  margin-bottom: 5px !important;
  font-size: 20px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title-row {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title-row h3 {
  min-width: 0;
  margin: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.overhouse-public-home:not(.auth-locked) .service-kind-badge {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  height: 20px;
  min-width: 36px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(248, 251, 255, 0.68);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

body.overhouse-public-home:not(.auth-locked) .service-kind-badge--web {
  color: rgba(143, 243, 255, 0.9);
  border-color: rgba(76, 233, 255, 0.2);
  background: rgba(76, 233, 255, 0.1);
}

body.overhouse-public-home:not(.auth-locked) .service-kind-badge--program {
  color: rgba(255, 207, 138, 0.94);
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.11);
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title p {
  color: rgba(248, 251, 255, 0.58) !important;
  font-size: 12px !important;
  line-height: 1.42 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-close {
  width: 32px !important;
  height: 32px !important;
  border-radius: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
  display: block !important;
  overflow: visible !important;
  padding: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc {
  box-sizing: border-box !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 18px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc h4 {
  margin-bottom: 10px !important;
  font-size: 17px !important;
  line-height: 1.28 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc p {
  color: rgba(248, 251, 255, 0.68) !important;
  font-size: 13px !important;
  line-height: 1.58 !important;
  max-width: 100% !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-highlights {
  margin-top: 16px !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-highlights span {
  padding: 6px 9px !important;
  border-radius: 9px !important;
  font-size: 11px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-action-wrapper {
  margin-top: 18px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-trigger-button {
  min-height: 46px !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

/* Project detail preview deck: card-news style service screens. */
body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  max-height: calc(100vh - 202px) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-cardnews {
  display: block !important;
  padding: 0 18px 18px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-shell {
  position: relative;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head span,
body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head strong {
  display: block;
  min-width: 0;
  line-height: 1.12;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head span {
  color: var(--theme-color, #4ce9ff);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head strong {
  color: rgba(248, 251, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow: visible;
  padding: 0;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(198px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 148px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 12%, rgba(var(--theme-rgb, 76, 233, 255), 0.15), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  overflow: hidden;
  animation: cardNewsRise 0.42s ease both;
  animation-delay: calc(var(--card-order, 1) * 0.045s);
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.055), transparent 58% 100%);
  transform: translateX(-80%);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.46s ease;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
  position: relative;
  min-width: 0;
  align-self: center;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 124px;
  max-height: 154px;
  padding: 7px;
  border: 1px solid rgba(var(--theme-rgb, 76, 233, 255), 0.18);
  border-radius: 13px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--theme-rgb, 76, 233, 255), 0.14), transparent 58%),
    #050c1c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.24);
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%, rgba(3, 6, 14, 0.16)),
    radial-gradient(circle at 78% 18%, rgba(var(--theme-rgb, 76, 233, 255), 0.13), transparent 34%);
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 1;
  display: block;
  object-fit: contain;
  object-position: var(--preview-position, center center);
  filter: saturate(1.08) contrast(1.05) brightness(0.96);
  transform: none !important;
  border-radius: 9px;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy {
  min-width: 0;
  align-self: center;
  display: grid;
  gap: 5px;
  position: relative;
  z-index: 1;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy span {
  color: var(--theme-color, #4ce9ff);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
  margin: 0;
  color: rgba(248, 251, 255, 0.62);
  font-size: 11.5px;
  font-weight: 680;
  line-height: 1.45;
  word-break: keep-all;
}

@keyframes cardNewsRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
  transition:
    left 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    top 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    width 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.24s ease,
    filter 0.24s ease !important;
  will-change: left, top, width;
}

body.overhouse-public-home:not(.auth-locked) .meco-core,
body.overhouse-public-home:not(.auth-locked) .meco-node {
  transition:
    left 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    top 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    width 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    height 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.22s ease,
    opacity 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease !important;
  will-change: left, top, width, height, transform;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
  transition: opacity 0.24s ease, filter 0.24s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas.is-motion-shifting .meco-svg-canvas {
  opacity: 0.035 !important;
  filter: blur(0.25px) !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before {
  display: block !important;
  inset: 5% !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 51% 52%, rgba(143, 243, 255, 0.15) 0 1.7%, transparent 4.4%),
    radial-gradient(circle at 39% 44%, rgba(76, 233, 255, 0.12) 0 1.1%, transparent 3.8%),
    radial-gradient(circle at 62% 41%, rgba(223, 255, 87, 0.08) 0 1.2%, transparent 4.2%),
    radial-gradient(circle at 66% 64%, rgba(255, 114, 182, 0.1) 0 1%, transparent 4%),
    radial-gradient(ellipse at 50% 54%, rgba(76, 233, 255, 0.08), transparent 35%),
    radial-gradient(ellipse at 52% 55%, rgba(223, 255, 87, 0.035), transparent 46%) !important;
  opacity: 0.34 !important;
  mix-blend-mode: screen !important;
  filter: blur(0.25px);
  mask-image: radial-gradient(ellipse at 50% 53%, #000 0%, #000 44%, rgba(0, 0, 0, 0.46) 61%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 53%, #000 0%, #000 44%, rgba(0, 0, 0, 0.46) 61%, transparent 76%);
  animation: platformLivePulse 7.8s ease-in-out infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::after {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
  mix-blend-mode: normal !important;
  animation: none !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-energy-lines {
  display: block !important;
  inset: 8% !important;
  border-radius: 50% !important;
  opacity: 0.24 !important;
  background:
    linear-gradient(34deg, transparent 0 44%, rgba(76, 233, 255, 0) 45%, rgba(76, 233, 255, 0.24) 47%, rgba(223, 255, 87, 0.1) 48%, transparent 51%),
    linear-gradient(124deg, transparent 0 46%, rgba(143, 243, 255, 0.18) 49%, transparent 52%),
    linear-gradient(88deg, transparent 0 48%, rgba(255, 114, 182, 0.1) 50%, transparent 52%),
    radial-gradient(circle at 50% 52%, rgba(143, 243, 255, 0.16), transparent 10%),
    radial-gradient(circle at 41% 61%, rgba(76, 233, 255, 0.1), transparent 9%),
    radial-gradient(circle at 63% 38%, rgba(223, 255, 87, 0.08), transparent 8%) !important;
  background-size:
    230% 230%,
    250% 250%,
    210% 210%,
    100% 100%,
    100% 100%,
    100% 100%;
  background-position:
    0% 68%,
    100% 34%,
    50% 0%,
    50% 52%,
    41% 61%,
    63% 38%;
  filter: blur(0.15px);
  mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 20%, #000 48%, rgba(0, 0, 0, 0.34) 62%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 20%, #000 48%, rgba(0, 0, 0, 0.34) 62%, transparent 75%);
  animation: platformLiveCurrent 9.5s linear infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-light-sweep {
  display: none !important;
  animation: none !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual.platform-live-ready {
  isolation: isolate;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual img {
  position: relative;
  z-index: 1;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before {
  z-index: 2;
}

body.overhouse-public-home:not(.auth-locked) .platform-energy-lines {
  z-index: 3;
}

body.overhouse-public-home:not(.auth-locked) .platform-live-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.78;
  mix-blend-mode: screen;
  filter: saturate(1.12) blur(0.05px);
  mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 15%, #000 60%, rgba(0, 0, 0, 0.42) 74%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 15%, #000 60%, rgba(0, 0, 0, 0.42) 74%, transparent 86%);
}

body.overhouse-public-home:not(.auth-locked) .platform-screen-glow,
body.overhouse-public-home:not(.auth-locked) .platform-data-pulse {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: screen;
}

body.overhouse-public-home:not(.auth-locked) .platform-screen-glow {
  width: var(--screen-w, 14%);
  height: var(--screen-h, 8%);
  left: var(--screen-x, 50%);
  top: var(--screen-y, 50%);
  border-radius: 14px;
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(var(--screen-rgb, 76, 233, 255), 0.12) 42%, rgba(255, 255, 255, 0.08) 50%, transparent 72%),
    radial-gradient(ellipse at 50% 50%, rgba(var(--screen-rgb, 76, 233, 255), 0.18), transparent 68%);
  opacity: 0.28;
  filter: blur(0.4px);
  transform: translate(-50%, -50%) rotate(var(--screen-rotate, 0deg));
  animation: screenAlive 5.8s ease-in-out infinite;
  animation-delay: var(--screen-delay, 0s);
}

body.overhouse-public-home:not(.auth-locked) .screen-left {
  --screen-x: 31%;
  --screen-y: 43%;
  --screen-w: 16%;
  --screen-h: 12%;
  --screen-rgb: 76, 233, 255;
  --screen-rotate: -7deg;
  --screen-delay: -0.4s;
}

body.overhouse-public-home:not(.auth-locked) .screen-top {
  --screen-x: 50%;
  --screen-y: 32%;
  --screen-w: 18%;
  --screen-h: 8%;
  --screen-rgb: 143, 243, 255;
  --screen-delay: -1.3s;
}

body.overhouse-public-home:not(.auth-locked) .screen-right {
  --screen-x: 66%;
  --screen-y: 40%;
  --screen-w: 17%;
  --screen-h: 12%;
  --screen-rgb: 167, 124, 255;
  --screen-rotate: 5deg;
  --screen-delay: -2.1s;
}

body.overhouse-public-home:not(.auth-locked) .screen-bottom {
  --screen-x: 52%;
  --screen-y: 76%;
  --screen-w: 16%;
  --screen-h: 9%;
  --screen-rgb: 223, 255, 87;
  --screen-delay: -3s;
}

body.overhouse-public-home:not(.auth-locked) .platform-data-pulse {
  width: clamp(4px, calc(var(--meco-radius, 220px) * 0.026), 8px);
  height: clamp(4px, calc(var(--meco-radius, 220px) * 0.026), 8px);
  left: 50%;
  top: 54%;
  border-radius: 999px;
  background: rgba(var(--pulse-rgb, 76, 233, 255), 0.92);
  box-shadow:
    0 0 12px rgba(var(--pulse-rgb, 76, 233, 255), 0.68),
    0 0 28px rgba(var(--pulse-rgb, 76, 233, 255), 0.3);
  opacity: 0;
  animation: platformDataTravel 3.8s cubic-bezier(0.42, 0, 0.22, 1) infinite;
  animation-delay: var(--pulse-delay, 0s);
}

body.overhouse-public-home:not(.auth-locked) .pulse-view {
  --pulse-x: 31%;
  --pulse-y: 48%;
  --pulse-rgb: 76, 233, 255;
  --pulse-delay: -0.2s;
}

body.overhouse-public-home:not(.auth-locked) .pulse-link {
  --pulse-x: 67%;
  --pulse-y: 44%;
  --pulse-rgb: 255, 114, 182;
  --pulse-delay: -0.9s;
}

body.overhouse-public-home:not(.auth-locked) .pulse-hub {
  --pulse-x: 55%;
  --pulse-y: 76%;
  --pulse-rgb: 223, 255, 87;
  --pulse-delay: -1.55s;
}

body.overhouse-public-home:not(.auth-locked) .pulse-rent {
  --pulse-x: 42%;
  --pulse-y: 70%;
  --pulse-rgb: 16, 185, 129;
  --pulse-delay: -2.15s;
}

body.overhouse-public-home:not(.auth-locked) .pulse-net {
  --pulse-x: 70%;
  --pulse-y: 58%;
  --pulse-rgb: 76, 233, 255;
  --pulse-delay: -2.7s;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path {
  transition:
    stroke 0.2s ease,
    stroke-width 0.2s ease,
    opacity 0.2s ease !important;
}

@media (prefers-reduced-motion: reduce) {
  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual,
  body.overhouse-public-home:not(.auth-locked) .meco-core,
  body.overhouse-public-home:not(.auth-locked) .meco-node,
  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas,
  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path,
  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before,
  body.overhouse-public-home:not(.auth-locked) .platform-energy-lines,
  body.overhouse-public-home:not(.auth-locked) .platform-live-canvas,
  body.overhouse-public-home:not(.auth-locked) .platform-screen-glow,
  body.overhouse-public-home:not(.auth-locked) .platform-data-pulse {
    transition: none !important;
    animation: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .platform-live-canvas {
    display: none !important;
  }
}

@keyframes screenAlive {
  0%,
  100% {
    opacity: 0.18;
    filter: blur(0.6px) saturate(0.9);
  }

  42% {
    opacity: 0.46;
    filter: blur(0.25px) saturate(1.24);
  }

  68% {
    opacity: 0.28;
    filter: blur(0.45px) saturate(1.04);
  }
}

@keyframes platformDataTravel {
  0% {
    left: 50%;
    top: 54%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.38);
  }

  16% {
    opacity: 0.94;
  }

  72% {
    opacity: 0.76;
  }

  100% {
    left: var(--pulse-x);
    top: var(--pulse-y);
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

@keyframes platformLivePulse {
  0%,
  100% {
    opacity: 0.24;
    filter: blur(0.35px) saturate(0.95);
  }

  38% {
    opacity: 0.42;
    filter: blur(0.2px) saturate(1.12);
  }

  62% {
    opacity: 0.3;
    filter: blur(0.28px) saturate(1.02);
  }
}

@keyframes platformLiveCurrent {
  0% {
    background-position:
      0% 68%,
      100% 34%,
      50% 0%,
      50% 52%,
      41% 61%,
      63% 38%;
  }

  100% {
    background-position:
      92% 22%,
      14% 86%,
      96% 48%,
      50% 52%,
      41% 61%,
      63% 38%;
  }
}

/* Modern motion layer: pointer depth, soft entrance, and live UI rhythm. */
body.overhouse-public-home:not(.auth-locked) {
  --motion-x-soft: 0px;
  --motion-y-soft: 0px;
  --motion-x-mid: 0px;
  --motion-y-mid: 0px;
  --motion-x-deep: 0px;
  --motion-y-deep: 0px;
  --motion-x-soft-reverse: 0px;
  --motion-y-soft-reverse: 0px;
  --motion-x-mid-reverse: 0px;
  --motion-y-mid-reverse: 0px;
}

body.overhouse-public-home:not(.auth-locked) .space-grid {
  opacity: 0.48 !important;
  transform: translate3d(var(--motion-x-soft), var(--motion-y-soft), 0);
  animation: overGridDrift 22s linear infinite;
  will-change: transform, background-position;
}

body.overhouse-public-home:not(.auth-locked) .space-ambient-glow {
  width: min(680px, 74vw) !important;
  height: min(680px, 74vw) !important;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(76, 233, 255, 0.085) 0%, rgba(76, 233, 255, 0.024) 38%, rgba(167, 124, 255, 0.018) 56%, transparent 72%) !important;
  filter: blur(6px) saturate(1.05);
  transition: opacity 0.5s ease, width 0.3s ease, height 0.3s ease;
  animation: ambientBreath 8s ease-in-out infinite;
}

body.overhouse-public-home:not(.auth-locked).home-motion-mounted .space-ambient-glow {
  opacity: 0.86;
}

body.overhouse-public-home:not(.auth-locked) .top-dock {
  position: absolute;
  overflow: hidden;
  transform: translateX(-50%) translate3d(var(--motion-x-soft-reverse), var(--motion-y-soft-reverse), 0) !important;
  transition:
    transform 0.18s ease-out,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

body.overhouse-public-home:not(.auth-locked) .top-dock::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 47%, rgba(76, 233, 255, 0.12) 50%, transparent 60% 100%);
  opacity: 0.42;
  transform: translateX(-120%);
  animation: dockGlassRun 8.8s ease-in-out infinite;
}

body.overhouse-public-home:not(.auth-locked) .global-brand-header {
  transform: translate3d(var(--motion-x-mid-reverse), var(--motion-y-mid-reverse), 0);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

body.overhouse-public-home:not(.auth-locked).home-motion-ready .global-brand-header {
  animation: heroCopyIn 0.78s cubic-bezier(0.19, 1, 0.22, 1) both;
}

body.overhouse-public-home:not(.auth-locked) .brand-overline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.overhouse-public-home:not(.auth-locked) .brand-overline::after {
  content: "";
  width: clamp(34px, 6vw, 86px);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 243, 255, 0.72), transparent);
  opacity: 0.74;
  transform-origin: left center;
  animation: overlineSignal 3.8s ease-in-out infinite;
}

body.overhouse-public-home:not(.auth-locked) .glow-word {
  background: linear-gradient(100deg, #9ff9ff 0%, #4ce9ff 38%, #dfff57 78%, #9ff9ff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  animation: titleChromaticShift 7.2s ease-in-out infinite;
}

body.overhouse-public-home:not(.auth-locked) .mecosystem-topology-mesh {
  transform: translate3d(var(--motion-x-soft), var(--motion-y-soft), 0);
  transition: transform 0.22s ease-out;
  will-change: transform;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
  transform: translate(calc(-50% + var(--motion-x-mid)), calc(-50% + var(--motion-y-mid))) !important;
}

body.overhouse-public-home:not(.auth-locked).home-motion-ready .platform-realistic-visual {
  animation: platformVisualArrive 0.9s cubic-bezier(0.19, 1, 0.22, 1) both;
}

body.overhouse-public-home:not(.auth-locked).home-motion-ready .meco-node {
  animation:
    platformNodeGlow 6.2s ease-in-out infinite,
    nodeArrive 0.72s cubic-bezier(0.19, 1, 0.22, 1) both !important;
  animation-delay:
    0s,
    calc(0.08s + (var(--node-seq, 0) * 0.045s)) !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverHub {
  --node-seq: 1;
  --node-angle: 226deg !important;
  --node-radius-scale: 1.14 !important;
  --node-y-nudge: -6px !important;
}
body.overhouse-public-home:not(.auth-locked) #node-OverLink {
  --node-seq: 2;
  --node-angle: 264deg !important;
  --node-radius-scale: 1.08 !important;
  --node-y-nudge: -10px !important;
}
body.overhouse-public-home:not(.auth-locked) #node-OverDev {
  --node-seq: 3;
  --node-angle: 304deg !important;
  --node-radius-scale: 1.08 !important;
  --node-y-nudge: -8px !important;
}
body.overhouse-public-home:not(.auth-locked) #node-OverRent {
  --node-seq: 4;
  --node-angle: 338deg !important;
  --node-radius-scale: 1.16 !important;
  --node-y-nudge: -4px !important;
}
body.overhouse-public-home:not(.auth-locked) #node-OverView {
  --node-seq: 5;
  --node-angle: 34deg !important;
  --node-radius-scale: 1.14 !important;
  --node-y-nudge: 8px !important;
}
body.overhouse-public-home:not(.auth-locked) #node-OverStudio {
  --node-seq: 6;
  --node-angle: 70deg !important;
  --node-radius-scale: 1.08 !important;
  --node-y-nudge: 12px !important;
}
body.overhouse-public-home:not(.auth-locked) #node-OverNet {
  --node-seq: 7;
  --node-angle: 108deg !important;
  --node-radius-scale: 1.06 !important;
  --node-y-nudge: 12px !important;
}
body.overhouse-public-home:not(.auth-locked) #node-OverProtect {
  --node-seq: 8;
  --node-angle: 146deg !important;
  --node-radius-scale: 1.1 !important;
  --node-y-nudge: 10px !important;
}
body.overhouse-public-home:not(.auth-locked) #node-OverDesk {
  --node-seq: 9;
  --node-angle: 178deg !important;
  --node-radius-scale: 1.14 !important;
  --node-y-nudge: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible .meco-board-header {
  position: relative;
  overflow: hidden;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible .meco-board-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(var(--theme-rgb, 76, 233, 255), 0.14) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: boardHeaderScan 3.6s ease-in-out 0.3s infinite;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-trigger {
  transform: translate3d(var(--motion-x-soft), var(--motion-y-soft), 0);
  transition: transform 0.18s ease-out, box-shadow 0.2s ease;
}

body.overhouse-public-home:not(.auth-locked) .contact-trigger-icon {
  animation: contactIconFloat 4.8s ease-in-out infinite;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(var(--motion-x-mid-reverse), calc(var(--motion-y-mid-reverse) + 18px), 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(var(--motion-x-mid-reverse), var(--motion-y-mid-reverse), 0);
  }
}

@keyframes platformVisualArrive {
  from {
    opacity: 0;
    filter: blur(12px) saturate(0.84) contrast(0.96);
  }

  to {
    opacity: 0.84;
    filter: saturate(0.96) contrast(1.01) drop-shadow(0 34px 86px rgba(0, 0, 0, 0.38));
  }
}

@keyframes nodeArrive {
  from {
    opacity: 0;
    filter: blur(6px);
  }

  to {
    opacity: 0.82;
    filter: blur(0);
  }
}

@keyframes overGridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 86px 52px;
  }
}

@keyframes ambientBreath {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes homeSunBreath {
  0%,
  100% {
    transform: translate3d(var(--motion-x-soft, 0px), var(--motion-y-soft, 0px), 0) scale(1);
  }

  50% {
    transform: translate3d(var(--motion-x-mid, 0px), var(--motion-y-mid, 0px), 0) scale(1.035);
  }
}

@keyframes homeLightDrift {
  0%,
  100% {
    transform: translate3d(var(--motion-x-soft-reverse, 0px), var(--motion-y-soft-reverse, 0px), 0);
  }

  50% {
    transform: translate3d(var(--motion-x-mid-reverse, 0px), var(--motion-y-mid-reverse, 0px), 0);
  }
}

@keyframes dockGlassRun {
  0%,
  68% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes overlineSignal {
  0%,
  100% {
    transform: scaleX(0.58);
    opacity: 0.44;
  }

  48% {
    transform: scaleX(1);
    opacity: 0.86;
  }
}

@keyframes titleChromaticShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes boardHeaderScan {
  0%,
  58% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes contactIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.overhouse-public-home:not(.auth-locked) .space-grid,
  body.overhouse-public-home:not(.auth-locked) .space-ambient-glow,
  body.overhouse-public-home:not(.auth-locked) .top-dock::after,
  body.overhouse-public-home:not(.auth-locked) .global-brand-header,
  body.overhouse-public-home:not(.auth-locked) .brand-overline::after,
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas::before,
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas::after,
  body.overhouse-public-home:not(.auth-locked) .glow-word,
  body.overhouse-public-home:not(.auth-locked) .mecosystem-topology-mesh,
  body.overhouse-public-home:not(.auth-locked) .meco-node,
  body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible .meco-board-header::after,
  body.overhouse-public-home:not(.auth-locked) .contact-trigger-icon {
    animation: none !important;
    transition: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    transform: translate(-50%, -50%) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock {
    transform: translateX(-50%) !important;
  }
}

@media (min-width: 761px) {
  body.overhouse-public-home:not(.auth-locked):has(.meco-detail-board.visible) .floating-contact:not(.is-open) {
    right: clamp(16px, 3vw, 44px) !important;
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .meco-node[data-service-kind="program"]::after,
  body.overhouse-public-home:not(.auth-locked) .meco-node[data-service-kind="web"]::after {
    content: none !important;
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    top: auto !important;
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    max-height: 42vh !important;
    transform: translateY(calc(100% + 24px)) scale(0.99) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
    transform: translateY(0) scale(1) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-header {
    padding: 14px 14px 12px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-desc {
    padding: 14px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
    max-height: calc(42vh - 78px) !important;
    overflow-y: auto !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-cardnews {
    padding: 0 14px 14px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head {
    align-items: start;
    display: grid;
    gap: 4px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head strong {
    text-align: left;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 8px;
    padding: 9px;
    border-radius: 13px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    min-height: 132px;
    max-height: 150px;
    border-radius: 10px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong {
    font-size: 13px;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
    font-size: 11px;
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Premium image shader pass: no visible circles, dots, or wire drawings. */
body.overhouse-public-home:not(.auth-locked) .platform-live-canvas,
body.overhouse-public-home:not(.auth-locked) .platform-screen-glow,
body.overhouse-public-home:not(.auth-locked) .platform-data-pulse {
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
  isolation: isolate;
  overflow: visible;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual img {
  position: relative;
  z-index: 1;
  animation: platformImageDepthBreath 8.6s ease-in-out infinite !important;
  transform-origin: 50% 54%;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before {
  display: block !important;
  inset: -2% !important;
  z-index: 2;
  border-radius: 0 !important;
  background:
    conic-gradient(from 212deg at 50% 54%, transparent 0deg, rgba(76, 233, 255, 0.12) 58deg, rgba(167, 124, 255, 0.08) 112deg, transparent 164deg, rgba(223, 255, 87, 0.085) 232deg, transparent 304deg),
    radial-gradient(ellipse at calc(48% + var(--motion-x-soft, 0px)) calc(50% + var(--motion-y-soft, 0px)), rgba(143, 243, 255, 0.16), transparent 36%),
    linear-gradient(118deg, transparent 0 28%, rgba(255, 255, 255, 0.045) 42%, rgba(76, 233, 255, 0.09) 50%, transparent 68% 100%) !important;
  background-size: 180% 180%, 100% 100%, 240% 240%;
  background-position: 50% 50%, 50% 50%, 0% 48%;
  opacity: 0.46 !important;
  mix-blend-mode: screen !important;
  filter: blur(7px) saturate(1.16);
  mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 19%, #000 64%, rgba(0, 0, 0, 0.28) 76%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 19%, #000 64%, rgba(0, 0, 0, 0.28) 76%, transparent 88%);
  transform: translate3d(var(--motion-x-soft, 0px), var(--motion-y-soft, 0px), 0);
  animation: platformShaderWash 12s ease-in-out infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::after {
  display: block !important;
  inset: 7% !important;
  z-index: 3;
  border-radius: 46% !important;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(0deg, rgba(76, 233, 255, 0.02) 0 1px, transparent 1px 13px),
    radial-gradient(ellipse at 50% 54%, rgba(255, 255, 255, 0.05), transparent 54%) !important;
  opacity: 0.2 !important;
  mix-blend-mode: soft-light !important;
  filter: blur(0.35px);
  mask-image: radial-gradient(ellipse at 50% 54%, #000 0%, #000 52%, rgba(0, 0, 0, 0.32) 66%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 54%, #000 0%, #000 52%, rgba(0, 0, 0, 0.32) 66%, transparent 78%);
  animation: platformFineTexture 14s linear infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-energy-lines {
  display: block !important;
  inset: -6% !important;
  z-index: 4;
  border-radius: 0 !important;
  opacity: 0.34 !important;
  background:
    radial-gradient(ellipse at 35% 42%, rgba(76, 233, 255, 0.15), transparent 31%),
    radial-gradient(ellipse at 66% 46%, rgba(167, 124, 255, 0.13), transparent 32%),
    radial-gradient(ellipse at 53% 69%, rgba(223, 255, 87, 0.11), transparent 28%),
    linear-gradient(130deg, transparent 0%, rgba(143, 243, 255, 0.1) 45%, rgba(255, 255, 255, 0.04) 52%, transparent 68%) !important;
  background-size: 120% 120%, 116% 116%, 124% 124%, 260% 260%;
  background-position: 44% 50%, 56% 48%, 50% 60%, 0% 50%;
  mix-blend-mode: color-dodge;
  filter: blur(13px) saturate(1.18);
  mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 20%, #000 58%, rgba(0, 0, 0, 0.32) 72%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 20%, #000 58%, rgba(0, 0, 0, 0.32) 72%, transparent 86%);
  transform: translate3d(var(--motion-x-mid-reverse, 0px), var(--motion-y-mid-reverse, 0px), 0);
  animation: platformAuroraVolume 10.5s ease-in-out infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-light-sweep {
  display: block !important;
  inset: -12% !important;
  z-index: 5;
  border-radius: 0 !important;
  opacity: 0.18 !important;
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(255, 255, 255, 0.09) 47%, rgba(143, 243, 255, 0.13) 52%, transparent 64% 100%) !important;
  background-size: 240% 240%;
  background-position: -65% 50%;
  mix-blend-mode: screen;
  filter: blur(8px);
  mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 18%, #000 56%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 54%, transparent 0%, #000 18%, #000 56%, transparent 78%);
  animation: platformSoftSheen 9.8s ease-in-out infinite !important;
}

@keyframes platformImageDepthBreath {
  0%,
  100% {
    filter: brightness(0.95) saturate(0.98) contrast(1.01);
    transform: scale(1);
  }

  50% {
    filter: brightness(1.02) saturate(1.08) contrast(1.03);
    transform: scale(1.006);
  }
}

@keyframes platformShaderWash {
  0%,
  100% {
    background-position: 50% 50%, 50% 50%, 0% 48%;
    opacity: 0.34;
  }

  48% {
    background-position: 62% 44%, 49% 51%, 94% 54%;
    opacity: 0.55;
  }
}

@keyframes platformFineTexture {
  from {
    background-position: 0 0, 0 0, 50% 54%;
  }

  to {
    background-position: 48px 0, 0 42px, 50% 54%;
  }
}

@keyframes platformAuroraVolume {
  0%,
  100% {
    background-position: 44% 50%, 56% 48%, 50% 60%, 0% 50%;
    opacity: 0.25;
  }

  45% {
    background-position: 50% 44%, 51% 52%, 55% 58%, 84% 50%;
    opacity: 0.42;
  }
}

@keyframes platformSoftSheen {
  0%,
  64% {
    background-position: -70% 50%;
    opacity: 0.08;
  }

  100% {
    background-position: 128% 50%;
    opacity: 0.22;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual img,
  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before,
  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::after,
  body.overhouse-public-home:not(.auth-locked) .platform-energy-lines,
  body.overhouse-public-home:not(.auth-locked) .platform-light-sweep {
    animation: none !important;
  }
}

/* Hero image motion pass: the generated WebP carries the motion, so DOM overlays stay disabled. */
body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::before,
body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual::after,
body.overhouse-public-home:not(.auth-locked) .platform-energy-lines,
body.overhouse-public-home:not(.auth-locked) .platform-light-sweep,
body.overhouse-public-home:not(.auth-locked) .platform-live-canvas,
body.overhouse-public-home:not(.auth-locked) .platform-screen-glow,
body.overhouse-public-home:not(.auth-locked) .platform-data-pulse {
  display: none !important;
  animation: none !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  animation: none !important;
  filter: brightness(var(--hero-brightness, 0.96)) saturate(var(--hero-saturation, 0.98)) contrast(var(--hero-contrast, 1.02)) !important;
}

/* Floating time and fixed title polish: keep the hero copy still and let only the light breathe. */
body.overhouse-public-home:not(.auth-locked) .global-brand-header,
body.overhouse-public-home:not(.auth-locked).home-motion-ready .global-brand-header {
  transform: none !important;
  transition: none !important;
  animation: none !important;
  filter: none !important;
  opacity: 1 !important;
  will-change: auto !important;
}

body.overhouse-public-home:not(.auth-locked) .brand-overline,
body.overhouse-public-home:not(.auth-locked) .brand-title,
body.overhouse-public-home:not(.auth-locked) .brand-title *,
body.overhouse-public-home:not(.auth-locked) .brand-description {
  transform: none !important;
  animation: none !important;
}

body.overhouse-public-home:not(.auth-locked) .brand-overline::after {
  animation: none !important;
  transform: scaleX(0.82) !important;
  opacity: 0.58 !important;
}

body.overhouse-public-home:not(.auth-locked) .glow-word {
  animation: none !important;
  background-size: 100% 100% !important;
  text-shadow:
    0 0 18px rgba(76, 233, 255, 0.24),
    0 0 28px rgba(223, 255, 87, 0.12) !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-panel {
  width: fit-content !important;
  min-width: 0 !important;
  margin-top: clamp(14px, 1.8vh, 20px) !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 7px auto auto;
  grid-template-areas:
    "dot period time"
    ". date date";
  gap: 3px 9px;
  align-items: baseline;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(248, 251, 255, 0.82);
  text-shadow:
    0 1px 18px rgba(0, 0, 0, 0.48),
    0 0 22px rgba(var(--sun-rgb), 0.14);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-panel::before {
  grid-area: dot;
  width: 7px !important;
  height: 7px !important;
  align-self: center;
  margin-top: 1px;
  border-radius: 999px;
  background: rgb(var(--sun-rgb)) !important;
  box-shadow:
    0 0 10px rgba(var(--sun-rgb), 0.66),
    0 0 22px rgba(var(--sun-rgb), var(--sun-dot-glow-alpha, 0.32)) !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-period {
  grid-area: period;
  color: rgba(var(--sun-rgb), 0.92) !important;
  font-family: var(--font-mono);
  font-size: 11px !important;
  font-weight: 850;
  letter-spacing: 0.02em !important;
  line-height: 1;
  text-transform: none !important;
  white-space: nowrap;
}

body.overhouse-public-home:not(.auth-locked) .home-time-value {
  grid-area: time;
  color: rgba(248, 251, 255, 0.95) !important;
  font-family: var(--font-mono);
  font-size: 28px !important;
  font-weight: 760 !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

body.overhouse-public-home:not(.auth-locked) .home-time-date {
  grid-area: date;
  color: rgba(248, 251, 255, 0.54) !important;
  font-size: 11px !important;
  font-weight: 640 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

@media (max-width: 900px) {
  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    max-width: min(440px, calc(100vw - 28px)) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    margin-top: 12px !important;
    grid-template-columns: 7px auto auto;
    gap: 3px 8px;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-value {
    font-size: 22px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-date {
    max-width: min(240px, calc(100vw - 72px));
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 420px) {
  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    grid-template-columns: 7px auto;
    grid-template-areas:
      "dot period"
      ". time"
      ". date";
    gap: 3px 8px;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-value {
    font-size: 21px !important;
  }
}

/* Floating chronograph polish: time feels alive without moving the hero title. */
body.overhouse-public-home:not(.auth-locked) .home-time-panel {
  position: relative;
  margin-top: 20px !important;
  grid-template-columns: 9px auto auto;
  gap: 5px 11px;
  padding: 1px 0 8px !important;
  filter:
    drop-shadow(0 14px 26px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 18px rgba(var(--sun-rgb), 0.08));
}

body.overhouse-public-home:not(.auth-locked) .home-time-panel::before {
  width: 8px !important;
  height: 8px !important;
  background:
    radial-gradient(circle, #fff 0 14%, rgba(var(--sun-rgb), 0.96) 15% 50%, rgba(var(--sun-rgb), 0.12) 52% 100%) !important;
  box-shadow:
    0 0 10px rgba(var(--sun-rgb), 0.72),
    0 0 30px rgba(var(--sun-rgb), var(--sun-dot-glow-alpha, 0.32)) !important;
  animation: timeDotBreathe 4.8s ease-in-out infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-panel::after {
  content: "";
  position: absolute;
  left: 18px;
  right: -18px;
  bottom: 0;
  height: 1px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(var(--sun-rgb), 0),
      rgba(var(--sun-rgb), 0.36) 20%,
      rgba(248, 251, 255, 0.34) 46%,
      rgba(var(--sun-secondary-rgb), 0.22) 72%,
      rgba(var(--sun-rgb), 0));
  opacity: 0.64;
  transform-origin: left center;
  animation: timeRayTrace 7.4s ease-in-out infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-period {
  align-self: end;
  padding-bottom: 1px;
  color: rgba(var(--sun-rgb), 0.96) !important;
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: 0 !important;
  text-shadow:
    0 0 14px rgba(var(--sun-rgb), 0.24),
    0 1px 12px rgba(0, 0, 0, 0.42);
}

body.overhouse-public-home:not(.auth-locked) .home-time-value {
  font-size: 31px !important;
  font-weight: 780 !important;
  letter-spacing: 0 !important;
  color: rgba(255, 255, 255, 0.98) !important;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 18px rgba(var(--sun-rgb), 0.18),
    0 8px 30px rgba(0, 0, 0, 0.52);
}

body.overhouse-public-home:not(.auth-locked) .home-time-date {
  color: rgba(248, 251, 255, 0.62) !important;
  font-size: 11px !important;
  font-variant-numeric: tabular-nums;
}

@keyframes timeDotBreathe {
  0%, 100% {
    transform: scale(0.94);
    opacity: 0.7;
  }
  45% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes timeRayTrace {
  0%, 100% {
    transform: scaleX(0.54);
    opacity: 0.32;
  }
  52% {
    transform: scaleX(1);
    opacity: 0.72;
  }
}

@media (max-width: 900px) {
  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    grid-template-columns: 9px auto auto;
    gap: 4px 9px;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-value {
    font-size: 25px !important;
  }
}

@media (max-width: 420px) {
  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    grid-template-columns: 9px auto;
    grid-template-areas:
      "dot period"
      ". time"
      ". date";
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-panel::after {
    right: -14px;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-value {
    font-size: 24px !important;
  }
}

/* Overhouse/OverHub account gate parity. Keep after previous auth overrides. */
body.auth-locked .auth-screen {
  height: auto !important;
  min-height: 100svh !important;
  align-content: center !important;
  align-items: center !important;
  justify-items: center !important;
  place-items: center !important;
  padding: 28px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.auth-locked .auth-card-container {
  width: min(510px, 100%) !important;
  min-height: auto !important;
  display: block !important;
  padding: 0 !important;
  background: transparent !important;
}

body.auth-locked .auth-card {
  width: 100% !important;
  max-width: calc(100vw - 32px) !important;
  min-height: auto !important;
  padding: 30px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)) !important;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.5) !important;
  color: #f8fbff !important;
  backdrop-filter: blur(18px) !important;
}

body.auth-locked .auth-overline {
  margin: 0 0 8px !important;
  color: #4ce9ff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.14em !important;
  text-align: left !important;
}

body.auth-locked .auth-card h1 {
  max-width: none !important;
  margin: 0 !important;
  color: #f8fbff !important;
  font-size: clamp(34px, 4.8vw, 42px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

body.auth-locked .auth-intro {
  max-width: 100% !important;
  margin: 12px 0 0 !important;
  color: rgba(248, 251, 255, 0.68) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  font-weight: 700 !important;
  text-align: left !important;
}

body.auth-locked .auth-form {
  width: 100% !important;
  display: grid !important;
  gap: 12px !important;
  margin-top: 24px !important;
}

body.auth-locked .auth-card label {
  display: grid !important;
  gap: 7px !important;
  min-width: 0 !important;
  color: rgba(248, 251, 255, 0.82) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

body.auth-locked .auth-card label[hidden],
body.auth-locked .auth-id-status[hidden] {
  display: none !important;
}

body.auth-locked .auth-card input {
  width: 100% !important;
  height: 46px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 0 14px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  color: #f8fbff !important;
}

body.auth-locked .auth-card input:focus {
  border-color: rgba(76, 233, 255, 0.72) !important;
  box-shadow: 0 0 0 3px rgba(76, 233, 255, 0.12) !important;
  outline: none !important;
}

body.auth-locked .auth-remember {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
  color: rgba(248, 251, 255, 0.78) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

body.auth-locked #authSubmit {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  margin-top: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #4ce9ff, #dfff57) !important;
  color: #08111f !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

body.auth-locked #authSubmit:hover,
body.auth-locked #authSubmit:focus-visible {
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 32px rgba(76, 233, 255, 0.16) !important;
}

body.auth-locked .auth-divider {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 18px 0 12px !important;
  color: rgba(248, 251, 255, 0.52) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.auth-locked .auth-divider::before,
body.auth-locked .auth-divider::after {
  content: "" !important;
  flex: 1 !important;
  height: 1px !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

body.auth-locked .auth-social-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.auth-locked .auth-social-btn,
body.auth-locked .auth-mode-toggle {
  appearance: none !important;
  min-width: 0 !important;
  min-height: 42px !important;
  border-radius: 12px !important;
  padding: 0 12px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
  box-shadow: none !important;
}

body.auth-locked .auth-social-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 42px !important;
}

body.auth-locked .auth-social-btn > span:last-child {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: inherit !important;
}

body.auth-locked .auth-social-btn--google {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #111827 !important;
}

body.auth-locked .auth-social-btn--kakao {
  border: 1px solid rgba(250, 225, 0, 0.42) !important;
  background: #fee500 !important;
  color: #191919 !important;
}

body.auth-locked .auth-social-btn:hover,
body.auth-locked .auth-social-btn:focus-visible {
  transform: translateY(-1px) !important;
  filter: brightness(1.02) !important;
  outline: none !important;
}

body.auth-locked .auth-social-icon {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

body.auth-locked .auth-social-icon--google {
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0) !important;
  color: #ffffff !important;
}

body.auth-locked .auth-social-icon--kakao {
  position: relative !important;
  background: #191919 !important;
}

body.auth-locked .auth-social-icon--kakao::after {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #fee500 !important;
}

body.auth-locked .auth-mode-toggle {
  width: 100% !important;
  margin-top: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: rgba(248, 251, 255, 0.68) !important;
}

body.auth-locked .auth-mode-toggle:hover,
body.auth-locked .auth-mode-toggle:focus-visible {
  color: #ffffff !important;
  border-color: rgba(76, 233, 255, 0.34) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  transform: none !important;
  outline: none !important;
}

body.auth-locked .auth-legal {
  margin-top: 14px !important;
}

@media (max-width: 560px) {
  body.auth-locked .auth-screen {
    padding: 16px !important;
  }

  body.auth-locked .auth-card {
    max-width: 358px !important;
    padding: 26px 22px !important;
  }

  body.auth-locked .auth-card h1 {
    font-size: 34px !important;
  }

  body.auth-locked .auth-social-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Absolute final public project dock guard. */
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .nav-service-link {
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
  justify-content: center !important;
  overflow: visible !important;
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 5px 8px !important;
    overflow: visible !important;
    grid-template-rows: 1fr !important;
    box-sizing: border-box !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand,
  body.overhouse-public-home:not(.auth-locked) .dock-actions,
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
    grid-row: 1 !important;
    height: 34px !important;
    min-height: 34px !important;
  }
}

/* EOF orbital topology final guard: keep this after every accumulated override. */
body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
  --orbit-node-size: clamp(62px, 4.4vw, 76px);
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
  opacity: 0.58 !important;
  mix-blend-mode: screen !important;
  filter:
    drop-shadow(0 0 12px rgba(76, 233, 255, 0.22))
    drop-shadow(0 0 28px rgba(223, 255, 87, 0.08)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path[id^="line-"] {
  stroke: rgba(198, 238, 255, 0.13) !important;
  stroke-width: 1.05 !important;
  stroke-linecap: round !important;
  transition: d 0.46s cubic-bezier(0.19, 1, 0.22, 1), stroke 0.22s ease, stroke-width 0.22s ease, opacity 0.22s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-pulse {
  stroke-width: 1.55 !important;
  stroke-linecap: round !important;
  stroke-dasharray: 7 34 !important;
  opacity: 0.46 !important;
  animation: radialElectricRun 3.1s linear infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-link,
body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-pulse {
  fill: none !important;
  stroke-linecap: round !important;
  pointer-events: none !important;
  transition: d 0.46s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.22s ease, stroke-width 0.22s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-link {
  stroke: rgba(143, 243, 255, 0.16) !important;
  stroke-width: 1.1 !important;
  stroke-dasharray: 2 12 !important;
  opacity: 0.64 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-pulse {
  stroke-width: 1.85 !important;
  stroke-dasharray: 8 42 !important;
  stroke-dashoffset: 0;
  opacity: 0.42 !important;
  animation: orbitElectricRun 3.7s linear infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path.is-hot {
  opacity: 0.9 !important;
  stroke-width: 2.2 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-pulse.is-hot,
body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-pulse.is-hot {
  opacity: 0.72 !important;
  stroke-dasharray: 10 28 !important;
  animation-duration: 1.85s !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  width: var(--orbit-node-size) !important;
  height: var(--orbit-node-size) !important;
  border-radius: 999px !important;
  border: 1px solid rgba(var(--theme-rgb), 0.34) !important;
  background:
    radial-gradient(circle at 42% 24%, rgba(255, 255, 255, 0.2), transparent 31%),
    radial-gradient(circle at 52% 78%, rgba(var(--theme-rgb), 0.26), transparent 58%),
    linear-gradient(145deg, rgba(15, 25, 42, 0.84), rgba(4, 8, 17, 0.78)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -12px 22px rgba(0, 0, 0, 0.26),
    0 16px 36px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(var(--theme-rgb), 0.14) !important;
  backdrop-filter: blur(14px) saturate(1.2) !important;
  transition:
    left 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    top 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.18s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::before,
body.overhouse-public-home:not(.auth-locked) .meco-node .node-glow {
  border-radius: inherit !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle, rgba(var(--theme-rgb), 0.2), transparent 68%) !important;
  opacity: 0.66 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node .node-glow {
  opacity: 0.36 !important;
  filter: blur(16px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
  width: clamp(21px, 1.5vw, 26px) !important;
  height: clamp(21px, 1.5vw, 26px) !important;
  color: rgba(248, 251, 255, 0.84) !important;
  filter: drop-shadow(0 0 8px rgba(var(--theme-rgb), 0.26)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span {
  position: absolute !important;
  z-index: 3 !important;
  min-width: max-content !important;
  max-width: 112px !important;
  padding: 5px 8px !important;
  border: 1px solid rgba(var(--theme-rgb), 0.2) !important;
  border-radius: 999px !important;
  background: rgba(5, 10, 20, 0.64) !important;
  color: rgba(248, 251, 255, 0.82) !important;
  font-size: 10.5px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  text-align: center !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(10px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="right"] > span {
  top: 50% !important;
  left: calc(100% + 10px) !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="left"] > span {
  top: 50% !important;
  left: auto !important;
  right: calc(100% + 10px) !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="top"] > span {
  top: auto !important;
  left: 50% !important;
  right: auto !important;
  bottom: calc(100% + 9px) !important;
  transform: translateX(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="bottom"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-grid-column="0"] > span {
  top: calc(100% + 9px) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover,
body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  transform: translate(-50%, -50%) scale(1.08) !important;
  border-color: rgba(var(--theme-rgb), 0.76) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(var(--theme-rgb), 0.34),
    0 0 52px rgba(var(--theme-rgb), 0.12) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
  border-color: rgba(var(--theme-rgb), 0.46) !important;
  background: rgba(7, 14, 27, 0.82) !important;
  color: #ffffff !important;
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
    --orbit-node-size: clamp(48px, 13vw, 56px);
  }

  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
    opacity: 0.48 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
    width: 20px !important;
    height: 20px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    max-width: 76px !important;
    padding: 4px 6px !important;
    font-size: 9px !important;
  }
}

@media (max-width: 520px) {
  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Phase 63 main site UX polish: compact navigation, balanced detail deck, safer mobile sheets. */
body.overhouse-public-home:not(.auth-locked) {
  --ux-panel-border: rgba(255, 255, 255, 0.12);
  --ux-panel-soft: rgba(255, 255, 255, 0.055);
  --ux-panel-strong: rgba(248, 251, 255, 0.9);
  --ux-panel-muted: rgba(248, 251, 255, 0.58);
}

body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
  top: 62px !important;
  left: 50% !important;
  width: min(624px, calc(100vw - 32px)) !important;
  max-height: min(680px, calc(100vh - 82px)) !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  padding: 14px !important;
  border-radius: 16px !important;
  border-color: rgba(143, 243, 255, 0.15) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(76, 233, 255, 0.14), transparent 31%),
    radial-gradient(circle at 90% 18%, rgba(223, 255, 87, 0.075), transparent 29%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.97), rgba(3, 7, 15, 0.96)) !important;
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transform: translateX(-50%) translateY(-10px) scale(0.985) !important;
}

body.overhouse-public-home:not(.auth-locked).project-menu-open .project-quick-shell {
  transform: translateX(-50%) translateY(0) scale(1) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head {
  min-height: 38px !important;
  padding: 2px 42px 10px 2px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head span {
  margin-bottom: 4px !important;
  font-size: 9px !important;
  letter-spacing: 0.08em !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head h2 {
  font-size: 18px !important;
  line-height: 1.12 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-close {
  width: 32px !important;
  height: 32px !important;
  border-radius: 9px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group {
  min-width: 0 !important;
  gap: 7px !important;
  padding: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group p {
  margin: 0 0 1px !important;
  color: rgba(248, 251, 255, 0.5) !important;
  font-size: 10px !important;
  letter-spacing: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link {
  min-height: 48px !important;
  grid-template-columns: 32px minmax(0, 1fr) 34px !important;
  gap: 2px 9px !important;
  padding: 8px 9px !important;
  border-radius: 11px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link:hover,
body.overhouse-public-home:not(.auth-locked) .project-quick-link:focus-visible {
  transform: translateY(-1px) !important;
  border-color: rgba(143, 243, 255, 0.32) !important;
  background:
    radial-gradient(circle at 16% 30%, rgba(76, 233, 255, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.05) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link .nav-icon {
  width: 18px !important;
  height: 18px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link span {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link small {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  font-size: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link::after {
  min-width: 30px !important;
  height: 20px !important;
  font-size: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  will-change: left, top, transform !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover,
body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  transform: translate(-50%, -50%) scale(1.08) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  border-color: rgba(var(--theme-rgb), 0.86) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 30px rgba(var(--theme-rgb), 0.36),
    0 0 70px rgba(var(--theme-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.17) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
  transform: translateX(-50%) translateY(-2px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  width: min(584px, calc(100vw - 42px)) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--theme-rgb, 76, 233, 255), 0.14), transparent 32%),
    linear-gradient(180deg, rgba(10, 16, 27, 0.94), rgba(3, 7, 14, 0.93)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-header {
  padding: 15px 16px 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-icon {
  width: 40px !important;
  height: 40px !important;
  flex-basis: 40px !important;
  border-radius: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title h3 {
  font-size: 18px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
  max-height: calc(100vh - 176px) !important;
  scrollbar-width: thin !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc {
  padding: 15px 16px 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc h4 {
  margin-bottom: 8px !important;
  font-size: 16px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-highlights {
  margin-top: 12px !important;
  gap: 6px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-highlights span {
  padding: 5px 8px !important;
  border-radius: 8px !important;
  font-size: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-action-wrapper {
  margin-top: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-trigger-button {
  width: 100% !important;
  min-height: 42px !important;
  justify-content: center !important;
  border-radius: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-cardnews {
  padding: 0 16px 16px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head {
  margin-bottom: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
  grid-template-columns: 1fr !important;
  align-content: start !important;
  gap: 8px !important;
  min-height: 0 !important;
  padding: 9px !important;
  border-radius: 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 16 / 10 !important;
  padding: 6px !important;
  border-radius: 11px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy {
  gap: 4px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy span {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 8.5px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  min-height: 2.32em !important;
  font-size: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  font-size: 10px !important;
  line-height: 1.38 !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-trigger {
  width: 58px !important;
  height: 58px !important;
  border-radius: 20px !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(143, 243, 255, 0.16),
    0 0 26px rgba(76, 233, 255, 0.18) !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-trigger:hover,
body.overhouse-public-home:not(.auth-locked) .floating-contact.is-open .floating-contact-trigger {
  transform: translateY(-3px) scale(1.03) !important;
}

body.overhouse-public-home:not(.auth-locked) .contact-trigger-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 16px !important;
}

body.overhouse-public-home:not(.auth-locked) .contact-trigger-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-panel {
  width: min(360px, calc(100vw - 24px)) !important;
  border-radius: 18px !important;
}

@media (max-width: 860px) {
  body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    transform: translateY(-10px) scale(0.985) !important;
  }

  body.overhouse-public-home:not(.auth-locked).project-menu-open .project-quick-shell {
    transform: translateY(0) scale(1) !important;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
    top: auto !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    max-height: min(76dvh, 640px) !important;
    padding: 12px !important;
    border-radius: 20px !important;
    transform: translateY(26px) scale(0.985) !important;
  }

  body.overhouse-public-home:not(.auth-locked).project-menu-open .project-quick-shell {
    transform: translateY(0) scale(1) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-grid {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-group {
    padding: 9px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    height: min(68dvh, 620px) !important;
    min-height: 0 !important;
    border-radius: 20px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
    max-height: calc(min(68dvh, 620px) - 74px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr) !important;
    min-height: 110px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong {
    min-height: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-trigger {
    width: 54px !important;
    height: 54px !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 420px) {
  body.overhouse-public-home:not(.auth-locked) .project-quick-link {
    min-height: 46px !important;
    grid-template-columns: 30px minmax(0, 1fr) 32px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    aspect-ratio: 16 / 9 !important;
  }
}

/* TRUE EOF premium orbit polish: depth, rails, and live current particles. */
body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-orbit-rail {
  fill: none !important;
  stroke: rgba(143, 243, 255, 0.16) !important;
  stroke-width: 1.05 !important;
  stroke-dasharray: 1 16 !important;
  opacity: 0.62 !important;
  filter: drop-shadow(0 0 12px rgba(76, 233, 255, 0.2)) !important;
  animation: orbitRailBreath 5.8s ease-in-out infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-orbit-rail--inner {
  stroke: rgba(223, 255, 87, 0.11) !important;
  stroke-dasharray: 2 22 !important;
  opacity: 0.4 !important;
  animation-duration: 7.2s !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-charge-dot {
  opacity: 0.86 !important;
  pointer-events: none !important;
  mix-blend-mode: screen !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-charge-dot--ring {
  opacity: 0.58 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-charge-dot--radial {
  opacity: 0.72 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-node-anchor {
  opacity: 0.78 !important;
  filter: drop-shadow(0 0 8px currentColor) !important;
  pointer-events: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  transform: translate(-50%, -50%) scale(var(--orbit-depth, 1)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -12px 22px rgba(0, 0, 0, 0.28),
    0 16px 36px rgba(0, 0, 0, 0.32),
    0 0 calc(24px + (var(--orbit-glow, 0.24) * 42px)) rgba(var(--theme-rgb), var(--orbit-glow, 0.24)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::after {
  content: attr(data-service-kind-label) !important;
  position: absolute !important;
  top: -8px !important;
  right: -6px !important;
  z-index: 4 !important;
  display: grid !important;
  min-width: 26px !important;
  height: 17px !important;
  place-items: center !important;
  border: 1px solid rgba(var(--theme-rgb), 0.34) !important;
  border-radius: 999px !important;
  background: rgba(3, 8, 18, 0.78) !important;
  color: rgba(248, 251, 255, 0.82) !important;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace) !important;
  font-size: 8px !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22), 0 0 12px rgba(var(--theme-rgb), 0.18) !important;
  pointer-events: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover,
body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  transform: translate(-50%, -50%) scale(calc(var(--orbit-depth, 1) + 0.08)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-core {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(143, 243, 255, 0.24),
    0 0 34px rgba(76, 233, 255, 0.22),
    0 0 82px rgba(223, 255, 87, 0.08) !important;
}

@keyframes orbitRailBreath {
  0%, 100% {
    opacity: 0.38;
    stroke-dashoffset: 0;
  }
  45% {
    opacity: 0.68;
  }
  100% {
    stroke-dashoffset: -44;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-charge-dot {
    opacity: 0.58 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node::after {
    top: -7px !important;
    right: -7px !important;
    min-width: 22px !important;
    height: 15px !important;
    font-size: 7px !important;
  }
}

/* EOF orbital topology guard: circular project map and electric connection layer. */
body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
  --orbit-node-size: clamp(62px, 4.4vw, 76px);
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
  opacity: 0.58 !important;
  mix-blend-mode: screen !important;
  filter:
    drop-shadow(0 0 12px rgba(76, 233, 255, 0.22))
    drop-shadow(0 0 28px rgba(223, 255, 87, 0.08)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path[id^="line-"] {
  stroke: rgba(198, 238, 255, 0.13) !important;
  stroke-width: 1.05 !important;
  stroke-linecap: round !important;
  transition: d 0.46s cubic-bezier(0.19, 1, 0.22, 1), stroke 0.22s ease, stroke-width 0.22s ease, opacity 0.22s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-pulse {
  stroke-width: 1.55 !important;
  stroke-linecap: round !important;
  stroke-dasharray: 7 34 !important;
  opacity: 0.46 !important;
  animation: radialElectricRun 3.1s linear infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-link,
body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-pulse {
  fill: none !important;
  stroke-linecap: round !important;
  pointer-events: none !important;
  transition: d 0.46s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.22s ease, stroke-width 0.22s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-link {
  stroke: rgba(143, 243, 255, 0.16) !important;
  stroke-width: 1.1 !important;
  stroke-dasharray: 2 12 !important;
  opacity: 0.64 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-pulse {
  stroke-width: 1.85 !important;
  stroke-dasharray: 8 42 !important;
  stroke-dashoffset: 0;
  opacity: 0.42 !important;
  animation: orbitElectricRun 3.7s linear infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path.is-hot {
  opacity: 0.9 !important;
  stroke-width: 2.2 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-pulse.is-hot,
body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-pulse.is-hot {
  opacity: 0.72 !important;
  stroke-dasharray: 10 28 !important;
  animation-duration: 1.85s !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  width: var(--orbit-node-size) !important;
  height: var(--orbit-node-size) !important;
  border-radius: 999px !important;
  border: 1px solid rgba(var(--theme-rgb), 0.34) !important;
  background:
    radial-gradient(circle at 42% 24%, rgba(255, 255, 255, 0.2), transparent 31%),
    radial-gradient(circle at 52% 78%, rgba(var(--theme-rgb), 0.26), transparent 58%),
    linear-gradient(145deg, rgba(15, 25, 42, 0.84), rgba(4, 8, 17, 0.78)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -12px 22px rgba(0, 0, 0, 0.26),
    0 16px 36px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(var(--theme-rgb), 0.14) !important;
  backdrop-filter: blur(14px) saturate(1.2) !important;
  transition:
    left 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    top 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.18s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::before,
body.overhouse-public-home:not(.auth-locked) .meco-node .node-glow {
  border-radius: inherit !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle, rgba(var(--theme-rgb), 0.2), transparent 68%) !important;
  opacity: 0.66 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node .node-glow {
  opacity: 0.36 !important;
  filter: blur(16px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
  width: clamp(21px, 1.5vw, 26px) !important;
  height: clamp(21px, 1.5vw, 26px) !important;
  color: rgba(248, 251, 255, 0.84) !important;
  filter: drop-shadow(0 0 8px rgba(var(--theme-rgb), 0.26)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span {
  position: absolute !important;
  z-index: 3 !important;
  min-width: max-content !important;
  max-width: 112px !important;
  padding: 5px 8px !important;
  border: 1px solid rgba(var(--theme-rgb), 0.2) !important;
  border-radius: 999px !important;
  background: rgba(5, 10, 20, 0.64) !important;
  color: rgba(248, 251, 255, 0.82) !important;
  font-size: 10.5px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  text-align: center !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(10px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="right"] > span {
  top: 50% !important;
  left: calc(100% + 10px) !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="left"] > span {
  top: 50% !important;
  left: auto !important;
  right: calc(100% + 10px) !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="top"] > span {
  top: auto !important;
  left: 50% !important;
  right: auto !important;
  bottom: calc(100% + 9px) !important;
  transform: translateX(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="bottom"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-grid-column="0"] > span {
  top: calc(100% + 9px) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover,
body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  transform: translate(-50%, -50%) scale(1.08) !important;
  border-color: rgba(var(--theme-rgb), 0.76) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(var(--theme-rgb), 0.34),
    0 0 52px rgba(var(--theme-rgb), 0.12) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
  border-color: rgba(var(--theme-rgb), 0.46) !important;
  background: rgba(7, 14, 27, 0.82) !important;
  color: #ffffff !important;
}

@keyframes orbitElectricRun {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.24;
  }
  34% {
    opacity: 0.6;
  }
  100% {
    stroke-dashoffset: -100;
    opacity: 0.32;
  }
}

@keyframes radialElectricRun {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.3;
  }
  42% {
    opacity: 0.58;
  }
  100% {
    stroke-dashoffset: -82;
    opacity: 0.34;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
    --orbit-node-size: clamp(48px, 13vw, 56px);
  }

  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
    opacity: 0.48 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
    width: 20px !important;
    height: 20px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    max-width: 76px !important;
    padding: 4px 6px !important;
    font-size: 9px !important;
  }
}

@media (max-width: 520px) {
  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Project menu + aligned topology pass. */
body.overhouse-public-home:not(.auth-locked) .top-dock {
  width: min(880px, calc(100% - 28px)) !important;
  max-width: min(880px, calc(100% - 28px)) !important;
  box-sizing: border-box !important;
  grid-template-columns: minmax(138px, auto) minmax(0, 1fr) auto !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
  justify-content: center !important;
  overflow: visible !important;
  gap: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav > a,
body.overhouse-public-home:not(.auth-locked) .dock-project-toggle {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 34px !important;
  min-height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: rgba(248, 251, 255, 0.78) !important;
  font-family: var(--font-sans) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-project-toggle {
  border-color: rgba(76, 233, 255, 0.22) !important;
  background:
    radial-gradient(circle at 18% 20%, rgba(76, 233, 255, 0.16), transparent 42%),
    rgba(9, 17, 30, 0.78) !important;
  color: #f8fbff !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-project-toggle[aria-expanded="true"] {
  border-color: rgba(143, 243, 255, 0.48) !important;
  box-shadow: 0 0 0 1px rgba(143, 243, 255, 0.12), 0 14px 34px rgba(0, 0, 0, 0.26) !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-project-toggle .nav-icon,
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav > a .nav-icon {
  flex: 0 0 16px !important;
  width: 16px !important;
  height: 16px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-panel[hidden] {
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-panel {
  position: fixed;
  inset: 0;
  z-index: 128;
  pointer-events: none;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.overhouse-public-home:not(.auth-locked).project-menu-open .project-quick-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
  position: absolute;
  top: 72px;
  left: clamp(14px, 2.4vw, 32px);
  width: min(360px, calc(100vw - 28px));
  max-height: calc(100vh - 96px);
  display: grid;
  gap: 14px;
  padding: 18px;
  overflow: auto;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 0%, rgba(76, 233, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(12, 19, 33, 0.96), rgba(4, 8, 16, 0.94));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateX(-18px) translateY(-8px) scale(0.985);
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.19, 1, 0.22, 1);
}

body.overhouse-public-home:not(.auth-locked).project-menu-open .project-quick-shell {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head {
  position: relative;
  padding-right: 42px;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head span {
  display: block;
  margin-bottom: 8px;
  color: rgba(143, 243, 255, 0.84);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head h2 {
  margin: 0;
  color: #f8fbff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(248, 251, 255, 0.78);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group {
  display: grid;
  gap: 8px;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group p {
  margin: 0 0 2px;
  color: rgba(248, 251, 255, 0.46);
  font-size: 11px;
  font-weight: 900;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link {
  min-height: 58px !important;
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr) auto !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  gap: 2px 12px !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: #f8fbff !important;
  text-decoration: none !important;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link:hover {
  transform: translateX(4px);
  border-color: rgba(143, 243, 255, 0.28) !important;
  background: rgba(76, 233, 255, 0.08) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link .nav-icon {
  grid-row: 1 / span 2;
  width: 20px !important;
  height: 20px !important;
  justify-self: center;
  color: rgba(143, 243, 255, 0.9);
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link span {
  min-width: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link small {
  color: rgba(248, 251, 255, 0.52);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.1;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link::after {
  content: attr(data-service-kind-label) !important;
  position: static !important;
  grid-column: 3;
  grid-row: 1 / span 2;
  min-width: 34px;
  height: 22px;
  display: inline-grid !important;
  place-items: center;
  border: 1px solid rgba(143, 243, 255, 0.2);
  border-radius: 999px;
  color: rgba(143, 243, 255, 0.9);
  background: rgba(76, 233, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 950;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link[data-service-kind="program"]::after {
  border-color: rgba(245, 158, 11, 0.25);
  color: rgba(255, 207, 138, 0.95);
  background: rgba(245, 158, 11, 0.08);
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  width: clamp(58px, 4.3vw, 72px) !important;
  height: clamp(58px, 4.3vw, 72px) !important;
  border-radius: 16px !important;
  transition:
    left 0.34s cubic-bezier(0.19, 1, 0.22, 1),
    top 0.34s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.18s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::before {
  border-radius: 16px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span {
  top: calc(100% + 8px) !important;
  max-width: 110px !important;
  font-size: 11px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-grid-column="-1"] > span {
  left: auto !important;
  right: 50% !important;
  transform: translateX(50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-grid-column="1"] > span {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path[id^="line-"] {
  transition: d 0.34s cubic-bezier(0.19, 1, 0.22, 1), stroke 0.2s ease, stroke-width 0.2s ease !important;
}

@media (max-width: 1180px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    width: min(760px, calc(100% - 22px)) !important;
    max-width: min(760px, calc(100% - 22px)) !important;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    box-sizing: border-box !important;
    padding: 5px 8px !important;
    grid-template-columns: minmax(42px, auto) minmax(0, 1fr) auto !important;
    grid-template-rows: 1fr !important;
    overflow: visible !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-content: center !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-project-toggle span {
    font-size: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-project-toggle,
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav > a {
    width: 38px !important;
    min-width: 38px !important;
    padding: 0 !important;
    font-size: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
    top: 62px;
    left: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 82px);
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
  }
}

/* True final top dock guard: appended after every public/mobile/auth repair block. */
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .nav-service-link[data-service-kind]::after,
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a::after {
  content: none !important;
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
  min-width: 0 !important;
  max-width: none !important;
  padding-inline: 6px !important;
  gap: 4px !important;
  font-size: 11px !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

@media (max-width: 1180px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    padding-inline: 6px !important;
    font-size: 10.5px !important;
  }
}

@media (max-width: 980px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    padding: 0 !important;
    gap: 0 !important;
    font-size: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .dock-charge-link {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
  }
}

/* Absolute final top dock guard: no later mobile repair may widen or clip these tabs. */
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .nav-service-link[data-service-kind]::after,
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a::after {
  content: none !important;
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
  min-width: 0 !important;
  max-width: none !important;
  padding-inline: 6px !important;
  gap: 4px !important;
  font-size: 11px !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

@media (max-width: 1180px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    padding-inline: 6px !important;
    font-size: 10.5px !important;
  }
}

@media (max-width: 980px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    padding: 0 !important;
    gap: 0 !important;
    font-size: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .dock-charge-link {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
  }
}

/* Final compact top dock: keep service tabs readable instead of clipped. */
body.overhouse-public-home:not(.auth-locked) .top-dock {
  width: min(1160px, calc(100% - 24px)) !important;
  max-width: min(1160px, calc(100% - 24px)) !important;
  height: 44px !important;
  min-height: 44px !important;
  grid-template-columns: minmax(126px, auto) minmax(0, 1fr) auto !important;
  gap: 7px !important;
  padding: 4px 6px !important;
  overflow: visible !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock::after {
  border-radius: inherit !important;
  overflow: hidden !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-brand {
  min-width: 0 !important;
  height: 36px !important;
  padding: 0 8px 0 4px !important;
  gap: 7px !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-brand strong {
  max-width: 92px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
  min-width: 0 !important;
  max-width: 100% !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 0 1px !important;
  scrollbar-width: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav::-webkit-scrollbar {
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 32px !important;
  min-height: 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  padding: 0 6px !important;
  border-radius: 8px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a::after,
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .nav-service-link[data-service-kind]::after {
  content: none !important;
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a .nav-icon {
  flex: 0 0 15px !important;
  width: 15px !important;
  height: 15px !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-actions {
  min-width: 0 !important;
  gap: 4px !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-logout {
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 10px !important;
  gap: 6px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-window-controls,
body.overhouse-public-home:not(.auth-locked) .dock-window-button {
  height: 32px !important;
  min-height: 32px !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-window-button {
  width: 32px !important;
  min-width: 32px !important;
}

@media (max-width: 1180px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    grid-template-columns: minmax(112px, auto) minmax(0, 1fr) auto !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
    justify-content: flex-start !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    padding: 0 6px !important;
    gap: 4px !important;
    font-size: 10.5px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-logout {
    width: 32px !important;
    min-width: 32px !important;
    padding: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-logout .logout-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 980px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    width: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    gap: 0 !important;
    font-size: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .dock-charge-link {
    width: 38px !important;
    min-width: 38px !important;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    top: max(8px, env(safe-area-inset-top)) !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-width: none !important;
    height: 82px !important;
    min-height: 82px !important;
    transform: none !important;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto !important;
    grid-template-rows: 34px 32px !important;
    gap: 6px 8px !important;
    padding: 8px !important;
    overflow: hidden !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
    max-width: 136px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-actions {
    grid-column: 3 / 4 !important;
    grid-row: 1 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    height: 32px !important;
    gap: 6px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    width: 34px !important;
    min-width: 34px !important;
    height: 30px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a .nav-icon {
    flex-basis: 14px !important;
    width: 14px !important;
    height: 14px !important;
  }
}

@media (max-width: 430px) {
  body.overhouse-public-home:not(.auth-locked) .dock-brand strong {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand {
    max-width: 42px !important;
    padding-right: 4px !important;
  }
}

/* Login surface final polish: keep the first screen quiet, compact, and fully styled. */
body.auth-locked .floating-contact,
body.auth-locked .support-modal {
  display: none !important;
}

body.auth-locked .auth-card-container {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 100svh !important;
  padding: clamp(18px, 5vw, 40px) !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(76, 233, 255, 0.12), transparent 30%),
    radial-gradient(circle at 84% 86%, rgba(223, 255, 87, 0.08), transparent 28%),
    #05070d !important;
}

body.auth-locked .auth-card {
  width: min(420px, 100%) !important;
  max-width: calc(100vw - 32px) !important;
  padding: clamp(24px, 4.4vw, 34px) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(7, 10, 18, 0.92) !important;
  border: 1px solid rgba(248, 251, 255, 0.14) !important;
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.54) !important;
}

body.auth-locked .auth-overline {
  margin: 0 0 10px !important;
  color: #4ce9ff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.1em !important;
}

body.auth-locked .auth-card h1 {
  margin: 0 !important;
  font-size: clamp(34px, 6vw, 42px) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

body.auth-locked .auth-intro {
  margin: 14px 0 0 !important;
  color: rgba(110, 246, 255, 0.88) !important;
  font-size: clamp(12px, 2.1vw, 13px) !important;
  line-height: 1.55 !important;
  font-weight: 850 !important;
}

body.auth-locked .auth-form {
  gap: 13px !important;
  margin-top: 24px !important;
}

body.auth-locked .auth-card label {
  gap: 8px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

body.auth-locked .auth-card input {
  height: 46px !important;
  padding: 0 14px !important;
  font-size: 14px !important;
}

body.auth-locked #authSubmit {
  width: 100% !important;
  min-height: 48px !important;
  margin-top: 2px !important;
  border: 0 !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  box-shadow: 0 16px 34px rgba(76, 233, 255, 0.14) !important;
}

body.auth-locked .auth-message {
  min-height: 0 !important;
  margin: 10px 0 0 !important;
  color: #fecaca !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

body.auth-locked .auth-message:empty {
  display: none !important;
}

body.auth-locked .auth-divider {
  margin: 24px 0 18px !important;
  color: rgba(248, 251, 255, 0.34) !important;
  font-size: 11px !important;
  line-height: 1 !important;
}

body.auth-locked .auth-social-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.auth-locked .auth-social-btn,
body.auth-locked .auth-mode-toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 0 !important;
  border-radius: 12px !important;
  border: 1px solid rgba(248, 251, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: rgba(248, 251, 255, 0.82) !important;
  font-family: inherit !important;
  font-size: 12.5px !important;
  font-weight: 850 !important;
  line-height: 1.15 !important;
  text-align: center !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease !important;
}

body.auth-locked .auth-social-btn {
  height: 44px !important;
  padding: 0 10px !important;
}

body.auth-locked .auth-mode-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 42px !important;
  margin: 12px 0 0 !important;
  padding: 0 14px !important;
}

body.auth-locked .auth-social-btn:hover,
body.auth-locked .auth-social-btn:focus-visible,
body.auth-locked .auth-mode-toggle:hover,
body.auth-locked .auth-mode-toggle:focus-visible {
  transform: translateY(-1px) !important;
  border-color: rgba(76, 233, 255, 0.38) !important;
  background: rgba(76, 233, 255, 0.09) !important;
  color: #ffffff !important;
  outline: none !important;
}

body.auth-locked .auth-legal {
  margin-top: 18px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  color: rgba(248, 251, 255, 0.54) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

body.auth-locked .auth-legal a {
  color: rgba(248, 251, 255, 0.78) !important;
  text-underline-offset: 3px !important;
}

@media (max-width: 480px) {
  body.auth-locked .auth-screen {
    padding: 14px !important;
    overflow-y: auto !important;
  }

  body.auth-locked .auth-card {
    max-width: 100% !important;
  }

  body.auth-locked .auth-social-grid {
    grid-template-columns: 1fr !important;
  }
}

body.auth-locked .auth-screen {
  height: auto !important;
  min-height: 100svh !important;
  align-content: start !important;
  align-items: start !important;
  justify-items: center !important;
  place-items: start center !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

html:has(body.auth-locked) {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.auth-locked {
  height: auto !important;
  min-height: 100svh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body.auth-locked .auth-card-container {
  align-items: flex-start !important;
  justify-content: center !important;
}

body.auth-locked .auth-card:has(#authNameRow:not([hidden])) {
  padding-top: clamp(20px, 3.5vw, 28px) !important;
  padding-bottom: clamp(20px, 3.5vw, 28px) !important;
}

body.auth-locked .auth-card:has(#authNameRow:not([hidden])) .auth-form {
  gap: 10px !important;
  margin-top: 18px !important;
}

body.auth-locked .auth-card:has(#authNameRow:not([hidden])) .auth-divider {
  margin: 18px 0 14px !important;
}

body.auth-locked .auth-card:has(#authNameRow:not([hidden])) .auth-legal {
  margin-top: 14px !important;
}

/* Final account gate parity override. */
body.auth-locked .auth-screen {
  place-items: center !important;
  align-items: center !important;
  align-content: center !important;
  padding: 28px !important;
}

body.auth-locked .auth-card-container {
  width: min(510px, 100%) !important;
  min-height: auto !important;
  display: block !important;
  padding: 0 !important;
  background: transparent !important;
}

body.auth-locked .auth-card {
  width: 100% !important;
  max-width: calc(100vw - 32px) !important;
  padding: 30px !important;
}

body.auth-locked .auth-intro {
  margin: 12px 0 0 !important;
  color: rgba(248, 251, 255, 0.68) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  font-weight: 700 !important;
}

body.auth-locked .auth-divider {
  gap: 12px !important;
  margin: 18px 0 12px !important;
  color: rgba(248, 251, 255, 0.52) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

body.auth-locked .auth-social-btn {
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 12px !important;
  gap: 8px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

body.auth-locked .auth-social-btn--google {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #111827 !important;
}

body.auth-locked .auth-social-btn--kakao {
  border-color: rgba(250, 225, 0, 0.42) !important;
  background: #fee500 !important;
  color: #191919 !important;
}

body.auth-locked .auth-social-btn--google:hover,
body.auth-locked .auth-social-btn--google:focus-visible,
body.auth-locked .auth-social-btn--kakao:hover,
body.auth-locked .auth-social-btn--kakao:focus-visible {
  transform: translateY(-1px) !important;
  filter: brightness(1.02) !important;
}

body.auth-locked .auth-social-btn > span:last-child {
  color: inherit !important;
}

body.auth-locked .auth-mode-toggle {
  margin-top: 10px !important;
  color: rgba(248, 251, 255, 0.68) !important;
  font-weight: 900 !important;
}

body.auth-locked .auth-card label[hidden],
body.auth-locked .auth-id-status[hidden] {
  display: none !important;
}

body.auth-locked .auth-remember {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
}

body.auth-locked .auth-remember input {
  appearance: auto !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  accent-color: #4ce9ff !important;
  flex: 0 0 16px !important;
}

body.auth-locked .auth-remember span {
  margin: 0 !important;
  color: inherit !important;
  line-height: 1 !important;
}

body.auth-locked .auth-screen:has(#authNameRow:not([hidden])) {
  place-items: start center !important;
  align-items: start !important;
  align-content: start !important;
}

@media (max-width: 560px) {
  body.auth-locked .auth-screen {
    padding: 16px !important;
  }

  body.auth-locked .auth-card {
    max-width: 358px !important;
    padding: 26px 22px !important;
  }
}

/* Mobile public shell repair: explicit two-row dock, clear hero stack, readable project sheet. */
@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock {
    top: max(8px, env(safe-area-inset-top)) !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    height: 88px !important;
    max-width: none !important;
    transform: none !important;
    padding: 8px !important;
    display: grid !important;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto !important;
    grid-template-rows: 34px 32px !important;
    align-items: center !important;
    gap: 6px 8px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    gap: 8px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand strong {
    max-width: none !important;
    font-size: 18px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand-mark {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 12px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-actions {
    grid-column: 3 / 4 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    min-width: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-logout {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    border-radius: 12px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-logout .logout-label {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 2px 1px !important;
    scrollbar-width: none !important;
    mask-image: linear-gradient(90deg, #000 0 calc(100% - 22px), transparent 100%) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav::-webkit-scrollbar {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 48px !important;
    height: 30px !important;
    padding: 0 10px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    gap: 5px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a .nav-icon {
    width: 14px !important;
    height: 14px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    top: 112px !important;
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    max-width: calc(100vw - 36px) !important;
    min-width: 0 !important;
    z-index: 34 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-overline {
    margin-bottom: 8px !important;
    font-size: 9.5px !important;
    letter-spacing: 0.11em !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-title {
    max-width: 8.8em !important;
    font-size: clamp(38px, 12.2vw, 48px) !important;
    line-height: 1.02 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-description {
    max-width: 24em !important;
    margin-top: 12px !important;
    font-size: 13px !important;
    line-height: 1.52 !important;
    -webkit-line-clamp: 2 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    margin-top: 14px !important;
    gap: 3px 8px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-period {
    font-size: 10px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-value {
    font-size: clamp(20px, 6vw, 24px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .service-kind-legend {
    margin-top: 12px !important;
    gap: 7px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .service-kind-legend span {
    min-height: 26px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    background: rgba(5, 10, 18, 0.62) !important;
  }

  body.overhouse-public-home:not(.auth-locked):has(.meco-detail-board.visible) .service-kind-legend {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    top: clamp(500px, 68vh, 620px) !important;
    width: clamp(420px, 118vw, 520px) !important;
    opacity: 0.38 !important;
    z-index: 5 !important;
    filter:
      brightness(0.68)
      saturate(0.82)
      contrast(1.08)
      drop-shadow(0 26px 54px rgba(0, 0, 0, 0.48)) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
    opacity: 0.16 !important;
    z-index: 28 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core {
    z-index: 42 !important;
    opacity: 0.96 !important;
    background:
      radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.22), transparent 34%),
      linear-gradient(180deg, rgba(8, 18, 32, 0.86), rgba(3, 8, 16, 0.78)) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node {
    z-index: 44 !important;
    opacity: 1 !important;
    width: clamp(42px, calc(var(--meco-radius, 82px) * 0.42), 52px) !important;
    height: clamp(42px, calc(var(--meco-radius, 82px) * 0.42), 52px) !important;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.22), transparent 34%),
      radial-gradient(circle at 50% 82%, rgba(var(--theme-rgb), 0.38), transparent 58%),
      linear-gradient(180deg, rgba(10, 20, 34, 0.96), rgba(2, 7, 15, 0.92)) !important;
    border-color: rgba(var(--theme-rgb), 0.58) !important;
    box-shadow:
      0 16px 34px rgba(0, 0, 0, 0.58),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 0 30px rgba(var(--theme-rgb), 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
    filter: brightness(1.16) saturate(1.08) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
    color: rgba(255, 255, 255, 0.95) !important;
    width: 21px !important;
    height: 21px !important;
    filter:
      drop-shadow(0 0 8px rgba(255, 255, 255, 0.2))
      drop-shadow(0 0 12px rgba(var(--theme-rgb), 0.54)) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    opacity: 0.92 !important;
    top: calc(100% + 5px) !important;
    padding: 4px 6px !important;
    max-width: 72px !important;
    border-color: rgba(var(--theme-rgb), 0.28) !important;
    background: rgba(2, 7, 15, 0.78) !important;
    color: rgba(248, 251, 255, 0.82) !important;
    font-size: 8.5px !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.38) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    left: 10px !important;
    right: 10px !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-width: none !important;
    height: min(72dvh, 640px) !important;
    min-height: 430px !important;
    max-height: calc(100dvh - 112px) !important;
    border-radius: 22px !important;
    z-index: 150 !important;
    transform: translateY(calc(100% + 28px)) scale(0.985) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
    transform: translateY(0) scale(1) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-header {
    padding: 14px 14px 10px !important;
    gap: 10px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
    max-height: calc(min(72dvh, 640px) - 82px) !important;
    padding: 0 14px 14px !important;
    overflow-y: auto !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-desc {
    padding: 14px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-cardnews {
    padding: 0 14px 14px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
    gap: 9px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: minmax(104px, 35%) minmax(0, 1fr) !important;
    min-height: 112px !important;
    gap: 10px !important;
    padding: 9px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    min-height: 86px !important;
    max-height: 108px !important;
    padding: 5px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy {
    gap: 4px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy span {
    font-size: 9px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong {
    font-size: 13px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
    font-size: 10.5px !important;
    line-height: 1.36 !important;
    -webkit-line-clamp: 3 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact {
    right: 14px !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 360px) {
  body.overhouse-public-home:not(.auth-locked) .dock-brand strong {
    font-size: 16px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-title {
    font-size: clamp(34px, 11.2vw, 42px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    min-height: 124px !important;
  }
}

/* Project map legibility: keep every service readable over the generated platform image. */
body.overhouse-public-home:not(.auth-locked) .meco-node {
  z-index: 46 !important;
  opacity: 1 !important;
  border-color: rgba(var(--theme-rgb), 0.4) !important;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.2), transparent 34%),
    radial-gradient(circle at 50% 84%, rgba(var(--theme-rgb), 0.34), transparent 58%),
    linear-gradient(180deg, rgba(9, 18, 31, 0.94), rgba(2, 7, 15, 0.9)) !important;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 24px rgba(var(--theme-rgb), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  filter: brightness(1.08) saturate(1.08) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node .node-glow {
  opacity: 0.22 !important;
  background: radial-gradient(circle, rgba(var(--theme-rgb), 0.36), transparent 66%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
  color: rgba(255, 255, 255, 0.96) !important;
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.16))
    drop-shadow(0 0 12px rgba(var(--theme-rgb), 0.48)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span {
  z-index: 6 !important;
  opacity: 0.9 !important;
  top: calc(100% + 7px) !important;
  max-width: 96px !important;
  padding: 4px 8px !important;
  border-color: rgba(var(--theme-rgb), 0.28) !important;
  background: rgba(1, 6, 13, 0.78) !important;
  color: rgba(248, 251, 255, 0.9) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.58) !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42) !important;
  transform: translateX(-50%) translateY(0) !important;
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
    --meco-visual-size: clamp(430px, calc(var(--meco-radius, 86px) * 5.8), 600px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node {
    width: clamp(40px, calc(var(--meco-radius, 82px) * 0.4), 50px) !important;
    height: clamp(40px, calc(var(--meco-radius, 82px) * 0.4), 50px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    top: calc(100% + 4px) !important;
    max-width: 68px !important;
    padding: 3px 5px !important;
    border-radius: 8px !important;
    font-size: 8px !important;
    background: rgba(1, 6, 13, 0.82) !important;
  }

  body.overhouse-public-home:not(.auth-locked) #node-OverDev {
    z-index: 50 !important;
    --node-x-nudge: -8px !important;
    --node-y-nudge: -16px !important;
  }

  body.overhouse-public-home:not(.auth-locked) #node-OverRent {
    z-index: 48 !important;
    --node-x-nudge: 14px !important;
    --node-y-nudge: 4px !important;
  }

  body.overhouse-public-home:not(.auth-locked) #node-OverView {
    z-index: 49 !important;
    --node-x-nudge: 14px !important;
    --node-y-nudge: 10px !important;
  }

  body.overhouse-public-home:not(.auth-locked) #node-OverStudio {
    z-index: 50 !important;
    --node-x-nudge: 2px !important;
    --node-y-nudge: 18px !important;
  }

  body.overhouse-public-home:not(.auth-locked) #node-OverNet {
    z-index: 49 !important;
    --node-x-nudge: -8px !important;
    --node-y-nudge: 18px !important;
  }

  body.overhouse-public-home:not(.auth-locked) #node-OverProtect {
    z-index: 49 !important;
    --node-x-nudge: -12px !important;
    --node-y-nudge: 10px !important;
  }

  body.overhouse-public-home:not(.auth-locked) #node-OverDesk {
    z-index: 50 !important;
    --node-x-nudge: -12px !important;
    --node-y-nudge: 4px !important;
  }
}

/* Ordered project orbit: equal spacing keeps the service map deliberate instead of scattered. */
body.overhouse-public-home:not(.auth-locked) #node-OverLink {
  --node-angle: 270deg !important;
  --node-radius-scale: 1 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 46 !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverDev {
  --node-angle: 310deg !important;
  --node-radius-scale: 1 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 46 !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverRent {
  --node-angle: 350deg !important;
  --node-radius-scale: 1 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 46 !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverView {
  --node-angle: 30deg !important;
  --node-radius-scale: 1 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 46 !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverStudio {
  --node-angle: 70deg !important;
  --node-radius-scale: 1 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 46 !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverNet {
  --node-angle: 110deg !important;
  --node-radius-scale: 1 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 46 !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverProtect {
  --node-angle: 150deg !important;
  --node-radius-scale: 1 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 46 !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverDesk {
  --node-angle: 190deg !important;
  --node-radius-scale: 1 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 46 !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverHub {
  --node-angle: 230deg !important;
  --node-radius-scale: 1 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 46 !important;
}

body.overhouse-public-home:not(.auth-locked) #node-OverMarket {
  --node-angle: 126deg !important;
  --node-radius-scale: 1.12 !important;
  --node-x-nudge: 0px !important;
  --node-y-nudge: 0px !important;
  z-index: 48 !important;
}

/* Post-mobile top dock guard: placed after mobile shell repair, before auth-only rules. */
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .nav-service-link[data-service-kind]::after,
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a::after {
  content: none !important;
  display: none !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
  min-width: 0 !important;
  max-width: none !important;
  padding-inline: 6px !important;
  gap: 4px !important;
  font-size: 11px !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

@media (max-width: 1180px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    padding-inline: 6px !important;
    font-size: 10.5px !important;
  }
}

@media (max-width: 980px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav a {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    padding: 0 !important;
    gap: 0 !important;
    font-size: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .dock-charge-link {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
  }
}

/* Stable dark login gate. Keep this last so public-page passes cannot restyle login. */
html:has(body.auth-locked),
body.auth-locked {
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  background: #050710 !important;
  color: #f8fbff !important;
}

body.auth-locked .floating-contact,
body.auth-locked .support-modal,
body.auth-locked .auth-screen::before,
body.auth-locked .auth-screen::after,
body.auth-locked .auth-visual,
body.auth-locked .auth-visual.static-hero-visual,
body.auth-locked .static-hero-visual,
body.auth-locked .overhouse-clean-3d-hero {
  display: none !important;
}

body.auth-locked .auth-screen {
  position: relative !important;
  z-index: 80 !important;
  min-height: 100svh !important;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  place-items: center !important;
  align-content: center !important;
  justify-items: center !important;
  gap: 0 !important;
  padding: clamp(18px, 4vw, 32px) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(76, 233, 255, 0.12), transparent 32%),
    radial-gradient(circle at 82% 84%, rgba(223, 255, 87, 0.08), transparent 30%),
    linear-gradient(180deg, #050710 0%, #070b14 100%) !important;
}

body.auth-locked .auth-card-container {
  width: min(430px, 100%) !important;
  min-width: 0 !important;
  min-height: auto !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  background: transparent !important;
}

body.auth-locked .auth-card {
  width: 100% !important;
  max-width: calc(100vw - 32px) !important;
  min-height: auto !important;
  padding: clamp(24px, 4vw, 32px) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(248, 251, 255, 0.13) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(7, 10, 18, 0.94) !important;
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.52) !important;
  color: #f8fbff !important;
  backdrop-filter: blur(18px) !important;
}

body.auth-locked .auth-overline {
  margin: 0 0 10px !important;
  color: #4ce9ff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.12em !important;
  text-align: left !important;
}

body.auth-locked .auth-card h1 {
  margin: 0 !important;
  color: #f8fbff !important;
  font-size: clamp(34px, 5vw, 42px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

body.auth-locked .auth-intro {
  margin: 12px 0 0 !important;
  color: rgba(248, 251, 255, 0.68) !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  font-weight: 750 !important;
  text-align: left !important;
}

body.auth-locked .auth-form {
  width: 100% !important;
  display: grid !important;
  gap: 12px !important;
  margin-top: 24px !important;
}

body.auth-locked .auth-card label {
  display: grid !important;
  gap: 7px !important;
  min-width: 0 !important;
  color: rgba(248, 251, 255, 0.82) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

body.auth-locked .auth-card label[hidden],
body.auth-locked .auth-id-status[hidden] {
  display: none !important;
}

body.auth-locked .auth-card input {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 0 14px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  color: #f8fbff !important;
  font-size: 14px !important;
  line-height: 1 !important;
  outline: none !important;
}

body.auth-locked .auth-card input:focus {
  border-color: rgba(76, 233, 255, 0.72) !important;
  box-shadow: 0 0 0 3px rgba(76, 233, 255, 0.12) !important;
}

body.auth-locked .auth-remember {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  gap: 8px !important;
  width: fit-content !important;
  min-height: 18px !important;
  color: rgba(248, 251, 255, 0.78) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  background: transparent !important;
}

body.auth-locked .auth-remember input {
  appearance: auto !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  accent-color: #4ce9ff !important;
  flex: 0 0 16px !important;
}

body.auth-locked .auth-remember input::after {
  content: none !important;
  display: none !important;
}

body.auth-locked .auth-remember span {
  margin: 0 !important;
  color: inherit !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.auth-locked #authSubmit {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  margin-top: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #4ce9ff, #dfff57) !important;
  color: #08111f !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  box-shadow: 0 16px 34px rgba(76, 233, 255, 0.14) !important;
}

body.auth-locked #authSubmit:hover,
body.auth-locked #authSubmit:focus-visible {
  transform: translateY(-1px) !important;
  box-shadow: 0 18px 38px rgba(76, 233, 255, 0.18) !important;
  outline: none !important;
}

body.auth-locked .auth-message {
  min-height: 0 !important;
  margin: 10px 0 0 !important;
  color: #fecaca !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

body.auth-locked .auth-message:empty {
  display: none !important;
}

body.auth-locked .auth-divider {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 20px 0 14px !important;
  color: rgba(248, 251, 255, 0.5) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.auth-locked .auth-divider::before,
body.auth-locked .auth-divider::after {
  content: "" !important;
  flex: 1 !important;
  height: 1px !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

body.auth-locked .auth-social-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.auth-locked .auth-social-btn,
body.auth-locked .auth-mode-toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 0 !important;
  border-radius: 12px !important;
  border: 1px solid rgba(248, 251, 255, 0.12) !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease !important;
}

body.auth-locked .auth-social-btn {
  height: 42px !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0 12px !important;
}

body.auth-locked .auth-social-btn > span:last-child {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: inherit !important;
  line-height: 1 !important;
}

body.auth-locked .auth-social-btn--google {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #111827 !important;
}

body.auth-locked .auth-social-btn--kakao {
  border-color: rgba(250, 225, 0, 0.42) !important;
  background: #fee500 !important;
  color: #191919 !important;
}

body.auth-locked .auth-social-btn:hover,
body.auth-locked .auth-social-btn:focus-visible {
  transform: translateY(-1px) !important;
  filter: brightness(1.02) !important;
  outline: none !important;
}

body.auth-locked .auth-social-icon {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

body.auth-locked .auth-social-icon--google {
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0) !important;
  color: #ffffff !important;
}

body.auth-locked .auth-social-icon--kakao {
  position: relative !important;
  background: #191919 !important;
}

body.auth-locked .auth-social-icon--kakao::after {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #fee500 !important;
}

body.auth-locked .auth-mode-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 42px !important;
  margin: 10px 0 0 !important;
  padding: 0 14px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: rgba(248, 251, 255, 0.68) !important;
}

body.auth-locked .auth-mode-toggle:hover,
body.auth-locked .auth-mode-toggle:focus-visible {
  color: #ffffff !important;
  border-color: rgba(76, 233, 255, 0.34) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  transform: none !important;
  outline: none !important;
}

body.auth-locked .auth-legal {
  margin-top: 14px !important;
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  color: rgba(248, 251, 255, 0.58) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

body.auth-locked .auth-legal a {
  color: rgba(248, 251, 255, 0.78) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(76, 233, 255, 0.34) !important;
  text-underline-offset: 4px !important;
}

body.auth-locked .auth-screen:has(#authNameRow:not([hidden])) {
  place-items: start center !important;
  align-content: start !important;
  padding-top: clamp(16px, 4vw, 28px) !important;
  padding-bottom: clamp(16px, 4vw, 28px) !important;
}

body.auth-locked .auth-card:has(#authNameRow:not([hidden])) {
  padding-top: clamp(20px, 3.4vw, 28px) !important;
  padding-bottom: clamp(20px, 3.4vw, 28px) !important;
}

body.auth-locked .auth-card:has(#authNameRow:not([hidden])) .auth-form {
  gap: 10px !important;
  margin-top: 18px !important;
}

body.auth-locked .auth-card:has(#authNameRow:not([hidden])) .auth-divider {
  margin: 16px 0 12px !important;
}

body.auth-locked .auth-card:has(#authNameRow:not([hidden])) .auth-legal {
  margin-top: 12px !important;
}

@media (max-width: 560px) {
  body.auth-locked .auth-screen {
    padding: 16px !important;
  }

  body.auth-locked .auth-card {
    max-width: 100% !important;
    padding: 24px 20px !important;
  }

  body.auth-locked .auth-card h1 {
    font-size: 34px !important;
  }

  body.auth-locked .auth-social-grid {
    grid-template-columns: 1fr !important;
  }
}

/* EOF public project dock guard: must stay after every older mobile repair. */
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav .nav-service-link {
  display: none !important;
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 5px 8px !important;
    overflow: visible !important;
    grid-template-rows: 1fr !important;
    box-sizing: border-box !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand,
  body.overhouse-public-home:not(.auth-locked) .dock-actions,
  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
    grid-row: 1 !important;
    height: 34px !important;
    min-height: 34px !important;
  }
}

/* TRUE EOF orbital topology guard: keep project nodes circular and connected. */
body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
  --orbit-node-size: clamp(62px, 4.4vw, 76px);
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
  opacity: 0.58 !important;
  mix-blend-mode: screen !important;
  filter:
    drop-shadow(0 0 12px rgba(76, 233, 255, 0.22))
    drop-shadow(0 0 28px rgba(223, 255, 87, 0.08)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path[id^="line-"] {
  stroke: rgba(198, 238, 255, 0.13) !important;
  stroke-width: 1.05 !important;
  stroke-linecap: round !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-pulse {
  stroke-width: 1.55 !important;
  stroke-linecap: round !important;
  stroke-dasharray: 7 34 !important;
  opacity: 0.46 !important;
  animation: radialElectricRun 3.1s linear infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-link,
body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-pulse {
  fill: none !important;
  stroke-linecap: round !important;
  pointer-events: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-link {
  stroke: rgba(143, 243, 255, 0.16) !important;
  stroke-width: 1.1 !important;
  stroke-dasharray: 2 12 !important;
  opacity: 0.64 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-pulse {
  stroke-width: 1.85 !important;
  stroke-dasharray: 8 42 !important;
  opacity: 0.42 !important;
  animation: orbitElectricRun 3.7s linear infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas path.is-hot {
  opacity: 0.9 !important;
  stroke-width: 2.2 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-orbit-rail {
  fill: none !important;
  stroke: rgba(143, 243, 255, 0.16) !important;
  stroke-width: 1.05 !important;
  stroke-dasharray: 1 16 !important;
  opacity: 0.62 !important;
  filter: drop-shadow(0 0 12px rgba(76, 233, 255, 0.2)) !important;
  animation: orbitRailBreath 5.8s ease-in-out infinite !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-orbit-rail--inner {
  stroke: rgba(223, 255, 87, 0.11) !important;
  stroke-dasharray: 2 22 !important;
  opacity: 0.4 !important;
  animation-duration: 7.2s !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-charge-dot {
  opacity: 0.86 !important;
  pointer-events: none !important;
  mix-blend-mode: screen !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-charge-dot--ring {
  opacity: 0.58 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-charge-dot--radial {
  opacity: 0.72 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-node-anchor {
  opacity: 0.78 !important;
  filter: drop-shadow(0 0 8px currentColor) !important;
  pointer-events: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  width: var(--orbit-node-size) !important;
  height: var(--orbit-node-size) !important;
  border-radius: 999px !important;
  border: 1px solid rgba(var(--theme-rgb), 0.34) !important;
  background:
    radial-gradient(circle at 42% 24%, rgba(255, 255, 255, 0.2), transparent 31%),
    radial-gradient(circle at 52% 78%, rgba(var(--theme-rgb), 0.26), transparent 58%),
    linear-gradient(145deg, rgba(15, 25, 42, 0.84), rgba(4, 8, 17, 0.78)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -12px 22px rgba(0, 0, 0, 0.26),
    0 16px 36px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(var(--theme-rgb), 0.14) !important;
  backdrop-filter: blur(14px) saturate(1.2) !important;
  transform: translate(-50%, -50%) scale(var(--orbit-depth, 1)) !important;
  transition:
    left 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    top 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.18s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::before,
body.overhouse-public-home:not(.auth-locked) .meco-node .node-glow {
  border-radius: inherit !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
  width: clamp(21px, 1.5vw, 26px) !important;
  height: clamp(21px, 1.5vw, 26px) !important;
  color: rgba(248, 251, 255, 0.84) !important;
  filter: drop-shadow(0 0 8px rgba(var(--theme-rgb), 0.26)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span {
  position: absolute !important;
  z-index: 3 !important;
  min-width: max-content !important;
  max-width: 112px !important;
  padding: 5px 8px !important;
  border: 1px solid rgba(var(--theme-rgb), 0.2) !important;
  border-radius: 999px !important;
  background: rgba(5, 10, 20, 0.64) !important;
  color: rgba(248, 251, 255, 0.82) !important;
  font-size: 10.5px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  text-align: center !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(10px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="right"] > span {
  top: 50% !important;
  left: calc(100% + 10px) !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="left"] > span {
  top: 50% !important;
  left: auto !important;
  right: calc(100% + 10px) !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="top"] > span {
  top: auto !important;
  left: 50% !important;
  right: auto !important;
  bottom: calc(100% + 9px) !important;
  transform: translateX(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="bottom"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-grid-column="0"] > span {
  top: calc(100% + 9px) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover,
body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  transform: translate(-50%, -50%) scale(1.08) !important;
  border-color: rgba(var(--theme-rgb), 0.76) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(var(--theme-rgb), 0.34),
    0 0 52px rgba(var(--theme-rgb), 0.12) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
  border-color: rgba(var(--theme-rgb), 0.46) !important;
  background: rgba(7, 14, 27, 0.82) !important;
  color: #ffffff !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover,
body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  transform: translate(-50%, -50%) scale(calc(var(--orbit-depth, 1) + 0.08)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::after {
  content: attr(data-service-kind-label) !important;
  position: absolute !important;
  top: -8px !important;
  right: -6px !important;
  z-index: 4 !important;
  display: grid !important;
  min-width: 26px !important;
  height: 17px !important;
  place-items: center !important;
  border: 1px solid rgba(var(--theme-rgb), 0.34) !important;
  border-radius: 999px !important;
  background: rgba(3, 8, 18, 0.78) !important;
  color: rgba(248, 251, 255, 0.82) !important;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace) !important;
  font-size: 8px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22), 0 0 12px rgba(var(--theme-rgb), 0.18) !important;
  pointer-events: none !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-core {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(143, 243, 255, 0.24),
    0 0 34px rgba(76, 233, 255, 0.22),
    0 0 82px rgba(223, 255, 87, 0.08) !important;
}

@keyframes orbitRailBreath {
  0%, 100% {
    opacity: 0.38;
    stroke-dashoffset: 0;
  }
  45% {
    opacity: 0.68;
  }
  100% {
    stroke-dashoffset: -44;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
    --orbit-node-size: clamp(48px, 13vw, 56px);
  }

  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas {
    opacity: 0.48 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
    width: 20px !important;
    height: 20px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    max-width: 76px !important;
    padding: 4px 6px !important;
    font-size: 9px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-charge-dot {
    opacity: 0.58 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node::after {
    top: -7px !important;
    right: -7px !important;
    min-width: 22px !important;
    height: 15px !important;
    font-size: 7px !important;
  }
}

@media (max-width: 520px) {
  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* TRUE EOF final uniform project topology correction */
body.overhouse-public-home:not(.auth-locked) .meco-node {
  transform: translate(-50%, -50%) scale(1) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover,
body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  transform: translate(-50%, -50%) scale(1.07) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="right"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="left"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="top"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="bottom"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-grid-column="0"] > span {
  top: calc(100% + 8px) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  width: max-content !important;
  min-width: 72px !important;
  max-width: 96px !important;
  padding: 5px 8px !important;
  text-align: center !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .meco-node > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="right"] > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="left"] > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="top"] > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="bottom"] > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node[data-grid-column="0"] > span {
    top: calc(100% + 7px) !important;
    min-width: 64px !important;
    max-width: 82px !important;
    padding: 4px 6px !important;
    font-size: 9px !important;
  }
}

@media (max-width: 520px) {
  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* TRUE EOF phase 63 main UX guard */
body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
  top: 62px !important;
  left: 50% !important;
  width: min(624px, calc(100vw - 32px)) !important;
  max-height: min(680px, calc(100vh - 82px)) !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  padding: 14px !important;
  border-radius: 16px !important;
  border-color: rgba(143, 243, 255, 0.15) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(76, 233, 255, 0.14), transparent 31%),
    radial-gradient(circle at 90% 18%, rgba(223, 255, 87, 0.075), transparent 29%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.97), rgba(3, 7, 15, 0.96)) !important;
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transform: translateX(-50%) translateY(-10px) scale(0.985) !important;
}

body.overhouse-public-home:not(.auth-locked).project-menu-open .project-quick-shell {
  transform: translateX(-50%) translateY(0) scale(1) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head {
  min-height: 38px !important;
  padding: 2px 42px 10px 2px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head h2 {
  font-size: 18px !important;
  line-height: 1.12 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group {
  min-width: 0 !important;
  gap: 7px !important;
  padding: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group p {
  margin: 0 0 1px !important;
  color: rgba(248, 251, 255, 0.5) !important;
  font-size: 10px !important;
  letter-spacing: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link {
  min-height: 48px !important;
  grid-template-columns: 32px minmax(0, 1fr) 34px !important;
  gap: 2px 9px !important;
  padding: 8px 9px !important;
  border-radius: 11px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link:hover,
body.overhouse-public-home:not(.auth-locked) .project-quick-link:focus-visible {
  transform: translateY(-1px) !important;
  border-color: rgba(143, 243, 255, 0.32) !important;
  background:
    radial-gradient(circle at 16% 30%, rgba(76, 233, 255, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.05) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link span,
body.overhouse-public-home:not(.auth-locked) .project-quick-link small {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  will-change: left, top, transform !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover,
body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  transform: translate(-50%, -50%) scale(1.08) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node.active {
  border-color: rgba(var(--theme-rgb), 0.86) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 30px rgba(var(--theme-rgb), 0.36),
    0 0 70px rgba(var(--theme-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.17) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  width: min(584px, calc(100vw - 42px)) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--theme-rgb, 76, 233, 255), 0.14), transparent 32%),
    linear-gradient(180deg, rgba(10, 16, 27, 0.94), rgba(3, 7, 14, 0.93)) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-header {
  padding: 15px 16px 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-icon {
  width: 40px !important;
  height: 40px !important;
  flex-basis: 40px !important;
  border-radius: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title h3 {
  font-size: 18px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title p,
body.overhouse-public-home:not(.auth-locked) .meco-board-desc p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title p {
  -webkit-line-clamp: 2 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc p {
  -webkit-line-clamp: 3 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
  max-height: calc(100vh - 176px) !important;
  scrollbar-width: thin !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc {
  padding: 15px 16px 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-highlights {
  margin-top: 12px !important;
  gap: 6px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-action-wrapper {
  margin-top: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-trigger-button {
  width: 100% !important;
  min-height: 42px !important;
  justify-content: center !important;
  border-radius: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-cardnews {
  padding: 0 16px 16px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
  grid-template-columns: 1fr !important;
  align-content: start !important;
  gap: 8px !important;
  min-height: 0 !important;
  padding: 9px !important;
  border-radius: 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 16 / 10 !important;
  padding: 6px !important;
  border-radius: 11px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong,
body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong {
  min-height: 2.32em !important;
  -webkit-line-clamp: 2 !important;
  font-size: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
  -webkit-line-clamp: 2 !important;
  font-size: 10px !important;
  line-height: 1.38 !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-trigger {
  width: 58px !important;
  height: 58px !important;
  border-radius: 20px !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(143, 243, 255, 0.16),
    0 0 26px rgba(76, 233, 255, 0.18) !important;
}

body.overhouse-public-home:not(.auth-locked) .contact-trigger-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 16px !important;
}

body.overhouse-public-home:not(.auth-locked) .contact-trigger-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-panel {
  width: min(360px, calc(100vw - 24px)) !important;
  border-radius: 18px !important;
}

@media (max-width: 860px) {
  body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    transform: translateY(-10px) scale(0.985) !important;
  }

  body.overhouse-public-home:not(.auth-locked).project-menu-open .project-quick-shell {
    transform: translateY(0) scale(1) !important;
  }
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
    top: auto !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    max-height: min(76dvh, 640px) !important;
    padding: 12px !important;
    border-radius: 20px !important;
    transform: translateY(26px) scale(0.985) !important;
  }

  body.overhouse-public-home:not(.auth-locked).project-menu-open .project-quick-shell {
    transform: translateY(0) scale(1) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-grid {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    height: min(68dvh, 620px) !important;
    min-height: 0 !important;
    border-radius: 20px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
    max-height: calc(min(68dvh, 620px) - 74px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr) !important;
    min-height: 110px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong {
    min-height: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-trigger {
    width: 54px !important;
    height: 54px !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 420px) {
  body.overhouse-public-home:not(.auth-locked) .project-quick-link {
    min-height: 46px !important;
    grid-template-columns: 30px minmax(0, 1fr) 32px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    aspect-ratio: 16 / 9 !important;
  }
}

/* TRUE EOF cardnews image containment guard */
body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
  box-sizing: border-box !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual img {
  width: auto !important;
  height: auto !important;
  max-width: calc(100% - 12px) !important;
  max-height: calc(100% - 12px) !important;
  object-fit: contain !important;
}

/* TRUE EOF phase 64 interaction affordance guard */
body.overhouse-public-home:not(.auth-locked) .project-quick-backdrop {
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  background: rgba(0, 0, 0, 0.24) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link.is-current {
  border-color: rgba(143, 243, 255, 0.46) !important;
  background:
    radial-gradient(circle at 14% 20%, rgba(76, 233, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(143, 243, 255, 0.1), rgba(255, 255, 255, 0.035)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.26),
    0 0 22px rgba(76, 233, 255, 0.12) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link.is-current .nav-icon,
body.overhouse-public-home:not(.auth-locked) .project-quick-link.is-current span {
  color: #ffffff !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link.is-current small {
  color: rgba(143, 243, 255, 0.82) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link.is-current::after {
  border-color: rgba(143, 243, 255, 0.38) !important;
  background: rgba(76, 233, 255, 0.14) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
  animation: detailPanelSettle 0.32s cubic-bezier(0.19, 1, 0.22, 1) both !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-close:focus-visible,
body.overhouse-public-home:not(.auth-locked) .meco-trigger-button:focus-visible,
body.overhouse-public-home:not(.auth-locked) .project-quick-close:focus-visible,
body.overhouse-public-home:not(.auth-locked) .project-quick-link:focus-visible {
  outline: 2px solid rgba(143, 243, 255, 0.72) !important;
  outline-offset: 3px !important;
}

@keyframes detailPanelSettle {
  0% {
    filter: saturate(0.95) brightness(0.92);
  }
  100% {
    filter: saturate(1) brightness(1);
  }
}

/* TRUE EOF phase 65 UX cohesion guard */
body.overhouse-public-home:not(.auth-locked).project-menu-open {
  overflow: hidden !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node[role="button"] {
  cursor: pointer !important;
  touch-action: manipulation !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node.is-menu-preview {
  transform: translate(-50%, -50%) scale(1.045) !important;
  border-color: rgba(var(--theme-rgb), 0.58) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 16px 38px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(var(--theme-rgb), 0.24) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node.is-menu-preview > span {
  border-color: rgba(var(--theme-rgb), 0.38) !important;
  background: rgba(7, 14, 27, 0.78) !important;
  color: #ffffff !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  outline: none !important;
  overscroll-behavior: contain !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board.is-closing {
  pointer-events: none !important;
  animation: detailPanelExit 0.24s cubic-bezier(0.76, 0, 0.24, 1) both !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
  overscroll-behavior: contain !important;
  scroll-padding-bottom: 18px !important;
}

/* TRUE EOF phase 66 selected-node overlay alignment */
body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  position: absolute !important;
  left: var(--meco-board-x, 50%) !important;
  top: var(--meco-board-y, 50%) !important;
  right: auto !important;
  bottom: auto !important;
  width: min(560px, calc(100vw - 34px)) !important;
  height: auto !important;
  max-height: min(62vh, 560px) !important;
  overflow: auto !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 18px) scale(0.985) !important;
  transform-origin: 50% 18px !important;
  transition:
    transform 0.34s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.22s ease,
    box-shadow 0.24s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) scale(1) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board.is-closing {
  transform: translate(-50%, 14px) scale(0.985) !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
  top: calc(var(--meco-center-y, 50%) + clamp(10px, 1.35vh, 18px)) !important;
}

@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    left: 50% !important;
    top: auto !important;
    right: auto !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: min(430px, calc(100vw - 18px)) !important;
    max-height: min(68dvh, 620px) !important;
    transform: translate(-50%, 18px) scale(0.985) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
    transform: translate(-50%, 0) scale(1) !important;
  }
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
  align-items: stretch !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
  height: 100% !important;
  min-width: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  line-height: 0 !important;
  font-size: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual img {
  display: block !important;
  max-width: calc(100% - 16px) !important;
  max-height: calc(100% - 16px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy {
  min-width: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
  overscroll-behavior: contain !important;
  scrollbar-width: thin !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link {
  touch-action: manipulation !important;
}

@keyframes detailPanelExit {
  0% {
    opacity: 1;
    filter: saturate(1) brightness(1);
  }
  100% {
    opacity: 0.02;
    filter: saturate(0.9) brightness(0.82);
  }
}

@media (max-width: 520px) {
  body.overhouse-public-home:not(.auth-locked) .meco-node.is-menu-preview > span {
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    min-height: 118px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible,
  body.overhouse-public-home:not(.auth-locked) .meco-detail-board.is-closing,
  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-ring-pulse,
  body.overhouse-public-home:not(.auth-locked) .meco-svg-canvas .meco-pulse {
    animation: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node,
  body.overhouse-public-home:not(.auth-locked) .project-quick-shell,
  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    transition-duration: 0.01ms !important;
  }
}

/* TRUE EOF phase 66 UX refinement guard */
body.overhouse-public-home:not(.auth-locked).detail-board-open .meco-node:not(.active) {
  opacity: 0.68 !important;
  filter: saturate(0.82) brightness(0.88) !important;
}

body.overhouse-public-home:not(.auth-locked).detail-board-open .meco-node.active {
  z-index: 58 !important;
  opacity: 1 !important;
  filter: saturate(1.08) brightness(1.04) !important;
}

body.overhouse-public-home:not(.auth-locked).detail-board-open .meco-svg-canvas path:not(.is-hot),
body.overhouse-public-home:not(.auth-locked).detail-board-open .meco-svg-canvas circle:not(.meco-charge-dot) {
  opacity: 0.38 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head {
  position: sticky !important;
  top: -1px !important;
  z-index: 4 !important;
  background:
    linear-gradient(180deg, rgba(8, 14, 25, 0.98), rgba(8, 14, 25, 0.9) 72%, rgba(8, 14, 25, 0)) !important;
  backdrop-filter: blur(16px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.1) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
  scroll-padding-top: 64px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link {
  position: relative !important;
  isolation: isolate !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link::before {
  content: "" !important;
  position: absolute !important;
  inset: 8px auto 8px 0 !important;
  width: 2px !important;
  border-radius: 99px !important;
  background: rgba(143, 243, 255, 0) !important;
  transition: background 0.18s ease, box-shadow 0.18s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link:hover::before,
body.overhouse-public-home:not(.auth-locked) .project-quick-link:focus-visible::before,
body.overhouse-public-home:not(.auth-locked) .project-quick-link.is-current::before {
  background: rgba(143, 243, 255, 0.88) !important;
  box-shadow: 0 0 12px rgba(76, 233, 255, 0.45) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid::after {
  content: "" !important;
  display: block !important;
  height: 10px !important;
  grid-column: 1 / -1 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section {
  min-width: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section li {
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
  contain: layout paint !important;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(var(--theme-rgb, 76, 233, 255), 0.36) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--theme-rgb, 76, 233, 255), 0.12), transparent 42%),
    rgba(255, 255, 255, 0.055) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy span,
body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong,
body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
  min-width: 0 !important;
}

@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    width: calc(100% - 18px) !important;
    max-width: calc(100% - 18px) !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 6px !important;
    padding: 7px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand {
    min-width: 34px !important;
    padding: 0 8px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand strong,
  body.overhouse-public-home:not(.auth-locked) .logout-label {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-service-nav {
    gap: 6px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-service-nav > a,
  body.overhouse-public-home:not(.auth-locked) .dock-project-toggle {
    min-width: 34px !important;
    height: 34px !important;
    padding: 0 9px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 520px) {
  body.overhouse-public-home:not(.auth-locked) .dock-service-nav > a,
  body.overhouse-public-home:not(.auth-locked) .dock-project-toggle {
    width: 36px !important;
    padding: 0 !important;
    font-size: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-project-toggle span {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked).detail-board-open .floating-contact:not(.is-open) {
    opacity: 0.54 !important;
    transform: translateY(8px) scale(0.88) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-grid::after {
    height: 18px !important;
  }
}

/* TRUE EOF phase 67 interaction polish guard */
body.overhouse-public-home:not(.auth-locked) .project-quick-shell:focus-within {
  border-color: rgba(143, 243, 255, 0.28) !important;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(143, 243, 255, 0.12),
    0 0 34px rgba(76, 233, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board:focus-within,
body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible:focus {
  border-color: rgba(var(--theme-rgb, 76, 233, 255), 0.32) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(var(--theme-rgb, 76, 233, 255), 0.12),
    0 0 34px rgba(var(--theme-rgb, 76, 233, 255), 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-drag-handle {
  height: 16px !important;
  display: grid !important;
  place-items: center !important;
  opacity: 0.72 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-drag-handle span {
  width: 42px !important;
  height: 4px !important;
  border-radius: 99px !important;
  background:
    linear-gradient(90deg, transparent, rgba(var(--theme-rgb, 76, 233, 255), 0.58), transparent) !important;
  box-shadow: 0 0 14px rgba(var(--theme-rgb, 76, 233, 255), 0.18) !important;
}

body.overhouse-public-home:not(.auth-locked).detail-board-open .mecosystem-topology-mesh {
  cursor: default !important;
}

body.overhouse-public-home:not(.auth-locked).detail-board-open .mecosystem-topology-mesh::after {
  content: "" !important;
  position: absolute !important;
  inset: clamp(64px, 9vh, 108px) clamp(12px, 2.2vw, 30px) clamp(18px, 3vh, 34px) clamp(12px, 2.2vw, 30px) !important;
  z-index: 1 !important;
  pointer-events: none !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at var(--meco-center-x, 50%) var(--meco-center-y, 50%), rgba(143, 243, 255, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 32%, rgba(255, 255, 255, 0.018)) !important;
  opacity: 0.7 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:focus-visible {
  outline: 2px solid rgba(var(--theme-rgb), 0.72) !important;
  outline-offset: 5px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-close:hover,
body.overhouse-public-home:not(.auth-locked) .meco-board-close:hover {
  border-color: rgba(248, 251, 255, 0.26) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

@media (max-width: 760px) {
  body.overhouse-public-home:not(.auth-locked) .meco-board-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 5 !important;
    background:
      radial-gradient(circle at 12% 0%, rgba(var(--theme-rgb, 76, 233, 255), 0.12), transparent 34%),
      linear-gradient(180deg, rgba(7, 13, 24, 0.98), rgba(7, 13, 24, 0.92)) !important;
    backdrop-filter: blur(16px) saturate(1.1) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.1) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
    padding-top: 0 !important;
  }
}

@media (max-width: 420px) {
  body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
    max-height: min(78dvh, 660px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-head h2 {
    font-size: 16px !important;
  }
}

/* TRUE EOF phase 68 public UX refinement guard */
body.overhouse-public-home:not(.auth-locked) .top-dock {
  align-items: center !important;
  min-height: 44px !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav {
  align-items: center !important;
  justify-content: center !important;
}

body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav > a,
body.overhouse-public-home:not(.auth-locked) .dock-project-toggle {
  min-width: 0 !important;
  height: 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 0 11px !important;
  border-radius: 8px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-project-toggle[aria-expanded="true"],
body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav > a.active {
  border-color: rgba(143, 243, 255, 0.3) !important;
  background: rgba(143, 243, 255, 0.09) !important;
  color: #ffffff !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
  width: min(680px, calc(100vw - 32px)) !important;
  gap: 14px !important;
  padding: 16px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head {
  min-height: 42px !important;
  padding-bottom: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head h2 {
  font-size: 19px !important;
  letter-spacing: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-grid {
  gap: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group {
  gap: 8px !important;
  padding: 12px !important;
  border-radius: 15px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group p {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-bottom: 4px !important;
  color: rgba(248, 251, 255, 0.62) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group p::after {
  min-width: max-content !important;
  padding: 3px 7px !important;
  border: 1px solid rgba(143, 243, 255, 0.18) !important;
  border-radius: 999px !important;
  color: rgba(143, 243, 255, 0.82) !important;
  background: rgba(143, 243, 255, 0.06) !important;
  font-size: 9px !important;
  font-weight: 900 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group:first-child p::after {
  content: "3개 서비스" !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group:nth-child(2) p::after {
  content: "5개 앱" !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link {
  min-height: 52px !important;
  grid-template-columns: 34px minmax(0, 1fr) 34px !important;
  border-radius: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link .nav-icon {
  width: 19px !important;
  height: 19px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link span {
  font-size: 13px !important;
  font-weight: 900 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link small {
  color: rgba(248, 251, 255, 0.56) !important;
  font-size: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  width: min(720px, calc(100vw - 40px)) !important;
  border-radius: 20px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-header {
  align-items: center !important;
  min-height: 68px !important;
  padding: 16px 18px 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title-row {
  align-items: center !important;
  gap: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title p {
  max-width: 58ch !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
  display: grid !important;
  grid-template-columns: minmax(220px, 0.82fr) minmax(280px, 1fr) !important;
  align-items: start !important;
  gap: 12px !important;
  padding: 0 16px 16px !important;
  max-height: calc(100vh - 172px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc {
  grid-column: 1 !important;
  padding: 14px !important;
  border: 1px solid rgba(var(--theme-rgb, 76, 233, 255), 0.16) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-sections {
  grid-column: 2 !important;
  display: grid !important;
  gap: 8px !important;
  padding: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section {
  padding: 11px 12px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section h5 {
  margin-bottom: 7px !important;
  color: rgba(143, 243, 255, 0.88) !important;
  font-size: 10px !important;
  letter-spacing: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section li {
  line-height: 1.45 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-cardnews {
  grid-column: 1 / -1 !important;
  padding: 2px 0 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head {
  min-height: 34px !important;
  padding: 0 2px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head span {
  color: rgba(143, 243, 255, 0.82) !important;
  letter-spacing: 0.08em !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
  gap: 9px !important;
  padding: 10px !important;
  border-radius: 14px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
  min-height: 112px !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 12px !important;
  background:
    radial-gradient(circle at 50% 18%, rgba(var(--theme-rgb, 76, 233, 255), 0.12), transparent 48%),
    rgba(0, 0, 0, 0.22) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong {
  font-size: 12px !important;
  line-height: 1.32 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
  color: rgba(248, 251, 255, 0.58) !important;
}

@media (max-width: 860px) {
  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    width: min(640px, calc(100vw - 28px)) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-desc,
  body.overhouse-public-home:not(.auth-locked) .meco-board-sections,
  body.overhouse-public-home:not(.auth-locked) .meco-board-cardnews {
    grid-column: 1 !important;
  }
}

@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    min-height: 48px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .top-dock .dock-service-nav > a,
  body.overhouse-public-home:not(.auth-locked) .dock-project-toggle {
    width: 36px !important;
    min-width: 36px !important;
    height: 34px !important;
    padding: 0 !important;
    gap: 0 !important;
    font-size: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-project-toggle span {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
    width: auto !important;
    max-height: min(78dvh, 660px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-grid {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: minmax(116px, 36%) minmax(0, 1fr) !important;
    align-items: center !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    min-height: 104px !important;
  }
}

@media (max-width: 430px) {
  body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
    padding: 0 12px 14px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: 1fr !important;
  }
}

/* TRUE EOF phase 69 UX pass: quieter login gate, clearer service menu, cleaner preview cards. */
body.auth-locked .auth-card {
  width: min(398px, 100%) !important;
  padding: 28px !important;
  border-radius: 20px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.046)),
    rgba(8, 11, 19, 0.94) !important;
  box-shadow:
    0 28px 88px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

body.auth-locked .auth-overline {
  margin-bottom: 9px !important;
}

body.auth-locked .auth-card h1 {
  font-size: clamp(34px, 4.8vw, 42px) !important;
  white-space: nowrap !important;
}

body.auth-locked .auth-intro {
  max-width: 31ch !important;
  margin-top: 11px !important;
  line-height: 1.55 !important;
  word-break: keep-all !important;
}

body.auth-locked .auth-form {
  gap: 12px !important;
  margin-top: 22px !important;
}

body.auth-locked .auth-card label {
  gap: 7px !important;
}

body.auth-locked .auth-remember {
  min-height: 22px !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
}

body.auth-locked .auth-remember span {
  white-space: nowrap !important;
}

body.auth-locked .auth-card input {
  height: 45px !important;
  border-radius: 12px !important;
}

body.auth-locked .auth-remember input {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  padding: 0 !important;
  border-radius: 4px !important;
  flex: 0 0 16px !important;
}

body.auth-locked #authSubmit {
  min-height: 47px !important;
  border-radius: 13px !important;
}

body.auth-locked .auth-divider {
  margin: 17px 0 12px !important;
}

body.auth-locked .auth-social-grid {
  gap: 8px !important;
}

body.auth-locked .auth-social-btn {
  height: 42px !important;
  border-radius: 13px !important;
}

body.auth-locked .auth-mode-toggle {
  min-height: 40px !important;
  border-radius: 13px !important;
}

body.auth-locked .auth-legal {
  margin-top: 17px !important;
  gap: 10px !important;
  line-height: 1.2 !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-panel {
  min-height: 58px !important;
  margin-top: 16px !important;
  padding: 10px 13px !important;
  border-radius: 15px !important;
  grid-template-columns: auto minmax(0, auto) !important;
  column-gap: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-panel::before {
  width: 8px !important;
  height: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-period {
  font-size: 9px !important;
  letter-spacing: 0.07em !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-value {
  font-size: clamp(22px, 2.1vw, 28px) !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-date {
  overflow: hidden !important;
  max-width: 22ch !important;
  text-overflow: ellipsis !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link {
  grid-template-columns: 36px minmax(0, 1fr) auto !important;
  gap: 3px 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link::after {
  position: static !important;
  grid-column: 3 !important;
  grid-row: 1 / 3 !important;
  align-self: center !important;
  justify-self: end !important;
  min-width: 34px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 8px !important;
  border-radius: 999px !important;
  font-size: 9px !important;
  line-height: 1 !important;
  content: attr(data-service-kind-label) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
  min-height: 116px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28)) !important;
}

@media (max-width: 560px) {
  body.auth-locked .auth-card {
    width: min(352px, calc(100vw - 28px)) !important;
    max-width: min(352px, calc(100vw - 28px)) !important;
    padding: 24px 21px !important;
  }

  body.auth-locked .auth-card h1 {
    font-size: clamp(32px, 9vw, 36px) !important;
  }

  body.auth-locked .auth-intro {
    font-size: 13px !important;
  }

  body.auth-locked .auth-form {
    margin-top: 20px !important;
  }
}

@media (max-width: 430px) {
  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    max-width: 100% !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-link {
    grid-template-columns: 32px minmax(0, 1fr) auto !important;
  }
}

/* TRUE EOF auth remember alignment guard */
body.auth-locked .auth-remember {
  display: block !important;
  width: fit-content !important;
  min-height: 22px !important;
}

body.auth-locked .auth-remember-row {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  width: fit-content !important;
  min-width: 0 !important;
}

body.auth-locked .auth-remember input {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 16px !important;
}

body.auth-locked .auth-remember-row > span {
  display: inline !important;
  margin: 0 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* TRUE EOF docs UX pass: compact legal documents with the current dark public tone. */
body.legal-doc {
  background:
    radial-gradient(circle at 10% 0%, rgba(88, 220, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #08111f 0%, #f4f7fb 360px, #eef3f8 100%) !important;
}

body.legal-doc .hero {
  padding: 24px 0 34px !important;
  background:
    linear-gradient(145deg, rgba(11, 19, 35, 0.96), rgba(14, 34, 55, 0.96)),
    #08111f !important;
}

body.legal-doc .wrap {
  width: min(1040px, calc(100% - 32px)) !important;
}

body.legal-doc .nav {
  margin-bottom: 28px !important;
}

body.legal-doc .brand-mark {
  border-radius: 10px !important;
}

body.legal-doc h1 {
  max-width: 12ch !important;
  font-size: clamp(38px, 6vw, 64px) !important;
  line-height: 1 !important;
  word-break: keep-all !important;
}

body.legal-doc .lead {
  max-width: 64ch !important;
  margin-top: 14px !important;
  word-break: keep-all !important;
}

body.legal-doc .meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 22px !important;
}

body.legal-doc .meta-grid div,
body.legal-doc .toc,
body.legal-doc .notice,
body.legal-doc .card {
  border-radius: 14px !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .07) !important;
}

body.legal-doc main.wrap {
  grid-template-columns: 220px minmax(0, 1fr) !important;
  gap: 18px !important;
  padding: 24px 0 58px !important;
}

body.legal-doc .toc {
  top: 14px !important;
  padding: 14px !important;
}

body.legal-doc .toc a {
  min-height: 32px !important;
  display: flex !important;
  align-items: center !important;
  padding: 4px 0 !important;
}

body.legal-doc .content {
  gap: 11px !important;
}

body.legal-doc .notice,
body.legal-doc .card {
  padding: 18px 20px !important;
}

body.legal-doc .card h2 {
  margin-bottom: 8px !important;
  font-size: 1.12rem !important;
}

body.legal-doc .contact-box a {
  min-height: 36px !important;
}

@media (max-width: 860px) {
  body.legal-doc .wrap {
    width: min(100% - 24px, 560px) !important;
  }

  body.legal-doc main.wrap,
  body.legal-doc .meta-grid {
    grid-template-columns: 1fr !important;
  }

  body.legal-doc .hero {
    padding-top: 20px !important;
  }
}

/* TRUE EOF home UX pass: steadier dock, project menu, and service detail density. */
body.overhouse-public-home:not(.auth-locked) .top-dock {
  width: min(1120px, calc(100vw - 28px)) !important;
  min-height: 54px !important;
  padding: 6px 8px !important;
  border-radius: 18px !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-service-nav {
  gap: 6px !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-service-nav > a,
body.overhouse-public-home:not(.auth-locked) .dock-project-toggle {
  min-height: 38px !important;
  border-radius: 13px !important;
  white-space: nowrap !important;
}

body.overhouse-public-home:not(.auth-locked) .global-brand-header {
  width: min(620px, calc(100vw - 32px)) !important;
  margin-inline: auto !important;
}

body.overhouse-public-home:not(.auth-locked) .brand-description {
  max-width: 36ch !important;
  margin-inline: auto !important;
  word-break: keep-all !important;
}

body.overhouse-public-home:not(.auth-locked) .home-time-panel {
  width: fit-content !important;
  max-width: min(100%, 360px) !important;
  justify-self: center !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
  width: min(438px, calc(100vw - 28px)) !important;
  border-radius: 20px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head {
  padding: 16px 16px 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-grid {
  gap: 10px !important;
  padding: 0 12px 14px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group {
  border-radius: 15px !important;
  padding: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link {
  min-height: 52px !important;
  border-radius: 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  width: min(780px, calc(100vw - 34px)) !important;
  max-height: min(78dvh, 720px) !important;
  overflow: auto !important;
  overscroll-behavior: contain !important;
  border-radius: 22px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-header {
  min-height: 64px !important;
  align-items: center !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-title h3 {
  max-width: 18ch !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc {
  min-height: auto !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-desc p {
  max-width: 68ch !important;
  word-break: keep-all !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section {
  min-height: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-section li {
  line-height: 1.48 !important;
  word-break: keep-all !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
  min-width: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy {
  min-width: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong,
body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
  word-break: keep-all !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact:not(.is-open) {
  right: clamp(14px, 2vw, 24px) !important;
  bottom: clamp(14px, 2vw, 24px) !important;
}

@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    width: min(100% - 16px, 460px) !important;
    min-height: 48px !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-brand {
    max-width: 42px !important;
    padding-right: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-actions {
    min-width: 38px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-logout {
    width: 36px !important;
    height: 34px !important;
    padding: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-logout .logout-label,
  body.overhouse-public-home:not(.auth-locked) .dock-window-controls {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    width: min(100% - 24px, 430px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-title {
    font-size: clamp(40px, 12vw, 58px) !important;
    line-height: .96 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-description {
    max-width: 28ch !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    min-height: 52px !important;
    margin-top: 12px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .service-kind-legend {
    gap: 6px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .service-kind-legend span {
    min-height: 28px !important;
    padding: 0 9px !important;
    font-size: 10px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
    inset: auto 8px 72px auto !important;
    width: min(392px, calc(100vw - 16px)) !important;
    max-height: min(72dvh, 610px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-link {
    min-height: 48px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    width: min(100vw - 18px, 430px) !important;
    max-height: min(76dvh, 680px) !important;
    border-radius: 18px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-header {
    min-height: 56px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
    gap: 10px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: minmax(104px, 34%) minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    min-height: 92px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact:not(.is-open) {
    right: 12px !important;
    bottom: 12px !important;
  }
}

@media (max-width: 430px) {
  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: minmax(96px, 34%) minmax(0, 1fr) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    min-height: 84px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
    display: none !important;
  }
}

/* TRUE EOF auth UX pass: compact, stable login gate without changing auth hooks. */
body.auth-locked {
  background:
    radial-gradient(circle at 50% -18%, rgba(76, 233, 255, 0.12), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(92, 141, 255, 0.14), transparent 30%),
    #050710 !important;
}

body.auth-locked .auth-screen {
  width: 100% !important;
  min-height: 100svh !important;
  padding: clamp(16px, 3.2vw, 34px) !important;
  align-content: center !important;
  overflow-x: hidden !important;
}

body.auth-locked .auth-card-container {
  width: min(390px, 100%) !important;
}

body.auth-locked .auth-card {
  width: 100% !important;
  max-width: 390px !important;
  padding: clamp(22px, 2.2vw, 28px) !important;
  border-radius: 18px !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(7, 10, 18, 0.955) !important;
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.48) !important;
}

body.auth-locked .auth-overline {
  margin-bottom: 8px !important;
  letter-spacing: 0.12em !important;
}

body.auth-locked .auth-card h1 {
  font-size: clamp(31px, 4.2vw, 38px) !important;
  line-height: 1.04 !important;
}

body.auth-locked .auth-intro {
  max-width: 30ch !important;
  margin-top: 10px !important;
  font-size: 13px !important;
  line-height: 1.56 !important;
}

body.auth-locked .auth-form {
  gap: 10px !important;
  margin-top: 19px !important;
}

body.auth-locked .auth-card label {
  gap: 6px !important;
}

body.auth-locked .auth-card input {
  height: 43px !important;
  border-radius: 11px !important;
}

body.auth-locked .auth-remember {
  margin-top: -1px !important;
  min-height: 20px !important;
}

body.auth-locked .auth-remember-row {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  line-height: 1 !important;
}

body.auth-locked .auth-remember input {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 16px !important;
  background: transparent !important;
}

body.auth-locked .auth-remember-row > span {
  line-height: 1.05 !important;
}

body.auth-locked #authSubmit {
  min-height: 45px !important;
  height: 45px !important;
  border-radius: 12px !important;
}

body.auth-locked .auth-divider {
  margin: 15px 0 10px !important;
}

body.auth-locked .auth-social-grid {
  gap: 8px !important;
}

body.auth-locked .auth-social-btn {
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  border-radius: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.auth-locked .auth-social-btn > span:last-child {
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
  line-height: 1 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  transform: translateY(0) !important;
}

body.auth-locked .auth-social-icon {
  width: 17px !important;
  height: 17px !important;
  flex-basis: 17px !important;
  font-size: 10px !important;
  line-height: 17px !important;
}

body.auth-locked .auth-mode-toggle {
  min-height: 39px !important;
  margin-top: 9px !important;
  border-radius: 12px !important;
}

body.auth-locked .auth-legal {
  margin-top: 14px !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  line-height: 1.2 !important;
}

@media (max-width: 560px) {
  body.auth-locked .auth-screen {
    padding: 14px !important;
  }

  body.auth-locked .auth-card-container {
    width: min(356px, 100%) !important;
  }

  body.auth-locked .auth-card {
    max-width: 356px !important;
    padding: 22px 20px !important;
  }

  body.auth-locked .auth-card h1 {
    font-size: clamp(30px, 8.3vw, 34px) !important;
  }

  body.auth-locked .auth-social-grid {
    grid-template-columns: 1fr !important;
  }

  body.auth-locked .auth-social-btn {
    height: 41px !important;
  }
}

/* TRUE EOF main UX pass: cleaner command surface, steadier nodes, denser previews. */
body.overhouse-public-home:not(.auth-locked) .top-dock {
  width: min(1080px, calc(100vw - 28px)) !important;
  min-height: 52px !important;
  padding: 6px 8px !important;
  gap: 8px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(14, 20, 36, 0.94), rgba(7, 11, 22, 0.86)),
    rgba(8, 12, 24, 0.84) !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-brand {
  min-width: 0 !important;
  padding-inline: 8px 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-service-nav {
  gap: 5px !important;
  min-width: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-service-nav > a,
body.overhouse-public-home:not(.auth-locked) .dock-project-toggle {
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 10px !important;
  border-radius: 12px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-actions {
  gap: 6px !important;
}

body.overhouse-public-home:not(.auth-locked) .dock-logout {
  min-height: 36px !important;
  padding: 0 11px !important;
  border-radius: 12px !important;
}

body.overhouse-public-home:not(.auth-locked) .global-brand-header {
  width: min(560px, calc(100vw - 32px)) !important;
  transform: translateY(-4px) !important;
}

body.overhouse-public-home:not(.auth-locked) .brand-overline {
  letter-spacing: 0.12em !important;
}

body.overhouse-public-home:not(.auth-locked) .brand-title {
  font-size: clamp(50px, 7.2vw, 92px) !important;
  line-height: 0.94 !important;
}

body.overhouse-public-home:not(.auth-locked) .brand-description {
  max-width: 34ch !important;
  font-size: clamp(13px, 1.1vw, 15px) !important;
  line-height: 1.55 !important;
}

body.overhouse-public-home:not(.auth-locked) .service-kind-legend {
  width: fit-content !important;
  max-width: 100% !important;
  margin-inline: auto !important;
  padding: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 999px !important;
  background: rgba(5, 8, 17, 0.42) !important;
}

body.overhouse-public-home:not(.auth-locked) .service-kind-legend span {
  min-height: 30px !important;
  border-radius: 999px !important;
}

body.overhouse-public-home:not(.auth-locked) .mecosystem-topology-mesh {
  width: min(980px, calc(100vw - 36px)) !important;
  height: min(68vh, 660px) !important;
  min-height: 520px !important;
  margin-inline: auto !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-core {
  width: clamp(92px, 8vw, 122px) !important;
  height: clamp(92px, 8vw, 122px) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node {
  transition:
    transform 0.28s cubic-bezier(.2, .8, .2, 1),
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="right"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="left"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="top"] > span,
body.overhouse-public-home:not(.auth-locked) .meco-node[data-label-side="bottom"] > span {
  top: calc(100% + 8px) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  max-width: 118px !important;
  min-width: 0 !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
  white-space: nowrap !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span,
body.overhouse-public-home:not(.auth-locked) .meco-node.active > span {
  transform: translateX(-50%) translateY(-2px) !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
  width: min(560px, calc(100vw - 28px)) !important;
  padding: 14px !important;
  border-radius: 18px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 34px !important;
  gap: 2px 10px !important;
  padding: 12px 12px 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-head span,
body.overhouse-public-home:not(.auth-locked) .project-quick-head h2 {
  grid-column: 1 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-close {
  grid-column: 2 !important;
  grid-row: 1 / 3 !important;
  align-self: center !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-grid {
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  padding: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  padding: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-group p {
  grid-column: 1 / -1 !important;
  margin: 0 0 2px !important;
}

body.overhouse-public-home:not(.auth-locked) .project-quick-link {
  min-height: 50px !important;
  padding: 8px 10px !important;
  border-radius: 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  width: min(760px, calc(100vw - 34px)) !important;
  max-height: min(76dvh, 700px) !important;
  border-radius: 20px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-board-grid {
  grid-template-columns: minmax(210px, 0.78fr) minmax(280px, 1fr) !important;
  gap: 10px !important;
  padding: 0 14px 14px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-head {
  margin-bottom: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  overflow: visible !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  min-height: 0 !important;
  padding: 9px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
  min-height: 108px !important;
  max-height: 128px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy {
  gap: 4px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy strong {
  font-size: 12px !important;
  line-height: 1.24 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-cardnews-copy p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
}

@media (max-width: 860px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-topology-mesh {
    height: min(66vh, 560px) !important;
    min-height: 430px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-track {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: minmax(108px, 34%) minmax(0, 1fr) !important;
  }
}

@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked) .top-dock {
    height: 48px !important;
    min-height: 48px !important;
    overflow: hidden !important;
  }

  body.overhouse-public-home:not(.auth-locked) .dock-service-nav {
    padding-inline: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    transform: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-title {
    font-size: clamp(40px, 11vw, 54px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-group {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    width: min(100vw - 18px, 430px) !important;
  }
}

@media (max-width: 430px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-topology-mesh {
    width: min(100vw - 18px, 380px) !important;
    min-height: 390px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core {
    width: 86px !important;
    height: 86px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-card {
    grid-template-columns: 1fr !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-cardnews-visual {
    min-height: 112px !important;
  }
}

/* Final selected-project overlay placement guard.
   Keep the detail panel anchored to the selected node, not docked to the right. */
body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
  position: absolute !important;
  left: var(--meco-board-x, 50%) !important;
  top: var(--meco-board-y, 50%) !important;
  right: auto !important;
  bottom: auto !important;
  width: min(440px, calc(100vw - 34px)) !important;
  max-height: min(32dvh, 260px) !important;
  height: auto !important;
  overflow: visible !important;
  z-index: 96 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 18px) scale(0.985) !important;
  transform-origin: 50% 18px !important;
  border-color: rgba(var(--theme-rgb, 76, 233, 255), 0.28) !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--theme-rgb, 76, 233, 255), 0.15), transparent 30%),
    linear-gradient(180deg, rgba(13, 20, 34, 0.97), rgba(5, 9, 18, 0.965)) !important;
  backdrop-filter: blur(24px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.08) !important;
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(var(--theme-rgb, 76, 233, 255), 0.18),
    0 0 32px rgba(var(--theme-rgb, 76, 233, 255), 0.11) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  width: 14px !important;
  height: 14px !important;
  border: 1px solid rgba(var(--theme-rgb, 76, 233, 255), 0.2) !important;
  background: rgba(9, 15, 27, 0.96) !important;
  transform: translateX(-50%) rotate(45deg) !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board[data-placement="below"]::before {
  top: -7px !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board[data-placement="above"]::before {
  bottom: -7px !important;
  border-left: 0 !important;
  border-top: 0 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) scale(1) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board.is-closing {
  pointer-events: none !important;
  transform: translate(-50%, 14px) scale(0.985) !important;
}

body.overhouse-public-home:not(.auth-locked).detail-board-open .meco-node {
  z-index: 86 !important;
  pointer-events: auto !important;
}

body.overhouse-public-home:not(.auth-locked).detail-board-open .mecosystem-topology-mesh {
  z-index: 64 !important;
}

body.overhouse-public-home:not(.auth-locked).detail-board-open .meco-node.active {
  z-index: 88 !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board .meco-board-grid {
  grid-template-columns: 1fr !important;
  max-height: calc(min(32dvh, 260px) - 68px) !important;
  overflow: auto !important;
  padding: 0 13px 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board .meco-cardnews-track {
  grid-template-columns: 1fr !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board .meco-cardnews-card {
  grid-template-columns: minmax(104px, 34%) minmax(0, 1fr) !important;
}

body.overhouse-public-home:not(.auth-locked) .meco-detail-board .meco-cardnews-visual {
  min-height: 84px !important;
  max-height: 98px !important;
}

body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
  top: calc(var(--meco-center-y, 50%) + clamp(34px, 4.2vh, 46px)) !important;
}

@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked) .meco-detail-board {
    left: 50% !important;
    top: auto !important;
    right: auto !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    width: min(430px, calc(100vw - 18px)) !important;
    max-height: min(68dvh, 620px) !important;
    transform: translate(-50%, 18px) scale(0.985) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-detail-board.visible {
    transform: translate(-50%, 0) scale(1) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    top: calc(var(--meco-center-y, 50%) + 14px) !important;
  }
}

/* TRUE EOF public home UX pass v2: safer mobile stage and readable project nodes. */
@media (max-width: 520px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
    --orbit-node-size: clamp(42px, 11.8vw, 50px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .mecosystem-topology-mesh {
    width: min(100vw - 22px, 368px) !important;
    height: min(55vh, 462px) !important;
    min-height: 404px !important;
    overflow: visible !important;
  }

  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    width: min(100vw - 24px, 366px) !important;
    height: min(100vw - 24px, 366px) !important;
    left: 50% !important;
    top: calc(var(--meco-center-y, 50%) + 8px) !important;
    transform: translate(-50%, -50%) !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    opacity: 0.92 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual > img {
    transform: scale(1.05) !important;
    object-position: 50% 48% !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-telemetry {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
    display: block !important;
    opacity: 0.9 !important;
    visibility: visible !important;
    top: calc(100% + 5px) !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    max-width: 68px !important;
    padding: 3px 5px !important;
    border-radius: 8px !important;
    background: rgba(5, 10, 20, 0.66) !important;
    color: rgba(248, 251, 255, 0.82) !important;
    font-size: 8px !important;
    line-height: 1.1 !important;
    text-align: center !important;
    transform: translateX(-50%) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-description {
    max-width: 32ch !important;
    margin-inline: auto !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    margin-inline: auto !important;
  }

  body.overhouse-public-home:not(.auth-locked) .service-kind-legend {
    margin-top: 12px !important;
  }
}

/* TRUE EOF public home mobile cleanup v3: keep mobile nodes clean until selected. */
@media (max-width: 520px) {
  body.overhouse-public-home:not(.auth-locked) .meco-node > span {
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node.active > span,
  body.overhouse-public-home:not(.auth-locked) .meco-node:hover > span {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* TRUE EOF public home UX pass v4: separate mobile hero copy from the service orbit. */
@media (min-width: 721px) {
  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.46) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-description,
  body.overhouse-public-home:not(.auth-locked) .home-time-panel,
  body.overhouse-public-home:not(.auth-locked) .service-kind-legend {
    margin-left: clamp(42px, 7vw, 104px) !important;
  }
}

@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked) .mecosystem-global-canvas {
    min-height: 100dvh !important;
    overflow: hidden !important;
  }

  body.overhouse-public-home:not(.auth-locked) .global-brand-header {
    top: clamp(74px, 9.2vh, 92px) !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    transform: none !important;
    z-index: 38 !important;
    text-align: center !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-overline {
    margin-bottom: 6px !important;
    font-size: 9px !important;
    letter-spacing: 0.11em !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-title {
    font-size: clamp(34px, 10.2vw, 43px) !important;
    line-height: 1 !important;
    text-wrap: balance !important;
  }

  body.overhouse-public-home:not(.auth-locked) .brand-description {
    max-width: 33ch !important;
    margin: 8px auto 0 !important;
    font-size: clamp(11px, 3.1vw, 12.5px) !important;
    line-height: 1.38 !important;
    text-align: center !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-panel {
    min-width: 0 !important;
    width: fit-content !important;
    margin: 9px auto 0 !important;
    padding: 7px 10px !important;
    grid-template-columns: auto auto !important;
    gap: 1px 8px !important;
    border-radius: 999px !important;
    background:
      radial-gradient(circle at 12% 12%, rgba(var(--sun-rgb), 0.16), transparent 38%),
      linear-gradient(145deg, rgba(12, 18, 31, 0.68), rgba(4, 7, 14, 0.5)) !important;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-panel::before {
    width: 7px !important;
    height: 7px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-period {
    font-size: 8.5px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-value {
    font-size: clamp(20px, 6.4vw, 25px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .home-time-date {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .service-kind-legend {
    margin: 8px auto 0 !important;
    gap: 5px !important;
    padding: 3px !important;
    justify-content: center !important;
  }

  body.overhouse-public-home:not(.auth-locked) .service-kind-legend span {
    min-height: 25px !important;
    padding-inline: 8px !important;
    font-size: 9.5px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .mecosystem-topology-mesh {
    inset: auto 0 auto 0 !important;
    top: clamp(258px, 36vh, 318px) !important;
    width: min(100vw - 20px, 378px) !important;
    height: clamp(340px, 48dvh, 430px) !important;
    min-height: 0 !important;
    margin-inline: auto !important;
    overflow: visible !important;
    z-index: 20 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual {
    width: min(100vw - 28px, 360px) !important;
    height: min(100vw - 28px, 360px) !important;
    left: 50% !important;
    top: calc(var(--meco-center-y, 50%) + 2px) !important;
    transform: translate(-50%, -50%) !important;
    opacity: 0.84 !important;
    border-radius: 28px !important;
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 78%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 78%, transparent 100%) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .platform-realistic-visual > img {
    transform: scale(1.03) !important;
    object-position: 50% 50% !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core {
    width: clamp(70px, 20vw, 82px) !important;
    height: clamp(70px, 20vw, 82px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core strong {
    font-size: clamp(16px, 4.8vw, 20px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-core span {
    margin-top: 5px !important;
    font-size: 7.5px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node {
    width: clamp(40px, 11.4vw, 46px) !important;
    height: clamp(40px, 11.4vw, 46px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .meco-node > svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 380px) {
  body.overhouse-public-home:not(.auth-locked) .brand-title {
    font-size: clamp(31px, 9.6vw, 37px) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .mecosystem-topology-mesh {
    top: clamp(250px, 35vh, 292px) !important;
    width: min(100vw - 18px, 354px) !important;
    height: clamp(318px, 47dvh, 390px) !important;
  }
}

/* TRUE EOF public home UX pass v4.1: keep mobile detail CTA unobstructed. */
@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked).detail-board-open .floating-contact:not(.is-open),
  body.overhouse-public-home:not(.auth-locked):has(.meco-detail-board.visible) .floating-contact:not(.is-open) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(18px) scale(0.72) !important;
  }

  body.overhouse-public-home:not(.auth-locked).detail-board-open .space-ambient-glow,
  body.overhouse-public-home:not(.auth-locked):has(.meco-detail-board.visible) .space-ambient-glow {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .space-grid {
    transform: none !important;
  }
}

/* TRUE EOF public home UX pass v5: compact mobile project launcher. */
@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked).project-menu-open .floating-contact:not(.is-open) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(18px) scale(0.72) !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-shell {
    top: max(68px, env(safe-area-inset-top)) !important;
    bottom: auto !important;
    left: 9px !important;
    right: 9px !important;
    width: auto !important;
    max-width: 420px !important;
    max-height: calc(100dvh - 84px) !important;
    margin-inline: auto !important;
    padding: 10px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    transform: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-head {
    grid-template-columns: minmax(0, 1fr) 34px !important;
    min-height: 58px !important;
    padding: 10px 10px 9px !important;
    border-radius: 14px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-head span {
    font-size: 9px !important;
    letter-spacing: 0.11em !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-head h2 {
    font-size: clamp(20px, 5.8vw, 24px) !important;
    line-height: 1.1 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-close {
    width: 34px !important;
    height: 34px !important;
    border-radius: 11px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-grid {
    gap: 8px !important;
    max-height: calc(100dvh - 168px) !important;
    overflow: auto !important;
    padding-right: 0 !important;
    scrollbar-width: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-grid::-webkit-scrollbar {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-group {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 8px !important;
    border-radius: 14px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-group p {
    min-height: 26px !important;
    margin: 0 !important;
    font-size: 10px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-group p::after {
    min-height: 22px !important;
    padding-inline: 8px !important;
    font-size: 9px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-link {
    min-height: 44px !important;
    grid-template-columns: 34px minmax(0, 1fr) auto !important;
    gap: 8px !important;
    padding: 7px 9px !important;
    border-radius: 12px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-link .nav-icon,
  body.overhouse-public-home:not(.auth-locked) .project-quick-link > svg {
    width: 19px !important;
    height: 19px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-link span {
    font-size: 13px !important;
    line-height: 1.08 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-link small {
    margin-top: 2px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-link::after {
    min-width: 44px !important;
    height: 24px !important;
    border-radius: 999px !important;
    font-size: 9px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .project-quick-link.is-access-disabled,
  body.overhouse-public-home:not(.auth-locked) .project-quick-link.is-service-disabled {
    opacity: 0.58 !important;
  }
}

/* TRUE EOF public home UX pass v6: compact floating support widget. */
body.overhouse-public-home:not(.auth-locked) .floating-contact {
  right: max(20px, env(safe-area-inset-right)) !important;
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  gap: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-panel {
  width: min(360px, calc(100vw - 36px)) !important;
  padding: 16px !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-head {
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-head span {
  width: 38px !important;
  height: 38px !important;
  border-radius: 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-head strong {
  font-size: 22px !important;
  line-height: 1.05 !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-head em {
  padding: 7px 10px !important;
  font-size: 11px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-copy {
  margin: 0 0 10px !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-tags {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 6px !important;
  margin-bottom: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-tags span {
  min-height: 30px !important;
  padding-inline: 6px !important;
  border-radius: 10px !important;
  font-size: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-item.primary {
  min-height: 70px !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 11px !important;
  border-radius: 16px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-channel-grid {
  gap: 8px !important;
  margin-top: 10px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-channel-grid .floating-contact-item {
  min-height: 88px !important;
  padding: 9px 7px !important;
  border-radius: 15px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-channel-grid .floating-contact-item > svg {
  width: 36px !important;
  height: 36px !important;
  padding: 8px !important;
  border-radius: 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-item b {
  font-size: 12px !important;
  line-height: 1.12 !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-item small {
  margin-top: 3px !important;
  font-size: 10px !important;
  line-height: 1.15 !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-foot {
  margin-top: 10px !important;
  padding: 9px 10px !important;
  border-radius: 13px !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact-foot span {
  font-size: 11px !important;
  line-height: 1.25 !important;
}

body.overhouse-public-home:not(.auth-locked) .floating-contact.is-open .floating-contact-trigger {
  opacity: 0.72 !important;
  transform: scale(0.88) !important;
}

@media (max-width: 720px) {
  body.overhouse-public-home:not(.auth-locked) .floating-contact {
    left: 12px !important;
    right: 12px !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    justify-items: stretch !important;
    gap: 0 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-panel {
    width: 100% !important;
    max-height: calc(100dvh - 92px) !important;
    padding: 12px !important;
    border-radius: 18px !important;
    overflow: auto !important;
    scrollbar-width: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-panel::-webkit-scrollbar {
    display: none !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-head {
    margin-bottom: 6px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-head span {
    width: 34px !important;
    height: 34px !important;
    border-radius: 12px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-head strong {
    font-size: 20px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-head em {
    padding: 6px 9px !important;
    font-size: 10px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-copy {
    margin-bottom: 8px !important;
    font-size: 12px !important;
    line-height: 1.38 !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-tags {
    gap: 5px !important;
    margin-bottom: 8px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-tags span {
    min-height: 28px !important;
    font-size: 9.5px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-item.primary {
    min-height: 62px !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 9px !important;
    padding: 9px 10px !important;
    border-radius: 15px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin-top: 8px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-channel-grid .floating-contact-item {
    min-height: 74px !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 5px !important;
    padding: 8px 5px !important;
    border-radius: 13px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-channel-grid .floating-contact-item > svg {
    width: 33px !important;
    height: 33px !important;
    padding: 7px !important;
    border-radius: 12px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-item b {
    font-size: 11.5px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-item small {
    font-size: 9px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-foot {
    margin-top: 8px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact-foot span {
    font-size: 10.5px !important;
  }

  body.overhouse-public-home:not(.auth-locked) .floating-contact.is-open .floating-contact-trigger {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(12px) scale(0.72) !important;
  }
}
