/* WM:20260729145000-c5d8a4 */
:root {
  --p765b33_088998: #2b2b2b;
  --p765b33_21523d: #7a7a7a;
  --p765b33_0296db: #faf8f5;
  --p765b33_e2c08f: #f5f2ed;
  --p765b33_ffa8ee: #e8e4dd;
  --p765b33_1fce75: #d4cfc6;
  --p765b33_4762fd: #c46a4a;
  --p765b33_75f546: #a0523b;
  --p765b33_760a2c: #c5953a;
  --p765b33_879f5c: #b8935a;
  --p765b33_ca016c: #3a4f63;
  --p765b33_ec1607: #6b8f71;
  --p765b33_a68dcd: 'Inter', sans-serif;
  --p765b33_6200a2: 'Noto Serif SC', 'Source Han Serif SC', serif;
}

@font-face {
  font-family: 'Noto Serif SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7Y.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Serif SC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6xSzZBEtERe7Y.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Serif SC';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7Y.otf) format('opentype');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--p765b33_a68dcd); background-color: var(--p765b33_0296db); color: var(--p765b33_088998); overflow-x: hidden; }

#customCursor {
  width: 20px; height: 20px;
  border: 1.5px solid var(--p765b33_4762fd);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-radius 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
#customCursor.hover-btn { width: 40px; height: 40px; border-radius: 4px; }
#customCursor.hover-card { width: 50px; height: 50px; background: rgba(196,106,74,0.08); }
@media (max-width: 768px) { #customCursor { display: none; } }

#ghost-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1000;
  background: transparent;
  transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
#ghost-bar.home { background: var(--p765b33_4762fd); }
#ghost-bar.about { background: var(--p765b33_ca016c); }
#ghost-bar.bases { background: var(--p765b33_ec1607); }
#ghost-bar.standards { background: var(--p765b33_760a2c); }
#ghost-bar.cooperation { background: var(--p765b33_879f5c); }
#ghost-bar.news { background: var(--p765b33_4762fd-deep); }
#ghost-bar.join { background: var(--p765b33_4762fd); }
#ghost-bar.contact { background: var(--p765b33_088998); }

#status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  position: relative; display: inline-block; z-index: 10001;
}
#status-dot.online { background: var(--p765b33_ec1607); box-shadow: 0 0 6px rgba(107,143,113,0.6); }
#status-dot.offline { background: #ccc; }
#status-dot.offhours { background: var(--p765b33_760a2c); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
#status-dot:hover::after {
  content: attr(data-tip);
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  background: var(--p765b33_088998); color: var(--p765b33_0296db);
  font-family: var(--p765b33_a68dcd); font-size: 10px;
  padding: 4px 10px; border-radius: 4px;
  white-space: nowrap; z-index: 10002;
}

.nav-container {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(250,248,245,0.72);
  border-bottom: 1px solid rgba(212,207,198,0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link {
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--p765b33_088998-light);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--p765b33_088998); }
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--p765b33_4762fd);
  transform: scaleX(0); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link.active::after { transform: scaleX(1); }
#mobileMenu {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
#mobileMenu a {
  font-size: 20px; color: var(--p765b33_088998);
  text-decoration: none;
  font-family: var(--p765b33_6200a2);
}

.snap-section { scroll-margin-top: 56px; }

.card-hover {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
}

.filter-pill {
  padding: 6px 16px; border-radius: 9999px;
  font-size: 12px; letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.filter-pill:hover { border-color: var(--p765b33_ec1607); color: var(--p765b33_ec1607); }
.filter-pill.active { background: var(--p765b33_ec1607); color: var(--p765b33_0296db); border-color: var(--p765b33_ec1607); }

.base-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.base-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.base-card-img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.base-card:hover .base-card-img { transform: scale(1.04); }

.gauge-item:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.gauge-fill { transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1); }

.river-flow {
  background: linear-gradient(90deg, var(--p765b33_ffa8ee), var(--p765b33_760a2c), var(--p765b33_ffa8ee));
  background-size: 200% 100%;
  animation: river 4s linear infinite;
}
@keyframes river { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.trace-node:hover { border-color: var(--p765b33_760a2c); color: var(--p765b33_760a2c); }

.mode-card:hover { border-color: var(--p765b33_4762fd) !important; }
.mode-card button { transition: all 0.3s; }
.mode-card button:hover { opacity: 0.85; transform: translateY(-1px); }

.input-focus {
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.input-focus:focus {
  border-color: var(--p765b33_4762fd) !important;
  box-shadow: 0 0 0 3px rgba(196,106,74,0.1);
}
.input-focus::placeholder { color: var(--p765b33_088998-light); opacity: 0.5; }

.charter-item {
  border-left: 3px solid transparent;
  transition: all 0.3s;
  padding: 16px 20px;
}
.charter-item:hover { background: rgba(58,79,99,0.02); }

#toast {
  position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--p765b33_088998); color: var(--p765b33_0296db);
  padding: 12px 28px; border-radius: 8px;
  font-size: 13px; z-index: 10000;
  opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#toast.hide { opacity: 0; transform: translateX(-50%) translateY(100px); }

.ripple {
  border-radius: 50%;
  background: rgba(196,106,74,0.12);
  animation: ripple-anim 0.6s ease-out forwards;
}
@keyframes ripple-anim { to { transform: scale(2.5); opacity: 0; } }

.check-item { transition: all 0.3s; }
.check-item:hover { transform: translateY(-2px); }

.org-node { transition: all 0.3s; cursor: pointer; }
.org-node:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.coop-point { transition: all 0.3s; }

.count-up { font-variant-numeric: tabular-nums; }

@keyframes stamp-appear {
  0% { transform: scale(2); opacity: 0; }
  60% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.animate-stamp-appear { animation: stamp-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.font-serif-sc { font-family: var(--font-serif-sc); }
.font-display { font-family: var(--font-display); }
.font-mono { font-family: 'SF Mono', 'Fira Code', monospace; }
 ._dff3f { opacity: 0.00001; }
 ._xd3f9aa { display: none; }
 @media print { ._1ca3 { content: ''; } }
/* E:2290d24e */